@import url("https://fonts.googleapis.com/css2?family=Belleza&family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");
:root {
  --white: #fff;
  --blue: #002561;
  --grey: #e3e3e3;
  --yellow: #ffc755;
  --green: #0bc175;
  --red: #f15c59;
  --dark-grey: #373b3b;
  --dark-blue: #00132e;
  --light-blue: #003894;
  --light-grey: #f9f9f9;
  --text-primary: #0f1014;
  --text-grey: #334b67;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

html {
  line-height: 21px;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  display: block;
  color: var(--text-primary);
  background: var(--white);
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  transition: all 0.2s linear;
}

button {
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  color: var(--blue);
}

select {
  -webkit-appearance: none;
  background: inherit;
}

ol,
ul,
nav {
  list-style: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.main__btn {
  display: block;
  flex: 1;
  padding: 15px 15px;
  border: 0;
  height: 100%;
  background-color: var(--blue);
  color: var(--white);
  box-shadow: none;
  transition: background 200ms;
  font-size: 18px;
  font-weight: 500;
  font-family: "Belleza", sans-serif;
  transition: all ease-in-out 200ms;
}
.main__btn:hover, .main__btn:active, .main__btn:focus {
  background: var(--light-blue);
}

.btn__light {
  font-size: 16px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue);
}
.btn__light:hover, .btn__light:focus, .btn__light:active {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

h1,
.h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2,
.h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3,
.h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4,
.h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5,
.h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 640em) {
  h1,
.h1 {
    font-size: 3rem;
  }

  h2,
.h2 {
    font-size: 2.5rem;
  }

  h3,
.h3 {
    font-size: 1.9375rem;
  }

  h4,
.h4 {
    font-size: 1.5625rem;
  }

  h5,
.h5 {
    font-size: 1.25rem;
  }

  h6,
.h6 {
    font-size: 1rem;
  }
}
.main-title {
  font-size: 32px;
  font-weight: 400;
  font-family: "Belleza", sans-serif;
  line-height: 1.25;
  margin-bottom: 25px;
}

.main-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 15px;
}

.text-alert {
  color: var(--red);
}

.page__separator {
  display: block;
  width: 100%;
  border: 1px solid var(--grey);
  margin: 25px 0;
}

.hotel__star {
  display: inline-flex;
  color: var(--yellow);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  margin: 0 8px;
  background: var(--grey);
}

body.sidenav__opened .side__nav-trigger {
  color: var(--blue);
}
body.sidenav__opened .side__nav-trigger span {
  opacity: 1;
  transform: rotate(45deg) translate(-4px, -3px);
  background: var(--blue);
}
body.sidenav__opened .side__nav-trigger span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
body.sidenav__opened .side__nav-trigger span:nth-last-child(1) {
  transform: rotate(-45deg) translate(0, -5px);
}
body.sidenav__opened .side__nav {
  height: 100vh;
  display: block;
  opacity: 1;
  overflow-y: scroll;
}
body.sidenav__opened .side__nav nav {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header {
  background-color: transparent;
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 11;
  transition: all 500ms;
}
.header.header-white {
  background: var(--white);
}
.header.header-white .header__content {
  color: var(--text-primary);
}
.header.header-white .side__nav-trigger span {
  background: var(--text-primary);
}
.header .header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}
.header .header__content .header__logo {
  background: var(--blue);
}
.header .header__content .header__logo img.main__logo {
  padding: 25px 10px 10px;
  max-width: 148px;
}
.header .header__content .header__desktop {
  display: none;
}
.header .header__content .header__mobile a {
  font-size: 14px;
  font-weight: 500;
}
.header .header__content .header__nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  margin-left: 25px;
}
.header .header__content .header__nav-links a:hover, .header .header__content .header__nav-links a:active, .header .header__content .header__nav-links a:focus {
  outline: none;
}
.header .header__content .header__nav-links .header__top-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 35px;
  margin: 5px 0;
}
.header .header__content .header__nav-links .header__top-nav .header__top-nav-list {
  display: inline-flex;
  gap: 25px;
}
.header .header__content .header__nav-links .header__top-nav .header__top-nav-list .header__top-nav-item {
  font-size: 13px;
  font-weight: 400;
}
.header .header__content .header__nav-links .header__top-nav .header__top-nav-list .header__top-nav-item .header__top-nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.header .header__content .header__nav-links .header__top-nav .header__top-nav-list .header__top-nav-item .header__top-nav-lang img {
  width: 24px;
  height: 24px;
  border: 2px solid var(--grey);
  border-radius: 100%;
}
.header .header__content .header__nav-links .header__bottom-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list {
  display: inline-flex;
  gap: 15px;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item {
  font-size: 18px;
  font-weight: 400;
  font-family: "Belleza", sans-serif;
  text-transform: uppercase;
  line-height: 2.5;
  position: relative;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a:hover, .header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a:active, .header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a:focus {
  outline: none;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a:hover::after, .header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a:active::after, .header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a:focus::after {
  left: 0;
  bottom: 0;
  right: auto;
  width: 100%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item a::after {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  right: 5px;
  left: -5px;
  height: 3px;
  z-index: 1;
  background: var(--blue);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item .header__bottom-nav-lang {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-list .header__bottom-nav-item .header__bottom-nav-lang img {
  width: 24px;
  height: 24px;
  border: 2px solid var(--grey);
  border-radius: 100%;
}
.header .header__content .header__nav-links .header__bottom-nav .header__bottom-nav-btn button {
  text-transform: uppercase;
  width: 175px;
  padding: 15px !important;
}

.footer {
  background: var(--dark-blue);
}
.footer .footer__wrapper {
  position: relative;
  padding: 55px 15px;
}
.footer .footer__wrapper .footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  color: var(--grey);
}
.footer .footer__wrapper .footer__content a:hover {
  color: var(--white);
}
.footer .footer__wrapper .footer__content p {
  font-size: 13px;
  font-weight: 400;
}
.footer .footer__wrapper .footer__content .footer__item {
  flex: 1 1 0;
}
.footer .footer__wrapper .footer__content .footer__brand-logo {
  text-align: center;
}
.footer .footer__wrapper .footer__content .footer__brand-logo img {
  max-width: 120px;
  height: auto;
  margin: auto;
  padding: 20px 0;
}
.footer .footer__wrapper .footer__content .footer__action-menu .footer__menu-list {
  list-style: none;
  margin-left: 25px;
  font-size: 15px;
  font-weight: 400;
}
.footer .footer__wrapper .footer__content .footer__action-menu .footer__menu-list li {
  display: inline-block;
  padding-bottom: 15px;
  width: 50%;
  float: left;
}
.footer .footer__wrapper .footer__content .footer__social {
  text-align: center;
}
.footer .footer__wrapper .footer__content .footer__social h3 {
  font-weight: 500;
  margin-bottom: 20px;
}
.footer .footer__wrapper .footer__content .footer__social .footer__social-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}
.footer .footer__wrapper .footer__content .footer__social .footer__social-list .footer__social-item {
  font-size: 32px;
}
.footer .footer__copyright {
  display: block;
  padding: 45px 0;
  border-top: 1px solid var(--dark-grey);
  color: var(--grey);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.page__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  height: 280px;
}
.page__header .page__header-content {
  display: block;
  width: 100%;
  z-index: 1;
}
.page__header .page__header-content .page__header-title,
.page__header .page__header-content .page__header-subtitle {
  display: block;
  color: var(--text-primary);
  font-family: "Belleza", sans-serif;
}
.page__header .page__header-content .page__header-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 18px;
}
.page__header .page__header-content .page__header-subtitle {
  font-weight: 300;
}

.side__nav-trigger {
  background: transparent;
  border: 0;
  outline: none;
  font-size: 18px;
}
.side__nav-trigger span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background: var(--white);
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.side__nav-trigger span:first-child {
  transform-origin: 0% 0%;
}
.side__nav-trigger span:nth-last-child(2) {
  transform-origin: 0% 100%;
  transform: scaleX(0.8);
}
.side__nav-trigger span:last-child {
  margin: 0;
}

.side__nav {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  height: 0;
  clear: both;
  display: block;
  width: 100%;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: height 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86), opacity 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: height 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86), opacity 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.side__nav nav {
  padding: 25px 15px 0;
  line-height: 40px;
  float: none;
  width: 100%;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  opacity: 0;
  -webkit-transform: translateY(-18px);
  -ms-transform: translateY(-18px);
  transform: translateY(-18px);
}
.side__nav nav ul li .main__btn {
  width: 100%;
  font-size: 18px;
  text-align: center;
  padding: 5px 10px;
}
.side__nav nav ul li a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
}

.hotel__card {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--grey);
  margin-bottom: 10px;
}
.hotel__card:hover .hotel__card-image img {
  transform: scale(1.3);
}
.hotel__card .hotel__card-image {
  position: relative;
  padding-top: 25%;
  width: 100%;
  max-width: 240px;
  overflow: hidden;
  flex: 1 1 0;
}
.hotel__card .hotel__card-image img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 3000ms;
}
.hotel__card .hotel__card-body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hotel__card .hotel__card-body .hotel__card-info {
  padding: 10px;
  flex: 1;
}
.hotel__card .hotel__card-body .hotel__card-info .hotel__card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
}
.hotel__card .hotel__card-body .hotel__card-info .hotel__card-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-grey);
}
.hotel__card .hotel__card-body .hotel__card-action {
  display: block;
  text-align: right;
  padding: 10px;
}
.hotel__card .hotel__card-body .hotel__card-action .main__btn {
  width: 200px;
  padding: 10px;
  text-align: center;
  float: right;
}

