* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@page {
  size: auto;
  size: A3;
  margin: 0mm;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;

  color: #4a4a49;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  overflow: visible;
}

a {
  text-decoration: none;
  color: inherit;
}

textarea,
input {
  color: #4a4a49;
  font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
}

textarea:focus,
input:focus {
  outline: none;
}

.hidden {
  display: none !important;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.inline-flex {
  display: inline-flex;
}

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

.flex-row {
  flex-direction: row;
}

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

.justify-content-between {
  justify-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-around {
  justify-content: space-around;
}

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

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-stretch {
  align-items: stretch;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.h-100 {
  height: 100%;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-32 {
  font-size: 32px;
}

.fw-600 {
  font-weight: 600;
}

/* */

.header {
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
  height: 90px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 500ms ease;
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 3;
  font-weight: 600;
  border-bottom: none;
  background: transparent;
  color: #f6f1e4;
}

.header .header-logo {
  display: block;
}

.header .header-logo-dark {
  display: none;
}

.header.sticky,
.subpage .header {
  border-bottom: 1px solid rgb(237, 237, 237);
  background: rgb(255, 255, 255);
  color: rgb(74, 74, 73);
}

.header.sticky .header-logo,
.subpage .header .header-logo {
  display: none;
}

.header.sticky .header-logo-dark,
.subpage .header .header-logo-dark {
  display: block;
}

.header.sticky .header-reservation-button,
.subpage .header .header-reservation-button {
  background: rgb(177, 144, 69);
  color: rgb(246, 241, 228);
}

.header.sticky .header-navigation .header-navigation-item i,
.subpage .header .header-navigation .header-navigation-item i {
  border-color: rgb(74, 74, 73);
}

.header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 65px;
}

.header-navigation {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
}

.header-right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
  justify-content: flex-start;
}

.header-navigation-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

.header-navigation .header-navigation-item i {
  font-size: 8px;
  border-radius: 3px;
  border: 1px solid #fff;
  padding: 2px 2px;
}

.header-phone i {
  font-size: 11px;
}

.header-lang_currency {
  display: flex;
  flex-direction: column;
  cursor: default;
}

.header-lang_currency-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}

.header-lang_currency-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-lang_currency-item-title {
  color: rgb(74, 74, 73);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.header-lang_currency-item-text {
  gap: 10px;
  color: rgb(90, 91, 90);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.header-reservation-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #f6f1e4;
  font-family: SF Pro Text;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: 0.5px solid rgba(246.5, 240.85, 228.01, 0.5);
}

.header-reservation-button i {
  font-size: 10px;
}

.white-radius-modal {
  position: absolute;
  border-radius: 5px;
  box-shadow: rgba(16, 24, 64, 0.24) 0px 12px 40px;
  background: white;
  min-width: 100px;
  min-height: 50px;
}

.white-radius-modal-inner {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  background: white;
  padding: 12px 16px;
  gap: 20px;
  border-radius: 3px;
}

.radio-button {
  border: 1px solid rgb(152, 153, 157);
  border-radius: 9999px;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}

.radio-button.active {
  background: rgb(177, 144, 69);
  border-radius: 16px;
  width: 20px;
  height: 20px;
}

.radio-button.active span {
  background: white;
  border-radius: 16px;
  height: 10px;
  width: 10px;
}

.language-modal,
.search-guest-modal {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  top: 100%;
  position: absolute;
}

.footer .language-modal {
  top: -250px;
}

.language-modal.active,
.search-guest-modal.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  display: block;
}

.mobile-menu {
  z-index: 500;
  position: fixed;
  background: white;
  inset: 0px;
  padding-left: 5%;
  padding-right: 5%;
}

.mobile-menu.active {
  display: block !important;
}

.mobile-menu-title {
  padding-top: 12px;
  padding-bottom: 12px;
  color: black;
  font-size: 16px;
  font-family: "SF Pro Text";
  font-weight: 600;
  line-height: 24px;
}

.mobile-menu-item {
  padding: 16px;
  gap: 20px;
  background: rgb(255, 255, 255);
  border-radius: 3px;
  border: 1px solid rgb(219, 219, 219);
  box-shadow: rgba(16, 24, 64, 0.08) 0px 4px 8px;
  cursor: default;
  text-decoration: none;
}

.mobile-menu-item-img {
  border-radius: 4px;
  object-fit: cover;
}

.mobile-menu-otel-name {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: rgb(136, 137, 140);
  white-space: nowrap;
}

.mobile-menu-otel-location {
  font-family: Marcellus;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: rgb(160, 129, 57);
}

.main-wrapper {
  gap: 130px;
}

.home-banner {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -90px;
  height: 100vh;
  max-height: 900px;
}

.home-banner-title {
  font-weight: 400;
  line-height: 1.25;
  font-family: Marcellus, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  margin-top: 36px;
  margin-bottom: 36px;
  color: white;
  font-size: 58px;
  max-width: 960px;
  text-align: center;
}

.home-banner-slogan {
  border-radius: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fdf4f4;
  padding-left: 12px;
  padding-right: 12px;
}

.home-banner-dark-bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
  background-color: rgba(74, 74, 73, 0.3);
  background-size: cover;
}

