/*!******************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/shared/ui/mobile-dropdown/ui/MobileDropdown.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************/
.MobileDropdown_backdrop__B94IU {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  transition: opacity 0.3s ease;
}

.MobileDropdown_sheet__xlU4t {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 0 20px;
}

.MobileDropdown_grabber__2uCbI {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
  touch-action: none;
}

.MobileDropdown_grabberHandle__HEcKs {
  width: 48px;
  height: 5px;
  background: #d1d5db;
  border-radius: 9999px;
}

.MobileDropdown_title__Amg61 {
  padding: 0 20px 12px;
  font-size: 17px;
  font-weight: 600;
  color: #212a33;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.MobileDropdown_content__tRCdQ {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/*!************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/shared/ui/filter-input/ui/FilterInput.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************/
/* src/widgets/tours-filter/ui/FilterInput.module.css */

.FilterInput_wrapper__E_Y89 {
  position: relative;
  cursor: pointer;
  border-radius: 22px;
  background: #f3f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
}

.FilterInput_head___lTLy {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.FilterInput_label__R7iv2 {
  color: #adb7c0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.FilterInput_input__76oui {
  width: 100%;
  border: none;
  background: transparent;
  color: #212a33;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  cursor: text;
  transition: all 0.3s ease;
   padding-right: 32px;
}

.FilterInput_inputMobileWrapper__Wo8zs {
  border: 2px solid #f3f7fa;
  padding: 10px;
  width: 100%;
  border-radius: 20px;
}

.FilterInput_inputMobile__UYZU1 {
  color: #212a33;
  font-size: 18px;
}

.FilterInput_input__76oui:focus, .FilterInput_inputMobile__UYZU1:focus {
  outline: none;
}

.FilterInput_input__76oui::-moz-placeholder, .FilterInput_inputMobile__UYZU1::-moz-placeholder {
  color: #adb7c0;
}

.FilterInput_input__76oui::placeholder, .FilterInput_inputMobile__UYZU1::placeholder {
  color: #adb7c0;
}

.FilterInput_dropdown__Xo3Lz {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
  background: #f3f7fa;
  box-shadow: 0px 1px 5px 0px #dbdbdb;

  /* Анимация */
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px) scale(1);
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    width 0.3s ease-in-out;
}

.FilterInput_dropdown__Xo3Lz.FilterInput_open__8Pk_N {
  margin-top: 10px;
  padding: 20px;
  width: 200%;
  left: -50%;
  max-height: 300px; /* лимит на скролл */
  opacity: 1;
  transform: translateY(0) scale(1.01);
  transition:
    transform 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.FilterInput_dropdown__Xo3Lz.FilterInput_open__8Pk_N.FilterInput_home__7yfZF {
  left: 0;
}

.FilterInput_drag__z2DyJ {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin: 0 auto;
  transform: rotate(90deg);
}

.FilterInput_list__74D3w {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 0 5px;
}

.FilterInput_list__title__yu8pS {
  color: #212a33;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  cursor: text;
}

.FilterInput_list__74D3w::-webkit-scrollbar {
  width: 4px; /* Ширина скроллбара */
}

/* Дорожка скроллбара */
.FilterInput_list__74D3w::-webkit-scrollbar-track {
  background: white;
  width: 10px;
  border-radius: 10px; /* Скругляем углы дорожки */
}

/* Ползунок скроллбара */
.FilterInput_list__74D3w::-webkit-scrollbar-thumb {
  background: #adb7c0;
  border-radius: 10px; /* Скругляем углы ползунка */
}

/* При наведении на ползунок */
.FilterInput_list__74D3w::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.FilterInput_noResults__47Q6u {
  color: #adb7c0;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}

.FilterInput_disabled__V3nzG {
  opacity: 0.6;
  cursor: not-allowed;
}

.FilterInput_disabled__V3nzG .FilterInput_input__76oui {
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.FilterInput_removeBtn__W98Bz {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #adb7c0;
  cursor: pointer;
  padding: 0;
}

.FilterInput_removeBtn__W98Bz:hover {
  color: #ff4d4d;
}

.FilterInput_removeBtn__W98Bz svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 1200px) {
  .FilterInput_dropdown__Xo3Lz.FilterInput_open__8Pk_N {
    width: 100%;
    left: 0;
  }
}

/* @media (max-width: 768px) {
  .input {
    pointer-events: none;
    user-select: none;
  }
  .dropdown {
    position: fixed;
    bottom : 0;
    width: 100dvw;
    height: 80dvh;
    z-index: 1000000;
    border-top-right-radius: 26px;
    border-top-left-radius: 26px;
  }

  .dropdown.open {
    top : 30dvh;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 100dvw;
    min-height: 70dvh;
  }
} */

/* ... твой текущий CSS ... */

/* Мобильный bottom sheet */
@media (max-width: 768px) {
  
  .FilterInput_input__76oui {
    pointer-events: none; /* отключаем ввод текста и клавиатуру */
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
  }

  .FilterInput_dropdown__Xo3Lz {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100dvw !important;
    max-height: 80dvh !important;
    min-height: 50dvh;
    border-top-left-radius: 26px !important;
    border-top-right-radius: 26px !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15) !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    background: white !important;
    will-change: transform, opacity;
    transition:  opacity 0.1s ease-out;
  }

  .FilterInput_dropdown__Xo3Lz.FilterInput_open__8Pk_N {
    top: auto !important;
    opacity: 1 !important;
    margin-top: 0 !important;
    
  }

  .FilterInput_list__74D3w {
    height: calc(100% - 60px); /* место под grabber */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; 
  }
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/shared/ui/filter-nights/ui/FilterNights.module.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************/
.FilterNights_nights__UvMIg {
  position: relative;
  border-radius: 22px;
  background: #f3f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
}

.FilterNights_nights__label__v3MUH {
  color: #adb7c0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.FilterNights_nights__value__xsD8T {
  color: #212a33;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.FilterNights_dropdown__mz6gt {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
  background: #f3f7fa;
  box-shadow: 0px 1px 5px 0px #dbdbdb;
  overflow: hidden;
  /* Анимация */
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px) scale(1);
  transition:
    transform 0.3s ease-in-out,
    margin 0.3s ease-in-out;
}

.FilterNights_dropdown__mz6gt.FilterNights_open__fV6mx {
  margin-top: 10px;
  padding: 20px;
  width: 200%;
  left: -50%;
  max-height: 300px; /* лимит на скролл */
  opacity: 1;
  transform: translateY(0) scale(1.01);
  transition:
    transform 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.FilterNights_title__bKhBB {
  color: #212a33;
  font-size: 14px;
  font-weight: 700;
}

.FilterNights_grid__pEDje {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.FilterNights_cell__KFszj {
  max-height: 50px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8edf2;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #212a33;
  border: 1px solid #e8edf2;
  cursor: pointer;
  transform: scale(1);
  transition: 0.3s ease-in-out all;
}

.FilterNights_cell__KFszj:hover {
  transform: scale(1.1);
  background: #def1ff;
}

.FilterNights_cell__KFszj.FilterNights_inRange__V4Htl {
  background: rgba(49, 142, 236, 0.15);
  border-color: #def1ff;
}

.FilterNights_cell__KFszj.FilterNights_selected__WQBDg {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  color: white;
}

@media (max-width: 1200px) {
  .FilterNights_dropdown__mz6gt.FilterNights_open__fV6mx {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .FilterNights_dropdown__mz6gt.FilterNights_open__fV6mx {
    left: -25%;
    width: 150%;
  }

  .FilterNights_home__pAnHw.FilterNights_open__fV6mx {
    left: 0;
  }
}

@media (max-width: 768px) {
  .FilterNights_dropdown__mz6gt.FilterNights_open__fV6mx {
    left: 0;
    width: 200%;
  }

  .FilterNights_home__pAnHw.FilterNights_open__fV6mx {
    width: 100%;
  }

  .FilterNights_home__pAnHw.FilterNights_open__fV6mx .FilterNights_cell__KFszj {
    max-height: 35px;
  }
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/shared/ui/DateRangePicker/DateRangePicker.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************/
.date-picker-wrapper {
  width: 100%;
  max-width: 100%;
}

.date-picker-calendars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.date-picker-input {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #212a33;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.date-picker-input:focus {
  outline: none;
}

.date-picker-input::-moz-placeholder {
  color: #adb7c0;
}

.date-picker-input::placeholder {
  color: #adb7c0;
}

.date-picker-dropdown {
  position: absolute;
  top: 100%;
  left: -100%;
  margin-top: 8px;
  width: 630px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.month-year {
  font-size: 14px;
  color: #212A33;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header (месяц/год + стрелки) */
.date-picker-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e8edf2;
}

.nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #adb7c0;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-btn:hover {
  color: #318eec;
}

.month-year-btn {
  background: transparent;
  border: none;
  color: #212a33;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.month-year-btn:hover {
  color: #00d5ff;
}

/* Дни недели */
.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #adb7c0;
  text-align: center;
}

/* Сетка дней */
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0 12px 12px;
}

.date-picker-day {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  font-size: 14px;
  font-weight: 500;
  color: #212a33;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.date-picker-day:hover {
  background-color: rgba(187, 187, 187, 0.6);
}

.date-picker-day.other-month {
  color: #adb7c0;
  opacity: 0.6;
}

.date-picker-day.today {
  border: 2px solid #00d5ff;
  color: #00d5ff;
}

.date-picker-day.in-range {
  background: rgba(0, 213, 255, 0.15);
}

.date-picker-day.selected {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  color: white;
  font-weight: 700;
}

/* Месяцы */
.months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.month-btn {
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #212a33;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.month-btn:hover {
  background: #f3f7fa;
}

.month-btn.active {
  color: #00d5ff;
  font-weight: 900;
}

/* Годы */
.years-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
}

.year-btn {
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #212a33;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.year-btn:hover {
  background: #f3f7fa;
}

.year-btn.active {
  color: #00d5ff;
  font-weight: 900;
}

.expired {
  pointer-events: none;
  cursor: none;
}

@media (max-width: 1200px) {
  .date-picker-dropdown {
    left: 0;
    width: 630px;
  }
  .home {
    right: 0;
    left: auto;
  }
}

@media (max-width: 992px) {
  .date-picker-dropdown {
    width: 630px;
  }

  .home {
    right: 0;
    left: auto;
  }
}

@media (max-width: 768px) {
  .date-picker-dropdown {
    left: unset;
    right: 0;
    width: 200%;
  }

  .nav-btn  {
    width: 40px;
    height: 40px;
    font-size: 40px;
    font-weight: 500;
  }

  .home {
    left: 0;
  }

  .date-picker-calendars {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .home {
    width: 100%;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/shared/ui/filter-select/ui/FilterSelect.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************/
.filter--select{
    border-radius: 16px;
    background: #f3f7fa;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
    transform: scale(1);
    transition: 0.3s ease-in-out all;
}

.filter__item--select {
  position: relative;
}

.filter__item--select:has(.filter__item--dropdown.open) {
  z-index: 1000000;
}

/* Триггер — кнопка внутри */
.filter__item-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.cruise__tab.active .filter__item-label {
  color: white;
}

.cruise__tab.active .filter__item-svg path {
  stroke: white;
}


.filter__item-label {
    padding: 10px 0;
    color: #212a33;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
    line-height: 120%;
}

.filter__item-svg {
  transition: transform 0.3s ease;
}

.filter__item-svg.rotated {
  transform: rotate(180deg);
}

/* Дропдаун: position: fixed и координаты через JS, чтобы не обрезаться overflow у родителя */
.filter__item--dropdown {
  position: absolute;
  z-index: 10001;
  margin-top: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
  background: #f3f7fa;
  box-shadow: 0px 1px 5px 0px #dbdbdb;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transition:
    opacity 0.12s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.filter__item--dropdown.open {
  z-index: 10001;
  margin-top: 10px;
  padding: 20px;
  width: auto;
  max-width: 300px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.filter__item--overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}



.filter__item--dropdown.price-dropdown-wide {
  min-width: 235px;

}

.sort__dropdown.open {
  min-width: 209px;
  width: 100%;
  max-width: 100%;
  max-width: 300px;
}

.filter__item--dropdown-title {
  color: #212a33;
  font-size: 14px;
  font-weight: 500;
  
}

.filter__item--dropdown-input-wrapper:nth-child(2) {
  padding-top: 5px;
}

.filter__item--dropdown-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter__item--dropdown-input-title, .filter__item--dropdown-input {
  color: #212a33;
    font-size: 14px;
    font-weight: 600;
}

.filter__item--dropdown-input {
  border: 1px solid #c3c7c9;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
}

.filter__item--dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter__item--dropdown-list-el {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 0;
  /* transform: scale(1); */
  transition: 0.3s ease-in-out all;
}

.filter__item--dropdown-list-el:hover {
  background: rgba(117, 178, 239, 0.1);
  border-radius: 8px;
  /* transform: scale(1.03); */
  transition: 0.3s ease-in-out all;
}

.option__text {
  color: #212a33;
  font-size: 14px;
  font-weight: 500;
}

.option__country {
  color: #adb7c0;
}

.option__text-bold {
  font-weight: 500;
}

.option__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option__radio + .option__text::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid #c3c7c9;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.option:hover .option__radio + .option__text::before {
  border-color: #dbe4ed;
  box-shadow: 0 0 0 4px rgba(49, 142, 236, 0.1);
  transition: all 0.3s ease;
}

.option__radio:checked + .option__text::before {
  border-color: #318eec;
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  box-shadow: 0 0 0 4px rgba(49, 142, 236, 0.2);
  transition: all 0.3s ease;
}

.filter__item--dropdown-submit-button {
    margin: 0 auto;
    display: flex;
    width: 80%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px ;
    justify-content: center;
    align-items: center;
    gap: var(--Space-none, 0);
    border-radius: 22px;
    background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    transform: scale(1);
    filter: brightness(1);
    transition: 0.3s ease-in-out all;
}

.filter__item--dropdown-submit-button:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    transition: 0.3s ease-in-out all;
}

@media (min-width: 1200px) {
  .meal__dropdown.open {
    left: -25%;
    width: 150%;
    max-width: 150%;
  }
}

.filter__item:hover {
background-color: rgb(232, 237, 242);
transition-property: all;
transition-duration: 200ms;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 
}

/*!******************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/shared/ui/filter-tourists/ui/FilterTourists.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************/
.FilterTourists_tourists__rtj6W {
  position: relative;
  border-radius: 22px;
  background: #f3f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
}

.FilterTourists_tourists__label__nUsnY {
  color: #adb7c0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.FilterTourists_tourists__value__BE3it {
  color: #212a33;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.FilterTourists_dropdown__LWPm_ {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  padding: 20px;
  background: #f3f7fa;
  border-radius: 16px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px) scale(1);
  transition:
    transform 0.3s ease-in-out,
    margin 0.3s ease-in-out;
}

.FilterTourists_dropdown__LWPm_.FilterTourists_open__LG_fp {
  overflow: visible !important;
  width: 150%;
  overflow-y: auto;
  max-height: 350px;
  opacity: 1;
  transform: translateY(0) scale(1.01);
  transition:
    transform 0.3s ease-in-out,
    margin 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    z-index 0.1s ease;
}

.FilterTourists_section__HU5ov {
  margin-bottom: 20px;
  position: relative;
}

.FilterTourists_sectionTitle__m00ka {
  color: #212a33;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.FilterTourists_radioGroup__YxwUj {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.FilterTourists_radioLabel__5YkMK {
  cursor: pointer;
}

.FilterTourists_radioInput__1_uOc {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.FilterTourists_radioBtn__zI4n9 {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8edf2;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #212a33;
  transform: scale(1);
  transition: all 0.3s ease;
}

.FilterTourists_radioBtn__zI4n9:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
  transition: all 0.3s ease;
}

.FilterTourists_radioBtnActive__bYQxq {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  color: white;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.FilterTourists_childItem__ziZxF {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #e8edf2;
  border-radius: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #212a33;
}

.FilterTourists_removeBtn___DoxZ {
  background: none;
  border: none;
  color: #adb7c0;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.FilterTourists_removeBtn___DoxZ:hover {
  color: #ff4d4d;
}

.FilterTourists_addChild__UCcfd {
  margin-top: 12px;
  position: relative;
}

.FilterTourists_select__iHRhu {
  position: relative;
  width: 100%;
  padding: 0 20px;
  /* border: 1px solid #e8edf2; */
  border-radius: 12px;
  font-size: 14px;
  color: #212a33;
  /* box-shadow: 0px 0px 1px 1px #e8edf2; */
  box-shadow: 0px 1px 5px 0px #dbdbdb;
  cursor: pointer;
  transform: scale(1);
  transition: 0.1s ease-in-out all;
}

.FilterTourists_select__iHRhu:hover {
  transform: scale(1.01);
  transition: 0.1s ease-in-out all;
}

.FilterTourists_childDropdown__d7yw5 {
  /* Если нужно переопределить ширину/высоту дропдауна для детей */
  width: 100%;
  position: absolute;
  top: unset;
  bottom: 100%;
  left: 0;
  z-index: 10000;
  margin-bottom: 10px;
}

.FilterTourists_section__HU5ov::-webkit-scrollbar,
.FilterTourists_childOptions__77HSR::-webkit-scrollbar {
  width: 4px; /* Ширина скроллбара */
}

/* Дорожка скроллбара */
.FilterTourists_section__HU5ov::-webkit-scrollbar-track,
.FilterTourists_childOptions__77HSR::-webkit-scrollbar-track {
  background: white;
  width: 10px;
  border-radius: 10px; /* Скругляем углы дорожки */
}

/* Ползунок скроллбара */
.FilterTourists_section__HU5ov::-webkit-scrollbar-thumb,
.FilterTourists_childOptions__77HSR::-webkit-scrollbar-thumb {
  background: #adb7c0;
  border-radius: 10px; /* Скругляем углы ползунка */
}

/* При наведении на ползунок */
.FilterTourists_section__HU5ov::-webkit-scrollbar-thumb:hover,
.FilterTourists_childOptions__77HSR::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.FilterTourists_childOptions__77HSR {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 200px;
  overflow: auto;
}

.FilterTourists_childOption__QUCFl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.FilterTourists_childOption__QUCFl:hover {
  background: rgba(49, 142, 236, 0.1);
  border-radius: 8px;
}

.FilterTourists_childText__QDABn {
  color: #212a33;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .FilterTourists_dropdown__LWPm_.FilterTourists_open__LG_fp {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .FilterTourists_dropdown__LWPm_.FilterTourists_open__LG_fp {
    width: 200%;
  }
  .FilterTourists_home__YL5zE.FilterTourists_open__LG_fp {
    width: 100%;
  }

  .FilterTourists_childDropdown__d7yw5 {
    top: 100%;
    bottom: unset;
    left: 0;
    margin-top: 10px;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/shared/ui/filter-select/ui/sort-dropdown/SortDropdown.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************/
.SortDropdown_list__okRLp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.SortDropdown_option__DJA_S {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #212a33;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.SortDropdown_option__DJA_S:hover {
  background: rgba(49, 142, 236, 0.08);
  
}

.SortDropdown_option__DJA_S.SortDropdown_active__Jdr66 {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  color: white;
  box-shadow: 0 2px 8px rgba(49, 142, 236, 0.2);
}

.SortDropdown_text__Tm5K8 {
  flex: 1;
}

.SortDropdown_arrow__0pwkt {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.SortDropdown_option__DJA_S.SortDropdown_active__Jdr66 .SortDropdown_arrow__0pwkt {
  opacity: 1;
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/widgets/cruises-filter/ui/Filter.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
.Filter_filter__tabs__8XzkH {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.Filter_filter__tabs__8XzkH::-webkit-scrollbar {
  display: none;
}

.Filter_filter__5Cln_ {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.Filter_filter__wrapper__7ziYv {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  padding: 6px;
  border-radius: 28px;
  border: 1px solid #00D5FF;
}

.Filter_filter__param__FpqgI {
  position: relative;
  border-radius: 22px;
  background: #f3f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
}

.Filter_filter__param_label__T0JvJ {
  color: #adb7c0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.Filter_filter__button__qJ7Km {
  display: flex;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 28px 0;
  justify-content: center;
  align-items: center;
  gap: var(--Space-none, 0);
  border-radius: 22px;
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s ease-in-out;
}

.Filter_filter__button__qJ7Km:hover {
  filter: brightness(1.1);
}

.Filter_filter__footer__5P0RH {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.Filter_filter__footerWrapper__dbfkJ {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.Filter_filter__all__nlE8_ {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  border-radius: 16px;
  background: rgba(243, 247, 250, 1);

  color: rgba(33, 42, 51, 1);
  font-style: Bold;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  transition: 0.3s ease-in-out all;
}

.Filter_filter__all__nlE8_:hover {
  background-color: rgb(232, 237, 242);
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.Filter_filter__count__W7RXP {
  color: rgba(173, 183, 192, 1);
  font-style: Bold;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

/* Блок «Цена» в футере фильтра круизов */
.Filter_priceDropdown__yz4HC {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px;
}

.Filter_priceDropdown__row__xpAKk {
  display: flex;
  gap: 12px;
}

.Filter_priceDropdown__group__X_R4g {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.Filter_priceDropdown__label__6mMpA {
  font-size: 12px;
  font-weight: 600;
  color: #212a33;
}

.Filter_priceDropdown__input__xuxit {
  background: #fff;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  font-size: 14px;
  color: #212a33;
  outline: none;
  transition: border-color 0.15s;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.Filter_priceDropdown__input__xuxit::-webkit-outer-spin-button,
.Filter_priceDropdown__input__xuxit::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.Filter_priceDropdown__input__xuxit:focus {
  border-color: #00d5ff;
}

.Filter_priceDropdown__apply__0gg9l {
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(49, 142, 236, 0.2);
  transition: all 0.25s ease;
  outline: none;
}

.Filter_priceDropdown__apply__0gg9l:hover {
  opacity: 0.9;
}

.Filter_tab__DaE1d {
  border-radius: 16px;
  background: #f3f7fa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  cursor: pointer;
  transform: scale(1);
  transition: 0.3s ease-in-out all;

  color: #212a33;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
  line-height: 120%;
}

.Filter_tab__DaE1d.Filter_active__6HWy1 {
  color: white !important;
  background: var(--blue-gr);
}

.Filter_mobileFiltersContent__pxBMF {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Filter_mobileApplyButton__2yLh_ {
  margin-top: 0;
  flex: 1;
  padding: 14px 0;
  min-height: 48px;
  font-size: 16px;
}

.Filter_mobileSelectLabel__VT1Y4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.Filter_mobileButtonsRow__JqiqL {
  margin-top: 4px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.Filter_mobileResetButton__nrYXH {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 14px 0;
  border-radius: 22px;
  background: #e8edf2;
  color: #5f6b76;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.Filter_mobileResetButton__nrYXH:hover {
  background: #dbe3ea;
  color: #212a33;
}

@media (max-width: 1200px) {
  .Filter_filter__wrapper__7ziYv {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .Filter_filter__wrapper__7ziYv {
    grid-template-columns: 1fr;
  }

  .Filter_mobileFiltersContent__pxBMF .filter__item--select {
    width: 100%;
  }

  .Filter_mobileFiltersContent__pxBMF .Filter_filter__param__FpqgI {
    width: 100%;
  }

  .Filter_filter__footer__5P0RH {
    justify-content: space-between;
    gap: 10px;
    flex-direction: row;
    overflow: hidden;
  }

  .Filter_filter__footerWrapper__dbfkJ {

    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .Filter_filter__footerWrapper__dbfkJ::-webkit-scrollbar {
    display: none;
  }

  .Filter_tab__DaE1d {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .Filter_filter__wrapper__7ziYv {
    grid-template-columns: 1fr;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./node_modules/swiper/swiper.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./node_modules/swiper/modules/autoplay.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/

/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./node_modules/swiper/modules/effect-cards.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/*!************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/widgets/tour-card-swiper/ui/TourCardSwiper.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************/
.card__swiper-wrapper {
  position: relative;
  grid-column: 1/6;
}

.card__swiper-button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 2;
  background-color: white;
  border-radius: 17px;
  box-shadow: 0 0 14px 0 rgba(33, 42, 51, 0.07);
}

.button-next {
  right: 0;
  transform: translate(50%, -50%);
}

.button-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.card__swiper {
  border-radius: 18px;
  overflow: hidden;
}

.card__swiper-slide {
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.card__swiper__image {
  height: 190px;
  width: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.card__swiper__image:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/*!************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/entities/cruise-card/ui/BackAndForth/BackAndForth.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************/
.BackAndForth_back_and_forth__l9agD {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px;
  margin-top: 5px;
  border-radius: 22px;
  background: rgba(243, 247, 250, 1);
}

.BackAndForth_date__TdJUf {
  width: 100%;
  max-width: 100px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 1);
}

.BackAndForth_date__value__hJEIN {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.BackAndForth_date__time__zPkWh {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
}

.BackAndForth_date__info__viJ0d {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.BackAndForth_date__info_text__ON2UD {
  font-weight: 500;
  font-style: Bold;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
}

.BackAndForth_date__info_cabin__tSMHq {
    font-weight: 600;
}

.BackAndForth_nights__DKuLB {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.BackAndForth_strip__p92C6 {
  height: 2px;
  border-radius: 22px;
  background: var(--unnamed, rgba(173, 183, 192, 1));
  opacity: 0.4;
  width: 100%;
}

.BackAndForth_trip__saPvX {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}

.BackAndForth_trip__text__1iYBN {
  color: rgba(173, 183, 192, 1);
  font-style: Bold;
  font-size: 10px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 576px) {
    .BackAndForth_back_and_forth__l9agD {
        flex-direction: column;
    }

    .BackAndForth_date__TdJUf {
        width: 65%;
        max-width: 100%;
    }



    .BackAndForth_trip__text__1iYBN, .BackAndForth_date__info_text__ON2UD {
        max-width: 80%;
        margin: 0 auto;
    }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/entities/cruise-card/ui/CruiseCard.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************/
.CruiseCard_card__lyWVZ {
  border-radius: 28px;
  border: 1px solid #e8edf2;
  background: #fff;
}

.CruiseCard_card__wrapper__dc7cv {
  position: relative;
  z-index: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  padding: 10px 20px 10px 10px;
  transition: 0.3s ease-in-out all;
}

.CruiseCard_card__info__EqpfX {
  grid-column: 6/13;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.CruiseCard_card__info_wrapper__BSDl1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.CruiseCard_card__hero__tNM1v {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.CruiseCard_card__hero_info__vE_OC {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}

.CruiseCard_card__hero_info_text__moI0N {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
}

.CruiseCard_card__hero_info_link___mgrq {
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
}

.CruiseCard_card__hero_info_link___mgrq:hover {
  background: linear-gradient(303deg, #00d5ff -0.67%, #318eec 81.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease-in-out all;
}

.CruiseCard_card__hero_title__TqcCF {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.CruiseCard_card__title__JNjUK {
  color: #212a33;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
}

.CruiseCard_card__rating__21SSj {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 3px 10px;
  border-radius: 8px;
  background: linear-gradient(
    -10.83deg,
    rgba(49.17, 142.49, 235.82, 1),
    rgba(0, 213.49, 255, 1)
  );
}

.CruiseCard_card__rating_value__cRiiK {
  color: rgba(255, 255, 255, 1);
  font-family: "Montserrat", sans-serif;
  font-style: Black;
  font-size: 12px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.CruiseCard_card__info_wrapper__BSDl1 .CruiseCard_card__like_icon__cCJBt {
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1000;
}

.CruiseCard_card__like_icon__cCJBt {
  color: transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
}

.CruiseCard_card__like_icon__cCJBt:hover,
.CruiseCard_card__like_icon__cCJBt.CruiseCard_active__PR0Ws {
  color: red;
  stroke-opacity: 0;
  transition: 0.3s ease-in-out all;
}

.CruiseCard_card__info_body__LVHgb {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.CruiseCard_card__button__MGzJs {
  background: linear-gradient(302.5deg, #318eec -0.67%, #00d5ff 81.88%);
  padding: 26px 20px;
  border-radius: 22px;

  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  font-style: Bold;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.CruiseCard_card__button__MGzJs:hover {
  filter: brightness(1.1);
}

.CruiseCard_card__info_footer___XDNU {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.CruiseCard_card__info_buttons_row__0XhcN {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.CruiseCard_card__info_rating__D_rIM {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.CruiseCard_rating__mark__ViRxc {
  padding: 7px;
  border-radius: 10px;
  background: linear-gradient(
    142.21deg,
    rgb(113, 215, 102),
    rgb(83, 185, 72) 100%
  );
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s ease-in-out all;
  width: -moz-max-content;
  width: max-content;
}

.CruiseCard_rating__mark__ViRxc:hover {
  /* background: linear-gradient(108deg, #53B948 0.44%, #71D766 81.79%); */
  filter: brightness(1.1);
  transition: 0.3s ease-in-out all;
}

.CruiseCard_rating__value__GvL_a {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.CruiseCard_rating__count__hxAUI {
  color: #adb7c0;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.CruiseCard_card__info_row__PHY6W {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.CruiseCard_card__info_steamship_plate__CDEA0 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border-radius: 10px;
  background: rgba(243, 247, 250, 1);
}

.CruiseCard_card__info_steamship_name__HjhEO {
  color: rgba(33, 42, 51, 1);
  font-family: "Montserrat", sans-serif;
  font-style: Bold;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

.CruiseCard_card__info_price_block__2sg42 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.CruiseCard_card__price__h15hF {
  color: #212a33;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}

.CruiseCard_card__more_btn__6FZBl {
  display: flex;
  width: 28px;
  height: 28px;
  /* padding: var(--Space-12, 12px) var(--Space-16, 16px) 12px var(--Space-16, 16px); */
  justify-content: center;
  align-items: center;
  gap: var(--Space-none, 0);
  aspect-ratio: 1/1;
  border-radius: 22px;
  background: linear-gradient(303deg, #318eec -0.67%, #00d5ff 81.88%);
  transition:
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  outline: none;
  will-change: transform, background;
}

.CruiseCard_card__more_btn__6FZBl:hover {
  background: linear-gradient(303deg, #212a33 -0.67%, #212a33 81.88%);
}

.CruiseCard_card__more_btn__6FZBl.CruiseCard_active__PR0Ws {
  background: linear-gradient(303deg, #212a33 -0.67%, #212a33 81.88%);
  transform: rotate(180deg);
}

.CruiseCard_card__more_btn_icon__r3lPn {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1200px) {
  .CruiseCard_card__wrapper__dc7cv {
    padding: 10px;
  }

  .CruiseCard_card__swiper_wrapper__dEh_k,
  .CruiseCard_card__info__EqpfX {
    grid-column: 1/13;
  }

  

  .CruiseCard_ticket__info__WGPGI,
  .CruiseCard_ticket__details__NIP0h {
    grid-column: 1/13;
  }

  .CruiseCard_ticket__flight__GJ_b3 {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .CruiseCard_card__swiper_wrapper__dEh_k,
  .CruiseCard_card__info__EqpfX {
    max-width: 100dvw;
    width: 100%;
  }

  .CruiseCard_card__info_wrapper__BSDl1 {
    flex-direction: column;
  }

  .CruiseCard_card__hero__tNM1v {
    width: 100%;
  }

  .CruiseCard_card__hero_title__TqcCF {
    width: 100%;
  }

  .CruiseCard_card__like_icon__cCJBt {
    min-height: 35px;
    min-width: 35px;
  }

  .CruiseCard_card__hero-point__2_Xoq {
    display: none;
  }

  .CruiseCard_card__info_body__LVHgb {
    flex-direction: column;
    gap: 15px;
  }

  .CruiseCard_card__button__MGzJs {
    width: 100%;
  }

  .CruiseCard_card__info_footer___XDNU {
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
  }

  .CruiseCard_card__info_row__PHY6W {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .CruiseCard_card__wrapper__dc7cv {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .CruiseCard_card__hero__tNM1v {
    
  }

  .CruiseCard_card__title__JNjUK {
    max-width: 90%;
    flex-shrink: 0;
    white-space: normal;
  }

  .CruiseCard_card__rating__21SSj {
    padding: 2px 5px;
  }

  .CruiseCard_card__info-buttons-row__EZcGU {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/widgets/loader/ui/Loader.module.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
.Loader_loader__wrapper__W6_8Y {
    position: relative;
    max-width: 100dvw;
    width: 100%;
    height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    overflow: hidden;
}

.Loader_loader__section__4f2QN {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  overflow: hidden;
}

.Loader_loader__inline___oJUA {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  min-height: 56px;
}

.Loader_loader__screen___Acdu {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  overflow: hidden;
}

.Loader_loader__section__4f2QN::before,
.Loader_loader__screen___Acdu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 400% 100%;
  animation: Loader_shine__1bl8i 6s infinite linear;
  z-index: 1;
}

.Loader_loader__section__4f2QN::after,
.Loader_loader__screen___Acdu::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.1) 70%,
    transparent 100%
  );
  animation: Loader_breathe__vxK1r 8s infinite ease-in-out;
  z-index: 2;
  pointer-events: none;
}

.Loader_loader__section__4f2QN .Loader_spinner__0gYYr,
.Loader_loader__screen___Acdu .Loader_spinner__0gYYr,
.Loader_loader__inline___oJUA .Loader_spinner__0gYYr {
  z-index: 3;
}


.Loader_loader__wrapper__W6_8Y::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 400% 100%;
  animation: Loader_shine__1bl8i 6s infinite linear;
  z-index: 1;
}

.Loader_loader__wrapper__W6_8Y::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.1) 70%,
    transparent 100%
  );
  animation: Loader_breathe__vxK1r 8s infinite ease-in-out;
  z-index: 2;
  pointer-events: none;
}

@keyframes Loader_shine__1bl8i {
  0%   { background-position: 400% 0; }
  100% { background-position: -400% 0; }
}

@keyframes Loader_breathe__vxK1r {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.05); }
}

.Loader_spinner__0gYYr {
  z-index: 10000000;
  width: 100px;
  height: 100px;
  margin: auto;
  max-width: 128px;
  max-height: 128px;
  margin: auto;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #00D5FF;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: Loader_rotation__uX9Sk 1s linear infinite;
}

.Loader_spinner_sm__zc6DK {
  width: 28px;
  height: 28px;
  max-width: 32px;
  max-height: 32px;
  border-top-width: 3px;
}

.Loader_spinner_lg__aKbgl {
  width: 120px;
  height: 120px;
}


@keyframes Loader_rotation__uX9Sk {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

@media (max-width: 1024px) {
  .Loader_spinner__0gYYr:not(.Loader_spinner_sm__zc6DK) {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .Loader_spinner__0gYYr:not(.Loader_spinner_sm__zc6DK) {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .Loader_spinner__0gYYr:not(.Loader_spinner_sm__zc6DK) {
    width: 56px;
    height: 56px;
  }
}
/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/fsd-pages/cruises/ui/Cruises.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************/
.Cruises_results__XjuJi {
  position: relative;
}

.Cruises_results_loading__QQ1hk {
  min-height: 500px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  overflow: hidden;
}

.Cruises_results_loading__QQ1hk::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 100%
  );
  background-size: 400% 100%;
  animation: Cruises_cruises-shine__eoJEG 6s infinite linear;
  z-index: 1;
}

.Cruises_results_loading__QQ1hk::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.1) 70%,
    transparent 100%
  );
  animation: Cruises_cruises-breathe__oj_GD 8s infinite ease-in-out;
  z-index: 2;
  pointer-events: none;
}

@keyframes Cruises_cruises-shine__eoJEG {
  0%   { background-position: 400% 0; }
  100% { background-position: -400% 0; }
}

@keyframes Cruises_cruises-breathe__oj_GD {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.05); }
}

.Cruises_list__amlhx {
  list-style: none;
  margin: 0;
  padding: 0;
}

.Cruises_error__02WiP,
.Cruises_loading__mubfs {
  margin: 1rem 0;
  color: var(--color-text-secondary, #666);
}

.Cruises_empty__FfVXl {
  margin: 2rem 0;
  text-align: center;
}

.Cruises_emptyTitle__QwY6f {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text, #212a33);
  margin: 0 0 0.5rem;
}

.Cruises_emptySub__Zf43L {
  font-size: 1.125rem;
  color: var(--color-text-secondary, #666);
  margin: 0;
}

.Cruises_error__02WiP {
  color: var(--color-error, #c00);
}

