@font-face {
  font-family: 'lato light';
  src: url('/assets/fonts/Lato-Light.ttf');
}
@font-face {
  font-family: 'lato heavy';
  src: url('/assets/fonts/Lato-Heavy.ttf');
}
@font-face {
  font-family: 'lato black';
  src: url('/assets/fonts/Lato-Black.ttf');
}
.monospace {
  font-family: "monospace";
}
@keyframes moveLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 5px;
  }
  100% {
    margin-left: 0;
  }
}
.booking-action-btns {
  display: flex;
  justify-content: space-between;
}
.booking-action-btns .coupon-input {
  flex-basis: 40%;
}
@media (max-width: 991px) {
  .booking-action-btns {
    flex-wrap: wrap;
  }
  .booking-action-btns .coupon-input {
    flex-basis: 100%;
  }
  .booking-action-btns .btns {
    flex-basis: 100%;
    text-align: right;
  }
  .booking-action-btns .btns .ui.button {
    margin-top: 0.5em;
  }
}