.home-banner-image {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.home-banner-content {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  z-index: 2;
  align-items: center;
}
.home-banner-button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #f6f1e4;
  padding: 10px 18px;
  text-decoration: none;
  color: #987931;
  font-family: SF Pro Text;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  word-wrap: break-word;
}
.home-banner-location-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #b19045;
  color: White;
  padding-left: 20px;
  padding-right: 20px;
  height: 40px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.home-banner-mouse-effect {
  bottom: 30px;
}
.home-banner-mouse-effect-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 40px;
  border: 0.6px solid white;
  position: relative;
  border-radius: 60px;
}
.home-banner-mouse-effect-wheel {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 3s infinite;
}
.home-banner-mouse-effect-chevron {
  width: 15px;
  height: 22px;
  position: absolute;
  bottom: 1%;
  animation: hide 3s infinite;
}
.whatsapp-button {
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    text-decoration: none;
    bottom: 0;
    right: 100px;
    height: 60px;
    z-index: 3;
    background-color: #ffffff;
    color: #a08139;
    padding: 0 24px;
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
    box-shadow: 0px 12px 40px rgba(16, 24, 64, 0.24);
    position: fixed;
}
.whatsapp-button img {
  width: 40px;
  height: 40px;
  margin-top: 9px;
  margin-right: 8px;

}
.home-banner-mobile-call-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #b19045;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  position: absolute;
  right: 36px;
  bottom: 36px;
}
.home-banner-mobile-call-button i {
  font-size: 16px;
  color: white;
}
.main-content-4-columns {
  padding-left: 5%;
  padding-right: 5%;
}
.main-content-subtitle {
  gap: 10px;
}
.main-content-subtitle-line {
  width: 40px;
  height: 1px;
  background: #88898c;
}
.main-content-subtitle-text {
  font-family: "Source Sans Pro";
  font-weight: 600;
  line-height: 24px;
  font-size: 16px;
  color: #88898c;
}
.main-content-title {
  font-weight: 400;
  font-size: 42px;
  color: #4a4a49;
  line-height: 52.66px;
  font-family: Marcellus;
  margin-bottom: 45px;
}
.main-content-4-columns-items {
  flex-wrap: wrap;
}
.main-content-4-columns-item {
  width: 25%;
  padding: 10px;
}
.main-content-4-columns-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
}
.main-content-4-columns-item-title {
  font-family: Marcellus;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #4a4a49;
}
.main-content-4-columns-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4a4a49;
}
.main-content-4-columns-item-separator {
  margin-top: 10px;
}
.main-location-container {
  padding-left: 5%;
  padding-right: 5%;
}

.main-location-item {
  gap: 32px;
  padding-top: 55px;
  padding-bottom: 55px;
}
.main-location-item-content {
  z-index: 1;
}
.main-location-item-city {
  color: #88898c;
}

