@font-face {
  font-family: Minerva;
  src: url('../fonts/Minerva.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
/* stylelint-disable */
:root {
  --font-paragraph: Synonym-Regular;
  --font-label: Synonym-Medium;
  --font-bold: Satoshi-Bold;
  --font-primary: Minerva;
  --color-secondary: #576473;
  --color-brand: #05274d;
  --color-main: #002045;
  --background-secondary: #d5e2ed;
  --background-brand: #11284C;
  --background-main: #f5f5f2;
}
/* stylelint-enable */

/* ========================================
   BASE STYLES
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  background: var(--background-main);
}

.container {
  margin-inline: auto;
}

/* ========================================
   HEADER
   ======================================== */
.rooms-header__container {
  margin-bottom: 21px;
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.rooms-header__hamburger {
  border-radius: 50%;
  background-color: var(--background-brand);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 23px 18px;
  position: absolute;
  left: -3%;

  @media (max-width: 1600px) {
    left: 12px;
  }
}

.rooms-header__hamburger span {
  height: 1px;
  width: 24px;
  background-color: white;
}

/* ========================================
   ROOMS LAYOUT
   ======================================== */
.rooms__container {
  margin-inline: auto;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.rooms__aside {
  min-width: 327px;
  border-radius: 0px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/*
.rooms__aside .rooms__form-inner fieldset:last-of-type {
  padding-bottom: 34px;
}*/


.rooms__aside .rooms__form-inner {
 padding-bottom: 20px;
  overflow: auto;
  height: calc(100vh - 100px);
  scrollbar-width: none;
  position:relative
}

.rooms__aside .rooms__form-inner::-webkit-scrollbar {
  width: 0;
}

/* ========================================
   FILTER SECTIONS
   ======================================== */
   


.rooms-filter--header {
  background: white;
  padding: 24px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--background-brand) 30%, transparent);
}

.rooms-filter__guests {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02rem;
  color: var(--color-secondary);
}

.rooms-filter__label {
  color: var(--color-main);
  padding: 12px 0;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rooms-filter__select {
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02rem;
  color: var(--color-secondary);
  text-decoration: none;
/* margin-top: 12px;
  padding-bottom: 9px;*/
  display: block;
  width: fit-content;
  margin-inline: auto;
}
.rooms-filter__select:after,.rooms-filter__select:before {bottom:-2px}

.rooms-filter__select:hover {
  color: var(--color-main);
}

.rooms-filter__select::before {
  background: var(--background-brand);
}

.rooms-filter__select::after {
  background: var(--background-brand);
}

.rooms-filter__title {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-main);
  color: var(--color-secondary);
  padding-top: 34px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}



.rooms-filter__btn-reset {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  gap: 4px;
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.02rem;
  color: var(--color-secondary);
  position: absolute;
  right: 0;
}

.rooms-filter__attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 8px;
  padding-top: 36px;
}

.rooms-filter__attribute {
  display: flex;
  gap: 6px;
  padding: 13px 20px 13px 16px;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  border: 1px solid white;
  transition: background-color 0.2s ease, border 0.2s ease;
}

.rooms-filter__attribute .icon {
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: flex;
}

.rooms-filter__attribute-label {
  transition: color 0.2s ease;
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.02rem;
  color: var(--color-secondary);
}

.rooms-filter__attribute-disable {
  display: none;
}

.rooms-filter__button {
  background-color: var(--color-main);
  color: white;
  font-family: var(--font-paragraph);
  font-weight: 700;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-block: 17.5px;
  border-radius: 100px;
  width: 100%;
  border: 0;
  cursor: pointer;
  display: block;
}

.rooms-filter__attribute:hover {
  background: var(--background-secondary);
  border-color: var(--background-secondary);
}

.rooms-filter__attribute:hover .icon {
  opacity: 1;
}

.rooms-filter__attribute:hover .rooms-filter__attribute-label {
  color: var(--color-main);
}

.rooms input,.rooms i {  caret-color: transparent!important;}

.rooms-filter__attribute input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rooms-filter__attribute:has(input[type='checkbox']:checked) {
  border: 1px solid var(--background-secondary);
  padding-right: 11px;
  background-color: var(--background-secondary);
}

.rooms-filter__attribute:has(input[type='checkbox']:checked) .rooms-filter__attribute-disable {
  display: flex;
}

.rooms-filter__attribute:has(input[type='checkbox']:checked) .rooms-filter__attribute-label {
  color: var(--color-main);
}

.rooms-filter__attribute:has(input[type='checkbox']:checked) .icon {
  opacity: 1;
}


/* ========================================
   DATE AND GUEST SELECTION SECTION
   ======================================== */
.date-section {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.guest-info {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.date-header {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 1rem;
}

.date-selector {
  color: #666;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.875rem;
}

/* Filter titles */
.filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.filter-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 1.5rem;
}

/* Destination options */
.destination-options {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 20px 10px 0px;
}

.destination-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 2px;
  border-bottom: 1px solid color-mix(in srgb, var(--background-brand) 30%, transparent);
}

.destination-option label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding-bottom: 6px;
  flex: 1;
}

.destination-option input[type='checkbox'] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  appearance: none;
  border: 1px solid var(--color-main);
  border-radius: 2px;
  position: relative;
  background: white;
  transition: all 0.2s ease;
}

