.wrap {
  right: 0;
  left: 0;
  margin: 0 auto;
  padding-top: 39px;
}

/* select starting stylings ------------------------------*/
.select {
  width: 350px;
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  position: relative;
  width: var(--select-width);
  color: #111;
}


.custom-select {
  position: relative;
  /* padding-top: 10px; */
  /* padding-bottom: 20px; */
  margin-bottom: 20px;
}

.selected-city {
  display: flex;
  position: relative;
  padding: 10px 0px 6px 0;
  /* padding: 8px 0;  */
  font-size: 16px;
  color: #111;
  font-weight: 600;
  /* border-bottom: 1.5px solid #D1D1D1; */
  cursor: pointer;
  width: var(--select-width);
  background-image: url("../img/icons/dropdown2.svg");
  background-repeat: no-repeat;
  background-position: right center;
  border-bottom: 1.5px solid #D1D1D1;
}



.pin {
  display: inline-block;
  width: 13px;
  color: #2269F2;
  padding-right: 8px;
  margin-left: -1px;
  padding-left: 15px;
  position: relative;
  top: 2px;
  /* Настройте значение в соответствии с вашими потребностями */
}


.selected-city img:last-child {
  margin-left: auto;
}



.city-options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
  top: 42px;


  max-height: 300px;
  /* Вы можете изменить это значение в зависимости от желаемой высоты */
  overflow-y: auto;
  /* Добавляет полосу прокрутки при необходимости */
  width: 100%;
  /* Устанавливает ширину контейнера */
  /* position: relative;  */
  border: 1px solid #ccc;
  /* Необязательно, для визуального разделения */
}

/* Скрываем мобильный заголовок на десктопе */
.city-select-mobile-title {
  display: none;
}

/* Показываем мобильный заголовок только на мобильных устройствах */
@media (max-width: 768px) {
  .city-select-mobile-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 77px;
    padding: 0 16px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
    background-color: #fff;
    border-bottom: 1.5px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1;
    box-sizing: border-box;
  }
}

.option {
  display: flex;
  align-items: center;
  padding: 8px 0px;
  font-size: 13px;
  color: #444;
  font-weight: 600;
  cursor: pointer;
}

.option:hover {
  background-color: #f5f5f5;

}


.select-label {
  color: #7C7C7C;
  font-weight: 600;
  font-size: 11px;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: -8px;
  transition: 0.2s ease all;
}

.selected-city:focus~.select-label {
  color: #7c7c7c;
  top: -12px;
  transition: 0.2s ease all;
  font-size: 11px;
}

.selected-city::before,
.selected-city::after {
  content: '';
  height: 2px;
  width: 0;
  bottom: -0.5px;
  position: absolute;
  background: #1294f6;
  transition: 0.5s ease all;
  /* bottom: 2.5px; */
}

.selected-city::before {
  left: 50%;
}

.selected-city::after {
  right: 50%;
}

.selected-city:focus {
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.selected-city:focus::before,
.selected-city:focus::after {
  width: 50%;
}



/* -------- checkbox ------- */

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family), sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #7c7c7c;
  cursor: pointer;
}

.custom-checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #359efd;
  border-radius: 5px;
  margin-right: 5px;
  box-sizing: border-box;
  position: relative;
}

.custom-checkbox__icon::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='11' viewBox='0 0 12 11' fill='none'%3E%3Cpath d='M9.61961 0L4.15959 8.20387L2.05877 4.41791L0.283203 5.46924L3.58907 11H4.65548L11.2832 1.07372L9.61961 0Z' fill='white'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.custom-checkbox__input:checked+.custom-checkbox__icon {
  background-color: #359efd;
}

.custom-checkbox__input:not(:checked)+.custom-checkbox__icon {
  background-color: transparent;
  border: 1px solid #bbb;
}

.custom-checkbox__input:not(:checked)+.custom-checkbox__icon::before {
  opacity: 0;
}

.custom-checkbox__input:checked+.custom-checkbox__icon::before {
  opacity: 1;
}

.custom-checkbox__input:not(:checked)+.whatsapp-button::before {
  opacity: 0;
}

.custom-checkbox__input:checked+.whatsapp-button::before {
  opacity: 1;
}

.custom-checkbox__label {
  font-family: var(--font-family), sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #7c7c7c;
  margin-left: 3px;
  letter-spacing: 0.05em;
}

.c-checkbox {
  margin-top: -10px;
}


