/* --------------------------- */
/* Modern Navigation Styling   */
/* --------------------------- */

.navbar__wrapper {
    width: 100%;
    padding: 5px 0;
    background: #003b46;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9999;
    transition: 0.3s ease;
}

/* Desktop Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.navbar__logo img {
    height: 56px;
    filter: brightness(0) invert(1);
    transition: 0.3s ease;
}

.navbar__close {
    display: none;
}

.navbar__overlay__header {
    display: none;
}

/* Links */
.navbar__links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar__backdrop {
    display: none;
}

.navbar__links .nav__link li {
    list-style: none;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    transition: 0.25s ease;
}

.navbar__links .nav__link li:hover {
    color: #c4dfe6;
}

.nav__dropdown {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10000;
}

.nav__dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.nav__dropdown__toggle i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.nav__dropdown__toggle[aria-expanded="true"] i {
    transform: rotate(-180deg);
}

.nav__dropdown__toggle:hover {
    color: #c4dfe6;
}

.nav__dropdown .hotels__list__wrapper {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: 480px;
    margin: 0;
    z-index: 9999;
}

.nav__dropdown .hotels__list__wrapper.active {
    display: block;
}

.nav__dropdown.open .hotels__list__wrapper {
    display: block;
}

.nav__mobile__heading {
    display: none;
}

.nav__dropdown .hotels__list__container {
    width: 100%;
    max-height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    box-shadow: 0px 4px 20px #21252950;
    border-radius: 1rem;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
}

/* Mobile Button */
.navbar__toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: none;
}

/* --------------------------- */
/* MOBILE NAVIGATION */
/* --------------------------- */

@media screen and (max-width: 768px) {

    .navbar__toggle {
        display: block;
    }

    .navbar__backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(2px);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    height: 100vh;
    max-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 64px 16px 28px;
    background: rgba(0, 59, 70, 0.96);
    backdrop-filter: blur(6px);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
        pointer-events: none;
    }

    .navbar__links .nav__link {
        width: 100%;
        display: block;
        padding: 14px 0;
        color: #ffffff;
        font-size: 18px;
        line-height: 1.4;
    }

    .navbar__links.active {
        display: flex;
        pointer-events: auto;
    }

    body.nav-open .navbar__links {
        display: flex;
        pointer-events: auto;
    }

    body.nav-open .navbar__backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .nav__dropdown {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav__dropdown__toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0 6px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.01em;
    }

  .nav__dropdown .hotels__list__wrapper {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    align-self: stretch;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: none;
    pointer-events: none;
  }

  .nav__dropdown .hotels__list__wrapper.active {
    display: block;
    pointer-events: auto;
  }

  .nav__dropdown .hotels__list__container {
    width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    padding: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e6e8eb;
    margin: 6px 12px 6px;
    pointer-events: auto;
  }

  .nav__dropdown .hotels__list__container::before {
    display: none;
  }

  .nav__mobile__heading {
    display: block;
    padding: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dff6fb;
    opacity: 0.75;
  }

  .mobile__hotel__panel__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 16px 14px;
    background: linear-gradient(135deg, #004b56 0%, #007a8b 100%);
    color: #ffffff;
    border-bottom: 1px solid #e6e8eb;
  }

  .mobile__hotel__panel__header .brand {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile__hotel__panel__header .subtitle {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
  }

  .mobile__hotel__list {
    display: flex;
    flex-direction: column;
  }

  .nav__dropdown .hotels__list__container .hotel__list_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f1f3f6;
    background: transparent;
    transition: background 0.15s ease, padding-left 0.15s ease;
  }

  .nav__dropdown .hotels__list__container .hotel__list_item:last-of-type {
    border-bottom: none;
  }

  .nav__dropdown .hotels__list__container .hotel__list_item .name {
    font-size: 14px;
    font-weight: 700;
    color: #0f6f7d;
    letter-spacing: 0.01em;
  }

  .nav__dropdown .hotels__list__container .hotel__list_item .country {
    font-size: 12px;
    font-weight: 600;
    color: #5d6b7a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

    .navbar__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        color: #fff;
        font-size: 16px;
        margin-left: auto;
        cursor: pointer;
    }

    .navbar__overlay__header {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-bottom: 4px;
    }

    .navbar__overlay__logo img {
        height: 54px;
        filter: brightness(0) invert(1);
    }

    .mobile__search {
        width: 90%;
    }

    .navbar__links .nav__link {
        width: 100%;
        text-align: left;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }
}