/*.destination-option input[type='checkbox'].pState {border-radius:10px} */


.destination-option input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.12417 9.69833L1.30167 5.87583L0 7.16833L5.12417 12.2925L16.1242 1.2925L14.8317 0L5.12417 9.69833Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.destination-option input[type='checkbox']:checked {
  background: var(--color-main);
  border-color: var(--color-main);
}

.destination-option__title,
.destination-option__checkbox {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  flex: 1;
  color: var(--color-secondary);
}

.destination-option__checkbox-inner {
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.02rem;
}

.arrow-down {
  color: #666;
  font-size: 0.75rem;
  cursor: pointer;
  text-align: right;
  padding: 0 10px 6px 20px;
}

.arrow-down svg {
  transition: transform 0.2s ease;
}

.arrow-down.arrow-down--active {
  svg {
    transform: rotate(180deg);
  }
}

.destination-submenu {
  margin-left: 20px;
  margin-top: 0px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.destination-option--child {
  padding-left: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* ========================================
   ROOM CARDS
   ======================================== */
.rooms__cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  @media (min-width: 570px) {
    gap: 8px;
  }

  @media (min-width: 1439px) {
    max-width: 1066px;
  }
}

.room__card {
  background: white;
  overflow: hidden;
  /*box-shadow: 0 2px 8px rgb(0 0 0 / 10%);*/
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  max-height: 512px;
  height: 100%;

  &::after {
    content: '';
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 60%) 100%) /*linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 80%) 100%)*/;
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
  }
}

.room__card-content {
  position: absolute;
  transform: translateY(-15px);
  margin-bottom: 24px;
  z-index: 1;
  bottom: -15px;
  left: 24px;
  right: 24px;
  color: white;
}

@media (min-width: 768px) or (hover: none) {
  .room__card-content {
    margin-bottom: 0;
    transform: translateY(70%);
    transition: all 0.3s ease-in-out;
  }

  .room__card:hover .room__card-content {
    transform: translateY(-15px);
    margin-bottom: 24px;
  }

  /* Hover effect with gradient overlay */
  .room__card:hover .room__card-img {
    filter: brightness(0.8);
    position: relative;
  }

  .room__card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 0%) 100%);
    pointer-events: none;
  }
}

.room__card-header {
  position: absolute;
  bottom: 100%;
}

.room__card-img {
  aspect-ratio: 0.68 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.room__card-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  margin-bottom: 2px;
}

.room__card-location {
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02rem;
  margin: 0;
}

