.booking__popup {
  display: none;
  border-radius: 8px;
  padding: 32px;
  max-width: 700px;
  color: #666;
  position: relative;
}
.booking__popup h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 20px;
  text-align: center;
  color: #00abd6;
}
.booking__popup p {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.booking__popup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.booking__popup__fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.booking__popup__fieldset input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.booking__popup input,
.booking__popup select {
  width: 100%;
  font-size: 16px;
  border: 2px solid #efefef;
  border-radius: 8px;
  line-height: 24px;
  padding: 8px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  font-family: 'Fira Sans', sans-serif;
}
.booking__popup #booking__popup__submit {
  margin-top: 20px;
  display: inline-block;
  border: 2px solid #efefef;
  border-radius: 8px;
  padding: 8px 24px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  background: #8ac640;
  color: #fff;
  border-color: #8ac640;
  font-size: 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0);
          box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0);
}
.booking__popup #booking__popup__submit:hover {
  background: #93d245;
  border-color: #93d245;
  -webkit-box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 1px 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.booking__popup #booking__popup__submit.disabled,
.booking__popup #booking__popup__submit.disabled:hover {
  cursor: default;
  background: #c3c3c3;
  border-color: #c3c3c3;
}
.booking__popup #booking-popup-frame-week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: 8px;
  margin-top: 12px;
}
.booking__popup #booking-popup-frame-week div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  background: #f0faff;
  padding: 8px 0;
  border-radius: 4px;
  font-weight: bold;
  color: #000;
}
.booking__popup #booking-popup-frame-week div.weekend {
  background: #f7f3e3;
}
.booking__popup__frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: 8px;
}
.booking__popup__frame__row {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  background: #f0faff;
  border-radius: 4px;
}
.booking__popup__frame__row.weekend {
  background: #f7f3e3;
}
.booking__popup__frame__row div {
  padding: 8px 0;
  border-radius: 4px;
  background: #ddf1c4;
}
.booking__popup__frame__row div.active {
  padding: 6px 0;
  border: 2px solid #00abd6;
  color: #00abd6;
  background: #fff;
}
.booking__popup__frame__row div.disabled {
  background: #efefef;
  color: #ccc;
}
.booking__popup #booking-popup-policy {
  font-size: 14px;
}
.booking__popup #booking-popup-done {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  color: #8ac640;
}
.booking__popup #booking-popup-done.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