.icon-pin,
.icon-fly {
  width: 16px;
  height: 16px;
  margin-left: 12px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */

.custom-date-select {
  position: relative;
  width: calc(var(--select-width) + 10px);
}

.selected-date {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0 16px;
  font-weight: 600;
  color: #111;
  justify-content: space-between;
  cursor: pointer;

  height: 40px;
  margin-right: 8px;
  padding-left: 28px;
  background-image: url("../img/icons/calendar-icon.svg");
  background-repeat: no-repeat;
  background-position: left center;
  border-bottom: 1.5px solid #D1D1D1;
}

.days {
  /* display: flex; */
  align-items: right;
  color: #999;
  padding-right: 0;
  margin-right: -15px;
  color: #7C7C7C;
  font-weight: 600;
  font-size: 11px;
  /* position: absolute; */
  pointer-events: none;
  text-transform: uppercase;

}

.date-options {
  /* display: none; */
  position: absolute;
  z-index: 4;
  top: 100%;
  left: 2px;
  background-color: #fff;
  /* border: 1px solid #ccc; */
  /* border-radius: 4px; */
  /* width: 100%; */
  /* padding: 8px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.date-input {
  /* display: block; */
  /* width: 100%; */
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}



/* ---------------- */




.date-range-picker {
  position: relative;
}

.date-range-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.date-range-input:focus {
  border-color: #66afe9;
}

.date-range-picker-container {
  position: absolute;
  top: 100%;
  left: -215px;
  width: 510px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* border: 1px solid #efefef; */
  border-radius: 4px;
  z-index: 5;
  font-size: 11px;
  font-weight: 600;
}



.common-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;

}

.calendar {
  width: 50%;
  box-sizing: border-box;
  padding: 0 5px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  font-size: 14px;
}

.prev-month,
.next-month {
  cursor: pointer;
}

.weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 2px;
  padding: 5px;

}

.day,
.weekday {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.day {
  cursor: pointer;

}

.day.today {
  border: 1px solid #ccc;
}

.day.selected {
  background-color: #66afe9;
  color: #fff;
}

.day:hover {
  background-color: rgba(102, 175, 233, 0.2);
}




.calendar:first-child::after {
  content: '';
  position: absolute;
  left: 50%;
  /* Расположение линии по центру */
  transform: translateX(-50%);
  /* Смещение на половину ширины линии */
  top: 10px;
  /* Отступ сверху */
  padding-left: 0px;
  bottom: 10px;
  /* Отступ снизу */
  width: 0.5px;
  /* Ширина границы */
  background-color: #bbb;
  /* Цвет границы */
  margin-left: -5px;
}


/* ================== */

.custom-date-select .selected-date::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #359EFD;

  /* transform: scaleX(0); */
  transform-origin: center;
  transition: transform 0.3s;
}

.animate-border::before {
  transform: scaleX(0);
  transition: transform 0.3s;
}


.custom-date-select .selected-date:focus::before {
  transform: scaleX(1);
}


/* ======================================= */
/* ======================================== */
/* ====================================== */


.date-range-picker-container {
  display: flex;

}

.calendar {
  display: inline-block;
  padding: 1em;
  background-color: #fff;
  /* border: 1px solid #ccc; */
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
}

.prev-month,
.next-month {
  cursor: pointer;
}

.weekdays {
  display: flex;
  justify-content: space-around;
}

.weekdays span {
  /* display: block; */
  width: 14.28%;
  text-align: center;
}

.calendar-days {
  display: flex;
  flex-wrap: wrap;
}

.day,
.empty-day {
  /* display: block; */
  width: 14.28%;
  text-align: center;
  padding: 0.5em 0;
}

.day {
  cursor: pointer;
}

.day.today {
  color: #2d9cdb;
}

.day.selected {
  background-color: #2d9cdb;
  color: #fff;
}

.calendar-week {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 10px;
}


/* ........................... */


.calendar-day:hover:not(.disabled) {
  background-color: rgba(0, 0, 255, 0.5);
}

.calendar-day.selected:not(.disabled) {
  background-color: rgba(0, 0, 255, 1);
}

.disabled {
  opacity: 0.5;
  cursor: default;
}

.month-name {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 5px;
  display: inline-block;
  /* background:#ff0000; */
  width: 100%;
  display: inline-block;
  text-align: center;
}








.slider {
  position: relative;
  display: flex;
  align-items: center;
}

.arrow {

  position: absolute;
  margin-top: 13px;
  cursor: pointer;
  user-select: none;
  padding: 5px;
  font-size: 1.2em;
}

