.actionButton {
  width: 40px;
  height: 40px;
  border: 1px solid #dddada;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0px 5px;
  color: #6a6868;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  /*transition: background-color 0.5s;*/
}

/*.requestButton:hover{
  background-color: rgb(204, 255, 204);
}

.editButton:hover{
  background-color: rgb(255, 255, 204);
}

.deleteButton:hover{
  background-color: rgba(255, 51, 0, .5);
}*/

.actionButtonContainer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.actionButton_icon {
  font-size: 18px;
  width: 100%;
  color: #abaaaa;
  text-align: center;
  margin-bottom: 2px;
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actionButton_icon img {
  height: 100%;
  color: red;
}
.actionButton_title {
  font-size: 16px;
  margin-bottom: 10px;
  width: 100%;
  display: none;
}
.actionButton_small {
  width: 35px;
  height: 35px;
}
.actionButton_small .actionButton_icon {
  height: 100%;
}
.actionButton_font10 {
  font-size: 16px;
}
.actionButton_small .actionButton_icon {
  margin-top: 0px;
}
.actionButton_small_lineCenter {
  margin-top: calc(-37px / 2);
}
.actionButton_lineCenter {
  margin-top: calc(-62px / 2);
}
@media (min-width: 600px) {
  .actionButton_icon {
    margin-top: 10px;
  }
  .actionButton {
    width: 60px;
    height: 60px;
  }
  .actionButton_title {
    display: block;
  }
  .actionButton_small {
    width: 35px;
    height: 35px;
  }
}
