/* --------------------------------------- */
/* HEADER STYLES START */
/* --------------------------------------- */

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

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

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

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

.promotion__wrapper {
  color: var(--clr-white);
  font-size: var(--size-base);
  font-weight: 400;
  background-color: var(--clr-black);

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

  padding: 0.3rem 0rem;
}

.disabled {
  display: none;
}

.nav__bar__wrapper {
  width: 100%;

  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: 1rem;
  padding-bottom: 1rem;
}

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

.nav__bar .logo {
  width: 108px;
}

.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);
  color: var(--clr-black);
  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: var(--clr-teal-primary);
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
}

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: 108px;
}

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

.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.5rem;
    padding-bottom: 0.5rem;
  }

  .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;
}

.section__title .title {
  color: var(--clr-black);
  font-size: var(--title-mb);
  font-weight: 400;
}

.section__title .underline {
  width: 130px;
  border: none;
  border-top: 5px solid var(--clr-teal-primary);
}

/* 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(--title);
    font-weight: 400;
  }

  .section__title .underline {
    width: 215px;
    border-top: 5px solid var(--clr-teal-primary);
  }
}

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

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

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

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

.footer {
  background-color: var(--clr-black);
  color: var(--clr-white);

  padding: 5rem 0rem 2rem 0rem;
}

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

  gap: 4rem;
}

.footer__container .footer__top__grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */

  gap: 4rem;
}

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

  gap: 1.8rem;
}

.footer__top__grid .about__us .logo {
  width: 175px;
}

.footer__top__grid .about__us .description {
  color: var(--clr-ddd-black-title);
  font-size: var(--size-sm);
  font-weight: 400;
}

.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;
}

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

.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: var(--size-base);
  font-weight: 400;
  list-style: none;
  padding-left: 0rem;

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

  gap: 0.35rem;
}

.footer__top__grid .socials .links__list {
  gap: 1rem;
}

.footer__top__grid .socials .links__list li {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;

  gap: 0.6rem;
}

.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: var(--size-sm);
  font-weight: 300;

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

  gap: 2rem;
}

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

.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__container .footer__top__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1.8rem;
  }

  .footer__top__grid .offers .links__list,
  .footer__top__grid .menu .links__list,
  .footer__top__grid .socials .links__list {
    font-size: var(--size-sm);
  }
}

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

    gap: 1.8rem;
  }
}

/* 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: 390px;

  margin-top: 0.5rem;

  display: none;
}

.header_nav .hotels__list__wrapper {
  width: 394px;
}

.search__bar .hotels__list__container {
  width: 390px;
  /* height: 350px; */
  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;
}

.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;

  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: 515px;
  }

  .search__bar .hotels__list__container {
    width: 515px;
    max-height: 350px;
  }

  .search__form .hotels__list__container {
    width: 350px;
    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 */
/* --------------------------------------- */