.room__card-badges {
  position: absolute;
  top: 16px;
  right: 9px;
  display: flex;
  align-items: center;
  justify-content: right;
}

.room__card-badge {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid white;
  color: white;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02rem;
}

.room__card-description {
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.02rem;
  margin: 0;
  max-height:4em;
  overflow:hidden
}

.room__card-price {
  text-transform: capitalize;	
  background: white;
  border-radius: 25px;
  padding: 8px 10px;
  margin-top: 18px;
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02rem;
  color: var(--color-main);
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
  font-family: var(--font-label);
}

.room__card-price__available {
  color: var(--color-secondary);
  font-weight: 400;
}

.room__card-price__range {
  color: var(--color-main);
  font-weight: medium;
}

.room__card-mobile {
  margin-top: 24px;
}

.room__card-links {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.room__card-link {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  padding-bottom: 9px;
  text-decoration: none;
  position: relative;
}

.room__card-link::before {
  background: white;
}

.room__card-link::after {
  background: white;
}

.room__card-link:hover {
  color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (min-width: 1439px) {
  .rooms__container {
    padding: 0;
    max-width: 1380px;
  }

  .rooms-header__container {
    margin-bottom: 75px;
  }
}

@media (max-width: 1000px) {
  .rooms__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rooms__aside {
    position: static;
    order: 2;
  }

  .rooms__cards {
    order: 1;
  }
}

@media (max-width: 768px) {
  .rooms__container {
    gap: 0;
  }

  .rooms__cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .rooms__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .room__card {
    max-width: 100%;
  }

  .room__card-mobile {
    display: block;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
.flex-break {
  flex-basis: 100%;
  height: 14px;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.room__card:focus,
.attribute-btn:focus,
.date-selector:focus {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/* ========================================
   MOBILE CONTROLS
   ======================================== */
.rooms__mobile-controls {
  display: none;
  padding: 0;
  gap: 10px;
  margin-bottom: 20px;
}

.rooms__mobile-date-btn {
  flex: 1;
  background: white;
  border: none;
  border-radius: 25px;
  padding: 0;
  font-family: Synonym, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-main);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 50px;
}

.rooms__mobile-date-btn * {
  padding: 12px 6px;
}

.rooms__mobile-date-btn:active {
  background-color: var(--background-secondary);
}

.rooms__mobile-date-btn-label {
  flex: 1;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 11px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rooms__mobile-date-btn-active {
  display: none;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.rooms__mobile-filter-btn {
  cursor: pointer;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  background-color: #fff;
  border-radius: 100px;
  padding: 13px 20px;
  border: 0;
  color: var(--color-main);
  height: 50px;
  width: 110px;
}

.rooms__mobile-filter-btn svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   MOBILE POPUP
   ======================================== */
@media (max-width: 1000px) /*@media (max-width: 991px)*/ {
  .rooms__mobile-controls {
    position: sticky;
    top: 21px;
    z-index: 2;
    display: flex;
    align-items: center;
  }

  .rooms__aside {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    z-index: 1000;
  }

  .rooms__aside.active {
    display: block;
  }

  .rooms__aside.active .rooms__form {
    display: flex;
  }

  .rooms__aside.active .rooms__form-inner {
    background: var(--background-main);
    x-padding-top: 24px;
    width: 100%;
    height: calc(100vh - 140px);
    overflow: auto;
    margin: auto;
  }

  .rooms__aside .rooms__form {
    overflow-y: auto;
    padding-top: 24px;
    transition: left 0.3s ease-out;
    width: 100%;
    height: 100%;
  }

  .rooms-filter__button-wrapper {
    padding: 15px 30px;
    background: #fff9;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .rooms-filter {
    padding-inline: 20px;
  }

  .rooms-filter--header {
    display: none;
  }

  .rooms__mobile-close-btn {
    display: none;
    margin-right: 20px;
  }

  .rooms__aside .rooms__mobile-close-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: auto;
    padding: 0;
    position: sticky;
    top: 20px;
    right:0px;
    z-index: 3;
    /*position:absolute*/
  }

/*  .rooms__aside .rooms__form-inner {position:relative}
  #room-destination-options {padding-top:55px}*/


  .rooms__aside .rooms__mobile-close-btn:hover rect:first-child {
    fill: var(--background-secondary);
  }

  .rooms__aside .rooms__mobile-close-btn svg {
    width: 64px;
    height: 50px;
  }
}

@media (min-width: 1000.1px) {
  .rooms__mobile-close-btn {
    display: none !important;
  }

  .rooms-filter__button {
    display: none;
    margin-top: 30px;
  }

  .rooms__mobile-controls {
    display: none !important;
  }

  .rooms__aside {
    position: sticky;
    top: 100px;
  }
}

/* ========================================
   CLEAR FILTERS BUTTON
   ======================================== */
fieldset:not(:has(input[type='checkbox']:checked)):not(:has(.rooms-filter__title[data-custom='true'])) .rooms-filter__btn-reset { /* stylelint-disable-line max-line-length */
  display: none;
}

fieldset:has(input[type='checkbox']:checked) .rooms-filter__btn-reset {
  display: inline-flex;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  font-family: var(--font-paragraph);
  position: relative;
  z-index: 10;
}

.footer__container {
  padding: 40px 0 100px;
  background-color: var(--color-main);
}

.footer__line {
  border-bottom: 1px solid white;
  opacity: 0.2;
}

.footer__line--blue {
  border-bottom: 1px solid var(--background-brand);
}

.footer__logo {
  display: block;
}

.footer__logo-image {
  width: 180px;
  height: auto;
  display: block;
}

.footer__menu {
  list-style-type: none;
  font-size: 16px;
  color: white;
  line-height: 16px;
  font-family: var(--font-paragraph);
  padding: 0;
  margin: 0;
}

.footer__menu li {
  margin-bottom: 10px;
}

.footer__menu li:last-of-type {
  margin-bottom: 0;
}

.footer__menu--blue {
  color: var(--background-brand);
}

.footer__separator {
  display: none;
  position: relative;
  opacity: 0.2;
}

.footer__separator::after {
  content: '|';
  margin: 0 1px;
}

.footer__phone {
  display: block;
  width: 100%;
  font-family: var(--font-label);
  font-size: 15px;
  letter-spacing: 1px;
  text-align: right;
}

.footer__copyright {
  display: block;
  font-family: var(--font-label);
  color: rgb(255 255 255 / 87%);
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.85;
}

@media (min-width: 1000px) {
  .footer__container {
    padding: 90px 0 100px;
  }

  .footer__logo {
    margin-bottom: 40px;
  }

  .footer__menu li {
    margin-bottom: 12px;
  }

  .footer__menu-item {
    display: inline;
  }

  .footer__separator {
    display: inline;
  }

  .footer__phone {
    text-align: left;
  }
}

/* ========================================
   FOOTER TOP
   ======================================== */
.footer-top {
  font-family: var(--font-paragraph);
  position: relative;
  z-index: 10;
}

.footer-top__container {
  padding: 40px 0;
  background-color: var(--color-brand);
}

.footer-top__title {
  font-family: var(--font-primary);
  color: var(--background-brand);
  letter-spacing: 0.4px;
  line-height: 30px;
  font-size: 28px;
}

.footer-top__title--white {
  color: white;
}

.footer-top__address {
  display: block;
  font-size: 15px;
  font-family: var(--font-paragraph);
  color: var(--background-brand);
}

.footer-top__phone {
  display: block;
  width: 100%;
  font-family: var(--font-label);
  font-size: 15px;
  letter-spacing: 1px;
  text-align: right;
}

@media (min-width: 1000px) {
  .footer-top__container {
    padding: 85px 0;
  }

  .footer-top__title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 2px;
    max-width: 450px;
  }

  .footer-top__phone {
    text-align: left;
  }
}

.footer-top__social {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.footer-top__social a {
  transition: all 0.3s ease;
}

.footer-top__social a:hover {
  opacity: 0.5;
}

.footer-top__social svg {
  fill: white;
}

.footer-top__menu {
  list-style-type: none;
  font-size: 16px;
  color: white;
  line-height: 16px;
  font-family: var(--font-paragraph);
  padding: 0;
  margin: 0;
}

.footer-top__menu li {
  margin-bottom: 10px;
}

.footer-top__menu li:last-of-type {
  margin-bottom: 0;
}

.footer-top__menu--blue {
  color: var(--background-brand);
}

.footer-top__line {
  border-bottom: 1px solid white;
  opacity: 0.2;
}

.footer-top__line--blue {
  border-bottom: 1px solid var(--background-brand);
}

.footer-top .email {
  width: 100%;
}

.footer-top .ajax-loader {
  display: none !important;
}

.footer-top button {
  align-self: flex-start;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .footer-top .email {
    width: unset;
  }
}

@media (min-width: 1000px) {
  .footer-top__menu li {
    margin-bottom: 12px;
  }

  .footer-top__menu-item {
    display: inline;
  }
}

/* ========================================
   FORMS
   ======================================== */
.form__item {
  background: #fff;
  border: 1px solid rgb(80 100 115 / 30%);
  border-radius: 0;
  color: var(--color-main);
  font: 15px var(--font-paragraph), sans-serif;
  height: 48px;
  padding: 10px;
  resize: none;
  width: 100%;
}

/* ========================
    TEST
 ========================== */
body:has(input[name='test_checkbox']:checked) .rooms__mobile-date-btn-label {
  display: none;
}

body:has(input[name='test_checkbox']:checked) .rooms__mobile-date-btn .rooms__mobile-date-btn-active {
  display: block;
}

.rooms__container:has(.rooms__aside input:checked) .rooms__mobile-filter-btn {
  background-color: var(--background-secondary);
}

#calendar-popup[open] .popup {
  display: flex;
}

.popup {
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 315px;
}

.popup p {
  text-align: center;
}

#popup-closer {
  border: none;
  background: none;
}

.rooms__cards.emptyCards:after {content:'There are no properties matching your Destination and Property Attributes selections'}
.rooms-filter__attributes { padding-top: 26px;}


@media (min-width: 1001px) {
.siteMULTI #avFormCont {min-height: 770px;margin-top: -380px;}
.rooms-filter__attribute {  padding: 13px 15px 13px 12px;gap:6px 3px}
.rooms {padding-top:20px}
}
#avFormHead >span{text-align:center;display:block}
#back2Hotels {margin-top:-9px;font-size: 15px;line-height: inherit;font-family: var(--font-family-base);display:block!important;line-height:42px}
#back2Hotels span {padding:0 0 10px 5px;}
#back2Hotels:before {cursor: pointer;width:30px;height:11px;content:' ';display:inline-block;  background-repeat: no-repeat;  background-position: center;  transform: rotate(180deg);background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2045.7%2016%22%20style%3D%22enable-background%3Anew%200%200%2045.7%2016%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22m45.7%208-8%208-.7-.7%206.8-6.8H0v-1h43.8L37%20.7l.7-.7%208%208z%22%20style%3D%22fill%3A%23002045%22%2F%3E%3C%2Fsvg%3E");}
.noPrice .room__card-price {display:none!important}
#hotelCodeTD .sbSelector,.destination-option__checkbox-inner,.destination-option__checkbox {text-transform: capitalize}
#hotelCodeTD .sbSelector>i {text-transform: none}
#tbtAv2Cont {display:none}
input.someCities  {background:#93abc6!important}
.destination-option--parent label span {color:var(--color-primary)}
/*circleModex.destination-option input.pState[type='checkbox'] {border-radius:50px;}*/
.destination-option input[type="checkbox"]:checked:after {width: 14px; height: 10px;}


@media (max-width:1000px) {
	.rooms-filter--header {display:block;background:transparent;padding:10px 20px;border-width:0 0 1px 0;border-color:rgba(87, 100, 115, 0.2)}
	body.siteMULTI #avFormHead>span, .rooms-filter--header:after {padding-top:20px;font-family: var(--font-additional-family-base);font-size: 20px;letter-spacing: 0.6px;}
	.rooms-filter--header:after     {content:'Filters';padding-top:20px;display:block}
	.rooms__aside.active .rooms__form-inner {position:fixed;top:0;left:0;right:0;bottom:0;height:100%;}
	.rooms-filter__label {border:none; border-radius:25px;font-family: var(--font-bold);  font-weight: 700;  font-size: 11px;  line-height: 12px;  letter-spacing: 1px;  text-transform: uppercase;width:200px;xborder:1px solid #bfc5cf;background:#fff	}
	#date-section-title {cursor:pointer}
	.rooms-filter__guests,.rooms-filter__select  {display:none}
	#avFormHead {padding-bottom:10px}
	td.pnk,td.p {background:#fff}
	.rooms__mobile-controls {margin-top:20px}
	.rooms-filter__title {color:#576473;font-weight:normal;padding-bottom:0;}#avFormCont label{font-size:16px}
	#destination-title.rooms-filter__title {padding-top:20px;}
	#tbtAv2Cont { position: fixed;  bottom: 0px; width:100%; height:80px;background:var(--background-main);display:block;padding-top:10px;} 
	#tbtTD a#tbtAv,#tbtAv2 {width:260px!important;margin:0 auto;display:block}
	.rooms-filter-attributes {padding-bottom:30px;}
	#mobile-aside-close>svg {display:none}
	#mobile-aside-close	{position:absolute;top:8px;right:0px;width: 42px;height: 42px;background-repeat: no-repeat;background-position: center;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 41.5381 41.5381'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23002045%3B%7D.cls-2%7Bfill:%23bfc5cf%3B%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='cls-1' points='28.901 13.344 28.194 12.637 20.769 20.062 13.344 12.637 12.637 13.344 20.062 20.769 18.957 21.874 12.637 28.194 13.344 28.901 20.769 21.476 21.874 22.581 28.194 28.901 28.901 28.194 21.476 20.769 28.901 13.344'/%3E%3Cpath class='cls-2' d='M20.769 41.5381A20.7691 20.7691 0 1 1 41.5381 20.769 20.7925 20.7925 0 0 1 20.769 41.5381Zm0-40A19.231 19.231 0 1 0 40 20.769 19.2526 19.2526 0 0 0 20.769 1.5381Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
	#mobile-aside-close:hover {transform: rotate(90deg);transition-delay: 0s;transition-duration: 0.3s;transition-property: all;transition-timing-function: ease}
}



#bobbyPop {position:fixed;top:0;left:0;right:0;bottom:0;background:#00000050;z-index:100000}
#bobbyPop>div {position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;padding:20px}
@media (min-width:510px)   {#bobbyPop>div {position:absolute;left:calc(50% - 250px);width:500px;top:calc(50% - 150px);height:300px;}}
#bobbyPop a.closeMsg {margin-left:auto;width:40px;height:40px;display:block;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 41.5381 41.5381'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23002045%3B%7D.cls-2%7Bfill:%23bfc5cf%3B%7D%3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='cls-1' points='28.901 13.344 28.194 12.637 20.769 20.062 13.344 12.637 12.637 13.344 20.062 20.769 18.957 21.874 12.637 28.194 13.344 28.901 20.769 21.476 21.874 22.581 28.194 28.901 28.901 28.194 21.476 20.769 28.901 13.344'/%3E%3Cpath class='cls-2' d='M20.769 41.5381A20.7691 20.7691 0 1 1 41.5381 20.769 20.7925 20.7925 0 0 1 20.769 41.5381Zm0-40A19.231 19.231 0 1 0 40 20.769 19.2526 19.2526 0 0 0 20.769 1.5381Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}