.arrow-left {
  /* margin-left: 15px; */
  /* background-color:#efefef; */
  margin-left: 10px;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;


}

.arrow-left::before {
  color: #007aff;
  content: "";
  position: absolute;
  /* top: 10;
  left: 10; */
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/dropdown2.svg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);

}

.arrow-right {
  /* margin-left: 455px; */
  /* background-color:#efefef; */
  margin-left: 470px;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  color: #007aff;
}

.arrow-right::before {
  color: #007aff;
  content: "";
  position: absolute;
  /* top: 10;
  left: 10; */
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/dropdown2.svg");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);

}


.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0px;
}

.calendar .day {
  width: 30px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
}

.calendar .day.past {
  opacity: 0.5;
}

.calendar .day:hover {
  background-color: rgba(0, 122, 255, 0.5);
  border-radius: 50%;
}

.calendar .day.selected {
  background-color: #007aff;
  color: white;
  border-radius: 50%;
}

.calendar .day.range {
  background-color: rgba(0, 122, 255, 0.2);
  border-radius: 50%;
}



.slides {
  position: relative;
  display: flex;

  /* padding-top: 20px; */
  /* overflow: hidden; */
  left: 0;
  transition: transform 0.5s ease-in-out;
  width: 200%;
  transition: transform 0.5s ease-in-out;
}


.slides {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1em !important;
  transition: transform 0.5s ease-in-out;
}



.month {
  display: flex;
  flex-direction: column;
  align-content: center;
  padding: 15px;
  margin-top: 5px;
  width: 50%;
  /* width: 90%; */
  flex-shrink: 0;
  /* padding-top: 15px; */
  box-sizing: border-box;

}

.month:first-child {
  margin-right: -20px;
}

.months-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  /* align-items: center; */
}

.day-name {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  color: #111;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;



}

.weekend {
  color: #359efd;
}

.custom-date-select .selected-date::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #359EFD;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}

.custom-date-select .selected-date:focus::before {
  transform: scaleX(1);
}


.day.selected {
  background-color: #ff0000 !important;
  /* Красный цвет */
  color: #ffffff !important;
  /* Белый цвет текста */
}

/* new */

.day.selected,
.day.range,
.day.hovered {
  background-color: #66afe9;
  /* Светло-синий фон */
  color: white;
  /* Белый текст */
}

.day.hovered {
  background-color: #add8e6;
  /* Более светлый тон для наведения */
}



/* ==================== */

.custom-city-select {
  position: relative;
}

.selected-city {
  /* background-color: white; */
  /* border: 1px solid #ccc; */
  /* padding: 10px; */
  cursor: pointer;
  text-align: left;
  /* width: 100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-options {
  display: none;
  margin-top: -5px;
  position: absolute;
  background-color: white;
  min-width: 100%;
  /* border: 1px solid #fff; */
  border: none;
  z-index: 3;
  max-height: 250px;
  overflow-y: auto;
}

.city-options .option {
  /* padding: 10px; */
  padding-right: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-options .option:hover {
  background-color: #f1f1f1;
}

.price {
  color: gray;
  color: #359efd;
  font-size: 12px;
  margin-left: 20px;
}





.daterangepicker {
  position: absolute !important;
  /* Устанавливаем абсолютное позиционирование */
  z-index: 9999 !important;
  /* Выставляем большой z-index, чтобы календарь был выше остальных элементов */
  top: 100%;
  /* Позиционирование календаря сразу под селектом */
  left: 0;
  /* Позиционируем его слева относительно родительского контейнера */
  width: auto;
  /* Можно задать ширину по необходимости */
}


.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0 !important;
  border-collapse: collapse !important;
}

table {
  display: table;
  border-collapse: separate !important;
  box-sizing: border-box;
  text-indent: initial;
  unicode-bidi: isolate;
  border-spacing: 2px !important;
  border-color: gray;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 260px !important;
}

table {
  border-collapse: separate !important;
  text-indent: initial !important;
  border-spacing: 2px !important;
}

.month {
  display: flex;
  flex-direction: column;
  align-content: center;
  padding: 15px !important;
  margin-top: 5px !important;
  width: 50% !important;
  width: 90% !important;
  flex-shrink: 0;
  padding-top: 15px !important;
  box-sizing: border-box;
}

.daterangepicker .calendar-table table {
  width: 100% !important;
  margin: 0 !important;
  border-spacing: 0 !important;
  border-collapse: collapse !important;
}

th {
  display: table-cell !important;
  vertical-align: inherit !important;
  font-weight: bold !important;
  text-align: -internal-center !important;
  unicode-bidi: isolate !important;
}

