#termsModal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;

}

#termsModal.show {
  display: flex !important;
}

#termsModal .modal-dialog {
  position: relative !important;
  margin: 0 !important;
  max-width: 90vw !important;
  width: auto !important;
}

#termsModal .modal-body {
  scroll-behavior: auto !important;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  #termsModal .modal-dialog {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    
  }
}

#termsModal .modal-header.bg-primary {
  background-color: var(--booking-bg-mid) !important;
  border-bottom: 2px solid var(--ticket-card-border);
}

#termsModal .terms-content .text-primary {
  color: var(--booking-bg-mid) !important;
}

#termsModal .modal-footer .btn-primary {
  background-color: var(--booking-bg-mid) !important;
  border-color: var(--ticket-card-border) !important;
}

#termsModal .modal-footer .btn-primary:hover {
  background-color: var(--btn-main-bubble) !important;
  border-color: var(--ticket-select-selected-hover) !important;
}

#termsModal .modal-footer .btn-secondary {
  background-color: var(--ticket-card-bg) !important;
  border-color: var(--ticket-card-border) !important;
}

#termsModal .modal-footer .btn-secondary:hover {
  background-color: var(--surface-color) !important;
}