.main-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
  padding-top: 100px;
  margin-top: -105.4px;
  z-index: 10;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.main-slider .slider__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-slider .slider__background img {
  width: auto;
  min-width: 100%;
}
.main-slider .slider__background video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: fit-content;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}
.main-slider .slider__wrapper {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  z-index: 0;
}
.main-slider .slider__wrapper::before {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.main-slider .slider__wrapper .slider__caption-wrapper {
  z-index: 1;
  width: 100%;
}
.main-slider .slider__wrapper .slider__caption-wrapper .slider__caption {
  margin: 165px 0;
  width: 100%;
}
.main-slider .slider__wrapper .slider__caption-wrapper .slider__caption .caption__title {
  display: block;
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Belleza", sans-serif;
  line-height: 1.2;
  color: var(--white);
}
.main-slider .slider__wrapper .slider__caption-wrapper .slider__caption .caption__subtitle {
  display: block;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
}

.search__container {
  width: 100%;
  z-index: 1;
}
.search__container .search__wrapper {
  background: var(--white);
}
.search__container .search__wrapper .search__content {
  display: flex;
  flex-direction: column;
  background: var(--white);
  margin: auto auto;
}
.search__container .search__wrapper .search__content .search__destination {
  padding: 20px 0px;
  width: 100%;
  position: relative;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper {
  display: flex;
  flex-direction: column;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper label {
  font-size: 16px;
  font-family: "Belleza", sans-serif;
  margin-bottom: 10px;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper input {
  border: 0;
  font-size: 18px;
  line-height: 2.5;
  outline: none;
  text-overflow: ellipsis;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper .search__destination-result {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
  max-height: 275px;
  overflow-x: hidden;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper .search__destination-result .search__destination-resultitem {
  font-size: 14px;
  padding: 15px;
  line-height: 1.5;
  cursor: pointer;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper .search__destination-result .search__destination-resultitem:hover {
  background-color: var(--blue);
  color: var(--white);
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper .search__destination-result .search__destination-resultitem.resultitem__current {
  font-weight: 600;
}
.search__container .search__wrapper .search__content .search__destination .destination__wrapper .search__destination-result .search__destination-resultitem.resultitem__current .loader-spiner {
  float: right;
}
.search__container .search__wrapper .search__content .search__date {
  padding: 15px 0;
  width: 100%;
}
.search__container .search__wrapper .search__content .search__date .date__wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
  cursor: pointer;
}
.search__container .search__wrapper .search__content .search__date .date__wrapper .date__item {
  display: flex;
  flex-direction: column;
}
.search__container .search__wrapper .search__content .search__date .date__wrapper .date__item label {
  font-size: 16px;
  font-family: "Belleza", sans-serif;
  margin-bottom: 10px;
}
.search__container .search__wrapper .search__content .search__date .date__wrapper .date__item input {
  width: 100%;
  border: 0;
  font-size: 18px;
  line-height: 2.5;
  outline: none;
}
.search__container .search__wrapper .search__content .search__filter {
  padding: 15px 0;
  width: 100%;
}
.search__container .search__wrapper .search__content .search__filter .filter__wrapper {
  display: flex;
  flex-direction: column;
}
.search__container .search__wrapper .search__content .search__filter .filter__wrapper label {
  font-size: 16px;
  font-family: "Belleza", sans-serif;
  margin-bottom: 10px;
}
.search__container .search__wrapper .search__content .search__filter .filter__wrapper select {
  border: 0;
  font-size: 18px;
  line-height: 2.5;
  outline: none;
  text-overflow: ellipsis;
}
.search__container .search__wrapper .search__content .search__button {
  display: flex;
  align-items: center;
  width: 100%;
}

.search__booking-modal-container {
  position: absolute;
  left: 0;
  right: 0;
  visibility: hidden;
  transition: all 500ms;
}
.search__booking-modal-container .search__booking-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--white);
  overflow: hidden;
  height: 0;
  transition: all 500ms;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content {
  max-width: 980px;
  margin: auto;
  padding: 25px 10px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 25px;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination,
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-filter,
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date {
  display: flex;
  flex-direction: column;
  position: relative;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination label,
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-filter label,
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date label {
  font-size: 13px;
  font-family: "Belleza", sans-serif;
  margin-bottom: 5px;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .search__input,
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-filter .search__input,
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date .search__input {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding: 8px;
  border: 1px solid var(--grey);
  outline: none;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .destination__wrapper {
  display: flex;
  flex-direction: column;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .destination__wrapper .search__destination-result {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 5;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .destination__wrapper .search__destination-result .search__destination-resultitem {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 14px;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .destination__wrapper .search__destination-result .search__destination-resultitem:hover {
  background-color: var(--blue);
  color: var(--white);
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .destination__wrapper .search__destination-result .search__destination-resultitem.resultitem__current {
  font-weight: 600;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-destination .destination__wrapper .search__destination-result .search__destination-resultitem.resultitem__current .loader-spiner {
  float: right;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date .date__wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date .date__wrapper .date__item {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date .date__wrapper .date__item label {
  font-size: 13px;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-date .date__wrapper .date__item input {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding: 8px;
  border: 1px solid var(--grey);
  outline: none;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-filter .search__filter-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-button {
  margin-top: 20px;
  height: 55px;
}
.search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-button .main__btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
}
.search__booking-modal-container .search__booking-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.96;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.search__booking-modal-container.show {
  visibility: visible;
}
.search__booking-modal-container.show .search__booking-wrapper {
  overflow: visible;
  height: 100vh;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  transition: all 500ms;
}
.loader.hide {
  visibility: hidden;
  opacity: 0;
}
.loader .loader__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--white);
}
.loader .loader__container .loader__image {
  display: inline-block;
  width: 25%;
  max-width: 225px;
  height: auto;
  animation: rotation 5s infinite linear;
}

.loader-spiner {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}

.loader-spiner div {
  transform-origin: 15px 15px;
  animation: loader-spiner 1.2s linear infinite;
}

.loader-spiner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 15px;
  width: 2px;
  height: 5px;
  border-radius: 20%;
  background: #fff;
}

.loader-spiner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.loader-spiner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.loader-spiner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.loader-spiner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.loader-spiner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.loader-spiner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.loader-spiner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.loader-spiner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.loader-spiner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.loader-spiner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.loader-spiner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.loader-spiner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes loader-spiner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotation {
  100% {
    transform: rotatey(360deg);
  }
}
.lazyload {
  background: linear-gradient(-90deg, #f1f1f1, #2222, #dedede);
  -webkit-animation: gradient 3s ease infinite;
  -moz-animation: gradient 3s ease infinite;
  animation: gradient 3s ease infinite;
  background-size: 200% 200%;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 91% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main-offer {
  position: relative;
}
.main-offer .offer__wrapper {
  padding: 55px 0;
}
.main-offer .offer__wrapper .offer__content .offer__list {
  padding: 20px 0;
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  text-align: left;
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item:hover {
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item .offer__item-img {
  position: relative;
  padding-top: 66%;
  width: 100%;
  overflow: hidden;
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item .offer__item-img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item .offer__item-body {
  padding: 15px;
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item .offer__item-body .offer__item-subtitle {
  font-weight: 500;
  color: var(--blue);
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item .offer__item-body .offer__item-title {
  font-size: 20px;
  font-weight: 400;
  font-family: "Belleza", sans-serif;
}
.main-offer .offer__wrapper .offer__content .offer__list .offer__item .offer__item-body .offer__item-desc {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-grey);
}

.page-offer {
  margin-bottom: 55px;
}
.page-offer .offer__wrapper {
  padding-top: 0;
}

.main-collection {
  position: relative;
}

.main-brand {
  position: relative;
  padding: 55px 0;
}
.main-brand .brand__wrapper .brand__title {
  margin-bottom: 180px;
  text-align: center;
}
.main-brand .brand__wrapper .brand__title img {
  display: inline;
  width: 180px;
  background: var(--white);
}
.main-brand .brand__wrapper .brand__title .brand__border {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--grey);
  margin: -95px 0;
}
.main-brand .brand__wrapper .brand__content .brand__list-row {
  display: flex;
  flex-direction: row;
  gap: 55px;
  justify-content: center;
  align-items: center;
}
.main-brand .brand__wrapper .brand__content .brand__list-row img {
  max-width: 98px;
  max-height: 85px;
}

.main-gallery {
  position: relative;
}
.main-gallery .gallery__wrapper {
  padding: 20px 0 0;
}
.main-gallery .gallery__wrapper .gallery__list .gallery__item {
  width: 100%;
  height: 150px;
  display: block;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.main-collection {
  display: block;
  background: var(--light-grey);
  overflow: hidden;
}
.main-collection .collection__wrapper {
  display: block;
  padding: 35px 0;
  max-width: 1500px;
  margin: auto;
}
.main-collection .collection__wrapper .collection__content .collection__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 55px;
}
.main-collection .collection__wrapper .collection__content .collection__item:nth-child(even) {
  flex-direction: column-reverse;
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-img {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-img img {
  object-fit: cover;
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-body {
  display: block;
  width: 100%;
  background: var(--white);
  position: relative;
  padding: 40px 35px;
  -webkit-box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-body .title {
  font-family: "Belleza", sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 25px;
  position: relative;
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-body .title::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  border: none;
  border-bottom: 2px solid #000;
  padding-top: 5px;
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-body .description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-grey);
}
.main-collection .collection__wrapper .collection__content .collection__item .collection__item-body .action {
  display: block;
  margin-top: 15px;
  width: 100%;
  max-width: 155px;
  text-align: center;
}

.page-offer__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 0 10px !important;
}
.page-offer__list .offer__item .offer__item-action {
  display: flex;
  align-items: center;
  margin: 15px 0 0;
}
.page-offer__list .offer__item .offer__item-action span {
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 200ms;
}
.page-offer__list .offer__item:hover .offer__item-action span {
  margin-right: 25px;
}

.offer-detail {
  position: relative;
}
.offer-detail .offer__detail-container {
  max-width: 980px;
}
.offer-detail .offer__detail-container .main-title {
  font-size: 22px;
}
.offer-detail .offer__detail-wrapper .main-subtitle {
  color: var(--blue);
}
.offer-detail .offer__detail-wrapper .offer__detail-image {
  position: relative;
  padding-top: 50%;
  width: 100%;
  overflow: hidden;
  margin: 25px 0;
}
.offer-detail .offer__detail-wrapper .offer__detail-image img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-detail .offer__detail-wrapper .offer__detail-content {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 15px;
}
.offer-detail .offer__detail-wrapper .offer__detail-content ul,
.offer-detail .offer__detail-wrapper .offer__detail-content li {
  list-style: decimal;
  list-style-position: inside;
}
.offer-detail .offer__detail-wrapper .offer__detail-content .offer__detail-box .detail__box-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.offer-detail .offer__detail-wrapper .offer__detail-content .offer__detail-box .detail__box-item .item__title {
  width: 40%;
  color: var(--text-grey);
}
.offer-detail .offer__detail-wrapper .offer__detail-content .offer__detail-box .detail__box-item .item__content {
  width: 60%;
  flex: 1 1 0;
}
.offer-detail .offer__detail-wrapper .offer__detail-content .offer__hotel-list {
  display: block;
  width: 100%;
}

.page-collection {
  background: var(--white) !important;
}
.page-collection .collection__wrapper .collection__content .collection__item {
  margin-bottom: 0;
}
.page-collection .collection__wrapper .collection__content .collection__item .collection__item-body {
  right: 0 !important;
  left: 0 !important;
  box-shadow: none;
  margin-top: 0 !important;
}
.page-collection .collection__wrapper .collection__content .collection__item .collection__item-body .title {
  font-size: 32px;
}

.page-hotelinfo .search__wrapper {
  margin: 0 !important;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}
.page-hotelinfo .search__wrapper .search__content {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  max-width: 100%;
}
.page-hotelinfo .hotelinfo__header {
  padding-top: 35px;
  padding-bottom: 15px;
}
.page-hotelinfo .hotelinfo__header .main-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hotelinfo .hotelinfo__header .hotelinfo__header-address {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hotelinfo .hotelinfo__header .hotelinfo__header-address label {
  font-size: 16px;
  font-weight: 300;
}
.page-hotelinfo .hotelinfo__nav {
  position: sticky;
  top: 88px;
  left: 0;
  background: var(--white);
  width: 100%;
  z-index: 1;
  padding: 0.5rem 0;
}
.page-hotelinfo .hotelinfo__nav .hotelinfo__nav-wrapper {
  border: 1px solid var(--grey);
}
.page-hotelinfo .hotelinfo__nav .hotelinfo__nav-wrapper .nav {
  display: flex;
  flex-direction: row;
}
.page-hotelinfo .hotelinfo__nav .hotelinfo__nav-wrapper .nav li {
  padding: 1rem;
}
.page-hotelinfo .hotelinfo__nav .hotelinfo__nav-wrapper .nav li.active {
  border-bottom: 5px solid var(--blue);
  color: var(--blue);
}
.page-hotelinfo .hotelinfo__slider {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
  margin: 25px 0;
}
.page-hotelinfo .hotelinfo__slider .hotelinfo__main-slider {
  display: inherit;
}
.page-hotelinfo .hotelinfo__slider .hotelinfo__main-slider .hotelinfo__slider-item {
  position: relative;
  padding-top: 66%;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.page-hotelinfo .hotelinfo__slider .hotelinfo__main-slider .hotelinfo__slider-item img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hotelinfo .hotelinfo__slider .hotelinfo__slider-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.page-hotelinfo .hotelinfo__details {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin: 25px 0;
  font-size: 14px;
  font-weight: 300;
}
.page-hotelinfo .hotelinfo__details .hotelinfo__address .address__maps {
  position: relative;
  margin-top: 10px;
}
.page-hotelinfo .hotelinfo__details .hotelinfo__address .address__maps .maps__button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px;
}
.page-hotelinfo .hotelinfo__details .hotelinfo__address .address__maps .maps__button .main__btn {
  padding: 15px;
}
.page-hotelinfo .hotelinfo__amenities {
  margin-bottom: 25px;
}
.page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
}
.page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-content .group-title {
  font-weight: 600;
  margin-bottom: 8px;
  padding-top: 4px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-content .hotelinfo__amenities-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-content .hotelinfo__amenities-group .group-content {
  font-size: 14px;
  font-weight: 300;
}
.page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-content .hotelinfo__amenities-group .group-content .hotelinfo__amenities-item {
  list-style-type: disc;
  margin-left: 15px;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list {
  display: flex;
  flex-direction: column;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 25px;
  border: 1px solid var(--grey);
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__image {
  position: relative;
  padding-top: 50%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__image img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 3000ms;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail {
  display: block;
  width: 100%;
  padding: 8px 25px;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-header {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--grey);
  padding: 10px 0;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-header .room__detail-name {
  font-size: 24px;
  font-weight: 400;
  font-family: "Belleza", sans-serif;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-header .room__detail-info {
  display: flex;
  flex-direction: row;
  gap: 35px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-header .room__detail-info i {
  color: var(--text-grey);
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-facility {
  flex: 1;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-facility .room__facility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: disc;
  padding-left: 15px;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-facility .room__facility-list .facility-green {
  color: var(--green);
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-facility .room__description {
  margin-top: 25px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey);
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 25px;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-price .room__detail-np {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-grey);
  text-decoration: line-through;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-price .room__detail-rp {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: var(--red);
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-body .room__detail-price .room__detail-rp .room__detail-cp {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-primary);
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-footer {
  display: inline-block;
  width: 100%;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__detail .room__detail-footer .main__btn {
  font-weight: 600;
  float: right;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-error {
  padding-bottom: 35px;
  font-size: 16px;
}
.page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-error .text-alert {
  font-size: 24px;
  font-weight: 600;
}
.page-hotelinfo .hotelinfo__policies {
  padding-bottom: 55px;
}
.page-hotelinfo .hotelinfo__policies .hotelinfo__policies-wrapper .hotelinfo__policies-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
.page-hotelinfo .hotelinfo__policies .hotelinfo__policies-wrapper .hotelinfo__policies-content .policies-item {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.page-hotelinfo .hotelinfo__policies .hotelinfo__policies-wrapper .hotelinfo__policies-content .policies-item .item-icon {
  width: 100%;
  max-width: 25px;
  margin-right: 10px;
}
.page-hotelinfo .hotelinfo__policies .hotelinfo__policies-wrapper .hotelinfo__policies-content .policies-item .item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--blue);
}
.page-hotelinfo .title {
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  font-family: "Belleza", sans-serif;
  margin: 35px 0;
}

.page-register {
  margin-top: 85px;
}
.page-register a {
  color: var(--blue);
}
.page-register .register__wrapper {
  max-width: 1440px;
  margin: auto;
}
.page-register .register__wrapper .register__content {
  display: flex;
  flex-direction: row;
  padding: 0 15px;
}
.page-register .register__wrapper .register__content .register__card-wrapper {
  width: 100%;
  background: var(--white);
  margin: 25px 0px;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-header {
  margin-bottom: 25px;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-header .regisCard__subtitle {
  font-family: "Belleza", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-grey);
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-header .register__card-title {
  font-family: "Belleza", sans-serif;
  font-size: 42px;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-header .register__card-join {
  font-family: "Belleza", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-body {
  position: relative;
  overflow: hidden;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-body .register__card-forgot {
  text-align: right;
  padding: 5px 0 10px;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-body .register__card-aggrement {
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
}
.page-register .register__wrapper .register__content .register__card-wrapper .regis__card-footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px 0;
}
.page-register .register__wrapper .register__content .register__card-wrapper .regis__card-footer button {
  flex: 1;
}
.page-register .register__wrapper .register__content .register__card-wrapper .register__card-link {
  padding-top: 15px;
  text-align: center;
  font-size: 16px;
  font-family: "Belleza", sans-serif;
}
.page-register .register__wrapper .register__content .register__heading-wrapper {
  display: none;
  width: 0;
}
.page-register .register__wrapper .register__content .register__heading-wrapper .swiper-slide {
  margin: 0;
}
.page-register .register__wrapper .register__content .register__heading-wrapper .swiper-nav {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 5%;
  right: 5%;
  gap: 55px;
}
.page-register .register__wrapper .register__content .register__heading-wrapper .swiper-nav .swiper-button-next,
.page-register .register__wrapper .register__content .register__heading-wrapper .swiper-nav .swiper-button-prev {
  position: relative;
  width: 55px;
  height: 55px;
  background: var(--white);
}
.page-register .register__wrapper .register__content .register__heading-wrapper .swiper-nav .swiper-button-next::after,
.page-register .register__wrapper .register__content .register__heading-wrapper .swiper-nav .swiper-button-prev::after {
  font-size: 18px;
  color: var(--blue);
}

.page-checkout {
  margin-top: 85px;
}
.page-checkout .checkout__wrapper {
  position: relative;
}
.page-checkout .checkout__wrapper .checkout__header {
  margin-bottom: 55px;
}
.page-checkout .checkout__wrapper .checkout__header .main-title {
  margin-bottom: 8px;
}
.page-checkout .checkout__wrapper .checkout__header .main-subtitle {
  font-weight: 400;
}
.page-checkout .checkout__wrapper .checkout__body {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form {
  width: 100%;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper {
  margin-bottom: 25px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .title {
  font-size: 24px;
  font-family: "Belleza", sans-serif;
  margin-bottom: 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form {
  padding: 12px 0;
  background-color: var(--light-grey);
  border: 1px solid var(--grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=text],
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=email] {
  border-bottom: 1px solid var(--grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=text]:focus, .page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=text]:active,
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=email]:focus,
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=email]:active {
  background: var(--white);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=text].fill,
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group input[type=email].fill {
  background: var(--white);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group small {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row .form__group select {
  width: 25%;
  text-overflow: ellipsis;
  margin-right: 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-wrapper .checkout__content-form .form__row#special_others {
  transition: all 500ms;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action {
  margin-bottom: 25px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__terms {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-grey);
  margin-bottom: 10px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__terms a {
  color: var(--blue);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__action-button {
  display: block;
  text-align: right;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0 -4px 5px;
  background-color: var(--white);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__action-button .main__btn {
  position: relative;
  width: 100%;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__action-button .main__btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  animation: shine 3s infinite linear;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__action-button .main__btn::after {
  background: rgba(255, 255, 255, 0.4);
  width: 30px;
  left: 30px;
  top: 0;
  opacity: 0;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-animation-name: moveAfter59-09619fd1;
  animation-name: moveAfter59-09619fd1;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: 100%;
  margin-bottom: 25px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .title {
  font-size: 24px;
  font-family: "Belleza", sans-serif;
  margin-bottom: 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content {
  border: 1px solid var(--grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-hotel {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-hotel span {
  font-family: "Belleza", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-hotel span.icon {
  font-size: 28px;
  color: var(--blue);
  margin-right: 10px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-hotel span .small {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--dark-grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-room,
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-check {
  background: var(--light-grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-room {
  font-size: 14px;
  line-height: 1.5;
  padding: 15px 15px 10px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-room .room__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-room .room__info {
  margin: 5px 0;
  color: var(--text-grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-check {
  padding: 0 15px 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-check .room__check-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  line-height: 2;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-total {
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-total .checkout__total-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 11px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-total .checkout__total-wrapper .checkout__total-title {
  font-size: 18px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-total .checkout__total-wrapper .checkout__total-content {
  font-size: 18px;
  font-weight: 600;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-total .checkout__total-wrapper .checkout__detail-title {
  font-size: 14px;
  color: var(--text-grey);
  margin-left: 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-total .checkout__total-wrapper .checkout__detail-content {
  font-size: 14px;
  color: var(--text-grey);
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-rate {
  position: relative;
  padding: 0 15px 15px;
}
.page-checkout .checkout__wrapper .checkout__body .checkout__body-details .checkout__details-content .checkout__details-rate .rate-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.page-reservation .reservation__wrapper {
  padding: 35px 0 55px;
}
.page-reservation .reservation__wrapper .reservation__title {
  position: relative;
  padding: 0 15px;
}
.page-reservation .reservation__wrapper .reservation__title::after {
  content: " ";
  border-bottom: 3px solid var(--blue);
  position: absolute;
  top: 100%;
  left: 15px;
  width: 85px;
  height: 2px;
}
.page-reservation .reservation__wrapper .reservation__content .search__destination,
.page-reservation .reservation__wrapper .reservation__content .search__date,
.page-reservation .reservation__wrapper .reservation__content .search__filter {
  border-bottom: 1px solid var(--dark-grey);
}
.page-reservation .reservation__wrapper .reservation__content .search__date .date__item:first-child {
  border-right: 1px solid var(--dark-grey);
}
.page-reservation .reservation__wrapper .reservation__content .search__button {
  margin-top: 15px;
}

.page-hotel-list {
  min-height: 100vh;
  background-color: var(--light-grey);
}
.page-hotel-list .hotelList__wrapper .hotelList__result {
  padding: 25px 0;
  background-color: var(--light-grey);
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-summary {
  font-size: 14px;
  margin-bottom: 25px;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-summary span {
  font-weight: 600;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item {
  display: block;
  margin-bottom: 25px;
  background-color: var(--white);
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemImage {
  position: relative;
  width: 100%;
  padding-top: 225px;
  overflow: hidden;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemContent {
  position: relative;
  width: 100%;
  padding: 15px;
  overflow: hidden;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemContent .itemTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemContent .itemDetails {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemContent .itemDetails .rating {
  margin-bottom: 8px;
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemContent .itemDescription {
  font-size: 14px;
  color: var(--dark-grey);
}
.page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemAction {
  width: 100%;
  display: inline-flex;
}

.page-policy {
  margin-top: 83px;
}
.page-policy .policy__wrapper {
  padding: 35px 0 55px;
}
.page-policy .policy__wrapper .policy__title {
  text-align: center;
}
.page-policy .policy__wrapper .policy__content .policy__item {
  margin-bottom: 25px;
}
.page-policy .policy__wrapper .policy__content .policy__item .policy__item-title {
  font-family: "Belleza", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-policy .policy__wrapper .policy__content .policy__item .policy__item-content {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}
.page-policy .policy__wrapper .policy__content .policy__item .policy__item-content ol {
  list-style: disc;
  margin-left: 25px;
}

.page-order {
  background-color: var(--light-grey);
  padding: 55px 0;
}
.page-order .orderDetail__card {
  border-radius: 8px;
  background-color: var(--white);
  margin-bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.page-order .orderDetail__card .orderDetail__title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 1rem;
  border-bottom: 1px solid var(--grey);
}
.page-order .orderDetail__card .orderDetail__title .title {
  font-size: 22px;
  font-weight: 700;
}
.page-order .orderDetail__card .orderDetail__title .bookingID {
  font-size: 16px;
  font-weight: 300;
}
.page-order .orderDetail__card .orderDetail__content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1rem;
}
.page-order .orderDetail__card .orderDetail__content .orderDetail__content-wrapper {
  margin: 10px 0;
}
.page-order .orderDetail__card .orderDetail__content .orderDetail__content-wrapper p {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-grey);
}
.page-order .orderDetail__card .orderDetail__content .orderDetail__content-wrapper .content {
  font-size: 16px;
  font-weight: 500;
}
.page-order .orderDetail__card .orderDetail__content label {
  display: inline-block;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 1rem;
  color: var(--white);
}
.page-order .orderDetail__card .orderDetail__content label.success {
  background-color: var(--green);
}
.page-order .orderDetail__card .orderDetail__content label.error {
  background-color: var(--red);
}
.page-order .orderDetail__card .orderDetail__action {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.page-order .orderDetail__card .orderDetail__action .action__item {
  flex: 1 1 0px;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
}
.page-order .orderDetail__card .orderDetail__action .action__item i {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--light-blue);
}
.page-order .orderDetail__card .orderDetail__action .action__item p {
  font-size: 16px;
  font-weight: 400;
}
.page-order .orderDetail__card .bookingDetail__content {
  padding: 1rem;
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper {
  margin: 1rem 0 1.5rem;
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper p {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-grey);
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper .content.property__info .property__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper .content.property__info .property__address {
  font-size: 14px;
  color: var(--text-grey);
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper .content.bookingDetail__time {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  max-width: 450px;
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper .content .room__info {
  margin-bottom: 8px;
}
.page-order .orderDetail__card .bookingDetail__content .bookingDetail__item-wrapper .content .room__info i {
  color: var(--light-blue);
}
.page-order .orderDetail__total {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  color: var(--text-grey);
}
.page-order .orderDetail__total .total {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.hotel-gallery {
  width: 100%;
  background: var(--white);
  color: var(--text-primary);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: fixed;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 1000;
  top: 0;
  height: 100%;
  display: none;
}
.hotel-gallery .hotel-gallery__header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 8px 8px 24px;
  position: absolute;
  width: 100vw;
  z-index: 2;
}
.hotel-gallery .hotel-gallery__header .hotel-gallery__close-btn {
  background-color: transparent;
  float: left;
  padding: 10px;
  border: 1px solid var(--grey);
  cursor: pointer;
}
.hotel-gallery .hotel-gallery__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  flex-direction: column;
  height: 100%;
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__container {
  width: 100%;
  height: 300px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1 1;
  height: calc(100vh - 180px);
  padding: 104px 10px 24px;
  margin-top: 0;
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__container .swiper-wrapper {
  align-items: center;
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__container .swiper-wrapper img {
  object-fit: cover;
  -o-object-fit: cover;
  width: unset;
  height: fill-available;
  max-width: 100%;
  max-height: calc(100vh - 321px);
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__thumbnail {
  width: 100%;
  height: 180px;
  padding: 10px 15px;
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__thumbnail .thumbnail__wrapper {
  width: 100%;
  height: 100%;
  padding: 25px 0;
}
.hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__thumbnail .swiper-slide-thumb-active img {
  border: 2px solid var(--light-blue);
}

.hotel__searchSummary {
  margin-top: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--grey);
  background-color: var(--white);
}
.hotel__searchSummary .searchSummary__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.hotel__searchSummary .searchSummary__container .searchSummary__destination,
.hotel__searchSummary .searchSummary__container .searchSummary__dates,
.hotel__searchSummary .searchSummary__container .searchSummary__romms,
.hotel__searchSummary .searchSummary__container .searchSummary__action {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.hotel__searchSummary .searchSummary__container .searchSummary__destination label,
.hotel__searchSummary .searchSummary__container .searchSummary__dates label,
.hotel__searchSummary .searchSummary__container .searchSummary__romms label,
.hotel__searchSummary .searchSummary__container .searchSummary__action label {
  color: var(--text-grey);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.hotel__searchSummary .searchSummary__container .searchSummary__destination .searchSummary__content,
.hotel__searchSummary .searchSummary__container .searchSummary__dates .searchSummary__content,
.hotel__searchSummary .searchSummary__container .searchSummary__romms .searchSummary__content,
.hotel__searchSummary .searchSummary__container .searchSummary__action .searchSummary__content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hotel__searchSummary .searchSummary__container .searchSummary__destination {
  display: flex;
  width: 100%;
}
.hotel__searchSummary .searchSummary__container .searchSummary__dates {
  width: 50%;
}
.hotel__searchSummary .searchSummary__container .searchSummary__romms {
  width: 50%;
}
.hotel__searchSummary .searchSummary__container .searchSummary__action {
  width: 100%;
}

.form__row {
  display: flex;
  flex-direction: column;
}
.form__row .form__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  background-color: var(--light-grey);
  padding: 10px 15px;
  width: 100%;
}
.form__row .form__group .form__group-inline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form__row .form__group.form__check {
  flex-direction: row;
  background: transparent;
}
.form__row .form__group.form__check label {
  padding-left: 15px;
}
.form__row .form__group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-grey);
}
.form__row .form__group input,
.form__row .form__group select {
  padding: 10px;
  font-size: 18px;
  line-height: 2;
  border: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
}
.form__row .form__group textarea {
  resize: none;
  padding: 8px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--grey);
  outline: none;
  background: var(--white);
}
.form__row .form__group .form__check {
  --form-control-color: var(--blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 1em;
  cursor: pointer;
}
.form__row .form__group .form__check input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.5em;
  height: 1.5em;
  border: 0.15em solid currentColor;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.form__row .form__group .form__check input[type=checkbox]::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}
.form__row .form__group .form__check input[type=checkbox].input__check-rounded {
  border-radius: 100%;
}
.form__row .form__group .form__check input[type=checkbox].input__check-rounded::before {
  border-radius: 100%;
}
.form__row .form__group .form__check input[type=checkbox]:checked::before {
  transform: scale(1);
}
.form__row .form__group .input__group {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form__row .form__group .input__group input {
  flex: 1;
}
.form__row .form__group .input__group span {
  cursor: pointer;
  width: 20px;
}
.form__row .form__group .error_text {
  color: var(--red);
  font-size: 13px;
  font-weight: 400;
}

.daterangepicker {
  border-radius: 0 !important;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.daterangepicker::after, .daterangepicker::before {
  display: none;
}
.daterangepicker .drp-calendar {
  max-width: 100%;
}
.daterangepicker .drp-calendar.left {
  width: 100%;
  padding: 15px 0 15px 15px;
}
.daterangepicker .drp-calendar.right {
  width: 100%;
  padding: 15px;
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  font-size: 14px !important;
  width: 42px !important;
  height: 38px !important;
}
.daterangepicker th {
  font-weight: 500 !important;
}
.daterangepicker td.active {
  background-color: var(--blue) !important;
}
.daterangepicker td.start-date, .daterangepicker td.end-date {
  border-radius: 0 !important;
}
.daterangepicker td.in-range {
  background: #0000001a !important;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-wrapper {
  margin-bottom: 25px;
}
.swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--white);
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper .swiper-wrapper .swiper-slide .swiper-pagination-bullet-active {
  background: var(--blue);
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
}
.modal.show {
  visibility: visible;
  opacity: 1;
}
.modal.show .modal__wrapper {
  animation: slideUp 800ms linear both;
}
.modal .modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(100%);
}
.modal .modal__wrapper .modal__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.modal .modal__wrapper .modalContent {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  height: 100%;
  width: 100%;
  max-width: 600px;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal .modal__wrapper .modalContent .modal__close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.modal .modal__wrapper .modalContent .content__list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal.modal__lang .modalContent {
  max-height: 50vh;
}
.modal.modal__lang .modalContent img {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 2px solid var(--dark-grey);
}
.modal.modal__lang .modalContent .title {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 30px;
}
.modal.modal__lang .modalContent .left__content,
.modal.modal__lang .modalContent .right__content {
  padding: 40px 30px 10px;
  flex: 1 1 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal.modal__lang .modalContent .left__content .item,
.modal.modal__lang .modalContent .right__content .item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.modal.modal__lang .modalContent .left__content .item.currency__item span,
.modal.modal__lang .modalContent .right__content .item.currency__item span {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-grey);
}
.modal.modal__lang .modalContent .left__content .item.active,
.modal.modal__lang .modalContent .right__content .item.active {
  color: var(--light-blue);
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 750px;
  }

  .main-title {
    font-size: 42px;
  }

  .main__btn {
    padding: 15px;
  }

  .header .header__content {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .header .header__content .header__logo {
    margin-right: 15px;
  }
  .header .header__content .header__logo img.main__logo {
    max-width: 182px;
    padding: 33px 13px 10px;
  }
  .header .header__content .header__nav-links {
    align-items: flex-start;
  }
  .header .header__content .header__nav-links .header__desktop {
    display: block;
    width: 100%;
  }
  .header .header__content .header__nav-links .header__desktop .header__bottom-nav .header__bottom-nav-list {
    gap: 55px;
  }
  .header .header__content .header__nav-links .header__mobile {
    display: none;
  }
  .header .side__nav {
    display: none !important;
  }

  .footer .footer__wrapper {
    padding: 55px 0;
  }
  .footer .footer__wrapper .footer__content {
    flex-direction: row;
  }

  .hotel__card {
    margin-bottom: 15px;
  }
  .hotel__card .hotel__card-body .hotel__card-info {
    padding: 15px;
    flex: 1;
  }
  .hotel__card .hotel__card-body .hotel__card-info .hotel__card-title {
    font-family: "Belleza", sans-serif;
    font-size: 24px;
  }
  .hotel__card .hotel__card-body .hotel__card-info .hotel__card-subtitle {
    font-size: 14px;
  }
  .hotel__card .hotel__card-body .hotel__card-action {
    padding: 15px;
  }
  .hotel__card .hotel__card-body .hotel__card-action .main__btn {
    width: 125px;
    padding: 15px;
  }

  .main-slider .slider__wrapper {
    flex-direction: column;
    background-attachment: fixed;
  }
  .main-slider .slider__wrapper .slider__caption-wrapper .slider__caption {
    margin: 125px 0 0;
    width: 70%;
    float: right;
    text-align: right;
  }
  .main-slider .slider__wrapper .slider__caption-wrapper .slider__caption .caption__title {
    font-size: 75px;
    line-height: 1.2;
  }
  .main-slider .slider__wrapper .slider__caption-wrapper .slider__caption .caption__subtitle {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
  }

  .search__container {
    z-index: 2;
  }
  .search__container .search__wrapper {
    margin: 55px 0;
    background: transparent;
  }
  .search__container .search__wrapper .search__content {
    flex-direction: row;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
  .search__container .search__wrapper .search__content .search__destination {
    width: 30%;
    padding: 20px 10px 20px 20px;
  }
  .search__container .search__wrapper .search__content .search__date {
    padding: 20px 0;
    width: 40%;
  }
  .search__container .search__wrapper .search__content .search__filter {
    padding: 20px 20px 20px 0;
    width: 20%;
  }
  .search__container .search__wrapper .search__content .search__button {
    width: 20%;
  }

  .search__booking-modal-container .search__booking-wrapper .search__booking-content {
    padding: 25px 15px 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .search__booking-modal-container .search__booking-wrapper .search__booking-content .search__booking-button #close {
    display: none;
  }

  .main-gallery .gallery__wrapper .gallery__list .gallery__item {
    height: 250px;
  }

  .page__header {
    height: 380px;
  }
  .page__header .page__header-content .page__header-title {
    font-size: 48px;
  }

  .main-collection .collection__wrapper .collection__content .collection__item {
    flex-direction: row;
  }
  .main-collection .collection__wrapper .collection__content .collection__item:nth-child(even) {
    flex-direction: row;
  }
  .main-collection .collection__wrapper .collection__content .collection__item .collection__item-img {
    width: 60%;
  }
  .main-collection .collection__wrapper .collection__content .collection__item .collection__item-body {
    width: 40%;
    margin-top: 55px;
  }
  .main-collection .collection__wrapper .collection__content .collection__item .collection__item-body.body-right {
    left: -55px;
  }
  .main-collection .collection__wrapper .collection__content .collection__item .collection__item-body.body-left {
    right: -55px;
  }

  .page-offer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-detail .offer__detail-container .main-title {
    font-size: 38px;
  }

  .page-hotelinfo .hotelinfo__header .main-title {
    font-size: 32px;
  }
  .page-hotelinfo .hotelinfo__slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 25px 0 45px;
  }
  .page-hotelinfo .hotelinfo__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hotelinfo .hotelinfo__amenities {
    margin-bottom: 85px;
  }
  .page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .page-hotelinfo .hotelinfo__amenities .hotelinfo__amenities-wrapper .hotelinfo__amenities-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item {
    flex-direction: row;
  }
  .page-hotelinfo .hotelinfo__rooms .hotelinfo__rooms-list .hotelinfo__rooms-item .room__image {
    padding-top: 20%;
    width: 100%;
    max-width: 320px;
  }
  .page-hotelinfo .hotelinfo__policies {
    padding-bottom: 85px;
  }
  .page-hotelinfo .hotelinfo__policies .hotelinfo__policies-wrapper .hotelinfo__policies-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item {
    height: 225px;
  }
  .page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper {
    flex-direction: row;
  }
  .page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemImage {
    width: 25%;
  }
  .page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody {
    flex-direction: row;
    width: 75%;
    overflow: hidden;
  }
  .page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemContent {
    width: 85%;
  }
  .page-hotel-list .hotelList__wrapper .hotelList__result .hotelList__result-content .hotelList__result-item .itemWrapper .itemBody .itemAction {
    width: 15%;
  }

  .page-register .register__wrapper .register__content {
    padding: 0;
  }
  .page-register .register__wrapper .register__content .register__card-wrapper {
    width: 50%;
    margin: 75px 65px;
  }
  .page-register .register__wrapper .register__content .register__card-wrapper .register__card-body .register__card-aggrement {
    text-align: left;
  }
  .page-register .register__wrapper .register__content .register__heading-wrapper {
    display: block;
    width: 50%;
  }

  .page-checkout .checkout__wrapper .checkout__body {
    flex-direction: row;
  }
  .page-checkout .checkout__wrapper .checkout__body .checkout__body-form {
    width: 65%;
  }
  .page-checkout .checkout__wrapper .checkout__body .checkout__body-form .checkout__content-action .checkout__action-button {
    position: inherit;
    padding: 20px 0 0;
    box-shadow: none;
  }
  .page-checkout .checkout__wrapper .checkout__body .checkout__body-details {
    width: 35%;
  }

  .page-order .orderDetail__card {
    margin: 0 175px 15px;
  }
  .page-order .orderDetail__card .orderDetail__title {
    padding: 1.5rem 1rem;
  }
  .page-order .orderDetail__card .orderDetail__content {
    flex-direction: row;
  }
  .page-order .orderDetail__card .orderDetail__content .orderDetail__content-wrapper {
    flex: 1 0 30%;
    max-width: 300px;
  }

  .hotel-gallery .hotel-gallery__body .hotel-gallery__content .hotel-gallery__thumbnail .thumbnail__wrapper {
    padding: 0;
  }

  .hotel__searchSummary .searchSummary__container .searchSummary__destination,
.hotel__searchSummary .searchSummary__container .searchSummary__dates,
.hotel__searchSummary .searchSummary__container .searchSummary__romms,
.hotel__searchSummary .searchSummary__container .searchSummary__action {
    padding: 0 10px;
  }
  .hotel__searchSummary .searchSummary__container .searchSummary__destination {
    width: 35%;
  }
  .hotel__searchSummary .searchSummary__container .searchSummary__dates {
    width: 30%;
  }
  .hotel__searchSummary .searchSummary__container .searchSummary__romms {
    width: 20%;
  }
  .hotel__searchSummary .searchSummary__container .searchSummary__action {
    width: 15%;
  }

  .daterangepicker {
    width: auto;
  }
  .daterangepicker .drp-calendar.left {
    width: 50%;
  }
  .daterangepicker .drp-calendar.right {
    width: 50%;
  }

  .form__row {
    flex-direction: row;
  }
  .form__row .form__group:nth-child(2) {
    margin-left: 15px;
  }

  .modal.modal__lang .modalContent {
    max-height: 30vh;
  }
  .modal.modal__lang .modalContent .content__list {
    flex-direction: row;
  }
  .modal.modal__lang .modalContent .content__list .left__content,
.modal.modal__lang .modalContent .content__list .right__content {
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 970px;
  }

  .main__btn {
    padding: 20px 15px;
  }

  .search__container .search__wrapper .search__destination {
    padding: 30px 0 30px 25px;
  }
  .search__container .search__wrapper .search__date {
    padding: 30px 0;
  }
  .page-offer__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}
@keyframes shine {
  0% {
    left: -100px;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  5.71% {
    transform: translateY(62.4862%);
  }
  11.31% {
    transform: translateY(36.4581%);
  }
  17.02% {
    transform: translateY(19.0777%);
  }
  22.62% {
    transform: translateY(8.665%);
  }
  28.33% {
    transform: translateY(2.7139%);
  }
  33.93% {
    transform: translateY(-0.2147%);
  }
  45.15% {
    transform: translateY(-1.7093%);
  }
  72.57% {
    transform: translateY(-0.3869%);
  }
  100% {
    transform: translateY(0%);
  }
}

/*# sourceMappingURL=style.css.map */
