.booking-container .bookingForm {
  display: flex;
  gap: 5px;
  align-items: center;
  z-index: 3;
  position: relative;
}

.form-item {
  position: relative;
}

.btn_form {

  border: 2px solid #ffffff;
  transition: all 0.2s ease;
  background-color: white;
}

.btn_form.active {
  border: 2px solid #6E97EF;
}

.btn_form span::after {
  content: ' ';
  height: 6px;
  width: 6px;
  background-image: url(/image/catalog/tourwow/Vector\ \(8\).svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease;
  transform: rotate(180deg);
}

.btn_form.active span::after {
  transform: rotate(0deg);
}

.btn_form span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Стили для всплывающих окон */
.modal {
  display: none;
  position: absolute;
  z-index: 1000;
  background-color: #fefefe;
  border: 1px solid #C1CDE7;
  border-radius: 30px;
  box-shadow: var(--shadow);
  left: 0px;
  top: 60px;
}

div.cityModal {
  width: 500px;
}

.modal-content_bron {
  padding: 24px;
}

.btn_col_full_whith {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.modal-content_bron .btn {
  width: 100%;
}

.search-box {
  width: 100%;
  padding: 20px 30px 20px 57px;
  margin: 0 0 27px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #F1F1F2;
  background-image: url(/image/catalog/tourwow/01\ align\ center\ \(1\).svg);
  background-repeat: no-repeat;
  background-position: 30px center;
}

.city-list {
  overflow-y: auto;
  padding-bottom: 24px;
}

.city-item,
.excursion-item {
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.city-item:hover,
.excursion-item:hover {
  color: var(--primary);
}

.form_title {
  font-size: 13px;
  padding-bottom: 7px;
}

.excursions-list {
  padding-bottom: 17px;
}

div.calendar>div:first-child {
  font-size: 17px;
}

.month_nav_arrow {
  width: 33px;
  height: 33px;
  border: 1px solid #C5CDE4;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
}

.day_select {
  background-color: var(--primary);
  color: white;
  border-radius: 110px;
}

div.calendar {
  padding-bottom: 24px;
  font-weight: 600;
}

.calendar_neds_row,
.calendar_dey {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
}

div.dateModal .form_title {
  font-weight: 600;
}

.radio_btn_grid {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.radio_btn_grid label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 16px;
  border: 1px solid #C2C8D6;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.radio_btn_grid input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio_btn_grid label.active {
  border-color: #1e65fe;
}

.radio_btn_grid label:hover {
  background-color: #e0e0e0;
}

.form-group {
  padding-bottom: 20px;
}

.form-group.select_time {
  padding-bottom: 35px;
}

.btn_w_i {
  display: flex;
  gap: 5px;
}

.btn_w_i input[type="text"] {
  background: #F1F1F2;
  border-radius: 10px;
  font-size: 14px;
  width: 132px;
  border: none;
  padding: 13px;
  width: 100%;

}

.btn_w_i .radio_btn_grid {
  flex-wrap: nowrap;
}

div.formatModal {
  width: 400px;
}

div.formatModal h3 {
  padding-bottom: 20px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  gap: 13px;
}

.checkbox-item {
  display: flex;
  align-items: center;
}

.custom-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.custom-checkbox.checked::after {
  content: '';
  width: 12px;
  height: 8px;
  background-image: url(/image/catalog/tourwow/Vector\ \(9\).svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}

/*
    .price-slider-container {
      width: 100%;
      margin: 10px 0;
      position: relative;
      height: 40px;
    }

    .price-slider { 
      width: 100%;
      height: 5px;
      background: #ddd;
      border-radius: 5px;
      top: 20px;
      outline: none;
    }

    .price-slider::-webkit-slider-thumb {
      height: 20px;
      width: 20px;
      border-radius: 50%;
      background: var(--primary);
      cursor: pointer;
      border: none;
    }

    .price-slider::-moz-range-thumb {
      height: 20px;
      width: 20px;
      border-radius: 50%;
      background: var(--primary);
      cursor: pointer;
      border: none;
    }

   .price-value {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    display: flex;
    gap: 5px;
}
.inp_price {
    background: #F1F1F2;
    padding: 24px 30px;
    border-radius: 15px;
    display: flex;
    gap: 5px;
}
.inp_price input {
    background: none; 
    border:none;
    width: 100%;
}*/
div.priceModal {
  width: 400px;
}

.range-slider {
  height: 5px;
  position: relative;
  background-color: #e1e9f6;
  border-radius: 2px;
}

.range-selected {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background-color: #1b53c0;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.range-input input::-webkit-slider-thumb {
  height: 29px;
  width: 29px;
  border-radius: 50%;
  border: 3px solid #1b53c0;
  background-color: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
}

.range-input input::-moz-range-thumb {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  border: 3px solid #1b53c0;
  background-color: #fff;
  pointer-events: auto;
  -moz-appearance: none;
}

.range-price {
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
  display: flex;
  gap: 5px;
  margin-bottom: 35px;
}

.range-price label {
  margin-right: 5px;
}

.range-price input {
  background: none;
  border: none;
  width: 100%;
}

.inp_row {
  background: #F1F1F2;
  padding: 24px 30px;
  border-radius: 15px;
  display: flex;
  gap: 5px;
  align-items: center;
}

button.applyPrice {
  margin-top: 35px;
}

/* в хедере */

header .booking-container .bookingForm {
    display: flex;
    gap: 5px;
    align-items: center;
    z-index: 3;
    position: relative;
    justify-content: space-between;
}

header .form-item .btn_form, header .form-item:not(:last-child) {
    width: 100%;
}
header .form-item .btn_form { 
    justify-content: flex-start;
}
header .btn_form span { 
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}
header .form-item .btn_form {
    display: flex;
    justify-content: flex-start;
    border: none;
    background: #F1F1F2;
}
@media screen and (max-width: 1450px) {

}
@media screen and (max-width: 1000px) {
  div.priceModal {
    width: 350px;
    left: auto;
    right: 0;
  }
}

@media (max-width: 768px) {
  .btn_form span::after {
    height: 8px;
    width: 8px;
    transform: rotate(90deg);
    position: absolute;
    right: 24px;
  }

  .btn_form.active span::after {
    transform: rotate(90deg);
  }
}