
.Buttons {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.ActionButton {
  background-color: #0b335c;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  line-height: 1.6em;
  font-family: "SofiaPro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 2px;
}
.ActionButton:hover {
  background-color: #d1b2d6;
  color: #0b335c;
}
.ActionButton:disabled {
  cursor: default;
  background-color: #bababa;
  color: white;
}
.ActionButton.Revert::after {
  font-family: 'IcoFont' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Better Font Rendering =========== */
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.ActionButton.Revert::after {
  content: "\ee0b";
}