.main-location-item-name {
  font-weight: 400;
  line-height: 1.25;
  font-family: Marcellus, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 32px;
  color: #a08139;
  margin-top: 16px;
  margin-bottom: 16px;
}
.main-location-item-desc {
  line-height: 24px;
  color: #4a4a49;
  font-size: 16px;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 32px;
}
.main-location-item-button {
  padding-top: 20px;
  padding-bottom: 20px;
  white-space: nowrap;
  padding-left: 100px;
  padding-right: 100px;
  width: 100%;
  background: #b19045;
  font-family: "Source Sans Pro";
  font-weight: 600;
  line-height: 16px;
  color: #f6f1e4;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-location-item-gallery {
  position: relative;
  margin-left: 20%;
}
.reverse .main-location-item-gallery {
  margin-right: 20%;
  margin-left: 0%;
}
.main-location-item-gallery-big {
  width: 100%;
  overflow: hidden;
}
.main-location-item-gallery-big-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}
.main-location-item-gallery-line-1 {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  height: 1px;
  background: #c9c9c8;
  z-index: 1;
}
.main-location-item-gallery-line-2 {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 25%;
  height: 5px;
  background: #987931;
  transition: 0.25s;
}
.reverse .main-location-item-gallery-line-2 {
  right: 0%;
  left: auto;
}
.main-location-item-gallery-small {
  position: absolute;
  width: 140px;
  height: 165px;
  object-fit: cover;
  top: 17.5%;
  overflow: hidden;
  z-index: 2;
  transform: translateX(-40%);
  left: 0;
}
.reverse .main-location-item-gallery-small {
  right: 0px;
  transform: translateX(40%);
  left: auto;
}
.main-location-item-gallery-small-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}
.main-reviews {
  padding-left: 5%;
  padding-right: 5%;
}

.main-reviews-navigation {
  gap: 15px;
}

.main-reviews-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: default;
  font-size: 20px;
  cursor: pointer;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 300px;
  padding: 24px;
  height: 367px;
  gap: 30px;
  border: 1px solid rgb(201, 201, 200);
  background: white;
}

.testimonial-text {
  height: 170px;
  overflow-y: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgb(74, 74, 73);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #b19045;
}

.testimonial-location {
  font-size: 16px;
  color: #4a4a49;
}

.testimonial-date {
  font-size: 14px;
  color: #88898c;
}

.testimonial-icon {
  width: 60px;
  height: 13px;
}

.main-reviews-line {
  position: relative;
  width: 100%;
  margin-top: 50px;
  height: 1px;
  background: #c9c9c8;
  z-index: 1;
}

.main-reviews-line-inner {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 12%;
  height: 5px;
  background: #b19045;
  transition: 0.25s;
}

.footer {
  padding-left: 16px;
  padding-right: 16px;
  background: #4a4a49;
  gap: 40px;
  padding-top: 40px;
  color: #f7f1e4;
}
.footer-content,
.footer-links {
  gap: 40px;
}

