.booking_form_wrapper {
  max-width: 1300px;
  margin: 40px auto 0 auto;
  display: flex;
  gap: 20px;
}

.booking_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  width: 100%;
}

.booking_img_holder {
  flex: 0 0 100%;
  max-width: 420px;
  height: 630px;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}
.selection_icon{
  cursor: pointer;
}
.booking_img_holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking_form_item {
  padding: 20px 30px;
  background: var(--grey);

  width: 100%;
  height: 100%;
}

.booking_form_item.top {
  border-radius: 0 30px 0 0;
}

.booking_form_item.bottom {
  border-radius: 0 0 30px 0;
}

.booking_item_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
}

.booking_item_title_wrapper {
  margin: 10px 0;
}

.booking_item_title_wrapper.contact_det .booking_item_title{
  line-height: 30px;
}

.booking_data {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  gap: 30px 20px;

}

.booking_tabs_wrapper {
  display: flex;
  gap: 10px;
  width: 100%;

}

.booking_data_item {
  flex: 1 1 195px;
  max-width: 100%;
  max-height: 46px;
}

.booking_tab {
  border-bottom: 1.5px solid var(--yellow-white);
  flex: 1 1 48%;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.booking_tab.active {
  border-bottom: 1.5px solid var(--gold);
}

.booking_tab_text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--yellow-white);
  transition: 0.3s;
}

.booking_tab.active .booking_tab_text {
  color: var(--gold);
}

.custom-select {
  position: relative;

  border-bottom: 1.5px solid var(--grey-white);

  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  max-height: 46px;
}

.custom-select__trigger {
  padding: 10px 15px;
  display: flex;
  max-height: 46px;
  justify-content: space-between;
  align-items: center;
}

.custom-options {
  position: absolute;
  top: 117%;
  left: 0;
  right: 0;
  background: #1a1b1c;
  border-top: none;
  max-height: 200px;
  display: none;
  z-index: 10;
  padding-bottom: 20px;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.custom-options_wrapper {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  width: 100%;
  max-height: 180px;
  overflow: auto;
}

.custom-option {
  flex: 1 1 38%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  border-bottom: 1.5px solid transparent;
}

.custom-option.active {
  background: var(--white);
  color: var(--grey);
}

.custom-option:hover {
  color: var(--gold);
  border-bottom: 1.50px solid var(--gold);
}

.custom-select.open .custom-options {
  display: flex;
}

.booking_girl_price {

  border-bottom: 1.50px solid var(--grey-white);
  position: relative;
}

.price-select__trigger {
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding:0 15px 10px 15px;
}

.price-options {
  position: absolute;
  width: 100%;
  top: 70px;
  padding: 20px;
  background: #1a1b1c;
  border-top: none;
  max-height: 200px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  display: none;

}

.booking_girl_price.open .price-options.open {
  display: block;
}

.price-options_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: auto;
  height: 100%;
  max-height: 180px;
  padding-bottom: 20px;
}

.price-option {
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
}

.selected_price,
.price-option {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  width: max-content;
}

.price-option b,
.selected_price b {
  font-weight: 700;
  color: var(--gold);
}

.price-option:hover {
  border-bottom: 1.5px solid var(--gold);
}

.booking_date,
.booking_time {
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1.5px solid var(--grey-white);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-height: 46px;
}

.booking_date input,
.booking_time input {
  width: 100%;

  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

.flatpickr-calendar.hasTime.noCalendar.animate.open.arrowTop.arrowLeft {
  width: 100%;
  max-width: 253px;
}

.input_wrapper {
  flex: 1 1 195px;
  padding: 10px 10px;
  max-width: 100%;
  display: flex;
  border-bottom: 1.5px solid var(--grey-white);

}

.addres_outcall {
  display: none;
}

.addres_outcall.open {
  display: flex;
}

.booking_contact_detaitls,
.booking_contact_detaitls_area {

  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--grey-white);
  width: 100%;
  cursor: auto;
}

.booking_contact_detaitls_area {
  resize: none;
  height: 50px;
  overflow: auto;
}

.booking_wishes {
  padding: 0px 10px;
  border-bottom: 1.5px solid var(--grey-white);
  flex: 1 1 100%;
  display: flex;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
  display: none;
}

input[type="date"]::-moz-focus-inner,
input[type="time"]::-moz-focus-inner {
  border: 0;
}

input[type="date"],
input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.seo_booking_wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 100px auto 70px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo_text_wrapper {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.seo_booking_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 54px;
  color: var(--white);
}

.seo_text_wrapper p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 165%;
  color: var(--grey-white);

}

.seo_text_wrapper p a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 165%;
  color: var(--gold);

}

.booking_form_submit {
  border-radius: 14px;
  padding: 15px 30px;
  background: var(--gold);
  margin: 15px auto 0 auto;
  width: max-content;
  cursor: pointer;
  max-height: 60px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.booking_form_submit:hover {
  background: var(--yellow-white);
}

.booking_btn_text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--grey);
}

input.error::placeholder {
  color: red;
  white-space: pre-wrap;
  font-size: 12px;
  overflow: auto;
}

@media (max-width: 1430px) {
.es-breadcrumbs{
  padding: 0 0 0 20px!important;
}
}
@media (max-width: 1305px) {
  .booking_wishes {
    padding: 0px 10px;
    border-bottom: 1.5px solid var(--grey-white);
    flex: 1 1 100%;
  }

  .booking_data {
    gap: 20px;
  }

  .booking_form_wrapper {
    padding: 0 20px;
  }

  .seo_booking_wrapper {
    padding: 0 20px;
  }

  .booking_time {
    flex: 1 1 100%;
    max-width: 50%;
  }

  .seo_booking_wrapper {
    margin: 70px auto;
  }
}

@media (max-width: 1170px) {
.booking_form_wrapper{
  align-items: center;
}
}
@media (max-width: 1024px) {

}
@media (max-width: 956px) {
  .booking_form_wrapper {
    flex-direction: column;
    align-items: center;
    margin: 20px auto 0 auto;
  }

  .booking_img_holder {
    border-radius: 30px;
  }

  .booking_form_item.top {
    border-radius: 30px 30px 0 0;
  }

  .booking_form_item.bottom {
    border-radius: 0 0 30px 30px;
  }

  .booking_date,
  .booking_time {
    flex: 1 1 100%;
    max-width: 253px;
  }

  .seo_booking_wrapper {
    margin: 50px auto;
  }

  .seo_booking_title {
    font-size: 44px;
  }
}

@media (max-width: 570px) {

  .booking_date,
  .booking_time {
    flex: 1 1 195px;
    max-width: 100%;
  }
  .es-breadcrumbs{
    padding: 0 0 0 15px!important;
  }
  .booking_form_wrapper {
    gap: 10px;
    padding: 0 10px;
  }
  .seo_booking_wrapper{
    padding: 0 10px;
    margin: 40px auto;
  }
  .seo_text_wrapper p{
    font-size: 15px;
  }

  .booking_form {
    gap: 10px;
  }
  .seo_booking_title {
    font-size: 32px;
  }
  .booking_item_title{
    font-size: 24px;
  }

  .booking_form_submit {
    width: 100%;
    border-radius: 14px;
    padding: 15px 30px;
    text-align: center;
  }
}