/* Booking choice modal — контент как в dropdown «Запись на прием» */

.yz-booking-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.yz-booking-choice-modal[hidden] {
  display: none !important;
}

.yz-booking-choice-modal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(51, 51, 51, 0.6);
  cursor: pointer;
}

.yz-booking-choice-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 260px;
}

.yz-booking-choice-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 7px;
  border: 1px solid var(--yz-border);
  border-radius: 48px;
  background: #fff;
  cursor: pointer;
}

.yz-booking-choice-modal__close img {
  display: block;
  width: 16px;
  height: 16px;
}

.yz-booking-choice-modal__menu {
  position: relative;
  max-height: none;
  overflow: visible;
}

body.is-booking-choice-open {
  overflow: hidden;
}