.footer-newsletter-title {
  color: #f7f1e4;
  font-weight: 400;
  font-size: 16px;
}
.footer-newsletter-form-input {
  flex-grow: 1;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #c9c9c8;
}
.footer-newsletter-form-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: White;
  font-family: SF Pro Text;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  cursor: default;
  background: #b19045;
  padding: 12px 45px;
  border: 0;
  outline: none;
}
.footer-copyright {
  gap: 8px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.footer-links-col-1 {
  gap: 15px;
}

.footer-links-col-2,
.footer-links-col-3 {
  gap: 9px;
}

.footer-links-col-2 .footer-link,
.footer-links-col-3 .footer-link {
  display: block;
  width: 100%;
}

.footer-links-title {
  font-size: 18px;
  font-weight: 600;
  font-family: SF Pro Text;
  width: 100%;
}

.footer-contact {
  gap: 20px;
}
.footer-link {
  color: #f7f1e4;
  font-size: 14px;
}
.footer-contact .footer-link {
  font-size: 16px;
}

.social-links a {
  font-size: 32px;
  color: inherit;
}

.copyright-text {
  font-size: 14px;
}
.list-wrapper {
  padding-left: 5%;
  padding-right: 5%;
  background: White;
  padding-top: 20px;
  gap: 24px;
}
.booking-steps {
  gap: 24px;
  width: 100%;
}
.booking-step-item {
  gap: 10px;
}

.booking-step-item .booking-step-number {
  color: #69696a;
  background: #dbdbdb;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  width: 24px;
  height: 24px;
}

.booking-step-item.active .booking-step-number {
  color: #a08139;
  background: #ebd8ac;
}

.booking-step-item .booking-step-title {
  color: #69696a;
  font-family: SF Pro Text;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.booking-step-item.active .booking-step-title {
  color: #b19045;
}

.subpage-title-text {
  font-family: Marcellus;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  color: #4a4a49;
}

.booking-page-left {
  width: 100%;
}

.booking-page-right {
  width: 100%;
  display: none;
}

.booking-page-summary {
  width: 100%;
  box-shadow: 0px 4px 8px rgba(16, 24, 64, 0.08);
  border: 0.5px #dbdbdb solid;
  padding: 16px;
  gap: 24px;
  background-color: #ffffff;
  border-radius: 3px;
  position: sticky;
  top: 100px;
}

.booking-page-summary-title {
  color: #4a4a49;
  font-family: SF Pro Text;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.booking-page-summary-button {
  gap: 6px;
  height: 40px;
  background: rgb(177, 144, 69);
  color: White;
  font-family: SF Pro Text;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
.booking-page-summary-button i {
  font-size: 12px;
}
.booking-page-summary-button:hover {
  background: #a08139 !important;
}
.booking-page-summary-selection-date-left {
  color: #4a4a49;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  word-wrap: break-word;
}
.booking-page-summary-selection-date-right {
  color: #4a4a49;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
}
.booking-page-summary-selected {
  background: #f6f6f6;
  padding: 10px;
}
.booking-page-summary-selected .booking-page-summary-selection-date-left {
  color: #a08139;
}
.booking-page-summary-selected .booking-page-summary-selection-date-right {
  color: #79797b;
}
.booking-search {
  background: white;
  width: 100%;
  padding: 20px 10px;
  box-shadow: rgba(16, 24, 64, 0.08) 0px 4px 8px;
}

.booking-search-inner {
  position: relative;
}

.booking-search-item {
  cursor: pointer;
  padding-left: 20px;
}

.booking-search-item + .booking-search-item {
  border-left: 1px solid rgb(201, 201, 200);
}

.booking-search-date-select {
  z-index: 2;
}

.booking-search .t-datepicker {
  position: absolute;
}
.booking-search .t-datepicker .t-check-in,
.booking-search .t-datepicker .t-check-out {
  border: 0;
}
.booking-search .t-datepicker .t-check-in .t-dates,
.booking-search .t-datepicker .t-check-in .t-input-check-in,
.booking-search .t-datepicker .t-check-out .t-dates,
.booking-search .t-datepicker .t-check-out .t-input-check-out {
  visibility: hidden;
}

.booking-search-item-title {
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: rgb(74, 74, 73);
}

.booking-search-item-date {
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgb(160, 129, 57);
}
.search-guest-modal {
  position: absolute;
  border-radius: 5px;
  box-shadow: rgba(16, 24, 64, 0.24) 0px 12px 40px;
  background: white;
  min-width: 100px;
  min-height: 50px;
}
.search-guest-modal-inner {
  min-width: 260px;
}

.search-guest-modal-submit-button {
  background: rgb(177, 144, 69);
  height: 40px;
  margin-bottom: 20px;
  margin-left: 16px;
  margin-right: 16px;
  color: white;
}
.search-guest-modal-top {
  border-bottom: 1px solid rgb(201, 201, 200);
  padding-top: 24px;
  padding-bottom: 24px;
}
.search-guest-modal-content {
  padding-left: 16px;
  padding-right: 16px;
}
.search-guest-modal-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  font-family: "Source Sans Pro";
}
.search-guest-modal-form-title {
  font-size: 14px;
  line-height: 20px;
  color: rgb(74, 74, 73);
}
.search-guest-modal-input {
  background: none;
  border: none;
  outline: none;
  width: auto;
  max-width: 50px;
}

.search-guest-modal-form-item {
  background: rgb(246, 246, 246);
  padding-top: 4px;
  padding-bottom: 4px;
  gap: 4px;
}

.search-guest-modal-form-item a {
  color: rgb(177, 144, 69);
  padding: 5px 10px;
}

.search-guest-modal-input {
  width: 100%;
  text-align: center;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

.location-list {
  flex-flow: wrap;
  margin: -10px;
}

.location-list-item {
  width: 50%;
  padding: 10px;
}

.location-list-item-inner {
  padding: 16px;
  gap: 20px;
  background: rgb(255, 255, 255);
  border-radius: 3px;
  border: 1px solid rgb(219, 219, 219);
  box-shadow: rgba(16, 24, 64, 0.08) 0px 4px 8px;
  cursor: default;
}

.location-list-item-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: rgb(136, 137, 140);
  white-space: nowrap;
}

.location-list-item-city {
  font-family: Marcellus;
  font-size: 22px;
  line-height: 28px;
  color: rgb(160, 129, 57);
}

.location-list-item-ribbon {
  width: 42px;
  height: 9px;
}

.location-list-item-image {
  height: 300px;
  width: 100%;
  display: none;
  object-fit: cover;
}

.location-list-item-link {
  border: 1px solid rgb(177, 144, 69);
  background: white;
  padding-top: 11px;
  padding-bottom: 11px;
  color: rgb(160, 129, 57);
  font-size: 14px;
  font-family: "SF Pro Text";
  font-weight: 500;
  line-height: 16px;
}

.location-list-item-link:hover {
  background: rgb(177, 144, 69);
  color: white;
}

.booking-search-button {
  padding: 14px 21px;
  gap: 8px;
  border-radius: 3px;
  border: 1px solid rgb(160, 129, 57);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgb(160, 129, 57);
}

.booking-search-button:hover {
  background: rgb(177, 144, 69);
  color: white;
}

.room-list-item {
  border: 1px solid rgb(219, 219, 219);
  background: rgb(255, 255, 255);
}

.room-list-item-gallery {
  width: 100%;
  height: 308px;
}

.room-list-item-gallery-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.room-list-item-gallery-prev,
.room-list-item-gallery-next {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  background: rgba(74, 74, 73, 0.4);
  border-radius: 100px;
  padding: 5px;
  width: 40px !important;
  height: 40px !important;
  color: white !important;
}

.room-list-item-gallery-prev {
  left: 20px;
}

.room-list-item-gallery-next {
  right: 20px;
}

.room-list-item-gallery-prev:hover,
.room-list-item-gallery-next:hover {
  background: rgba(74, 74, 73, 0.5);
}

.room-list-item-gallery img {
  width: 100%;
  height: 308px;
  object-fit: cover;
}

.room-list-item-content {
  padding: 16px;
}

.room-list-item-room-name {
  font-family: "Source Sans Pro";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: rgb(74, 74, 73);
}

.room-list-item-modal-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: rgb(66, 151, 119);
}

.radio-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.custom-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgb(201, 201, 200);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #444;
  font-size: 14px;
  font-weight: 600;
}

.custom-radio.active {
  border-color: #b19045;
}

.custom-radio.active:hover {
  cursor: default;
}

.custom-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -9999px;
}