/* .daterangepicker .drp-calendar {
  display: none !important;
  max-width: 270px;
} */


/* element.style {
  top: 57% !important;
  left: 50% !important;
  right: auto;
  display: block;
} */

.daterange-mx {
  margin-top: -28px;
  margin-right: 6px;
  float: right;
}

/* Native date fields (mobile/tablet only) */
.native-date {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 0 2px;
}

.native-date input[type="date"] {
  height: 38px;
  padding: 6px 10px;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  font: inherit;
  color: #111;
  background: #fff;
}

.native-date .native-sep {
  color: #777;
}

/* Days label in header */
.label-days {
  display: none;
  margin-left: 6px;
  color: #777;
  font-weight: 600;
}

@media (max-width: 768px) {
  .custom-date-select .selected-date {
    display: none;
  }

  .custom-select>.select-label {
    display: none;
  }

  .native-date {
    display: flex;
  }

  .daterange-mx {
    display: none !important;
    float: none !important;
  }

  .label-days {
    display: inline;
  }
}

.daterangepicker .btn {
  cursor: pointer;
  /* Устанавливаем курсор в виде пальца */
}


.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #359efd !important;
  /* border-color: transparent; */
  /* color: #fff; */
}


/* .daterangepicker td.active,
.daterangepicker td.in-range {
    border-radius: 0px !important; 
}


.daterangepicker td.start-date {
  border-radius: 100px 0 0 100px !important;
}

.daterangepicker td.end-date {
  border-radius: 0 100px 100px 0  !important;
} */

/* Общие стили для кнопок */
.daterangepicker .drp-buttons .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  font-size: 13px !important;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
}

/* Стиль для правой кнопки (Применить) */
.daterangepicker .drp-buttons .btn-primary {
  background: linear-gradient(268.64deg, #4AA8FE 0%, #378AF8 24.01%, #2269F2 100%);
  color: #fff;
}

/* Новое нормальное состояние для левой кнопки (Отмена) */
.daterangepicker .drp-buttons .btn-default {
  background: linear-gradient(268.64deg, #efefef 0%, #e8e8e8 100%) !important;
  /* Более тёмный серый градиент при наведении */
  color: #111 !important;
  border: none !important;
  /* Убираем ободок при наведении */
  /* background: linear-gradient(268.64deg, #e0e0e0 0%, #ddd 100%) !important;  */

}

/* При наведении на левую кнопку (новый стиль hover) */
.daterangepicker .drp-buttons .btn-default:hover {
  background: transparent !important;
  color: #333 !important;
  border: 2px solid rgba(158, 158, 158, 0.5) !important;
  /* Серый ободок */
  width: 120px !important;
  height: 40px !important;
  line-height: normal !important;
  border-radius: 10px !important;
}

/* При наведении на правую кнопку (Применить), она становится как левая (Отмена) */
.daterangepicker .drp-buttons .btn-primary:hover {
  background: transparent !important;
  border: 2px solid rgba(53, 158, 253, 0.9) !important;
  color: #333 !important;
}


.month {
  font-family: 'Gilroy', sans-serif;
  /* Устанавливаем фирменный шрифт */
  font-weight: 700 !important;
  /* Жирное начертание */
  text-transform: uppercase;
  /* Преобразование текста в верхний регистр */
  font-size: 14px !important;
  /* Размер шрифта */
  text-align: center;
  /* Центрирование текста */
  color: #333;
  /* Цвет текста */
  letter-spacing: 0.05rem;
  /* Межбуквенное расстояние для улучшения читаемости */
  margin-bottom: 10px;
  /* Отступ снизу для расстояния от других элементов */
  /* color: #359efd; */
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: 1px solid #359efd !important;
  border-top: none !important;
  border-left: none !important;
}

/* .weekend {
  color: #359efd !important;
} */

.daterangepicker td.off {
  visibility: hidden;
  /* Скрываем дни, которые не относятся к текущему месяцу */
}

.daterangepicker {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  /* Тень */
  border-radius: 10px !important;
  /* Закруглённые углы */
  overflow: hidden;
  /* Убираем выступающие элементы, если они есть */
  border: 0 !important;
  font-family: var(--font-family) !important;

}

.daterangepicker .drp-buttons {

  border-top: 1px solid #eee !important;

}


.daterangepicker .drp-selected {
  /* display: inline-block; */
  font-size: 13px !important;
  color: #777 !important;
  /* padding-right: 8px; */
}