/* --------------------------------------- */
/* OLD HEADER STYLES (LEGACY - CAN BE REMOVED) */
/* --------------------------------------- */

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  transition: all 0.3s ease-in-out;
}

.solid__teal__primary {
  background-color: var(--clr-teal-primary);
}

.promotion__wrapper {
  display: none;
}

.disabled {
  display: none;
}

@media (max-width: 767px) {
  .promotion__wrapper {
    display: none !important;
  }
}

.nav__bar__wrapper {
  width: 100%;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.transparent__header .nav__bar__wrapper {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav__bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* .transparent__header .nav__bar {
    padding-top: 0rem;
    padding-bottom: 0rem;
} */

.nav__bar .logo {
  width: 85px;
  transition: all 0.3s ease-in-out;
  filter: brightness(0) invert(1);
}

.nav__bar .nav__links__element {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;

  gap: 0.2rem;
}

.nav__bar .nav__links__element .nav__link {
  color: var(--clr-white);
  font-size: var(--size-base);
  font-weight: 400;
  list-style: none;

  background-color: transparent;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;

  transition: all 0.3s ease-in-out;
}

.nav__bar .nav__links__element .nav__link:hover {
  color: var(--clr-black);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
}

.solid__teal__active .nav__bar .nav__links__element .nav__link {
  color: var(--clr-black);
}

.solid__teal__active .nav__bar .nav__links__element .nav__link:hover {
  color: var(--clr-black);
  background-color: var(--clr-teal-light);
}

header .search__form {
  display: none;
}

.mobile__search__bar {
  display: block;
}

.mobile__search__bar .search__form {
  background-color: var(--clr-white);
  display: block;

  padding: 0.8rem 0.5rem;

  transition: all 0.3s ease-in-out;
}

.mobile__search__bar .search__form .form {
  background-color: var(--clr-white);
  border-radius: 0.8rem;
  box-shadow: 0px 2px 12px #00000030;

  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;

  gap: 0.5rem;
  padding: 1rem 1rem;

  transition: all 0.3s ease-in-out;
}

.mobile__search__bar .search__form .form input {
  width: 100%;
  background-color: var(--clr-teal-light);
  border: none;
  border-radius: 0.6rem;

  padding: 0.8rem 1rem;
}

.mobile__search__bar .search__form .form .btn {
  color: var(--clr-black);
  font-weight: 300;
  background-color: var(--clr-teal-primary);
  border-radius: 0.6rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  padding: 0.5rem 1rem;
}

/* --------------------------------------- */
/* FIXED MOBILE SEARCH BAR STYLES START */
/* --------------------------------------- */

.mobile__search__bar__fixed.mobile__search__bar__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.mobile__search__bar__fixed .search__form {
  padding: 0rem 0rem;
}

.mobile__search__bar__fixed .search__form .form {
  border-radius: 0rem;
  box-shadow: 0px 4px 8px #00000030;

  gap: 0.5rem;
  padding: 1rem 1rem;
}

/* --------------------------------------- */
/* FIXED MOBILE SEARCH BAR STYLES END */
/* --------------------------------------- */

/* --------------------------------------- */
/* FIXED DESKTOP HEADER STYLES START */
/* --------------------------------------- */

.solid__teal__active .nav__bar .logo {
  width: 45px;
  filter: none;
}

.solid__teal__active {
  background: var(--clr-teal-primary);
  position: fixed;
  box-shadow: 0px 4px 8px #00000030;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.solid__teal__active .nav__bar {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.transparent__header .solid__teal__active .nav__bar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.fixed__header {
  position: fixed;
}

/* --------------------------------------- */
/* FIXED DESKTOP HEADER STYLES END */
/* --------------------------------------- */

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
  .nav__bar {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .header .search__form {
    display: block;
  }

  .mobile__search__bar {
    display: none;
  }

  .header .search__form .form {
    background-color: var(--clr-white);
    border-radius: 0.8rem;

    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;

    gap: 0rem;
    padding: 0.4rem 0.4rem;
  }

  .header .search__form .form input {
    width: 300px;
    border: none;
    border-radius: 0.6rem;

    padding: 0.5rem 0.7rem;
  }

  .header .search__form .form .btn {
    color: var(--clr-black);
    font-weight: 300;
    background-color: var(--clr-teal-primary);
    border-radius: 0.6rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding: 0.5rem 0.7rem;
  }

  .header .mobile__search__bar {
    width: 100%;
    background-color: var(--clr-white);

    padding: 0.5rem 2.5rem;
  }
}

/* lg */
@media (min-width: 1024px) {
  .header .search__form .form input {
    width: 400px;
    border: none;
    border-radius: 0.6rem;

    padding: 0.5rem 0.7rem;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* --------------------------------------- */
/* HEADER STYLES END */
/* --------------------------------------- */

/* --------------------------------------- */
/* SECTION TITLE STYLES START */
/* --------------------------------------- */

.section__title {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: start;
  gap: 0.5rem;
}

.section__title .title {
  color: var(--clr-1b1-black);
  font-size: var(--size-4xl);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section__title .underline {
  width: 60px;
  height: 3px;
  border: none;
  background: var(--clr-333-black);
  border-radius: 0;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .section__title .title {
    font-size: var(--size-5xl);
    font-weight: 600;
  }

  .section__title .underline {
    width: 80px;
    height: 3px;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* --------------------------------------- */
/* SECTION TITLE STYLES END */
/* --------------------------------------- */

/* --------------------------------------- */
/* FOOTER STYLES START */
/* --------------------------------------- */

.footer {
  background: #003b46;
  color: var(--clr-white);

  padding: 3.5rem 0 2.5rem;
}

.footer .footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;

  gap: 2.5rem;
}

.footer__container .footer__top__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__top__grid .about__us {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  gap: 1.25rem;
}

.footer__top__grid .about__us .logo {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer__top__grid .about__us .description {
  color: var(--clr-ddd-black-title);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.footer__top__grid .offers,
.footer__top__grid .menu,
.footer__top__grid .socials {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  gap: 1.4rem;

  flex: 1 1 45%;
  min-width: 220px;
}

.footer__top__grid .offers .title,
.footer__top__grid .menu .title,
.footer__top__grid .socials .title {
  font-size: var(--size-2xl);
  font-weight: 500;
  color: var(--clr-white);
}

.footer__top__grid .offers .links__list,
.footer__top__grid .menu .links__list,
.footer__top__grid .socials .links__list {
  color: var(--clr-ddd-black-title);
  font-size: 14px;
  font-weight: 400;
  list-style: none;
  padding-left: 0rem;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.6rem 1.1rem;
}

.footer__top__grid .socials .links__list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer__top__grid .socials .links__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__top__grid .socials .links__list li i {
  color: var(--clr-white);
  font-size: var(--size-2xl);
}

.footer__top__grid .offers .links__list a,
.footer__top__grid .menu .links__list a,
.footer__top__grid .socials .links__list a {
  transition: all 0.3s ease-in-out;
}

.footer__top__grid .offers .links__list a:hover,
.footer__top__grid .menu .links__list a:hover,
.footer__top__grid .socials .links__list a:hover {
  color: var(--clr-white);
}

.footer__container .footer__bottom__grid {
  color: var(--clr-ddd-black-title);
  font-size: 14px;
  font-weight: 300;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  text-align: center;

  gap: 1.25rem;
  margin-top: 1.5rem;
}

.footer__container .footer__bottom__grid .hr__divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--clr-ddd-black-title);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer__legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal .separator {
  color: var(--clr-ddd-black-title);
}

.footer__legal-copy {
  color: var(--clr-ddd-black-title);
  font-size: 14px;
}

.footer__container .footer__bottom__grid a {
  font-weight: 400;

  transition: all 0.3s ease-in-out;
}

.footer__container .footer__bottom__grid a:hover {
  color: var(--clr-white);
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
  .footer {
    padding: 4.5rem 0 2.5rem;
  }

  .footer .footer__container {
    gap: 3rem;
  }

  .footer__container .footer__top__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.2rem;
  }

  .footer__top__grid .offers .links__list,
  .footer__top__grid .menu .links__list,
  .footer__top__grid .socials .links__list {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0.35rem;
    font-size: var(--size-sm);
  }

  .footer__top__grid .offers,
  .footer__top__grid .menu,
  .footer__top__grid .socials {
    min-width: unset;
    flex: 1 1 auto;
  }

  .footer__top__grid .socials .links__list {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 767px) {
  .footer .footer__container {
    align-items: center;
    text-align: center;
  }

  .footer__container .footer__top__grid {
    justify-content: center;
  }

  .footer__top__grid .about__us,
  .footer__top__grid .offers,
  .footer__top__grid .menu,
  .footer__top__grid .socials {
    align-items: center;
    text-align: center;
  }

  .footer__top__grid .offers .links__list,
  .footer__top__grid .menu .links__list,
  .footer__top__grid .socials .links__list {
    justify-content: center;
  }
}

/* lg */
@media (min-width: 1024px) {
  .footer__container .footer__top__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 3.6rem;
  }
}

/* xl */
@media (min-width: 1280px) {
  .footer__top__grid .offers .links__list,
  .footer__top__grid .menu .links__list,
  .footer__top__grid .socials .links__list {
    font-size: var(--size-base);
  }
}

/* 2xl */
/* @media (min-width: 1536px) {} */

/* --------------------------------------- */
/* FOOTER STYLES END */
/* --------------------------------------- */

/* ------------------------------------- */
/* ERRORS CONTAINER START */
/* ------------------------------------- */

.errors__container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;

  gap: 0.5rem;
}

.single__error__box__solid {
  background-color: var(--clr-btn-red-light);
  color: var(--clr-white);
  font-size: var(--size-base);
  font-weight: 500;
  border-radius: 0.5rem;

  padding: 0.5rem 0.8rem;
}

.form__field__error__text {
  color: var(--clr-btn-red-light);
  font-size: var(--size-sm);
  font-weight: 500;
}

/* ------------------------------------- */
/* ERRORS CONTAINER END */
/* ------------------------------------- */

/* ------------------------------------- */
/* PAGES PAGINATION COMPONENT START */
/* ------------------------------------- */

.pagination__wraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pagination__wraper.mg__tp {
  margin-top: 2.5rem;
}

.pagination__wraper.mg__btm {
  margin-bottom: 2.5rem;
}

.pagination__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 1.6rem;
}

.pagination__page__numbers__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 0.6rem;
}

.pagination__page__numbers__wrapper .page__number,
.pagination__container .page__nav__btn {
  width: 35px;
  height: 35px;
  border: 2px solid var(--clr-white);
  border-radius: 0.3rem;
  cursor: pointer;

  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  transition: all 0.2s ease-in-out;
}

.pagination__page__numbers__wrapper .page__number:hover,
.pagination__container .page__nav__btn:hover {
  border: 2px solid var(--clr-teal-primary);
}

.pagination__page__numbers__wrapper .page__number.active__page__number {
  background-color: var(--clr-teal-primary);
  border: 2px solid var(--clr-teal-primary);
}

.pagination__container .page__nav__btn {
  background-color: var(--clr-whitish-teal);
  border: 2px solid var(--clr-teal-primary);
}

.pagination__container .page__nav__btn:hover {
  background-color: var(--clr-teal-primary);
}

.pagination__text__element {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;
}

/* ------------------------------------- */
/* PAGES PAGINATION COMPONENT END */
/* ------------------------------------- */

/* --------------------------------------- */
/* SEARCH DROP DOWN ELEMENT START */
/* --------------------------------------- */

.search__bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotels__list__wrapper {
  background-color: var(--clr-white);
  width: min(95vw, 900px);

  margin-top: 0.5rem;

  display: none;
}

.header_nav .hotels__list__wrapper {
  width: min(95vw, 900px);
}

.search__bar .hotels__list__container {
  width: 100%;
  max-width: min(95vw, 900px);
  max-height: 720px;
  min-height: 320px;
  position: absolute;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;

  overflow: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f8f9fa;
  box-shadow: 0px 4px 20px #21252950;
  border-radius: 1rem;

  padding: 1.25rem 1.7rem;
  padding: 0.75rem 1rem;
  gap: 0rem;

  z-index: 999;
}

.mobile__search__bar .hotels__list__container {
  width: calc(100% - 16px);
  position: absolute;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;

  overflow: hidden;
  overflow-y: scroll;
  background-color: #f8f9fa;
  box-shadow: 0px 4px 20px #21252950;
  border-radius: 1rem;

  padding: 1.25rem 1.7rem;
  padding: 0.75rem 1rem;
  margin-left: 0.5rem;
  gap: 0rem;

  z-index: 999;
}

.hotels__list__container .hotel__list_item {
  display: flex;
  flex-direction: column;
  border-radius: 0.6rem;
  cursor: pointer;
  align-items: flex-start;
  text-align: left;
  padding: 0.5rem 0.7rem;
}

.hotels__list__container .hotel__list_item:hover {
  background-color: #e9ecef;

  padding: 0.5rem 0.7rem;

  transition: all 0.2s;
}

.hide {
  display: none !important;
}

.hotel__list_item .name {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;
}

.hotel__list_item .country {
  color: #495057;
  font-size: var(--size-sm);
  font-weight: 400;
}

/* Custom Scrollbar Styles */
.hotels__list__container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.hotels__list__container::-webkit-scrollbar-track {
  background: transparent;
  margin: 3px 0;
}

.hotels__list__container::-webkit-scrollbar-thumb {
  background: #adb5bd;
  border-radius: 5px;
}

.hotels__list__container::-webkit-scrollbar-thumb:hover {
  background: #6c757d;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
  /* .hotels__list__wrapper {
        width: 394px;
    } */

  .search__bar .hotels__list__wrapper {
    width: min(92vw, 980px);
  }

  .search__bar .hotels__list__container {
    width: 100%;
    max-width: min(92vw, 980px);
    max-height: 760px;
    min-height: 360px;
  }

  .search__form .hotels__list__container {
    width: 420px;
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;

    overflow: hidden;
    overflow-y: scroll;
    background-color: #f8f9fa;
    box-shadow: 0px 4px 20px #21252950;
    border-radius: 1rem;

    padding: 1.25rem 1.7rem;
    padding: 0.75rem 1rem;
    gap: 0rem;

    z-index: 999;
  }
}

/* lg */
@media (min-width: 1024px) {
  .hotels__list__wrapper {
    width: 394px;
  }

  .search__form .hotels__list__container {
    width: 450px;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* --------------------------------------- */
/* SEARCH DROP DOWN ELEMENT END */
/* --------------------------------------- */

/* --------------------------------------- */
/* LOADING ELEMENT START */
/* --------------------------------------- */

/* .cards__grid, */
.loading__element__wrapper {
  position: relative;
}

.loading__container {
  width: 100%;
  height: 100%;

  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  background-color: var(--clr-white);
  border: 1px solid var(--clr-a3a-black);
  border-radius: 1rem;
}

.loader {
  border: 5px solid #13052f;
  border: 5px solid #a1a1a1;
  border-radius: 50%;
  border-top: 5px solid var(--clr-main-purple);
  border-top: 5px solid #e2e2e2;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

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

.hidden {
  display: none;
}

/* --------------------------------------- */
/* LOADING ELEMENT END */
/* --------------------------------------- */

/* --------------------------------------- */
/* ERROER PAGE STYLES START */
/* --------------------------------------- */

.error__page__container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  gap: 1.2rem;
}

.error__page__container .error__page__content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  gap: 0rem;
}

.error__page__container .error__page__heading__container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  gap: 1rem;
}

.error__page__container .error__page__heading {
  color: var(--clr-333-black);
  font-size: var(--size-11xl);
  font-weight: 500;
}

.error__page__container .error__page__sub__heading {
  color: var(--clr-black);
  font-size: var(--size-2xl);
  font-weight: 400;
}

.error__page__content__wrapper .error__page__error__code__text {
  color: var(--clr-686-black);
  font-size: var(--size-sm);
  font-weight: 500;
}

.error__page__container .error__page__content__container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  gap: 0.5rem;
}

.error__page__content__container .links__list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;

  gap: 0rem;
  padding-left: 0rem;
}

.error__page__container .error__page__text {
  color: var(--clr-333-black);
  font-size: var(--size-sm);
  font-weight: 500;
}

.error__page__content__container .links__list li {
  list-style: none;
  margin-left: 0rem;

  color: var(--clr-black);
  font-size: var(--size-sm);
  font-weight: 400;
}

.error__page__content__container .links__list li a {
  color: var(--clr-main-blue);
  font-size: var(--size-sm);
  font-weight: 500;
}

.error__page__content__container .links__list li a:hover {
  text-decoration: underline;
}

/* --------------------------------------- */
/* ERROER PAGE STYLES END */
/* --------------------------------------- */