.custom-radio::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #98999d;
  border-radius: 50%;
  margin-right: 10px;
  background-color: white;
  transition: all 0.3s ease;
}

.custom-radio input[type="radio"]:checked + .radio-label {
  color: #b19045;
}

.custom-radio input[type="radio"]:checked ~ .radio-label::before {
  border-color: #b19045;
}

.custom-radio input[type="radio"]:checked ~ .radio-label::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 5px solid #b19045;
  background-color: #fff;
  border-radius: 50%;
}

.room-list-item-options {
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  color: rgb(74, 74, 73);
}

.room-list-item-prices {
  margin-top: 25px;
}

.room-list-item-prices_old-price {
  color: rgb(168, 169, 173);
  text-decoration: line-through;
  font-size: 14px;
  line-height: 19px;
}

.room-list-item-prices_price {
  color: rgb(74, 74, 73);
  font-weight: 600;
  font-size: 24px;
  line-height: 18px;
  gap: 3px;
}

.room-list-item-prices_currency {
  font-size: 16px;
  line-height: 12px;
}

.room-list-item-button {
  font-family: "Source Sans Pro";
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: rgb(246, 241, 228);
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  width: 100%;
  background: rgb(160, 129, 57);
}

.room-modal {
  opacity: 0;
  transform: scale(0.8);
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.room-modal.active {
  opacity: 1;
  transform: scale(1);
  display: block;
}

.room-modal-overlay {
  z-index: 1005;
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 250ms;
}

.room-modal-wrapper {
  width: 90%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  overflow: hidden;
  position: absolute;
  box-sizing: border-box;
}

.room-modal-inner {
  padding: 24px;
  background: white;
  width: 100%;
  box-shadow: rgba(16, 24, 64, 0.24) 0px 12px 40px;
  height: 100%;
}

.room-modal-title {
  color: rgb(74, 74, 73);
  font-family: Marcellus;
  font-size: 22px;
  font-weight: 400;
  overflow-wrap: break-word;
}
.room-modal-close {
  color: #79797b;
  font-size: 20px;
}

.room-modal-gallery {
  width: 60%;
}

.room-modal-swiper-img {
  width: 100%;
  height: auto;
}

.room-modal-right-content {
  width: 40%;
  padding: 20px 0;
}

.room-modal-right-content-inner {
  overflow-wrap: break-word;
}

.room-modal-scrollbar {
  height: 100%;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.room-modal-scrollbar-container {
  padding-right: 0px;
  padding-bottom: 0px;
  position: absolute;
  overflow: scroll;
  box-sizing: border-box;
  height: 100%;
}

.room-modal-right-content-title {
  color: rgb(74, 74, 73);
  font-family: "SF Pro Text";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.room-modal-right-content-features {
  display: flex;
  flex-flow: wrap;
  gap: 24px;
}

.room-modal-right-content-feature-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.room-modal-right-content-description {
  color: rgb(74, 74, 73);
  font-size: 14px;
  font-weight: 400;
  left: 0px;
  line-height: 20px;
}

.booking-page-summary-total-text {
  color: rgb(74, 74, 73);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  overflow-wrap: break-word;
}

.booking-page-summary-total-price {
  color: rgb(160, 129, 57);
  font-family: "SF Pro Text";
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: right;
  overflow-wrap: break-word;
}

.complete-page-title {
  font-size: 24px;
}

.form-title {
  font-family: "Source Sans Pro";
  font-weight: 600;
  line-height: 24px;
  color: rgb(90, 91, 90);
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: rgb(90, 91, 90);
}

.form-element {
  border: 1px solid rgb(201, 201, 200);
  padding: 10px 16px;
  font-size: 16px;
}

.payment-form-border {
  border: 1px solid rgb(201, 201, 200);
}

.form-seperator {
  height: 1px;
  width: 100%;
  background: rgb(201, 201, 200);
}

.payment-tab-dot {
  width: 20px;
  height: 20px;
  border: 1px solid rgb(152, 153, 157);
  border-radius: 9999px;
  background: white;
}

.payment-tab-title {
  cursor: pointer;
}

.payment-tab-title.active {
  cursor: default;
}

.payment-tab-title.active .payment-tab-dot {
  border: 5px solid rgb(177, 144, 69);
}

.payment-tab-title-text1 {
  color: rgb(160, 129, 57);
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.payment-tab-title-text2 {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.detail-top-description {
  font-size: 14px;
  line-height: 20px;
  padding-top: 45px;
  padding-bottom: 45px;
}

.detail-top-columns {
  gap: 32px;
  flex-wrap: wrap;
}

.detail-top-column-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Source Sans Pro";
  color: rgb(74, 74, 73);
  margin-bottom: 4px;
}

.detail-top-column-lined-text {
  font-size: 14px;
  color: rgb(74, 74, 73);
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 0.5px dashed rgb(168, 169, 173);
}

.activities-item-content {
  gap: 8px;
  margin-top: -65px;
  padding-top: 12px;
  margin-right: 32px;
  background: rgb(255, 255, 255);
}

.activities-item-title {
  color: rgb(74, 74, 73);
  font-family: Marcellus;
  font-size: 22px;
  font-weight: 400;
  padding-top: 8px;
  padding-bottom: 8px;
}

.activities-item-description {
  height: 100%;
  color: rgb(74, 74, 73);
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  line-height: 24px;
  overflow-wrap: break-word;
}

.map-over-content {
  padding: 24px;
  background: rgb(255, 252, 247);
}

.map-over-content-title {
  font-family: "Marcellus";
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: rgb(74, 74, 73);
}

.map-over-content-button {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  background: rgb(177, 144, 69);
  font-family: "Source Sans Pro";
  font-weight: 600;
  line-height: 16px;
  color: rgb(246, 241, 228);
  text-decoration: none;
  cursor: pointer;
}

.detail-four-columns {
  gap: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-four-column-item {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgb(219, 219, 219);
  gap: 16px;
}

.detail-four-column-item-text {
  color: rgb(160, 129, 57);
  font-weight: 600;
  font-size: 20px;
}
.detail-others-slider-item {
  text-decoration: none;
  color: inherit;
}

.detail-others-slider-item-city {
  font-weight: 600;
  font-size: 16px;
  color: rgb(136, 137, 140);
  font-family: "Source Sans Pro";
}

.detail-others-slider-item-name {
  font-weight: 400;
  font-size: 32px;
  color: rgb(160, 129, 57);
  font-family: Marcellus;
}

.static-page {
  padding: 50px 5%;
}

.static-page.about {
  padding-top: 0px;
}

.contact-page {
  gap: 50px;
}

.link {
  text-decoration: underline;
  color: inherit;
}

.contact-button {
  height: 40px;
  cursor: pointer;
  background: rgb(177, 144, 69);
  color: rgb(247, 241, 228);
  font-family: "SF Pro Text";
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  overflow-wrap: break-word;
  border: 0;
}

.contact-title {
  color: rgb(74, 74, 73);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: "SF Pro Text";
}

.contact-info-icon {
  color: #a08139;
}

.page_left-menu {
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 60px;
}

.left-menu {
  padding: 8px;
  border: 1px solid rgb(201, 201, 200);
  font-size: 14px;
  font-weight: 600;
}

.left-menu a {
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  display: flex;
  flex-direction: row;
  color: rgb(121, 121, 123);
  width: 100%;
}

.left-menu a.active {
  background: rgb(246, 241, 228);
  color: rgb(160, 129, 57);
}

.left-menu a:not(.active) i {
  display: none;
}

.mobile-left-menu-opener {
  padding: 12px;
  background: rgb(246, 241, 228);
  color: rgb(160, 129, 57);
}

.static-page-top-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.page_left-menu-title {
  color: rgb(74, 74, 73);
  font-family: "SF Pro Text";
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  overflow-wrap: break-word;
}

.cookie-popup {
  background: rgb(82, 82, 82);
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-size: 12px;
  line-height: 18px;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
  max-width: 450px;
  font-weight: 600;
}

.cookie-popup-button {
  width: 130px;
  height: 30px;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  color: white;
  background-color: rgb(82, 82, 82);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  cursor: default;
}

.cookie-popup-button.blue {
  background-color: rgb(0, 156, 251);
}

.cookie-popup-button:hover {
  background-color: rgb(0, 156, 251) !important;
}

.mobile-booking-summary-inner {
  z-index: 6;
  background: white;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  transition: opacity 300ms;
  visibility: visible;
  opacity: 1;
  box-shadow: rgba(16, 24, 64, 0.24) 0px 12px 40px;
}

.mobile-booking-summary-toggle-button {
  font-size: 14px;
}

.mobile-booking-summary-toggle-button .fa-chevron-down,
.mobile-booking-summary.open .mobile-booking-summary-toggle-button .fa-chevron-up,
.mobile-booking-summary-container {
  display: none;
}

.mobile-booking-summary.open .mobile-booking-summary-toggle-button .fa-chevron-down,
.mobile-booking-summary.open .mobile-booking-summary-container {
  display: block;
}

.mobile-sticky-footer-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 16px;
  align-items: flex-end;
}

.mobile-sticky-footer-button-orange {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background-color: #e99b05;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mobile-sticky-button-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
}

.mobile-sticky-button-content a {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  font-weight: bold;
}

.mobile-sticky-button-content a span {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background-color: #0077ff;
  border-radius: 100%;
  font-size: 20px;
}

.mobile-sticky-button-content a.whatsapp span {
  background-color: #4fce5d;
  font-size: 24px;
}

.mobile-sticky-footer-button-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0,0,0,.25);
  z-index: 9;
}