.mt_engagement {
  position: fixed;
  display: flex;
  flex-direction: column;
  right: 0;
  top: calc(60% - 90px);
  z-index: 1001;
}
.bookings,
.mt_chat {
  display: none;
}
.mt_chat {
  margin-top: -20px;
  top: 60% !important;
}
.bookings__icon,
.mt_chat__icon {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.bookings__overlay {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.bookings__modal {
  display: none;
  background: white;
  position: absolute;
  z-index: 3;
  right: 90px;
  top: 0;
  width: 300px;
  text-align: center;
  padding: 15px 30px 20px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.bookings__modal__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 15px 0;
}
.bookings__modal__close.modal-close {
  right: 15px;
  top: 15px;
}
.bookings__modal__close.modal-close {
  right: 15px;
  padding: 10px;
  color: #000;
  background: 0;
  border: 0;
  position: absolute;
  top: 15px;
  width: 10px;
  height: 10px;
  opacity: .8;
  outline: 0;
  cursor: pointer;
}
.bookings__modal__close.modal-close:hover {
  opacity: 1;
}
.bookings__modal__close.modal-close:before,
.bookings__modal__close.modal-close:after {
  position: absolute;
  left: 10px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #000;
  top: 0;
  background-color: #666666;
  height: 22px;
}
.bookings__modal__close.modal-close:before {
  transform: rotate(45deg);
}
.bookings__modal__close.modal-close:after {
  transform: rotate(-45deg);
}
.bookings--show .bookings__modal {
  display: block;
}
a.bookings__modal__btn {
  display: inline-block;
  border-width: 0px;
  outline: none;
  color: #ffffff;
  border-radius: 0px;
}
a.bookings__modal__btn:hover,
a.bookings__modal__btn:focus,
a.bookings__modal__btn:active,
a.bookings__modal__btn:active:focus {
  border-width: 0px;
  outline: none;
  box-shadow: none !important;
}
a.bookings__modal__btn:active,
a.bookings__modal__btn:active:focus {
  background: #416f2b !important;
}
@media (max-width: 750px) {
  .bookings--show,
  .mt_chat--show {
    width: 100vw;
    z-index: 1001;
  }
  .bookings--show .bookings__icon,
  .mt_chat--show .mt_chat__icon {
    position: absolute;
    right: 0;
  }
  .bookings--show .bookings__overlay {
    display: block;
  }
  .bookings--show .bookings__modal {
    width: 80vw;
    right: 0;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 15px 35px 30px;
  }
}
