/*************************/
/* Variables */
/*************************/
/*************************/
/* Functions */
/*************************/
/*************************/
/* Mixins */
/*************************/
.btn {
  position: relative;
  display: inline-flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  min-height: 41px;
  width: auto;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color 0.25s ease-in-out, border 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out;
  color: #524e4b;
  text-decoration: none;
  padding-inline: 16px;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .btn {
    gap: 4px;
    padding-inline: 24px;
    min-height: 48px;
  }
}
.btn:focus-visible {
  outline: none;
}
.btn span {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  display: block;
  text-align: center;
  pointer-events: none;
}
.btn span strong {
  color: currentColor;
}
.btn .icon {
  flex-shrink: 0;
}
.btn .icon--close {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-cross.svg");
  mask-image: url("../images/svg/icons/icon-cross.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.btn .icon--back {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.btn .icon--chevron-down {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.btn .icon--chevron-left {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.btn .icon--menu-burger {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.btn .icon--pen {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-edit.svg");
  mask-image: url("../images/svg/icons/icon-edit.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.btn-solid-primary {
  background: #a05a3d;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .btn-solid-primary:hover {
    color: #ffffff;
    background: #7b452f;
  }
}
.btn-solid-primary.disabled {
  color: #524e4b;
  background-color: #ecebe8;
}
html:not(.touchevents) .btn-solid-primary.disabled:hover, html:not(.touchevents) .btn-solid-primary.disabled:focus-visible {
  background-color: #d5d3cc;
}
.btn-outline-primary {
  border: 1px solid #a05a3d;
}
html:not(.touchevents) .btn-outline-primary:hover, html:not(.touchevents) .btn-outline-primary:focus-visible {
  border: 1px solid transparent;
  color: #ffffff;
  background: #7b452f;
}
.btn-icon {
  padding-inline: 0;
  width: 41px;
  background-color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .btn-icon {
    width: 48px;
  }
}
html:not(.touchevents) .btn-icon:hover, html:not(.touchevents) .btn-icon:focus-visible {
  color: #a05a3d;
}
.btn-close {
  width: 48px;
}
@media only screen and (min-width: 992px) {
  .btn-close {
    min-height: 40px;
  }
}
.btn-secondary {
  padding-inline: 8px;
  border: none;
  position: relative;
  gap: 4px;
}
.btn-secondary.selected::before, .btn-secondary.active::before, .room-modal__filters .room-menu-item-filter.nav-link.active .btn-secondary.btn::before {
  left: 8px;
  right: 8px;
}
html:not(.touchevents) .btn-secondary:hover::before, html:not(.touchevents) .btn-secondary:focus-visible::before {
  left: 8px;
  right: 8px;
}
@media only screen and (min-width: 992px) {
  html:not(.touchevents) .btn-secondary:hover::before, html:not(.touchevents) .btn-secondary:focus-visible::before {
    left: 16px;
    right: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .btn-secondary {
    gap: 8px;
    padding-inline: 16px;
  }
  .btn-secondary.selected::before, .btn-secondary.active::before, .room-modal__filters .room-menu-item-filter.nav-link.active .btn-secondary.btn::before {
    left: 16px;
    right: 16px;
  }
}
.btn-secondary.selected, .btn-secondary.active, .room-modal__filters .room-menu-item-filter.nav-link.active .btn-secondary.btn {
  color: #a05a3d;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 51%;
  right: 51%;
  height: 1px;
  background-color: currentColor;
  transition: left 0.25s ease-in-out, right 0.25s ease-in-out;
}
.btn-calendar {
  background-color: #a05a3d;
  color: #ffffff;
  padding-left: 8px;
}
@media only screen and (min-width: 992px) {
  .btn-calendar {
    padding-left: 16px;
  }
}
.btn-calendar span {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .btn-calendar span {
    gap: 16px;
  }
}
.btn-calendar span::before {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-calendar-off.svg");
  mask-image: url("../images/svg/icons/icon-calendar-off.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  content: "";
}
.btn-calendar span::after {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-calendar-on.svg");
  mask-image: url("../images/svg/icons/icon-calendar-on.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  content: "" !important;
  position: absolute !important;
  display: block !important;
  left: 0px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 0;
  visibility: visible !important;
}
.btn-calendar span::before, .btn-calendar span::after {
  transition: opacity 0.4s ease;
  flex: 0 0 24px;
}
html:not(.touchevents) .btn-calendar:hover span::before, html:not(.touchevents) .btn-calendar:focus-visible span::before {
  opacity: 0;
}
html:not(.touchevents) .btn-calendar:hover span::after, html:not(.touchevents) .btn-calendar:focus-visible span::after {
  opacity: 1 !important;
}
.btn-calendar.disabled {
  color: #524e4b;
  background-color: #ecebe8;
}
.btn-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media only screen and (min-width: 992px) {
  .btn-group {
    gap: 32px;
  }
}

.containbtn1 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .containbtn1 {
    column-gap: 56px;
  }
}

.diadao-button-close {
  position: relative;
  display: inline-flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  min-height: 41px;
  width: auto;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color 0.25s ease-in-out, border 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out;
  color: #524e4b;
  text-decoration: none;
  padding-inline: 16px;
  cursor: pointer;
  padding-inline: 0;
  width: 41px;
  background-color: #ffffff;
  background: #a05a3d;
  color: #ffffff;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .diadao-button-close {
    gap: 4px;
    padding-inline: 24px;
    min-height: 48px;
  }
}
.diadao-button-close:focus-visible {
  outline: none;
}
.diadao-button-close span {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  display: block;
  text-align: center;
  pointer-events: none;
}
.diadao-button-close span strong {
  color: currentColor;
}
.diadao-button-close .icon {
  flex-shrink: 0;
}
.diadao-button-close .icon--close {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-cross.svg");
  mask-image: url("../images/svg/icons/icon-cross.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.diadao-button-close .icon--back {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.diadao-button-close .icon--chevron-down {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.diadao-button-close .icon--chevron-left {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.diadao-button-close .icon--menu-burger {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.diadao-button-close .icon--pen {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-edit.svg");
  mask-image: url("../images/svg/icons/icon-edit.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .diadao-button-close {
    width: 48px;
  }
}
html:not(.touchevents) .diadao-button-close:hover, html:not(.touchevents) .diadao-button-close:focus-visible {
  color: #a05a3d;
}
@media only screen and (min-width: 992px) {
  .diadao-button-close:hover {
    color: #ffffff;
    background: #7b452f;
  }
}
.diadao-button-close svg {
  width: 16px;
  height: 16px;
}

html {
  font-family: "Faustina", Times, serif;
  font-size: 16px;
  line-height: 1.5;
}
html body {
  color: #524e4b;
}
html body strong {
  color: currentColor;
  font-weight: 500;
}
html body a:not([class*=btn]):not([class*=arrow-link]):not(.sitemap__item a) {
  transition: color 0.25s ease-in-out, opacity 0.25s ease-in-out, background 0.25s ease-in-out;
  text-decoration: none;
}
html body a:not([class*=btn]):not([class*=arrow-link]):not(.sitemap__item a) span {
  pointer-events: none;
}
html:not(.touchevents) html body a:not([class*=btn]):not([class*=arrow-link]):not(.sitemap__item a):hover, html:not(.touchevents) html body a:not([class*=btn]):not([class*=arrow-link]):not(.sitemap__item a):focus-visible {
  color: #a05a3d;
}

.label-medium, .booking-modal__menu__links a {
  font-family: "Faustina", Times, serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.52px;
}
@media only screen and (min-width: 992px) {
  .label-medium, .booking-modal__menu__links a {
    font-size: 32px;
    letter-spacing: 0.64px;
  }
}

.label-small, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button span, html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close span,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close span,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close span,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close span, body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area, .btn span, .diadao-button-close span {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  .label-small, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button span, html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close span,
  html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close span,
  html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close span,
  html body.diadao-sdkroberthotels #diadao-qs-snippet-close span, body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area, .btn span, .diadao-button-close span {
    font-size: 16px;
  }
}
.label-small.light, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button span.light, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span.light, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button span.light, html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close span.light,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close span.light,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close span.light,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close span.light, body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .light.gform_drop_area, .btn span.light, .diadao-button-close span.light {
  font-weight: 400;
}

.suptitle, .card__category {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.61;
  letter-spacing: 0.52px;
}
@media only screen and (min-width: 992px) {
  .suptitle, .card__category {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.64px;
  }
}

.title-n0 {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 992px) {
  .title-n0 {
    font-size: 96px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
@media only screen and (min-width: 1280px) {
  .title-n0 {
    font-size: 120px;
    line-height: 1.13em;
  }
}

.title-n1, .kwpb-wysiwig h1, .card__title strong {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 640px) {
  .title-n1, .kwpb-wysiwig h1, .card__title strong {
    font-size: 68px;
  }
}
@media only screen and (min-width: 992px) {
  .title-n1, .kwpb-wysiwig h1, .card__title strong {
    font-size: 96px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.title-n2, .kwpb-wysiwig h2 {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (min-width: 640px) {
  .title-n2, .kwpb-wysiwig h2 {
    font-size: 56px;
  }
}

.title-n3, .kwpb-wysiwig h3 {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (min-width: 640px) {
  .title-n3, .kwpb-wysiwig h3 {
    font-size: 40px;
  }
}

.title-n4, .kwpb-wysiwig h4 {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (min-width: 640px) {
  .title-n4, .kwpb-wysiwig h4 {
    font-size: 32px;
  }
}

.title-n5, .kwpb-wysiwig h5 {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (min-width: 640px) {
  .title-n5, .kwpb-wysiwig h5 {
    font-size: 24px;
  }
}

.title-n6, .kwpb-wysiwig h6 {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media only screen and (min-width: 640px) {
  .title-n6, .kwpb-wysiwig h6 {
    font-size: 20px;
  }
}

.subtitle {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a05a3d;
}
@media only screen and (min-width: 640px) {
  .subtitle {
    font-size: 32px;
  }
}

.text-n1,
.text-n2,
.kwpb-wysiwig ol,
.kwpb-wysiwig ul,
.text-n3,
.card-area__feature__text strong,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings,
.pseudoh1 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4em;
}
@media only screen and (min-width: 992px) {
  .text-n1,
  .text-n2,
  .kwpb-wysiwig ol,
  .kwpb-wysiwig ul,
  .text-n3,
  .card-area__feature__text strong,
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings,
  .pseudoh1 {
    font-size: 32px;
    line-height: 1.25em;
  }
}
.text-n1 p,
.text-n2 p,
.kwpb-wysiwig ol p,
.kwpb-wysiwig ul p,
.text-n3 p,
.card-area__feature__text strong p,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings p,
.pseudoh1 p {
  margin-bottom: 1.4em;
}
@media only screen and (min-width: 992px) {
  .text-n1 p,
  .text-n2 p,
  .kwpb-wysiwig ol p,
  .kwpb-wysiwig ul p,
  .text-n3 p,
  .card-area__feature__text strong p,
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings p,
  .pseudoh1 p {
    margin-bottom: 1.25em;
  }
}
.text-n1 p:last-child,
.text-n2 p:last-child,
.kwpb-wysiwig ol p:last-child,
.kwpb-wysiwig ul p:last-child,
.text-n3 p:last-child,
.card-area__feature__text strong p:last-child,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings p:last-child,
.pseudoh1 p:last-child {
  margin-bottom: 0px;
}
.text-n1 ul,
.text-n2 ul,
.kwpb-wysiwig ol ul,
.kwpb-wysiwig ul ul,
.text-n3 ul,
.card-area__feature__text strong ul,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul,
.pseudoh1 ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 1.4em;
}
@media only screen and (min-width: 992px) {
  .text-n1 ul,
  .text-n2 ul,
  .kwpb-wysiwig ol ul,
  .kwpb-wysiwig ul ul,
  .text-n3 ul,
  .card-area__feature__text strong ul,
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul,
  .pseudoh1 ul {
    margin-bottom: 1.25em;
  }
}
.text-n1 ul:last-child,
.text-n2 ul:last-child,
.kwpb-wysiwig ol ul:last-child,
.kwpb-wysiwig ul ul:last-child,
.text-n3 ul:last-child,
.card-area__feature__text strong ul:last-child,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul:last-child,
.pseudoh1 ul:last-child {
  margin-bottom: 0px;
}
.text-n1 ul li,
.text-n2 ul li,
.kwpb-wysiwig ol ul li,
.kwpb-wysiwig ul ul li,
.text-n3 ul li,
.card-area__feature__text strong ul li,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul li,
.pseudoh1 ul li {
  position: relative;
  padding-left: 1.6em;
}
@media only screen and (min-width: 992px) {
  .text-n1 ul li,
  .text-n2 ul li,
  .kwpb-wysiwig ol ul li,
  .kwpb-wysiwig ul ul li,
  .text-n3 ul li,
  .card-area__feature__text strong ul li,
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul li,
  .pseudoh1 ul li {
    padding-left: 36px;
  }
}
.text-n1 ul li::before,
.text-n2 ul li::before,
.kwpb-wysiwig ol ul li::before,
.kwpb-wysiwig ul ul li::before,
.text-n3 ul li::before,
.card-area__feature__text strong ul li::before,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul li::before,
.pseudoh1 ul li::before {
  content: "";
  position: absolute;
  left: 0.8em;
  top: 0.7em;
  width: 0.25em;
  height: 0.25em;
  background-color: currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 992px) {
  .text-n1 ul li::before,
  .text-n2 ul li::before,
  .kwpb-wysiwig ol ul li::before,
  .kwpb-wysiwig ul ul li::before,
  .text-n3 ul li::before,
  .card-area__feature__text strong ul li::before,
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings ul li::before,
  .pseudoh1 ul li::before {
    left: 18px;
  }
}
.kwpb-fo-edit-enabled .text-n1:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .text-n1:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .text-n2:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .kwpb-wysiwig ol:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-wysiwig .kwpb-fo-edit-enabled ol:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .kwpb-wysiwig ul:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-wysiwig .kwpb-fo-edit-enabled ul:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .text-n2:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .kwpb-wysiwig ol:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-wysiwig .kwpb-fo-edit-enabled ol:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .kwpb-wysiwig ul:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-wysiwig .kwpb-fo-edit-enabled ul:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .text-n3:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .card-area__feature__text strong:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.card-area__feature__text .kwpb-fo-edit-enabled strong:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .kwpb-fo-edit-enabled .diadao-qs__remainings:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .text-n3:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .card-area__feature__text strong:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.card-area__feature__text .kwpb-fo-edit-enabled strong:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .kwpb-fo-edit-enabled .diadao-qs__remainings:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2),
.kwpb-fo-edit-enabled .pseudoh1:not(.reviews__slide__description):not(.inmodal) p:nth-last-child(2),
.kwpb-fo-edit-enabled .pseudoh1:not(.reviews__slide__description):not(.inmodal) ul:nth-last-child(2) {
  margin-bottom: 0px;
}
.text-n1 strong,
.text-n1 bold, .text-n1.strong,
.text-n2 strong,
.kwpb-wysiwig ol strong,
.kwpb-wysiwig ul strong,
.text-n2 bold,
.kwpb-wysiwig ol bold,
.kwpb-wysiwig ul bold,
.text-n2.strong,
.kwpb-wysiwig ol.strong,
.kwpb-wysiwig ul.strong,
.text-n3 strong,
.card-area__feature__text strong strong,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings strong,
.text-n3 bold,
.card-area__feature__text strong bold,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings bold,
.text-n3.strong,
.card-area__feature__text strong.strong,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .strong.diadao-qs__remainings,
.pseudoh1 strong,
.pseudoh1 bold,
.pseudoh1.strong {
  font-weight: 500;
}
.text-n1 a:not(.btn):not(.arrow-link),
.text-n2 a:not(.btn):not(.arrow-link),
.kwpb-wysiwig ol a:not(.btn):not(.arrow-link),
.kwpb-wysiwig ul a:not(.btn):not(.arrow-link),
.text-n3 a:not(.btn):not(.arrow-link),
.card-area__feature__text strong a:not(.btn):not(.arrow-link),
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings a:not(.btn):not(.arrow-link),
.pseudoh1 a:not(.btn):not(.arrow-link) {
  color: #a05a3d;
}
html:not(.touchevents) .text-n1 a:not(.btn):not(.arrow-link):hover, html:not(.touchevents) .text-n1 a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .text-n2 a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .kwpb-wysiwig ol a:not(.btn):not(.arrow-link):hover,
.kwpb-wysiwig html:not(.touchevents) ol a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .kwpb-wysiwig ul a:not(.btn):not(.arrow-link):hover,
.kwpb-wysiwig html:not(.touchevents) ul a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .text-n2 a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .kwpb-wysiwig ol a:not(.btn):not(.arrow-link):focus-visible,
.kwpb-wysiwig html:not(.touchevents) ol a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .kwpb-wysiwig ul a:not(.btn):not(.arrow-link):focus-visible,
.kwpb-wysiwig html:not(.touchevents) ul a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .text-n3 a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .card-area__feature__text strong a:not(.btn):not(.arrow-link):hover,
.card-area__feature__text html:not(.touchevents) strong a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings a:not(.btn):not(.arrow-link):hover,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price html:not(.touchevents) .diadao-qs__remainings a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .text-n3 a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .card-area__feature__text strong a:not(.btn):not(.arrow-link):focus-visible,
.card-area__feature__text html:not(.touchevents) strong a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings a:not(.btn):not(.arrow-link):focus-visible,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price html:not(.touchevents) .diadao-qs__remainings a:not(.btn):not(.arrow-link):focus-visible,
html:not(.touchevents) .pseudoh1 a:not(.btn):not(.arrow-link):hover,
html:not(.touchevents) .pseudoh1 a:not(.btn):not(.arrow-link):focus-visible {
  color: #524e4b;
}

@media only screen and (min-width: 992px) {
  .text-n2, .kwpb-wysiwig ol, .kwpb-wysiwig ul {
    font-size: 24px;
    line-height: 1.33em;
  }
}

@media only screen and (min-width: 992px) {
  .text-n3, .card-area__feature__text strong, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings {
    font-size: 18px;
    line-height: 1.33em;
  }
}

.pseudoh1 {
  font-size: 16px;
  line-height: 1.5em;
}
@media only screen and (min-width: 992px) {
  .pseudoh1 {
    font-size: 24px;
    line-height: 1.33em;
  }
}

.white {
  color: #ffffff;
}

.primary, .card-area__feature__text strong {
  color: #a05a3d;
}

.screen-reader-text {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

body.diadao-gform-labels .gform_wrapper .gform_required_legend {
  display: none;
}
body.diadao-gform-labels .gform_wrapper .gform_validation_errors {
  margin-bottom: 10px;
}
body.diadao-gform-labels .gform_wrapper .gform_validation_errors .gform_submission_error {
  color: #dc3545;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}
body.diadao-gform-labels .gform_wrapper .gform_confirmation_message {
  font-size: 14px;
  color: #28a745;
  margin-bottom: 10px;
  font-weight: bold;
}
body.diadao-gform-labels .gform_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gform_fields {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) {
  body.diadao-gform-labels .gform_wrapper form .gform_body .gform_fields {
    gap: 24px;
  }
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield {
  position: relative;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--width-half {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--width-half {
    width: calc((100% - 16px * (2 - 1)) / 2);
  }
}
@media only screen and (min-width: 992px) {
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--width-half {
    width: calc((100% - 24px * (2 - 1)) / 2);
  }
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--width-full {
  width: 100%;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.hidden_label .gfield_label {
  display: none;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield_description {
  display: none;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=text],
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=email],
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=tel],
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=number],
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=date],
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=url],
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container textarea,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container select {
  display: block;
  width: 100%;
  height: 56px;
  padding: 10px 16px 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.5);
  color: #453D3A;
}
@media only screen and (min-width: 640px) {
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=text],
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=email],
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=tel],
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=number],
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=date],
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=url],
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container textarea,
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container select {
    height: 64px;
    padding: 10px 24px 0;
  }
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=text]::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=email]::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=tel]::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=number]::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=date]::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=url]::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container textarea::placeholder,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container select::placeholder {
  opacity: 0;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=text]:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=email]:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=tel]:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=number]:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=date]:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=url]:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container textarea:focus,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container select:focus {
  border-color: #a05a3d;
  outline-color: transparent;
  outline-width: 0;
  color: #524e4b;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=text]:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=email]:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=tel]:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=number]:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=date]:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container input[type=url]:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container textarea:focus::-webkit-textfield-decoration-container,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container select:focus::-webkit-textfield-decoration-container {
  visibility: hidden;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container_select {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container_select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #524e4b;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield .ginput_container_select select {
  position: relative;
  padding-top: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield label.gfield_label {
  position: absolute;
  transition: font-size 0.2s ease-in-out;
  pointer-events: none;
  top: 0;
  margin: 0;
  padding: 0;
  padding-top: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1;
  user-select: none;
  left: 26px;
  color: #453D3A;
  font-size: 16px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-textarea label.gfield_label {
  padding-top: 20px;
  align-items: flex-start;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-textarea .ginput_container_textarea textarea {
  padding-top: 20px;
  height: 160px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error {
  margin-bottom: 10px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error .ginput_container input,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error .ginput_container select,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error .ginput_container textarea,
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error .ginput_container .gchoice input[type=checkbox] {
  border: 1px solid #dc3545;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error .gfield_validation_message {
  font-size: 12px;
  color: #dc3545;
  position: absolute;
  bottom: -20px;
  left: 0px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.gfield_error.col-rgpd .gfield_validation_message {
  bottom: -5px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield.diadao-gfield-small label.gfield_label {
  font-size: 10px;
  padding-top: 8px;
  align-items: flex-start;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox {
  align-self: center;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding-block: 15px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice input[type=checkbox] {
  appearance: none;
  color: #a05a3d;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice input[type=checkbox]:checked {
  border-color: #a05a3d;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice input[type=checkbox]:checked:before {
  opacity: 1;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice input[type=checkbox]::before {
  opacity: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-image: url("../images/svg/icons/icon-check.svg");
  mask-image: url("../images/svg/icons/icon-check.svg");
  background-color: currentColor;
  transition: opacity 0.25s ease-in-out;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice label {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 992px) {
  body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice label {
    font-size: 18px;
  }
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice label a {
  color: #a05a3d;
  font-weight: bold;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-checkbox .gchoice label a:hover {
  color: #7b452f;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  color: #453D3A;
  padding: 16px 24px;
  overflow: hidden;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_fileupload_multifile {
  position: static !important;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload label.gfield_label {
  height: auto;
  position: static;
  margin-bottom: 16px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area {
  position: static !important;
  display: flex;
  flex-direction: row;
  gap: 0.3em;
  justify-content: flex-start;
  flex-wrap: wrap;
  z-index: 1;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area button {
  position: static !important;
  border: 0;
  color: #524e4b;
  font-weight: 700;
  width: auto;
  line-height: 1;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area button:hover {
  opacity: 0.8;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area button::before {
  content: "";
  position: absolute;
  inset: 0;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_fileupload_rules {
  display: none;
  position: static;
  margin-top: 15px;
  font-size: 12px;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .ginput_preview {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .ginput_preview button {
  width: auto;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gfield_validation_message {
  display: block;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_delete_file {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}
body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_delete_file .dashicons-trash {
  color: #a05a3d;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-trash.svg");
  mask-image: url("../images/svg/icons/icon-trash.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
body.diadao-gform-labels .gform_wrapper form .gform_footer button {
  width: 100%;
}

.gform-theme-datepicker {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #f0d8d4;
  border-radius: 2px;
}
.gform-theme-datepicker .ui-datepicker-header {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-prev,
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-next {
  order: 0;
  flex: 0 0 20px;
  width: 20px;
  font-size: 1px;
  margin: 0;
  color: black;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-prev span,
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-prev::before,
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-prev {
  order: 0;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-next {
  order: 2;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  transform: rotate(180deg);
}
.gform-theme-datepicker .ui-datepicker-header a {
  cursor: pointer;
}
.gform-theme-datepicker .ui-datepicker-header .ui-datepicker-title {
  order: 1;
  flex: 1 1 0px;
  display: flex;
  gap: 8px;
  margin: 0;
}
.gform-theme-datepicker .ui-datepicker-calendar {
  width: 100%;
}
.gform-theme-datepicker .ui-datepicker-calendar th,
.gform-theme-datepicker .ui-datepicker-calendar td {
  padding: 5px;
}

.fancybox__container .fancybox__toolbar {
  z-index: 210;
  pointer-events: initial;
}
.fancybox__container .fancybox__toolbar .btn-close-fancybox {
  z-index: 1;
  top: 16px;
  right: 16px;
}
.fancybox__container .fancybox__track {
  border: none !important;
  width: 100% !important;
}
.fancybox__container .fancybox-custom-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-top: 12px;
}
@media only screen and (max-width: 991px) and (orientation: landscape) {
  .fancybox__container .fancybox-custom-toolbar {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .fancybox__container .fancybox-custom-toolbar {
    gap: 48px;
    padding-top: 24px;
  }
}
.fancybox__container .fancybox-custom-toolbar a:not(.btn) {
  text-decoration: none;
  user-select: none;
  color: #a05a3d;
}
.fancybox__container .fancybox-custom-toolbar a:not(.btn) * {
  pointer-events: none;
}
@media only screen and (max-width: 991px) and (orientation: landscape) {
  .fancybox__container .fancybox__content .fancybox-image {
    width: auto;
  }
}
.fancybox__container .fancybox-custom-video-close {
  display: none !important;
}
.fancybox__container .fancybox__slide.has-html5video, .fancybox__container .fancybox__slide.has-inline {
  padding: 0px !important;
  margin: 0px !important;
  height: 100% !important;
  width: 100% !important;
}
.fancybox__container .fancybox__slide.has-html5video .fancybox-custom-video-close, .fancybox__container .fancybox__slide.has-inline .fancybox-custom-video-close {
  display: block !important;
}
.fancybox__container .fancybox__slide.has-html5video .fancybox__content, .fancybox__container .fancybox__slide.has-inline .fancybox__content {
  width: 100% !important;
  height: 100% !important;
  padding: 0px !important;
  margin: 0px !important;
}
.fancybox__container .fancybox__slide.has-html5video .fancybox__content div.diasdk-video,
.fancybox__container .fancybox__slide.has-html5video .fancybox__content video,
.fancybox__container .fancybox__slide.has-html5video .fancybox__content hls-video,
.fancybox__container .fancybox__slide.has-html5video .fancybox__content video.fancybox__html5video, .fancybox__container .fancybox__slide.has-inline .fancybox__content div.diasdk-video,
.fancybox__container .fancybox__slide.has-inline .fancybox__content video,
.fancybox__container .fancybox__slide.has-inline .fancybox__content hls-video,
.fancybox__container .fancybox__slide.has-inline .fancybox__content video.fancybox__html5video {
  width: 100% !important;
  height: 100% !important;
  outline: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border: none !important;
}
.fancybox__container .fancybox__slide.has-html5video .fancybox__content .fancybox-custom-toolbar, .fancybox__container .fancybox__slide.has-inline .fancybox__content .fancybox-custom-toolbar {
  display: none;
}
.fancybox__container .fancybox__slide .fancybox-image {
  border-radius: 4px;
}

.offcanvas {
  background: #ecebe8;
}
.offcanvas-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  padding: 16px;
}
@media only screen and (min-width: 992px) {
  .offcanvas-header {
    height: 80px !important;
  }
}
.offcanvas-body {
  height: 100%;
}
.offcanvas-body__wrapper {
  min-height: 100%;
  width: 100%;
  padding: 16px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media only screen and (min-width: 992px) {
  .offcanvas-body__wrapper {
    padding-block: 48px;
    gap: 48px;
  }
}
.offcanvas-body__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media only screen and (min-width: 992px) {
  .offcanvas-body__content {
    gap: 48px;
  }
}
.offcanvas-body__titles, .offcanvas-body__content,
.offcanvas-body .swiper-actions,
.offcanvas-body .swiper-container {
  padding-inline: 16px;
}
@media only screen and (min-width: 992px) {
  .offcanvas-body__titles, .offcanvas-body__content,
  .offcanvas-body .swiper-actions,
  .offcanvas-body .swiper-container {
    padding-inline: 32px;
  }
}
.offcanvas-body .swiper-container {
  overflow: hidden;
}
.offcanvas-backdrop {
  background: rgba(0, 0, 0, 0.4);
  z-index: 1044 !important;
}
.offcanvas-backdrop.is-disabled {
  pointer-events: none;
}
.offcanvas__media-swiper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .offcanvas__media-swiper {
    gap: 32px;
  }
}
.offcanvas__media-swiper.not-initialized .swiper-actions {
  display: none;
}
.offcanvas__media-swiper .swiper-container {
  border-radius: 0;
  height: auto;
}
.offcanvas__media-swiper .swiper-container .swiper-wrapper {
  height: auto;
}
.offcanvas__media-swiper .swiper-container .swiper-slide {
  height: 260px;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .offcanvas__media-swiper .swiper-container .swiper-slide {
    height: 320px;
  }
}
.offcanvas__media-swiper .swiper-container img {
  object-fit: cover;
  border-radius: 0;
  height: 100%;
}
.offcanvas__media-swiper .swiper-container img.portrait {
  aspect-ratio: 3/4;
}
.offcanvas__media-swiper .swiper-container img.landscape {
  aspect-ratio: 4/3;
}
.offcanvas__media-swiper .swiper-container .swiper-navigation {
  display: none;
}
@media only screen and (max-width: 991px) {
  .offcanvas__media-swiper .swiper-actions {
    display: none;
  }
}
.offcanvas.type-diadaopopup {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  transform: translateX(100%);
  width: 100%;
  background: #ecebe8;
  transition: transform 0.25s ease-out;
  height: 100%;
}
.offcanvas.type-diadaopopup .offcanvas-body {
  padding: 32px;
  padding-bottom: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 992px) {
  .offcanvas.type-diadaopopup .offcanvas-body {
    padding: 48px;
    gap: 48px;
  }
}
.offcanvas.type-roomdetail .offcanvas-header {
  border-bottom: 1px solid lightgrey;
}

.diadao-landscape-alert {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.diadao-landscape-alert::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100px;
  background-image: url("../images/rotate-phone.png");
}

@media (max-width: 1000px) and (min-aspect-ratio: 16/12) {
  html {
    overflow: hidden;
  }
  html:not(.with-fancybox) body.device-responsive:not(.modal-open) {
    overflow: hidden;
  }
  html:not(.with-fancybox) body.device-responsive:not(.modal-open) .diadao-landscape-alert {
    opacity: 1;
    visibility: visible;
    z-index: 99999999999999;
    pointer-events: auto;
  }
}
.reveal-fade-up.revealOnScroll, .revealOnScroll .reveal-fade-up {
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  position: relative;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.75s linear calc(0.3s + var(--_delay)), transform 0.75s cubic-bezier(0.33, 1, 0.68, 1) calc(0.3s + var(--_delay));
}
.reveal-fade-up.revealOnScroll.reveal, .revealOnScroll.reveal .reveal-fade-up {
  opacity: 1;
  transform: none;
}

.reveal-clip-down.revealOnScroll, .revealOnScroll .reveal-clip-down {
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  will-change: clip-path;
  transition: clip-path 1s cubic-bezier(0.4, 0, 0, 1) var(--_delay);
}
.reveal-clip-down.revealOnScroll.reveal, .revealOnScroll.reveal .reveal-clip-down {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@keyframes animation-load-fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes animation-load-fade-down {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes animation-load-clip-down {
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.load-fade-up {
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  position: relative;
  opacity: 0;
  transform: translateY(100px);
  animation: animation-load-fade-up 0.75s cubic-bezier(0.33, 1, 0.68, 1) calc(0.3s + var(--_delay)) forwards;
}

.load-fade-down {
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  position: relative;
  opacity: 0;
  transform: translateY(-100px);
  animation: animation-load-fade-down 0.75s cubic-bezier(0.33, 1, 0.68, 1) calc(0.3s + var(--_delay)) forwards;
}

.load-clip-down {
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  animation: animation-load-clip-down 1s cubic-bezier(0.4, 0, 0, 1) var(--_delay) forwards;
}

.modal-opened .open-modal-fade-up {
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  position: relative;
  opacity: 0;
  transform: translateY(100px);
  animation: animation-load-fade-up 0.75s cubic-bezier(0.33, 1, 0.68, 1) calc(0.3s + var(--_delay)) forwards;
}

body.home .diadao-navbar {
  position: fixed !important;
  --reveal-delay: 3;
  --_delay: calc(var(--reveal-delay, 0) * .10s);
  position: relative;
  opacity: 0;
  transform: translateY(-100px);
  animation: animation-load-fade-down 0.75s cubic-bezier(0.33, 1, 0.68, 1) calc(0.3s + var(--_delay)) forwards;
}

.anime-svg {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none !important;
}
.anime-svg--only-desktop {
  display: none;
}
.anime-svg--only-mobile {
  display: block;
}
.anime-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .anime-svg--only-desktop {
    display: block;
  }
  .anime-svg--only-mobile {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .booking-modal {
    width: 90%;
    max-width: 476px;
  }
}
.booking-modal .custom-modal__body {
  padding: 48px 32px 40px;
}
@media only screen and (min-width: 992px) {
  .booking-modal .custom-modal__body {
    padding: 56px 48px 40px;
    gap: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .booking-modal--hsc-extended {
    width: 90%;
    max-width: 718px;
  }
}
@media only screen and (min-width: 992px) {
  .booking-modal--hsc-extended .custom-modal__body {
    padding: 56px 80px 88px;
  }
}
.booking-modal__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .booking-modal__menu {
    gap: 32px;
  }
}
.booking-modal__menu__links ul {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.booking-modal__menu__links ul li {
  border-bottom: 1px solid rgba(82, 78, 75, 0.2);
  padding: 16px 0;
}
.booking-modal__menu__links a {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  position: relative;
  text-decoration: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s ease-in-out;
  font-size: 20px;
}
.booking-modal__menu__links a::before {
  content: "";
  width: 24px;
  height: 24px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: #a05a3d;
  transition: background-color 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .booking-modal__menu__links a::before {
    width: 32px;
    height: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .booking-modal__menu__links a:hover {
    color: #7b452f;
  }
  .booking-modal__menu__links a:hover::before {
    background-color: #7b452f;
  }
}
.booking-modal__menu__links a span {
  flex: 1 0 auto;
  display: block;
  position: relative;
  transition: none;
}
.booking-modal__menu__links a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  background-color: currentColor;
}
.booking-modal__menu__links a[target=_blank] span:after {
  -webkit-mask-image: url("../images/svg/icons/icon-arrow_outward.svg");
  mask-image: url("../images/svg/icons/icon-arrow_outward.svg");
}
.booking-modal__menu__links a.btn-booking-room::before {
  -webkit-mask-image: url("../images/svg/icons/icon-qs-bed.svg");
  mask-image: url("../images/svg/icons/icon-qs-bed.svg");
}
.booking-modal__menu__links a.btn-booking-order::before {
  -webkit-mask-image: url("../images/svg/icons/icon-calendar-range.svg");
  mask-image: url("../images/svg/icons/icon-calendar-range.svg");
}
.booking-modal__menu__links a.btn-booking-event::before {
  -webkit-mask-image: url("../images/svg/icons/icon-qs-calendar.svg");
  mask-image: url("../images/svg/icons/icon-qs-calendar.svg");
}
.booking-modal__menu__links a.btn-booking-the-fork::before {
  -webkit-mask-image: url("../images/svg/icons/icon-the-fork.svg");
  mask-image: url("../images/svg/icons/icon-the-fork.svg");
}
.booking-modal__menu__links a.btn-booking-restaurant::before {
  -webkit-mask-image: url("../images/svg/icons/icon-qs-resto.svg");
  mask-image: url("../images/svg/icons/icon-qs-resto.svg");
}
.booking-modal__menu__links a.btn-booking-spa::before {
  -webkit-mask-image: url("../images/svg/icons/icon-qs-spa.svg");
  mask-image: url("../images/svg/icons/icon-qs-spa.svg");
}
.booking-modal__menu__title {
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.booking-modal__menu__separator {
  height: 1px;
  width: 100%;
  background: lightgrey;
}
.booking-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
@media only screen and (min-width: 640px) {
  .booking-modal__footer__links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 0;
  }
}
.booking-modal__footer__links a {
  color: #a05a3d;
}
.booking-modal__footer__cancel a {
  text-decoration: underline !important;
  color: #a05a3d;
}
html:not(.touchevents) .booking-modal__footer__cancel a:hover, html:not(.touchevents) .booking-modal__footer__cancel a:focus-visible {
  color: #524e4b;
}
@media only screen and (max-width: 991px) {
  .booking-modal#booking-hotel .custom-modal__body {
    padding: 32px 16px;
  }
}

.room-modal {
  overflow-y: hidden;
}
@media only screen and (min-width: 992px) {
  .room-modal {
    width: 100%;
  }
}
.room-modal__header {
  padding: 0;
  background: transparent;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .room-modal__header {
    padding: 0;
    background: transparent;
    height: auto;
  }
}
.room-modal__header__container {
  display: flex;
  align-items: center;
  background: #ffffff;
  height: 80px;
  gap: 45px;
  padding: 0px 16px 0px 8px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .room-modal__header__container {
    position: absolute;
    right: 16px;
    top: 8px;
    border-radius: 4px;
    overflow: hidden;
    padding: 0px 0px 0px 16px;
    min-height: 64px;
    gap: 0px;
    width: auto;
    max-width: calc(100% - 2 * 16px);
  }
}
.room-modal__header__arrow {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  padding: 0px 16px;
  background-color: #524e4b;
  display: none;
  pointer-events: auto;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .room-modal__header__arrow {
    display: block;
  }
}
.room-modal__header__container.open .room-modal__header__arrow {
  transform: rotate(180deg);
}
.room-modal__header__opener {
  display: none;
  padding: 0px 32px 0px 16px;
  min-height: 64px;
  flex: 0 0 auto;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (min-width: 992px) {
  .room-modal__header__opener {
    display: flex;
  }
  .room-modal__header__container.open .room-modal__header__opener {
    position: absolute;
    right: calc(77px + 32px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
.room-modal__header .btn-close {
  flex: 0 0 48px;
}
@media only screen and (min-width: 992px) {
  .room-modal__header .btn-close {
    width: 77px;
    height: 64px;
    flex: 0 0 77px;
    margin-left: auto;
  }
  .room-modal__header .btn-close::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    width: 1px;
    background: rgba(82, 78, 75, 0.3);
    height: 32px;
    margin-top: -16px;
  }
}
.room-modal__filters {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  margin: 0 auto;
  /*.swiper-actions {
          position: relative;
          left: auto;
          right: auto;
          bottom: auto;

          .swiper-navigation {
              gap: 0px;
              display: none;

              @include device_992_min {
                  display: flex;
              }

              .swiper-button-next:not(.swiper-button-lock),
              .swiper-button-prev:not(.swiper-button-lock) {
                  margin-left: 4px;
              }
          }
      }*/
}
@media only screen and (min-width: 992px) {
  .room-modal__filters {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin: 0;
    right: calc(77px + 32px);
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s linear, visibility 0.3s linear;
  }
  .room-modal__header__container.open .room-modal__filters {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    visibility: visible;
    opacity: 1;
  }
}
@media only screen and (min-width: 992px) {
  .room-modal__filters .btn-secondary {
    min-height: 26px;
  }
}
.room-modal__filters .room-title {
  text-align: left;
}
@media only screen and (min-width: 992px) {
  .room-modal__filters .room-title--mobile {
    display: none;
  }
}
.room-modal__filters .room-title--desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .room-modal__filters .room-title--desktop {
    display: block;
  }
}
.room-modal__filters .room-title span {
  text-align: left;
}
.room-modal__filters .swiper-container {
  overflow: hidden;
}
.room-modal__body {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .room-modal__body {
    padding-bottom: 48px;
    margin-bottom: 32px;
  }
}
.room-modal__content {
  position: relative;
}
.room-modal__media {
  position: relative;
  overflow: hidden;
  height: auto;
}
.room-modal__media img,
.room-modal__media video,
.room-modal__media hls-video,
.room-modal__media iframe,
.room-modal__media .video-wrapper {
  aspect-ratio: calc(360 / 300);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .room-modal__media {
    height: 64vh;
    margin: 0;
  }
  .room-modal__media img,
  .room-modal__media video,
  .room-modal__media iframe,
  .room-modal__media hls-video,
  .room-modal__media .video-wrapper {
    position: absolute;
    aspect-ratio: unset;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
  }
}
.room-modal__swiper {
  overflow: clip;
}
.room-modal__swiper .swiper-wrapper {
  align-items: flex-start;
}
.room-modal__swiper .swiper-slide {
  transform: none;
}
.room-modal .room-item {
  min-height: 100%;
  /*&__gallery {
          position: relative;

          // Galerie
          .swiper-container {
              padding-inline: 0;

              .swiper-slide {
                  height: 260px;
                  width: 100%;

                  @include device_992_min {
                      height: 320px;
                  }

                  picture, 
                  img, 
                  video, 
                  .video-wrapper {
                      height: 100%;
                      aspect-ratio: initial;
                  }
              }
          }

          .swiper-pagination {
              display: flex;
          }

          .swiper-navigation {
              display: none;
          }
      }*/
  /*&__hsc {
          position: sticky;
          bottom: 0;
          left: 0;
          right: 0;
          background-color: $white;
          @include flex(row, 16px);
          align-items: center;
          padding: 16px;
          z-index: 1;

          @include device_992_min {
              height: $sticky-topbar-desktop-height;
          }
      }

      &__upgrade-rooms {
          .swiper-container {
              .card {
                  height: 100%;
              }
          }
      }*/
}
.room-modal .room-item__infos {
  padding-bottom: 30px;
}
.room-modal .room-item__infos__part1 {
  position: relative;
  padding: 32px 16px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__infos__part1 {
    padding-bottom: 111px;
    padding-top: 111px;
  }
}
.room-modal .room-item__infos__line1 {
  position: absolute;
  right: 0px;
  top: calc(83vw + 272px);
  height: 300px;
  width: 82px;
  /* background: url('../images/svg/intro1-line1-mobile.svg') right top no-repeat;
          background-size: contain; */
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__infos__line1 {
    /* background-image: url('../images/svg/roompanel-line1-desktop.svg'); */
    /*bottom: auto;
              top: 0;
              width: 30vw;
              height: 25vw;*/
    display: none;
  }
}
.room-modal .room-item__infos__line2 {
  position: absolute;
  left: 0px;
  top: calc(100% + 15vh);
  height: 350px;
  width: 103px;
  /* background: url('../images/svg/intro1-line2-mobile.svg') left center no-repeat;
          background-size: contain; */
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__infos__line2 {
    /* background-image: url('../images/svg/roompanel-line2-desktop.svg'); */
    bottom: -18.7vw;
    top: auto;
    width: 15vw;
    height: 31.3vw;
  }
}
.room-modal .room-item__infos__titles {
  position: relative;
  text-align: center;
}
.room-modal .room-item__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  gap: 8px;
  position: relative;
  margin-top: 24px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__services {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }
}
.room-modal .room-item__services__item {
  border-radius: 4px;
  grid-column: span 1;
  background-color: rgba(255, 255, 255, 0.3);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__services__item {
    width: 200px;
    gap: 24px;
  }
}
.room-modal .room-item__services__icon {
  margin-top: 29px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__services__icon {
    margin-top: 35px;
  }
}
.room-modal .room-item__services__icon svg,
.room-modal .room-item__services__icon img,
.room-modal .room-item__services__icon picture {
  height: 45px;
  width: auto;
}
.room-modal .room-item__services__icon svg path {
  fill: #524e4b;
}
.room-modal .room-item__services__text {
  padding: 0px 8px 10px;
}
.room-modal .room-item__desc-long {
  width: 100%;
  max-width: 675px;
  text-align: center;
  margin: 24px auto 0px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__desc-long {
    margin-top: 111px;
  }
}
.room-modal .room-item__gallery2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__gallery2 {
    display: grid;
    grid-template-columns: repeat(10, minmax(0px, 1fr));
    grid-template-rows: 16vw 12vw;
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__gallery2__container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    gap: 16px;
    padding-inline: 16px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .room-modal .room-item__gallery2__container {
    grid-template-columns: repeat(14, minmax(0px, 1fr));
    gap: 16px;
    padding-inline: 0px;
  }
}
.room-modal .room-item__gallery2__item {
  position: relative;
  overflow: hidden;
}
.room-modal .room-item__gallery2__item img,
.room-modal .room-item__gallery2__item video,
.room-modal .room-item__gallery2__item hls-video,
.room-modal .room-item__gallery2__item iframe,
.room-modal .room-item__gallery2__item .video-wrapper {
  aspect-ratio: calc(1 / 1);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__gallery2__item {
    border-radius: 8px;
  }
  .room-modal .room-item__gallery2__item img,
  .room-modal .room-item__gallery2__item video,
  .room-modal .room-item__gallery2__item iframe,
  .room-modal .room-item__gallery2__item hls-video,
  .room-modal .room-item__gallery2__item .video-wrapper {
    position: absolute;
    aspect-ratio: unset;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
  }
  .room-modal .room-item__gallery2__item .media-wrapper {
    height: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 991px) {
  .room-modal .room-item__gallery2__item .media-wrapper {
    aspect-ratio: 1;
  }
}
@media only screen and (max-width: 991px) {
  .room-modal .room-item__gallery2__item .media-wrapper {
    aspect-ratio: 1;
  }
}
html:not(.touchevents) .room-modal .room-item__gallery2__item:hover img,
html:not(.touchevents) .room-modal .room-item__gallery2__item:hover picture,
html:not(.touchevents) .room-modal .room-item__gallery2__item:hover svg,
html:not(.touchevents) .room-modal .room-item__gallery2__item:hover video,
html:not(.touchevents) .room-modal .room-item__gallery2__item:hover hls-video, html:not(.touchevents) .room-modal .room-item__gallery2__item:focus-visible img,
html:not(.touchevents) .room-modal .room-item__gallery2__item:focus-visible picture,
html:not(.touchevents) .room-modal .room-item__gallery2__item:focus-visible svg,
html:not(.touchevents) .room-modal .room-item__gallery2__item:focus-visible video,
html:not(.touchevents) .room-modal .room-item__gallery2__item:focus-visible hls-video {
  transform: scale(1.1);
}
.room-modal .room-item__gallery2__item img,
.room-modal .room-item__gallery2__item picture,
.room-modal .room-item__gallery2__item svg,
.room-modal .room-item__gallery2__item video,
.room-modal .room-item__gallery2__item hls-video {
  transition: transform 0.8s;
  transform: scale(1.0001);
}
.room-modal .room-item__gallery2__item:nth-child(n+5) {
  display: none;
}
.room-modal .room-item__gallery2__item:first-child {
  grid-column-start: 1;
  grid-column-end: span 6;
  grid-row-start: 1;
  grid-row-end: span 2;
}
.room-modal .room-item__gallery2__item:first-child:last-child {
  grid-column-end: span 10;
}
.room-modal .room-item__gallery2__item:nth-child(2) {
  grid-column-start: 7;
  grid-column-end: span 4;
  grid-row-start: 1;
  grid-row-end: span 1;
}
.room-modal .room-item__gallery2__item:nth-child(2):last-child {
  grid-row-end: span 2;
}
.room-modal .room-item__gallery2__item:nth-child(3) {
  grid-column-start: 7;
  grid-column-end: span 2;
  grid-row-start: 2;
  grid-row-end: span 1;
}
.room-modal .room-item__gallery2__item:nth-child(3):last-child {
  grid-column-end: span 4;
}
.room-modal .room-item__gallery2__item:nth-child(4) {
  grid-column-start: 9;
  grid-column-end: span 2;
  grid-row-start: 2;
  grid-row-end: span 1;
}
.room-modal .room-item__gallery2__more {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(82, 78, 75, 0.6);
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.room-modal .room-item__facilities {
  position: relative;
  padding-top: 48px;
  row-gap: 0px;
}
.room-modal .room-item__facilities:last-child {
  padding-bottom: 48px;
}
.room-modal .room-item__facilities__media {
  position: relative;
  grid-column-start: 1;
  grid-column-end: span 4;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.room-modal .room-item__facilities__media img,
.room-modal .room-item__facilities__media video,
.room-modal .room-item__facilities__media hls-video,
.room-modal .room-item__facilities__media iframe,
.room-modal .room-item__facilities__media .video-wrapper {
  aspect-ratio: calc(1 / 1);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
.room-modal .room-item__facilities__media a {
  display: none;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__facilities__media {
    grid-column-start: 3;
    grid-column-end: span 3;
    border-radius: 8px;
  }
  .room-modal .room-item__facilities__media img,
  .room-modal .room-item__facilities__media video,
  .room-modal .room-item__facilities__media iframe,
  .room-modal .room-item__facilities__media hls-video,
  .room-modal .room-item__facilities__media .video-wrapper {
    position: absolute;
    aspect-ratio: unset;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
  }
}
.room-modal .room-item__facilities__text {
  grid-column-start: 1;
  grid-column-end: span 4;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 24px 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.room-modal .room-item__facilities__text:first-child {
  border-radius: 8px;
}
@media only screen and (min-width: 992px) {
  .room-modal .room-item__facilities__text {
    grid-column-start: 6;
    grid-column-end: span 7;
    border-radius: 8px;
    padding: 48px;
  }
  .room-modal .room-item__facilities__text:first-child {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.room-modal .custom-modal__footer {
  padding: 0;
  height: auto;
}
.room-modal .custom-modal__footer .room-item-hsc {
  display: none;
}
.room-modal .custom-modal__footer .room-item-hsc.active, .room-modal .custom-modal__footer .room-modal__filters .room-menu-item-filter.nav-link.active .room-item-hsc.btn, .room-modal__filters .room-menu-item-filter.nav-link.active .room-modal .custom-modal__footer .room-item-hsc.btn {
  display: block;
}

.horse-modal .text-n1 {
  font-weight: 500;
}
.horse-modal .sdk-popup__subtitle {
  font-size: 16px;
  font-weight: 300;
  margin-top: 4px;
}
@media only screen and (min-width: 992px) {
  .horse-modal .sdk-popup__subtitle {
    font-size: 18px;
  }
}
.horse-modal .misccards__card__details__line {
  font-size: 16px !important;
}
@media only screen and (min-width: 992px) {
  .horse-modal .misccards__card__details__line {
    font-size: 18px !important;
  }
}
.horse-modal .misccards__card__details__label {
  font-weight: 500 !important;
}

.section-au-coeur {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  position: relative;
  overflow-x: clip;
  z-index: 0;
  /* &:before,
  &:after {
    content: '';
    background: url('../images/svg/lines-robert-1.svg') 50% 50% no-repeat;
    background-size: contain;
    position: absolute;
    aspect-ratio: 843/470;
    z-index: -1;
  }

  &:before {
    bottom: -299px;
    left: -730px;
    width: 843px;
    transform: scaleX(-1);

    @include device_992_min {
      width: 62vw;
      bottom: -14vh;
      left: -46vw;
      transform: rotate(-198deg) scaleX(-1);
    }
  }

  &:after {
    top: 153px;
    right: -713px;
    width: 843px;
    transform: rotate(45deg) scaleX(-1);

    @include device_992_min {
      top: -12vw;
      right: -37vw;
      width: 62vw;
      transform: rotate(-23deg) scaleY(-1);
    }
  } */
}
@media only screen and (min-width: 640px) {
  .section-au-coeur {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .section-au-coeur {
    min-height: 116vh;
    padding: 192px clamp(20%, 20%, 310px);
    margin: 13vh 0px 0px;
  }
  .banner + .section-au-coeur {
    margin-top: 0;
  }
}
.section-au-coeur__line1, .section-au-coeur__line2 {
  position: absolute;
  aspect-ratio: 843/470;
  z-index: -1;
}
.section-au-coeur__line1 {
  bottom: -299px;
  left: -730px;
  width: 843px;
  transform: scaleX(-1);
}
@media only screen and (min-width: 992px) {
  .section-au-coeur__line1 {
    width: 62vw;
    bottom: -14vh;
    left: -46vw;
    transform: rotate(-198deg) scaleX(-1);
  }
}
.section-au-coeur__line2 {
  top: 153px;
  right: -713px;
  width: 843px;
  transform: rotate(45deg) scaleX(-1);
}
@media only screen and (min-width: 992px) {
  .section-au-coeur__line2 {
    top: -12vw;
    right: -37vw;
    width: 62vw;
    transform: rotate(-23deg) scaleY(-1);
  }
}
.section-au-coeur__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .section-au-coeur__content {
    gap: 72px;
    max-width: 1090px;
    width: 100%;
  }
}
.section-au-coeur__media {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-au-coeur__media {
    display: block;
    width: 15%;
    max-width: 260px;
    position: absolute;
    overflow: hidden;
  }
  .section-au-coeur__media--right {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    right: 0;
    top: 192px;
  }
  .section-au-coeur__media--right img,
  .section-au-coeur__media--right video,
  .section-au-coeur__media--right hls-video,
  .section-au-coeur__media--right iframe,
  .section-au-coeur__media--right .video-wrapper {
    aspect-ratio: calc(261 / 341);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
  .section-au-coeur__media--left {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    left: 0;
    bottom: 247px;
  }
  .section-au-coeur__media--left img,
  .section-au-coeur__media--left video,
  .section-au-coeur__media--left hls-video,
  .section-au-coeur__media--left iframe,
  .section-au-coeur__media--left .video-wrapper {
    aspect-ratio: calc(261 / 387);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}

.section-bienvenue {
  display: grid;
  grid-template-columns: repeat(4, minmax(0px, 1fr));
  gap: 16px;
  padding-inline: 16px;
  align-items: flex-start;
  /*@include device_992_min {

    &:before {
      content: url('../images/svg/lines-robert-1.svg');
      position: absolute;
      max-height: 675px;
      max-width: 1200px;
      height: 100%;
      width: 100%;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      pointer-events: none;
      z-index: -1;
    }
  }*/
}
@media only screen and (min-width: 992px) {
  .section-bienvenue {
    grid-template-columns: repeat(14, minmax(0px, 1fr));
    gap: 16px;
    padding-inline: 0px;
  }
}
.section-bienvenue__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column-start: 1;
  grid-column-end: span 4;
  padding: 8px 13px 4px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__content {
    grid-column-start: 5;
    grid-column-end: span 6;
    min-height: 360px;
    justify-content: center;
    padding: 0 24px;
    margin-top: -8vw;
  }
}
.section-bienvenue__content > div:not(.section-bienvenue__line) {
  position: relative;
}
.section-bienvenue__line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 233%;
  transform: translate(-50%, -50%);
  aspect-ratio: 177/100;
  min-width: 150%;
  /*
  background: url('../images/svg/lines-robert-1.svg') 50% 50% no-repeat;
  background-size: contain;
  */
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__line {
    min-width: 0px;
    max-height: 1200px;
  }
}
.section-bienvenue__spacer {
  display: none;
  grid-column-start: 5;
  grid-column-end: span 6;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__spacer {
    display: block;
  }
}
.section-bienvenue__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__media {
    border-radius: 16px;
  }
}
.section-bienvenue__media--1 {
  grid-column-start: 3;
  grid-column-end: span 2;
}
.section-bienvenue__media--1 img,
.section-bienvenue__media--1 video,
.section-bienvenue__media--1 hls-video,
.section-bienvenue__media--1 iframe,
.section-bienvenue__media--1 .video-wrapper {
  aspect-ratio: calc(156 / 145);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__media--1 {
    grid-column-start: 9;
    grid-column-end: span 2;
  }
  .section-bienvenue__media--1 img,
  .section-bienvenue__media--1 video,
  .section-bienvenue__media--1 hls-video,
  .section-bienvenue__media--1 iframe,
  .section-bienvenue__media--1 .video-wrapper {
    aspect-ratio: calc(261 / 295);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
.section-bienvenue__media--2 {
  grid-column-start: 1;
  grid-column-end: span 3;
  margin-top: -46px;
}
.section-bienvenue__media--2 img,
.section-bienvenue__media--2 video,
.section-bienvenue__media--2 hls-video,
.section-bienvenue__media--2 iframe,
.section-bienvenue__media--2 .video-wrapper {
  aspect-ratio: calc(242 / 145);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__media--2 {
    grid-column-start: 2;
    grid-column-end: span 3;
    margin-top: -98px;
  }
  .section-bienvenue__media--2 img,
  .section-bienvenue__media--2 video,
  .section-bienvenue__media--2 hls-video,
  .section-bienvenue__media--2 iframe,
  .section-bienvenue__media--2 .video-wrapper {
    aspect-ratio: calc(399 / 295);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
.section-bienvenue__media--3 {
  grid-column-start: 1;
  grid-column-end: span 2;
}
.section-bienvenue__media--3 img,
.section-bienvenue__media--3 video,
.section-bienvenue__media--3 hls-video,
.section-bienvenue__media--3 iframe,
.section-bienvenue__media--3 .video-wrapper {
  aspect-ratio: calc(150 / 111);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__media--3 {
    grid-column-start: 3;
    grid-column-end: span 3;
    margin-top: 7vw;
  }
  .section-bienvenue__media--3 img,
  .section-bienvenue__media--3 video,
  .section-bienvenue__media--3 hls-video,
  .section-bienvenue__media--3 iframe,
  .section-bienvenue__media--3 .video-wrapper {
    aspect-ratio: calc(397 / 295);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
.section-bienvenue__media--4 {
  grid-column-start: 2;
  grid-column-end: span 3;
  margin-top: -40px;
}
.section-bienvenue__media--4 img,
.section-bienvenue__media--4 video,
.section-bienvenue__media--4 hls-video,
.section-bienvenue__media--4 iframe,
.section-bienvenue__media--4 .video-wrapper {
  aspect-ratio: calc(242 / 157);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .section-bienvenue__media--4 {
    grid-column-start: 11;
    grid-column-end: span 3;
    margin-top: -23px;
  }
  .section-bienvenue__media--4 img,
  .section-bienvenue__media--4 video,
  .section-bienvenue__media--4 hls-video,
  .section-bienvenue__media--4 iframe,
  .section-bienvenue__media--4 .video-wrapper {
    aspect-ratio: calc(397 / 320);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
.section-bienvenue .containbtn1 {
  justify-content: center;
}

/*.rooms-slideshow {
  background-color: #000;
  height: 100vh;
  overflow: hidden;
  position: relative;

  &__slides {
    @include flex(column);
    height: 100vh;
    width: 100vw;
    position: relative;

    @include device_640_min {
      display: block;
      height: 100%;
      width: auto;
    }

    &__item {
      @include overlay(0.7);
      opacity: 0;
      transition: opacity 0.8s;
      width: 100vw;
      flex: 0 0 100vh;
      position: relative;

      @include device_640_min {
        flex: auto;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
      }

      &--visible {
        opacity: 1;
      }

      img {
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }

  &__contents {
    @include flex(row);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    @include device_639_max {
      flex-direction: column;
    }

    &__item {
      @include flex(column);
      justify-content: flex-end;
      color: $body-background;
      flex: 0 0 100vh;
      transition: opacity 0.8s;
      padding: 0 32px;
      position: relative;

      @include device_640_min {
        flex: 1;
        padding: 0 64px;
      }

      &:nth-child(even):before,
      &:nth-child(even):after {
        content: '';
        display: block;
        background: linear-gradient(to top, rgba(236, 235, 232, 0.30) 0%, rgba(236, 235, 232, 0.00) 100%);
        height: 400px;
        width: 1px;
        position: absolute;
        bottom: 96px;
        pointer-events: none;
      }

      &:nth-child(even):before {
        left: 0;
      }

      &:nth-child(even):after {
        right: 0;
      }

      h4 {
        font-family: $font2;
        font-size: 40px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 2.8px;
        opacity: 0;
        text-transform: uppercase;

        @include device_992_min {
          font-size: 56px;
          opacity: 0.3;
        }

        @include device_991_max {
          transform: translateY(-100%);
          transition: opacity 0.8s ease, transform 0.8s ease;
        }
      }

      &__hidden {
        @include flex(column, 32px);
        opacity: 0;
        max-height: 0;
        max-width: 380px;
        padding: 24px 0 48px;
        transition: opacity 0.8s, max-height 0.8s;

        @include device_640_min {
          padding: 32px 0 96px;
        }

        @include device_639_max {
          p {
            display: none;
          }
        }
      }

      &--visible {
        @include device_639_max {
          opacity: 1;
        }

        h4 {
          opacity: 1;
          transform: none;
        }

        .rooms-slideshow__contents__item__hidden {
          max-height: 320px;
          opacity: 1;
        }
      }

      .arrow-link {
        padding: 10px 0;
      }
    }
  }
}*/
.rooms-slideshow {
  background-color: #000;
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  /*@include device_639_max {
    overflow-y: scroll;
    scroll-snap-align: start;
    scroll-snap-type: y mandatory;
  }

  @include device_640_min {
    height: 100vh;
    scroll-snap-align: unset;
  }*/
}
.rooms-slideshow__slides {
  display: flex;
  flex-direction: column;
  gap: 0px;
  display: none;
  height: 100%;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .rooms-slideshow__slides {
    display: block;
    height: 100%;
    width: auto;
  }
}
.rooms-slideshow__slides::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}
.rooms-slideshow__slides__item {
  opacity: 0;
  transition: opacity 0.8s;
  width: 100vw;
  flex: 0 0 100vh;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .rooms-slideshow__slides__item {
    flex: auto;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.rooms-slideshow__slides__item--visible {
  opacity: 1;
}
.rooms-slideshow__slides__item img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rooms-slideshow__contents {
  display: flex;
  flex-direction: row;
  gap: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.rooms-slideshow__contents__item {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: flex-end;
  color: #ecebe8;
  flex: 0 0 100vh;
  transition: opacity 0.8s;
  padding: 0 16px;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .rooms-slideshow__contents__item {
    flex: 1;
    padding: 0 32px;
  }
  .rooms-slideshow__contents__item img {
    display: none;
  }
  .rooms-slideshow__contents__item:nth-child(even):before, .rooms-slideshow__contents__item:nth-child(even):after {
    content: "";
    display: block;
    background: linear-gradient(to top, rgba(236, 235, 232, 0.3) 0%, rgba(236, 235, 232, 0) 100%);
    height: 400px;
    width: 1px;
    position: absolute;
    bottom: 96px;
    pointer-events: none;
  }
  .rooms-slideshow__contents__item:nth-child(even):before {
    left: 0;
  }
  .rooms-slideshow__contents__item:nth-child(even):after {
    right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .rooms-slideshow__contents__item {
    padding: 0 64px;
  }
}
.rooms-slideshow__contents__item .title-n2, .rooms-slideshow__contents__item .kwpb-wysiwig h2, .kwpb-wysiwig .rooms-slideshow__contents__item h2 {
  opacity: 0.3;
  position: relative;
  z-index: 2;
}
.rooms-slideshow__contents__item__hidden {
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  max-height: 0;
  max-width: 380px;
  padding: 24px 0 48px;
  transition: opacity 0.8s, max-height 0.8s cubic-bezier(0.22, 0.005, 0.03, 1);
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 640px) {
  .rooms-slideshow__contents__item__hidden {
    padding: 32px 0 96px;
  }
}
@media only screen and (max-width: 639px) {
  .rooms-slideshow__contents__item__hidden {
    max-height: none;
    opacity: 1;
  }
  .rooms-slideshow__contents__item__hidden p {
    display: none;
  }
}
@media only screen and (max-width: 639px) {
  .rooms-slideshow__contents__item--visible {
    opacity: 1;
  }
}
.rooms-slideshow__contents__item--visible .title-n2, .rooms-slideshow__contents__item--visible .kwpb-wysiwig h2, .kwpb-wysiwig .rooms-slideshow__contents__item--visible h2 {
  opacity: 1;
  transform: none;
}
.rooms-slideshow__contents__item--visible .rooms-slideshow__contents__item__hidden {
  max-height: 320px;
  opacity: 1;
}
.rooms-slideshow__contents__item .arrow-link {
  color: inherit;
}

.homeroomsmobile {
  position: relative;
  overflow-x: clip;
}
.homeroomsmobile__spacer {
  position: relative;
  height: 100vh;
  height: 100lvh;
  /*&:last-child {
    height: 120vh;
    height: 120lvh;
  }

  &:first-child {
    height: 100vh;
    height: 100lvh;
  }*/
}
.homeroomsmobile__sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}
.homeroomsmobile__block {
  position: absolute;
  z-index: 1;
  inset: 0;
  color: #ffffff;
  clip-path: polygon(0% calc(100% - var(--clip) * 100%), 100% calc(100% - var(--clip) * 100%), 100% 100%, 0% 100%);
  /*&.previousactive:not(.active) {
    .homeroomsmobile__img {
      z-index: 2;
    }

    .homeroomsmobile__containtitle {
      transform: translateY(-100%) scale(.8);
      transition: transform 0.5s ease-out;
    }

    .homeroomsmobile__title {
      opacity: 0;
      visibility: hidden;
      transform: none;
      transition: opacity 0.5s ease-out, visibility 0.5s ease-out, transform 0.5s ease-out;
    }
  }

  &.active {
    .homeroomsmobile__img {
      opacity: 1;
      z-index: 3;
      transition: opacity .6s ease-out;
    }

    .homeroomsmobile__title {
      animation: homeroomappear 0.6s ease-out 0s 1;
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    .homeroomsmobile__button {
      visibility: visible;
    }
  }*/
}
.homeroomsmobile__block:first-child {
  clip-path: none;
}
.homeroomsmobile__block .arrow-link {
  color: inherit;
}
.homeroomsmobile__img {
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: opacity 0.6s ease-out 0.25s;
}
.homeroomsmobile__img img,
.homeroomsmobile__img video,
.homeroomsmobile__img iframe,
.homeroomsmobile__img hls-video,
.homeroomsmobile__img .video-wrapper {
  position: absolute;
  aspect-ratio: unset;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.homeroomsmobile__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}
.homeroomsmobile__text {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 32px 64px;
  justify-content: flex-end;
}
.homeroomsmobile__containtitle {
  transform-origin: left center;
}
.homeroomsmobile__title {
  /*opacity: 0;
  transform: translateY(96px);*/
}
@-webkit-keyframes homeroomappear {
  0% {
    transform: translateY(96px);
    opacity: 0;
    visibility: hidden;
  }
  20% {
    transform: translateY(96px);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes homeroomappear {
  0% {
    transform: translateY(96px);
    opacity: 0;
    visibility: hidden;
  }
  20% {
    transform: translateY(96px);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}
.small-title-big-subtitle {
  position: relative;
  row-gap: 24px;
}
@media only screen and (min-width: 992px) {
  .small-title-big-subtitle {
    row-gap: 32px;
    text-align: center;
  }
}
.small-title-big-subtitle > div {
  position: relative;
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .small-title-big-subtitle > div {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.small-title-big-subtitle--smallmargin {
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .small-title-big-subtitle--smallmargin {
    padding-bottom: 115px;
  }
}
@media only screen and (min-width: 992px) {
  .small-title-big-subtitle--smallmargin > div {
    grid-column-start: 4;
    grid-column-end: span 8;
  }
}
.small-title-big-subtitle--smallestmargin {
  padding-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .small-title-big-subtitle--smallestmargin {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .small-title-big-subtitle--smallestmargin > div {
    grid-column-start: 4;
    grid-column-end: span 8;
  }
}

@media only screen and (min-width: 992px) {
  .savourer-margin {
    margin: 240px 0 115px;
  }
}

.savourer-text {
  position: relative;
  z-index: 1;
}
.savourer-text__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .savourer-text__content {
    grid-column-start: 7;
    grid-column-end: span 6;
  }
}
@media only screen and (min-width: 1280px) {
  .savourer-text__content {
    grid-column-start: 9;
    grid-column-end: span 4;
  }
}

.savourer-mask {
  position: relative;
  overflow: clip;
  height: 250vh;
  margin-block: 40px;
}
@media only screen and (min-width: 992px) {
  .savourer-mask {
    margin-block: 13vh;
  }
}
.savourer-mask__container {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100lvh;
}
.savourer-mask__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1029/596;
  transform: translate(-50%, -50%);
  height: calc(110px + var(--parallaxforce) * 250vh);
  width: auto;
  /* background: url('../images/svg/lines-robert-2.svg') 50% 50% no-repeat;
  background-size: contain; */
  /* @media only screen and (min-aspect-ratio: 30/29) {
    width: calc(190px + (var(--parallaxforce) * 300vw));
    height: auto;
  }

  @media only screen and (min-aspect-ratio: 30/20) {
    width: calc(190px + (var(--parallaxforce) * 200vw));
    height: auto;
  }

  @media only screen and (min-width: 992px) {
    height: calc(270px + (var(--parallaxforce) * 250vh));
    width: auto;

    @media only screen and (min-aspect-ratio: 30/29) {
      width: calc(466px + (var(--parallaxforce) * 300vw));
      height: auto;
    }

    @media only screen and (min-aspect-ratio: 30/20) {
      width: calc(466px + (var(--parallaxforce) * 200vw));
      height: auto;
    }
  } */
}
@media only screen and (min-aspect-ratio: 30/29) {
  .savourer-mask__lines {
    width: calc(190px + var(--parallaxforce) * 350vw);
    height: auto;
  }
}
@media only screen and (min-aspect-ratio: 30/20) {
  .savourer-mask__lines {
    width: calc(190px + var(--parallaxforce) * 250vw);
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .savourer-mask__lines {
    height: calc(270px + var(--parallaxforce) * 300vh);
    width: auto;
  }
}
@media only screen and (min-width: 992px) and (min-aspect-ratio: 30/29) {
  .savourer-mask__lines {
    width: calc(466px + var(--parallaxforce) * 350vw);
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (min-aspect-ratio: 30/20) {
  .savourer-mask__lines {
    width: calc(466px + var(--parallaxforce) * 250vw);
    height: auto;
  }
}
.savourer-mask__image {
  position: absolute;
  inset: 0;
  z-index: 2;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: auto calc(126px + var(--parallaxforce) * 250vh);
  mask-size: auto calc(126px + var(--parallaxforce) * 250vh);
  -webkit-mask-image: url("../images/svg/maskscroll.svg");
  mask-image: url("../images/svg/maskscroll.svg");
}
.savourer-mask__image img,
.savourer-mask__image video,
.savourer-mask__image iframe,
.savourer-mask__image hls-video,
.savourer-mask__image .video-wrapper {
  position: absolute;
  aspect-ratio: unset;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.savourer-mask__image img {
  transform: scale(calc(0.95 + 0.15 * var(--parallaxforce)));
}
@media only screen and (min-aspect-ratio: 30/29) {
  .savourer-mask__image {
    -webkit-mask-size: calc(221px + var(--parallaxforce) * 300vw) auto;
    mask-size: calc(221px + var(--parallaxforce) * 300vw) auto;
  }
}
@media only screen and (min-aspect-ratio: 30/20) {
  .savourer-mask__image {
    -webkit-mask-size: calc(221px + var(--parallaxforce) * 200vw) auto;
    mask-size: calc(221px + var(--parallaxforce) * 200vw) auto;
  }
}
@media only screen and (min-width: 992px) {
  .savourer-mask__image {
    -webkit-mask-size: auto calc(245px + var(--parallaxforce) * 250vh);
    mask-size: auto calc(245px + var(--parallaxforce) * 250vh);
  }
}
@media only screen and (min-width: 992px) and (min-aspect-ratio: 30/29) {
  .savourer-mask__image {
    -webkit-mask-size: calc(431px + var(--parallaxforce) * 300vw) auto;
    mask-size: calc(431px + var(--parallaxforce) * 300vw) auto;
  }
}
@media only screen and (min-width: 992px) and (min-aspect-ratio: 30/20) {
  .savourer-mask__image {
    -webkit-mask-size: calc(431px + var(--parallaxforce) * 200vw) auto;
    mask-size: calc(431px + var(--parallaxforce) * 200vw) auto;
  }
}

.section-quad {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  max-width: 1366px;
  padding: 0px 16px 40px;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 992px) {
  .section-quad {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0px 24px 13vh;
    /* &:before {
      content: '';
      background: url('../images/svg/quad-bg.svg') center no-repeat;
      background-size: contain;
      position: absolute;
      height: 100%;
      width: 100vw;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
    } */
  }
  .section-quad.invert {
    flex-direction: row-reverse;
  }
}
.section-quad__line {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-quad__line {
    display: block;
    position: absolute;
    height: 100%;
    width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}
.section-quad__left, .section-quad__right {
  display: contents;
}
@media only screen and (min-width: 992px) {
  .section-quad__left, .section-quad__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.section-quad__left {
  padding-top: 7%;
  flex-grow: 1;
}
@media only screen and (min-width: 992px) {
  .section-quad__left {
    align-items: flex-end;
  }
  .section-quad.invert .section-quad__left {
    align-items: flex-start;
  }
  .section-quad.invertpadding .section-quad__left {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .section-quad__right {
    align-items: flex-start;
  }
  .section-quad.invert .section-quad__right {
    align-items: flex-end;
  }
  .section-quad.invertpadding .section-quad__right {
    padding-top: 17vh;
  }
}
.section-quad__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .section-quad__media {
    order: unset;
  }
}
.section-quad__media img,
.section-quad__media video,
.section-quad__media hls-video {
  max-width: 100%;
}
.section-quad__media--1, .section-quad__media--3 {
  max-width: 675px;
  margin: 0 auto;
  aspect-ratio: calc(328 / 177);
}
.section-quad__media--1 img,
.section-quad__media--1 video,
.section-quad__media--1 hls-video,
.section-quad__media--1 iframe,
.section-quad__media--1 .video-wrapper, .section-quad__media--3 img,
.section-quad__media--3 video,
.section-quad__media--3 hls-video,
.section-quad__media--3 iframe,
.section-quad__media--3 .video-wrapper {
  aspect-ratio: calc(328 / 177);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .section-quad__media--1, .section-quad__media--3 {
    aspect-ratio: calc(675 / 452);
    margin: 0;
  }
  .section-quad__media--1 img,
  .section-quad__media--1 video,
  .section-quad__media--1 hls-video,
  .section-quad__media--1 iframe,
  .section-quad__media--1 .video-wrapper, .section-quad__media--3 img,
  .section-quad__media--3 video,
  .section-quad__media--3 hls-video,
  .section-quad__media--3 iframe,
  .section-quad__media--3 .video-wrapper {
    aspect-ratio: calc(675 / 452);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
.section-quad__media--2 {
  max-width: 537px;
  margin: 0 auto;
  aspect-ratio: calc(328 / 516);
}
.section-quad__media--2 img,
.section-quad__media--2 video,
.section-quad__media--2 hls-video,
.section-quad__media--2 iframe,
.section-quad__media--2 .video-wrapper {
  aspect-ratio: calc(328 / 516);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .section-quad__media--2 {
    aspect-ratio: calc(537 / 845);
    margin: 0;
  }
  .section-quad__media--2 img,
  .section-quad__media--2 video,
  .section-quad__media--2 hls-video,
  .section-quad__media--2 iframe,
  .section-quad__media--2 .video-wrapper {
    aspect-ratio: calc(537 / 845);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
.section-quad__media--1 {
  order: 1;
}
.section-quad__media--2 {
  order: 4;
}
.section-quad__media--4 {
  order: 2;
}
.section-quad__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  order: 3;
}
@media only screen and (min-width: 992px) {
  .section-quad__text {
    order: unset;
    padding: 64px;
    max-width: 540px;
  }
}
.section-quad__text .arrow-link {
  color: #a05a3d;
}

.roomcard {
  align-items: center;
  gap: 0px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .roomcard {
    padding: 78px 0;
  }
}
.roomcard__container {
  position: relative;
  overflow: clip;
  --parallaxforce: 0;
}
@media only screen and (min-width: 992px) {
  .roomcard__container {
    margin-top: 156px;
    margin-bottom: 13vh;
    overflow: visible;
  }
  .roomcard__container::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 243px;
    left: 0;
    top: -156px;
    background: linear-gradient(180deg, #ecebe8 0%, rgba(236, 235, 232, 0) 100%);
    z-index: 3;
  }
}
.roomcard__line1, .roomcard__line2 {
  position: absolute;
  top: -156px;
  bottom: -13vh;
  left: 50%;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(var(--parallaxforce) * 100%), 0% calc(var(--parallaxforce) * 100%));
  background: top left no-repeat;
  background-size: 100% 100%;
  width: 265px;
  opacity: 0;
}
@media only screen and (min-width: 992px) {
  .roomcard__line1, .roomcard__line2 {
    opacity: 1;
  }
}
.roomcard__line1 {
  background: url("../images/svg/line-room-1.svg");
  margin-left: -204px;
}
.roomcard__line2 {
  background-image: url("../images/svg/line-room-2.svg");
  margin-left: -173px;
}
.roomcard__middle {
  position: absolute;
  top: 50%;
  right: 0;
  background: violet;
  height: 8px;
  margin-top: -4px;
  width: 50%;
}
.roomcard__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
.roomcard__media img,
.roomcard__media video,
.roomcard__media hls-video,
.roomcard__media iframe,
.roomcard__media .video-wrapper {
  aspect-ratio: calc(328 / 420);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
.roomcard:has(.best-rate.not-available) .roomcard__media img {
  filter: saturate(0);
}
@media only screen and (min-width: 992px) {
  .roomcard__media {
    grid-column-start: 2;
    grid-column-end: span 8;
  }
  .roomcard__media img,
  .roomcard__media video,
  .roomcard__media hls-video,
  .roomcard__media iframe,
  .roomcard__media .video-wrapper {
    aspect-ratio: calc(1091 / 580);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
  .roomcard.invert .roomcard__media {
    order: 1;
    grid-column-start: 6;
    grid-column-end: span 8;
  }
}
.roomcard__infos {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  grid-column-start: 1;
  grid-column-end: span 4;
  padding-top: 24px;
}
@media only screen and (min-width: 992px) {
  .roomcard__infos {
    grid-column-start: 11;
    grid-column-end: span 3;
    padding: 30px 0;
  }
  .roomcard.invert .roomcard__infos {
    order: 0;
    grid-column-start: 2;
    grid-column-end: span 3;
  }
}
.roomcard__infos__features {
  display: flex;
  flex-direction: row;
  gap: 1em;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media only screen and (min-width: 992px) {
  .roomcard__infos__features {
    display: block;
  }
}
.roomcard__infos__header, .roomcard__infos__footer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.roomcard__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .roomcard__title--mobile {
    display: none;
  }
}
.roomcard__title--desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .roomcard__title--desktop {
    display: block;
  }
}

.petitdej {
  position: relative;
  align-items: flex-start;
  padding-top: 0;
}
.petitdej__line {
  position: absolute;
  /* background: url('../images/svg/quad-bg.svg') center no-repeat;
      background-size: contain; */
  top: 124px;
  bottom: 13vh;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 6429/4942;
  display: none;
}
@media only screen and (min-width: 992px) {
  .petitdej__line {
    display: block;
  }
}
.petitdej__media1 {
  grid-column-start: 1;
  grid-column-end: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.petitdej__media1 img,
.petitdej__media1 video,
.petitdej__media1 hls-video,
.petitdej__media1 iframe,
.petitdej__media1 .video-wrapper {
  aspect-ratio: calc(328 / 177);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .petitdej__media1 {
    grid-column-start: 2;
    grid-column-end: span 8;
  }
  .petitdej__media1 img,
  .petitdej__media1 video,
  .petitdej__media1 hls-video,
  .petitdej__media1 iframe,
  .petitdej__media1 .video-wrapper {
    aspect-ratio: calc(1090 / 452);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
@media only screen and (min-width: 1280px) {
  .petitdej__media1 {
    grid-column-start: 3;
    grid-column-end: span 8;
  }
}
.petitdej__text {
  grid-column-start: 1;
  grid-column-end: span 4;
  position: relative;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 25px;
}
@media only screen and (min-width: 992px) {
  .petitdej__text {
    order: 2;
    grid-column-start: 7;
    grid-column-end: span 7;
  }
}
@media only screen and (min-width: 1280px) {
  .petitdej__text {
    grid-column-start: 8;
    grid-column-end: span 5;
    padding: 64px;
  }
}
.petitdej__media2 {
  grid-column-start: 1;
  grid-column-end: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.petitdej__media2 img,
.petitdej__media2 video,
.petitdej__media2 hls-video,
.petitdej__media2 iframe,
.petitdej__media2 .video-wrapper {
  aspect-ratio: calc(328 / 516);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 640px) {
  .petitdej__media2 {
    grid-column-start: 2;
    grid-column-end: span 2;
  }
}
@media only screen and (min-width: 992px) {
  .petitdej__media2 {
    order: 1;
    grid-column-start: 3;
    grid-column-end: span 4;
  }
  .petitdej__media2 img,
  .petitdej__media2 video,
  .petitdej__media2 hls-video,
  .petitdej__media2 iframe,
  .petitdej__media2 .video-wrapper {
    aspect-ratio: calc(537 / 845);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
@media only screen and (min-width: 1280px) {
  .petitdej__media2 {
    grid-column-start: 4;
    grid-column-end: span 4;
  }
}

.disponibilites {
  align-items: center;
}
.disponibilites__text {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 40px 16px;
  background-color: rgba(255, 255, 255, 0.5);
}
.disponibilites__text .btn-calendar {
  position: static;
  width: 100%;
}
.disponibilites__text .btn-calendar::before {
  content: "";
  position: absolute;
  inset: 0;
}
@media only screen and (min-width: 992px) {
  .disponibilites__text {
    grid-column-start: 2;
    grid-column-end: span 7;
    gap: 24px;
    min-height: 535px;
    padding: 64px;
    border-radius: 8px;
  }
}
@media only screen and (min-width: 1280px) {
  .disponibilites__text {
    grid-column-start: 3;
    grid-column-end: span 5;
  }
}
.disponibilites__line {
  position: absolute;
  inset: 0;
  /* background: url('../images/svg/disponibilites-mobile.svg') top right no-repeat; */
}
@media only screen and (min-width: 992px) {
  .disponibilites__line {
    /* background-image: url('../images/svg/disponibilites-desktop.svg') */
  }
}
.disponibilites__title {
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .disponibilites__title {
    text-align: left;
  }
}
.disponibilites__dates {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ecebe8;
  border-radius: 4px;
  padding: 8px 16px;
}
@media only screen and (min-width: 992px) {
  .disponibilites__dates {
    padding: 16px 28px;
    row-gap: 16px;
  }
}
.disponibilites__arrow {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  flex: 0 0 24px;
  background-color: #524e4b;
  flex: 0 0 24px;
}
.disponibilites__date {
  text-align: center;
  flex: 1 1 0px;
}
.disponibilites__date__label {
  font-size: var(--diadao-hsc-booking-label-font-size);
  letter-spacing: var(--diadao-hsc-booking-label-letter-spacing);
  text-transform: var(--diadao-hsc-booking-label-text-transform);
  font-weight: var(--diadao-hsc-booking-label-font-weight);
  font-family: var(--diadao-hsc-booking-label-font-family);
  line-height: 1;
}
.disponibilites__date__date {
  font-weight: var(--diadao-hsc-booking-value-font-weight);
  font-family: var(--diadao-hsc-booking-value-font-family);
  font-size: var(--diadao-hsc-booking-value-font-size);
  letter-spacing: var(--diadao-hsc-booking-value-letter-spacing);
  text-transform: var(--diadao-hsc-booking-value-text-transform);
  line-height: 1;
}
.disponibilites__media {
  position: relative;
  overflow: hidden;
  grid-column-start: 1;
  grid-column-end: span 4;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.disponibilites__media img,
.disponibilites__media video,
.disponibilites__media hls-video,
.disponibilites__media iframe,
.disponibilites__media .video-wrapper {
  aspect-ratio: calc(328 / 260);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .disponibilites__media {
    grid-column-start: 9;
    grid-column-end: span 4;
    border-radius: 8px;
  }
  .disponibilites__media img,
  .disponibilites__media video,
  .disponibilites__media hls-video,
  .disponibilites__media iframe,
  .disponibilites__media .video-wrapper {
    aspect-ratio: calc(675 / 455);
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
  }
}
@media only screen and (min-width: 1280px) {
  .disponibilites__media {
    grid-column-start: 8;
    grid-column-end: span 5;
  }
}

@media only screen and (min-width: 992px) {
  .savourerfaq {
    row-gap: 80px;
  }
}
.savourerfaq__maintitle {
  grid-column-start: 1;
  grid-column-end: span 4;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .savourerfaq__maintitle {
    grid-column-start: 2;
    grid-column-end: span 12;
  }
}
.savourerfaq__container {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 16px;
  background-color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .savourerfaq__container {
    grid-column-start: 2;
    grid-column-end: span 12;
    border-radius: 8px;
    padding: 32px 40px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
  }
}
@media only screen and (min-width: 1440px) {
  .savourerfaq__container {
    padding: 32px 80px;
  }
}
.savourerfaq__hr {
  height: 1px;
  background: rgba(25, 25, 25, 0.1);
}
@media only screen and (min-width: 992px) {
  .savourerfaq__hr {
    display: none;
  }
}
.savourerfaq__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .savourerfaq__block {
    flex: 1 1 33.33%;
    padding: 24px;
  }
}
.savourerfaq__title {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
.savourerfaq__title .icon {
  flex: 0 0 24px;
  background-color: #a05a3d;
}

.misccards {
  position: relative;
  overflow-x: clip;
  padding: 0px;
  z-index: 0;
}
@media only screen and (min-width: 992px) {
  .misccards {
    padding: 215px 0px 13vh;
  }
  .misccards::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 151px;
    width: 100%;
    background: linear-gradient(180deg, #ecebe8 0%, rgba(236, 235, 232, 0) 100%);
  }
}
.misccards__line1, .misccards__line2 {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50%;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(var(--parallaxforce) * 100%), 0% calc(var(--parallaxforce) * 100%));
  background: top left no-repeat;
  background-size: 100% 100%;
  opacity: 0;
}
@media only screen and (min-width: 992px) {
  .misccards__line1, .misccards__line2 {
    opacity: 1;
  }
}
.misccards__line1 {
  background-image: url("../images/lines-misccard-1.png");
  width: 19.5vw;
  margin-left: -16.5vw;
}
.misccards__line2 {
  background-image: url("../images/lines-misccard-2.png");
  width: 20.9vw;
  margin-left: -18.5vw;
}
.misccards__maintitles {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
  padding-block: 40px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .misccards__maintitles {
    row-gap: 32px;
    padding-top: 0px;
    margin-top: -75px;
  }
}
.misccards__card {
  position: relative;
  padding-block: 40px;
  row-gap: 32px;
}
.misccards__card__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
.misccards__card__media img,
.misccards__card__media video,
.misccards__card__media hls-video,
.misccards__card__media iframe,
.misccards__card__media .video-wrapper {
  aspect-ratio: calc(328 / 360);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
@media only screen and (min-width: 992px) {
  .misccards__card__media {
    order: 1;
    grid-column-start: 7;
    grid-column-end: span 7;
  }
  .misccards__card__media img,
  .misccards__card__media video,
  .misccards__card__media iframe,
  .misccards__card__media hls-video,
  .misccards__card__media .video-wrapper {
    position: absolute;
    aspect-ratio: unset;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
  }
  .misccards__card.invert .misccards__card__media {
    order: 0;
    grid-column-start: 2;
    grid-column-end: span 7;
  }
}
.misccards__card__media .kwpb-swiper-module .swiper-slide,
.misccards__card__media .swiper-container .swiper-slide,
.misccards__card__media .swiper-wrapper .swiper-slide {
  width: 100%;
}
.misccards__card__details__line {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2px 0;
}
.misccards__card__details__label {
  min-width: 5.3em;
  flex: 0 0 auto;
}
.misccards__card__details__text {
  font-weight: 400;
  flex: 1 1 0px;
}
.misccards__card__texts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .misccards__card__texts {
    order: 0;
    grid-column-start: 2;
    grid-column-end: span 4;
    gap: 40px;
    padding: 120px 0;
  }
  .misccards__card.invert .misccards__card__texts {
    order: 1;
    grid-column-start: 10;
    grid-column-end: span 4;
  }
}

@media only screen and (min-width: 992px) {
  .offer-modal__header {
    padding: 0;
    background: transparent;
    height: auto;
  }
}
.offer-modal__header__container {
  display: flex;
  align-items: center;
  padding: 0px 16px 0px 8px;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .offer-modal__header__container {
    position: absolute;
    right: 16px;
    top: 8px;
    padding: 0px;
    gap: 0px;
    width: auto;
    height: auto;
  }
}
.offer-modal__infos {
  position: relative;
  overflow: hidden;
  padding: 32px 16px;
  row-gap: 16px;
}
@media only screen and (min-width: 992px) {
  .offer-modal__infos {
    row-gap: 58px;
    padding: 32px 0px;
  }
}
@media only screen and (min-width: 992px) {
  .offer-modal__infos .room-item__infos__line2 {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
.offer-modal__infos .room-item__infos__titles {
  grid-column-start: 1;
  grid-column-end: span 4;
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  .offer-modal__infos .room-item__infos__titles {
    grid-column-start: 3;
    grid-column-end: span 10;
    margin-bottom: 50px;
  }
}
.offer-modal__maininfos {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .offer-modal__maininfos {
    grid-column-start: 1;
    grid-column-end: span 14;
    border-radius: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0px, 1fr));
    gap: 16px;
    padding-inline: 16px;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .offer-modal__maininfos {
    grid-template-columns: repeat(14, minmax(0px, 1fr));
    gap: 16px;
    padding-inline: 0px;
  }
}
.offer-modal__descimg {
  position: relative;
}
.offer-modal__descimg img,
.offer-modal__descimg video,
.offer-modal__descimg hls-video,
.offer-modal__descimg iframe,
.offer-modal__descimg .video-wrapper {
  aspect-ratio: calc(1 / 1);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
}
@media only screen and (min-width: 992px) {
  .offer-modal__descimg {
    grid-column-start: 2;
    grid-column-end: span 4;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  .offer-modal__descimg img,
  .offer-modal__descimg video,
  .offer-modal__descimg iframe,
  .offer-modal__descimg hls-video,
  .offer-modal__descimg .video-wrapper {
    position: absolute;
    aspect-ratio: unset;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
  }
}
@media only screen and (min-width: 1280px) {
  .offer-modal__descimg {
    grid-column-start: 3;
    grid-column-end: span 3;
  }
}
.offer-modal__desc {
  padding: 24px 16px;
  background-color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .offer-modal__desc {
    grid-column-start: 6;
    grid-column-end: span 8;
    border-radius: 8px;
    padding: 48px;
  }
  .offer-modal__desc:first-child {
    grid-column-start: 2;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 1280px) {
  .offer-modal__desc {
    grid-column-start: 6;
    grid-column-end: span 7;
  }
  .offer-modal__desc:first-child {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.offer-modal__duration {
  font-size: 20px;
  font-weight: 500;
}
.offer-modal__validity {
  text-align: center;
  grid-column-start: 2;
  grid-column-end: span 2;
}
@media only screen and (min-width: 992px) {
  .offer-modal__validity {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.offer-modal .offer-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background-color: #ffffff;
  padding: 16px;
}
@media only screen and (min-width: 992px) {
  .offer-modal .offer-modal__footer {
    min-height: 96px;
  }
}
.offer-modal__footer__price {
  display: flex;
  flex-direction: row;
  gap: 0.2em;
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 24px;
  line-height: 1em;
  align-self: center;
  color: #a05a3d;
  text-transform: uppercase;
  flex: 1 1 100%;
  text-align: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .offer-modal__footer__price {
    flex: 0 0 auto;
    padding: 0px 32px;
  }
}
.offer-modal__footer .btn {
  flex: 1 1 calc(50% - 8px);
}
@media only screen and (min-width: 992px) {
  .offer-modal__footer .btn {
    flex: 0 0 auto;
  }
}

.jobgrid {
  row-gap: 24px;
}
@media only screen and (min-width: 992px) {
  .jobgrid {
    row-gap: 32px;
  }
}
.jobgrid__maintitle, .jobgrid__maintext {
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .jobgrid__maintitle, .jobgrid__maintext {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.jobgrid__table {
  display: flex;
  flex-direction: column;
  gap: 0px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .jobgrid__table {
    display: block;
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.jobgrid__line {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 32px;
  gap: 16px;
  padding: 24px 16px;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .jobgrid__line {
    padding: 23px 32px;
    column-gap: 0px;
    grid-template-columns: 282fr 144fr 209fr 32px;
  }
}
html:not(.touchevents) .jobgrid__line:hover .jobgrid__arrow, html:not(.touchevents) .jobgrid__line:focus-visible .jobgrid__arrow {
  transform: translateX(16px);
}
@media only screen and (min-width: 992px) {
  html:not(.touchevents) .jobgrid__line:hover .jobgrid__arrow, html:not(.touchevents) .jobgrid__line:focus-visible .jobgrid__arrow {
    transform: translateX(8px);
  }
}
.jobgrid__line:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}
.jobgrid__line:first-child {
  display: none;
  color: #a05a3d;
  cursor: auto;
  background-color: transparent;
}
@media only screen and (min-width: 992px) {
  .jobgrid__line:first-child {
    display: grid;
    padding: 30px 32px;
  }
}
.jobgrid__line:first-child .jobgrid__arrow {
  visibility: hidden;
}
@media only screen and (min-width: 992px) {
  .jobgrid__line .icon {
    display: none;
  }
}
.jobgrid__td {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .jobgrid__td {
    padding: 0px 24px;
  }
}
.jobgrid__title {
  grid-column-start: 1;
  grid-column-end: span 2;
  grid-row-start: 1;
  grid-row-end: span 1;
}
.jobgrid__contract {
  grid-column-start: 1;
  grid-column-end: span 1;
  grid-row-start: 2;
  grid-row-end: span 1;
}
@media only screen and (min-width: 992px) {
  .jobgrid__contract {
    grid-column-start: 2;
    grid-column-end: span 1;
    grid-row-start: 1;
    grid-row-end: span 1;
  }
}
.jobgrid__location {
  grid-column-start: 2;
  grid-column-end: span 1;
  grid-row-start: 2;
  grid-row-end: span 1;
}
@media only screen and (min-width: 992px) {
  .jobgrid__location {
    grid-column-start: 3;
    grid-column-end: span 1;
    grid-row-start: 1;
    grid-row-end: span 1;
  }
}
.jobgrid__arrow {
  grid-column-start: 3;
  grid-column-end: span 1;
  grid-row-start: 1;
  grid-row-end: span 2;
  transition: transform 0.3s ease-out;
}
@media only screen and (min-width: 992px) {
  .jobgrid__arrow {
    grid-column-start: 4;
    grid-column-end: span 1;
    grid-row-start: 1;
    grid-row-end: span 1;
    padding: 0;
  }
}
.jobgrid__arrow::before {
  position: relative;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .jobgrid__arrow::before {
    width: 24px;
    height: 24px;
  }
}

.job_modal {
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .job_modal {
    width: 100%;
  }
}
.job_modal__body {
  padding: 0px 16px 40px;
  gap: 32px;
}
@media only screen and (min-width: 992px) {
  .job_modal__body {
    padding: 153px 0px 13vh;
    gap: 103px;
  }
}
.job_modal__line1 {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 300px;
  width: 82px;
  /* background: right bottom no-repeat;
  background-size: cover; */
}
@media only screen and (min-width: 992px) {
  .job_modal__line1 {
    /* background-image: url('../images/svg/roompanel-line1-desktop.svg'); */
    width: 30vw;
    height: 15vw;
  }
}
.job_modal__line2 {
  position: absolute;
  left: 0px;
  top: calc(100% + 15vh);
  height: 350px;
  width: 103px;
  /* background: left center no-repeat;
  background-size: contain; */
}
@media only screen and (min-width: 992px) {
  .job_modal__line2 {
    /* background-image: url('../images/svg/roompanel-line2-desktop.svg'); */
    top: 200px;
    width: 15vw;
    height: 31.3vw;
  }
}
.job_modal__header {
  background-color: #ecebe8;
}
@media only screen and (min-width: 992px) {
  .job_modal__header {
    background: transparent;
    padding: 0;
    height: auto;
  }
}
@media only screen and (min-width: 992px) {
  .job_modal__header .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
  }
}
.job_modal__card {
  display: none;
  position: relative;
  margin: 0 -16px;
}
@media only screen and (min-width: 992px) {
  .job_modal__card {
    margin: 0;
  }
}
.job_modal__card.active, .room-modal__filters .room-menu-item-filter.nav-link.active .job_modal__card.btn {
  display: block;
}
.job_modal__card__header {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__header {
    grid-column-start: 2;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 1280px) {
  .job_modal__card__header {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.job_modal__card__titles {
  text-align: center;
}
.job_modal__card__tags {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__tags {
    grid-column-start: 3;
    grid-column-end: span 10;
    justify-content: center;
    gap: 28px 8px;
  }
}
.job_modal__card__tag {
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 17px;
  min-height: 34px;
  padding: 5px 10px;
  background-color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__tag {
    min-height: 44px;
    border-radius: 22px;
    padding: 5px 14px;
  }
}
.job_modal__card__body {
  position: relative;
  grid-column-start: 1;
  grid-column-end: span 4;
  margin-top: 32px;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__body {
    grid-column-start: 2;
    grid-column-end: span 12;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 32px;
    margin-top: 42px;
    border-radius: 8px;
  }
}
@media only screen and (min-width: 1280px) {
  .job_modal__card__body {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
@media only screen and (min-width: 1440px) {
  .job_modal__card__body {
    padding: 96px;
  }
}
.job_modal__card__body1 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__body1 {
    flex: 1 1 0px;
    max-width: 766px;
  }
}
.job_modal__card__body1:last-child {
  max-width: none;
}
.job_modal__card__bodypart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job_modal__card__body2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__body2 {
    flex: 0 0 205px;
    margin-top: 0px;
  }
}
.job_modal__card__mailto {
  grid-column-start: 1;
  grid-column-end: span 4;
  margin-top: 32px;
}
@media only screen and (min-width: 992px) {
  .job_modal__card__mailto {
    grid-column-start: 2;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 1280px) {
  .job_modal__card__mailto {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}
.job_modal__card__mailto .btn {
  width: 100%;
}
.job_modal__form {
  display: none;
  position: relative;
  margin: 0 -16px;
}
@media only screen and (min-width: 992px) {
  .job_modal__form {
    margin: 0;
  }
}
.job_modal__form.active, .room-modal__filters .room-menu-item-filter.nav-link.active .job_modal__form.btn {
  display: grid;
}
.job_modal__form__intra {
  display: flex;
  flex-direction: column;
  gap: 28px;
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .job_modal__form__intra {
    grid-column-start: 2;
    grid-column-end: span 12;
  }
}
@media only screen and (min-width: 1280px) {
  .job_modal__form__intra {
    grid-column-start: 3;
    grid-column-end: span 10;
  }
}

.spontanee .section__content {
  row-gap: 32px;
}
@media only screen and (min-width: 992px) {
  .spontanee .section__content {
    row-gap: 32px;
  }
}

.sectionmap {
  grid-column-start: 1;
  grid-column-end: span 4;
}
@media only screen and (min-width: 992px) {
  .sectionmap {
    grid-column-start: 2;
    grid-column-end: span 12;
    display: grid;
    grid-template-columns: repeat(12, minmax(0px, 1fr));
    gap: 16px;
    background-color: #ffffff;
  }
}
.sectionmap .diadao-gmap-map {
  position: relative;
  margin: 0 -16px;
  height: 57vh;
  min-height: 300px;
}
@media only screen and (min-width: 992px) {
  .sectionmap .diadao-gmap-map {
    margin: 0;
    aspect-ratio: unset;
    height: auto;
    grid-column-start: 1;
    grid-column-end: span 7;
  }
}
@media only screen and (min-width: 1440px) {
  .sectionmap .diadao-gmap-map {
    grid-column-start: 1;
    grid-column-end: span 8;
  }
}
.sectionmap .diadao-gmap-map .diadao-gmap-label {
  color: #ffffff !important;
  transform: translateY(-45px) !important;
  font-family: "Sofia Sans Condensed", Arial, sans-serif !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  letter-spacing: 0.8px !important;
}
.sectionmap__infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .sectionmap__infos {
    grid-column-start: 8;
    grid-column-end: span 5;
    padding: 50px 32px;
    row-gap: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .sectionmap__infos {
    grid-column-start: 9;
    grid-column-end: span 4;
    padding: 120px 64px;
  }
}
.sectionmap__infos__hr {
  height: 1px;
  background: rgba(25, 25, 25, 0.1);
  width: 100%;
  max-width: 304px;
}
.sectionmap__infos__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 992px) {
  .sectionmap__infos__block {
    row-gap: 24px;
  }
}
.sectionmap__infos__title {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.sectionmap__infos__title .label-small, .sectionmap__infos__title .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .sectionmap__infos__title span, .sectionmap__infos__title .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .sectionmap__infos__title span, .sectionmap__infos__title .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button span, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button .sectionmap__infos__title span, .sectionmap__infos__title html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close span, html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .sectionmap__infos__title span,
.sectionmap__infos__title html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close span,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .sectionmap__infos__title span,
.sectionmap__infos__title html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close span,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .sectionmap__infos__title span,
.sectionmap__infos__title html body.diadao-sdkroberthotels #diadao-qs-snippet-close span,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .sectionmap__infos__title span, .sectionmap__infos__title .btn span, .btn .sectionmap__infos__title span, .sectionmap__infos__title .diadao-button-close span, .diadao-button-close .sectionmap__infos__title span, .sectionmap__infos__title body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .gform_drop_area, body.diadao-gform-labels .gform_wrapper form .gform_body .gfield--type-fileupload .sectionmap__infos__title .gform_drop_area {
  flex: 1 1 0px;
}
.sectionmap__infos__icon {
  flex: 0 0 32px;
}
.sectionmap__infos__icon--1 {
  display: block;
  width: 32px;
  height: 32px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-car.svg");
  mask-image: url("../images/svg/icons/icon-car.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.sectionmap__infos__icon--2 {
  display: block;
  width: 32px;
  height: 32px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-train.svg");
  mask-image: url("../images/svg/icons/icon-train.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.sectionmap__infos__icon--3 {
  display: block;
  width: 32px;
  height: 32px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-plane.svg");
  mask-image: url("../images/svg/icons/icon-plane.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .sectionmap__infos__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}

.section-newsletter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0px, 1fr));
  gap: 16px;
  padding-inline: 16px;
  align-items: center;
  row-gap: 80px;
}
@media only screen and (min-width: 992px) {
  .section-newsletter {
    grid-template-columns: repeat(14, minmax(0px, 1fr));
    gap: 16px;
    padding-inline: 0px;
  }
}
.section-newsletter__media {
  grid-column-start: 1;
  grid-column-end: span 4;
}
.section-newsletter__media img,
.section-newsletter__media video,
.section-newsletter__media hls-video,
.section-newsletter__media iframe,
.section-newsletter__media .video-wrapper {
  aspect-ratio: calc(303 / 440);
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
@media only screen and (min-width: 992px) {
  .section-newsletter__media {
    grid-column-start: 2;
    grid-column-end: span 6;
  }
}
@media only screen and (min-width: 1440px) {
  .section-newsletter__media {
    grid-column-start: 3;
    grid-column-end: span 5;
  }
}
.section-newsletter__content {
  grid-column-start: 1;
  grid-column-end: span 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 992px) {
  .section-newsletter__content {
    grid-column-start: 9;
    grid-column-end: span 5;
    gap: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .section-newsletter__content {
    grid-column-start: 9;
    grid-column-end: span 4;
  }
}
.section-newsletter__form {
  width: 100%;
}
.section-newsletter__form .gfield {
  width: 100% !important;
  flex-basis: 100% !important;
}

:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*!
 * Bootstrap  v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #ffffff;
  --bs-dropdown-link-active-bg: #ca8060;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active, .room-modal__filters .room-menu-item-filter.nav-link.active .dropdown-item.btn, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: transparent;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #ffffff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-active-color: #ffffff;
  --bs-dropdown-link-active-bg: #ca8060;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: initial;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
  outline: 0;
}

.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.active, .nav-tabs .room-modal__filters .room-menu-item-filter.nav-link.active .nav-link.btn, .room-modal__filters .room-menu-item-filter.nav-link.active .nav-tabs .nav-link.btn,
.nav-tabs .nav-link.current,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #ffffff;
  --bs-nav-pills-link-active-bg: #ca8060;
}

.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link.current,
.nav-pills .nav-link.active,
.nav-pills .room-modal__filters .room-menu-item-filter.nav-link.active .nav-link.btn,
.room-modal__filters .room-menu-item-filter.nav-link.active .nav-pills .nav-link.btn,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}

.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}

.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}

.nav-underline .nav-link.active, .nav-underline .room-modal__filters .room-menu-item-filter.nav-link.active .nav-link.btn, .room-modal__filters .room-menu-item-filter.nav-link.active .nav-underline .nav-link.btn,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active, .room-modal__filters .room-menu-item-filter.nav-link.active .tab-content > .btn {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar > .container-xxl, .navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: initial;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link.active, .navbar-nav .room-modal__filters .room-menu-item-filter.nav-link.active .nav-link.btn, .room-modal__filters .room-menu-item-filter.nav-link.active .navbar-nav .nav-link.btn, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-active-color: #ffffff;
  --bs-navbar-brand-color: #ffffff;
  --bs-navbar-brand-hover-color: #ffffff;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: initial;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: initial;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: initial;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}

.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}

.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}

.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}

.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}

.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}

.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}

.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}

.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}

.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}

.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}

.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.5s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding), .offcanvas-sm[loading="1"] {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show, .offcanvas-sm[loading="1"] {
    visibility: visible;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding), .offcanvas-md[loading="1"] {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show, .offcanvas-md[loading="1"] {
    visibility: visible;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding), .offcanvas-lg[loading="1"] {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show, .offcanvas-lg[loading="1"] {
    visibility: visible;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding), .offcanvas-xl[loading="1"] {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show, .offcanvas-xl[loading="1"] {
    visibility: visible;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding), .offcanvas-xxl[loading="1"] {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show, .offcanvas-xxl[loading="1"] {
    visibility: visible;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  transform: translateX(100%);
}

.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  transform: translateY(100%);
}

.offcanvas.showing, .offcanvas.show:not(.hiding), .offcanvas[loading="1"] {
  transform: none;
}

.offcanvas.showing, .offcanvas.hiding, .offcanvas.show, .offcanvas[loading="1"] {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-body {
  overflow-y: auto;
}

.offcanvas {
  --bs-offcanvas-width: auto;
  --bs-offcanvas-height: auto;
  --bs-offcanvas-padding-x: 0px;
  --bs-offcanvas-padding-y: 0px;
}

@media only screen and (min-width: 992px) {
  .offcanvas {
    --bs-offcanvas-width: 640px;
  }
}
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  padding-inline: 4px;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 20px 40px;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}
.fancybox__caption .diadao-gallery-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fancybox__caption .diadao-gallery-buttons .diadao-sdk-button-phone {
  color: var(--fancybox-phonelink-color);
  font-weight: 600;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  content: none;
  /*
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
  */
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

.theme-google-map {
  width: 100%;
  height: 100%;
}
.theme-google-map .diadao-gmap-info-window-link img {
  width: 300px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden !important;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

#smart-locator {
  height: 80vh;
}
#smart-locator #iframe-smart-locator {
  width: 100%;
  height: 100%;
}
#smart-locator.open {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}

:root {
  --diadao-qs-loading-svg-size: 40px;
  --diadao-hsc-booking-panel-loading-height: 522px;
  --diadao-hsc-booking-panel-loading-visibility: visible;
  --diadao-hsc-booking-panel-border-radius: 4px;
  --diadao-hsc-sticky-room-desktop-single-loading-height: 480px;
  --diadao-hsc-sticky-room-desktop-single-loading-visibility: visible;
  --diadao-hsc-sticky-room-desktop-loading-height: 120px;
  --diadao-hsc-sticky-room-desktop-loading-visibility: hidden;
  --diadao-qs-loading-svg: url("assets/images/hsc/spinner-qs.svg");
  --diadao-booking-panel-loading-svg: url("assets/images/hsc/spinner-qs.svg");
  --diadao-room-detail-panel-loading-svg: url("assets/images/hsc/spinner-qs.svg");
  --diadao-hsc-calendars-cell-selected-bgcolor: #a05a3d;
  --diadao-hsc-calendars-cell-range-bgcolor: #7b452f;
  --diadao-hsc-sticky-shadow: none;
  --diadao-hsc-loader-size: 38px;
  --diadao-hsc-loader-left: 50%;
  --diadao-hsc-loader-top: 50%;
  --diadao-hsc-loader-transform: translateX(-50%) translateY(-50%);
  --diadao-hsc-loader-booking-left: 50%;
  --diadao-hsc-loader-booking-top: 38px;
  --diadao-hsc-loader-booking-transform: translateX(-50%);
  --diadao-hsc-loader-bestprice-left: 0;
  --diadao-hsc-loader-bestprice-top: 0;
  --diadao-hsc-loader-bestprice-transform: none;
  --diadao-hsc-loader-bestprice-right: 0;
  --diadao-hsc-loader-sticky-room-desktop-single-position: absolute;
  --diadao-hsc-loader-sticky-room-desktop-single-left: 50%;
  --diadao-hsc-loader-sticky-room-desktop-single-top: 50%;
  --diadao-hsc-loader-sticky-room-desktop-single-transform: translateX(-50%) translateY(-50%);
  --diadao-hsc-buttons-toggle-radius: 4px;
  --diadao-hsc-buttons-toggle-width: 24px;
  --diadao-hsc-buttons-toggle-height: 24px;
  --diadao-hsc-buttons-toggle-line-height: 24px;
  --diadao-hsc-buttons-toggle-line-height-minus: 22px;
  --diadao-hsc-buttons-toggle-font-size: 20px;
  --diadao-hsc-booking-button-book-max-width: 100%;
  --diadao-hsc-booking-button-book-display: inline-flex;
  --diadao-hsc-booking-button-book-width: 100%;
  --diadao-hsc-booking-button-book-min-width: auto;
  --diadao-hsc-booking-button-book-margin-left: 0;
  --diadao-hsc-booking-button-book-margin-right: 0;
  --diadao-hsc-booking-button-none-width: 100%;
  --diadao-hsc-booking-button-none-display: flex;
  --diadao-hsc-booking-button-none-max-width: 240px;
  --diadao-hsc-booking-button-none-min-width: auto;
  --diadao-hsc-booking-button-none-margin-left: 0;
  --diadao-hsc-booking-button-none-margin-right: 0;
  --diadao-hsc-booking-button-none-padding-left: 14px;
  --diadao-hsc-booking-button-none-padding-right: 14px;
  --diadao-hsc-booking-none-wrapper-display: flex;
  --diadao-hsc-booking-none-wrapper-flex-wrap: nowrap;
  --diadao-hsc-booking-none-wrapper-align-items: center;
  --diadao-hsc-booking-none-wrapper-justify-content: flex-start;
  --diadao-hsc-booking-none-wrapper-text-align: left;
  --diadao-hsc-booking-none-wrapper-button-display: flex;
  --diadao-hsc-booking-none-wrapper-button-flex-wrap: nowrap;
  --diadao-hsc-booking-none-wrapper-button-align-items: center;
  --diadao-hsc-booking-none-wrapper-button-justify-content: flex-start;
  --diadao-hsc-booking-none-wrapper-button-text-align: left;
  --diadao-hsc-booking-none-wrapper-button-margin-top: 0;
  --diadao-hsc-popup-title-text-transform: initial;
  --diadao-hsc-popup-title-font-weight: 400;
  --diadao-hsc-popup-title-margin-bottom: 40px;
  --diadao-hsc-popup-title-font-size: 30px;
  --diadao-hsc-popup-title-letter-spacing: 0;
  --diadao-hsc-popup-title-font-family: Faustina, Times, serif;
  --diadao-hsc-popup-title-line-height: 1.1;
  --diadao-hsc-popup-bg-color: #ffffff;
  --diadao-hsc-popup-box-shadow: 4px 0 200px 0 rgba(29, 29, 29, .3);
  --diadao-hsc-popup-button-close-min-width: 200px;
  --diadao-hsc-popup-button-close-max-width: 222px;
  --diadao-hsc-popup-button-close-width: auto;
  --diadao-hsc-popup-button-close-height: auto;
  --diadao-hsc-popup-button-close-display: inline-flex;
  --diadao-hsc-popup-button-close-align-items: center;
  --diadao-hsc-popup-button-close-justify-content: center;
  --diadao-hsc-popup-button-close-text-line-height: 1.5;
  --diadao-hsc-popup-button-close-text-display: inline-flex;
  --diadao-hsc-popup-button-close-text-font-family: Faustina, Times, serif;
  --diadao-hsc-popup-button-close-text-font-size: 16px;
  --diadao-hsc-popup-button-close-text-font-weight: 600;
  --diadao-hsc-booking-toggle-value-width: 50px;
  --diadao-hsc-booking-width: 100%;
  --diadao-hsc-booking-max-width: 100%;
  --diadao-hsc-booking-margin-left: auto;
  --diadao-hsc-booking-margin-right: auto;
  --diadao-hsc-booking-label-text-align: left;
  --diadao-hsc-booking-label-margin-bottom: 4px;
  --diadao-hsc-booking-label-font-size: 16px;
  --diadao-hsc-booking-label-letter-spacing: 0;
  --diadao-hsc-booking-label-text-transform: initial;
  --diadao-hsc-booking-label-font-weight: 500;
  --diadao-hsc-booking-label-font-family: Faustina, Times, serif;
  --diadao-hsc-booking-value-font-weight: 400;
  --diadao-hsc-booking-value-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-booking-value-font-size: 24px;
  --diadao-hsc-booking-value-letter-spacing: 0.05em;
  --diadao-hsc-booking-value-text-align: left;
  --diadao-hsc-booking-value-margin-bottom: 0;
  --diadao-hsc-booking-value-text-transform: uppercase;
  --diadao-hsc-booking-daterange-padding-top: 19px;
  --diadao-hsc-booking-daterange-padding-bottom: 16px;
  --diadao-hsc-booking-daterange-padding-left: 16px;
  --diadao-hsc-booking-daterange-padding-right: 16px;
  --diadao-hsc-booking-daterange-radius: 4px;
  --diadao-hsc-booking-daterange-margin-bottom: 0px;
  --diadao-hsc-booking-daterange-bgcolor: rgba($white, .5);
  --diadao-hsc-booking-daterange-separator-content: "";
  --diadao-hsc-booking-daterange-separator-display: block;
  --diadao-hsc-booking-daterange-separator-width: 1px;
  --diadao-hsc-booking-daterange-separator-position: absolute;
  --diadao-hsc-booking-daterange-separator-height: 100%;
  --diadao-hsc-booking-daterange-separator-background-color: #524e4b;
  --diadao-hsc-booking-daterange-separator-top: 0;
  --diadao-hsc-booking-daterange-separator-left: 50%;
  --diadao-hsc-booking-daterange-separator-margin-left: 0;
  --diadao-hsc-booking-daterange-arrival-padding-top: 0;
  --diadao-hsc-booking-daterange-arrival-padding-bottom: 0;
  --diadao-hsc-booking-daterange-arrival-padding-left: 0;
  --diadao-hsc-booking-daterange-arrival-padding-right: 0;
  --diadao-hsc-booking-daterange-arrival-radius: 0;
  --diadao-hsc-booking-daterange-arrival-margin-bottom: 0;
  --diadao-hsc-booking-daterange-arrival-bgcolor: transparent;
  --diadao-hsc-booking-daterange-departure-padding-top: 0;
  --diadao-hsc-booking-daterange-departure-padding-bottom: 0;
  --diadao-hsc-booking-daterange-departure-padding-left: 0;
  --diadao-hsc-booking-daterange-departure-padding-right: 0;
  --diadao-hsc-booking-daterange-departure-radius: 0;
  --diadao-hsc-booking-daterange-departure-margin-bottom: 0;
  --diadao-hsc-booking-daterange-departure-bgcolor: transparent;
  --diadao-hsc-booking-price-value-font-weight: 700;
  --diadao-hsc-booking-price-value-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-booking-price-value-font-size: 16px;
  --diadao-hsc-booking-price-value-letter-spacing: 0.05em;
  --diadao-hsc-booking-bestprice-title-div-display: none;
  --diadao-hsc-booking-bestprice-title-div-width: auto;
  --diadao-hsc-booking-bestprice-title-div-line-height: 1;
  --diadao-hsc-booking-bestprice-title-div-padding-right: 30px;
  --diadao-hsc-booking-bestprice-title-div-padding-top: 4px;
  --diadao-hsc-booking-bestprice-title-div-padding-bottom: 4px;
  --diadao-hsc-booking-bestprice-title-margin: 0;
  --diadao-hsc-booking-bestprice-title-font-size: 20px;
  --diadao-hsc-booking-bestprice-title-letter-spacing: 0;
  --diadao-hsc-booking-bestprice-title-line-height: 1;
  --diadao-hsc-booking-bestprice-title-font-weight: 600;
  --diadao-hsc-booking-bestprice-title-text-transform: initial;
  --diadao-hsc-booking-bestprice-title-font-family: Faustina, Times, serif;
  --diadao-hsc-booking-bestprice-title-color: #524e4b;
  --diadao-hsc-booking-bestprice-text-transform: uppercase;
  --diadao-hsc-booking-bestprice-title-margin-bottom: 0;
  --diadao-hsc-booking-bestprice-subtitle-div-display: flex;
  --diadao-hsc-booking-bestprice-subtitle-div-position: absolute;
  --diadao-hsc-booking-bestprice-subtitle-div-width: 24px;
  --diadao-hsc-booking-bestprice-subtitle-div-height: 24px;
  --diadao-hsc-booking-bestprice-subtitle-div-padding: 0;
  --diadao-hsc-booking-bestprice-subtitle-div-padding-right: 0;
  --diadao-hsc-booking-bestprice-subtitle-div-right: 0;
  --diadao-hsc-booking-bestprice-subtitle-div-align-items: center;
  --diadao-hsc-booking-bestprice-subtitle-div-justify-content: center;
  --diadao-hsc-booking-bestprice-subtitle-div-top: 50%;
  --diadao-hsc-booking-bestprice-subtitle-div-margin-top: -10px;
  --diadao-hsc-booking-bestprice-subtitle-text-display: none;
  --diadao-hsc-booking-bestprice-picto-position: relative;
  --diadao-hsc-booking-bestprice-picto-display: inline-block;
  --diadao-hsc-booking-bestprice-picto-width: 16px;
  --diadao-hsc-booking-bestprice-picto-height: 16px;
  --diadao-hsc-booking-bestprice-picto-margin: 0;
  --diadao-hsc-booking-bestprice-picto-margin-top: 0;
  --diadao-hsc-booking-bestprice-picto-margin-left: 0;
  --diadao-hsc-booking-bestprice-picto-left: initial;
  --diadao-hsc-booking-bestprice-picto-top: 0;
  --diadao-hsc-booking-bestprice-picto-right: initial;
  --diadao-hsc-booking-bestprice-picto-filter: none;
  --diadao-hsc-booking-price-display: block;
  --diadao-hsc-booking-price-width: 100%;
  --diadao-hsc-booking-price-margin-top: 0px;
  --diadao-hsc-booking-price-text-align: right;
  --diadao-hsc-booking-price-color: #ffffff;
  --diadao-hsc-booking-bestprice-wrapper-wrap: wrap;
  --diadao-hsc-booking-a-link-color: #ffffff;
  --diadao-hsc-booking-ota-bottom-margin-top: 30px;
  --diadao-hsc-booking-ota-container-default-margin-top: 15px;
  --diadao-hsc-booking-ota-row-margin-bottom: 10px;
  --diadao-hsc-booking-ota-row-font-family: initial;
  --diadao-hsc-booking-ota-row-font-size: 14px;
  --diadao-hsc-booking-ota-row-letter-spacing: 0;
  --diadao-hsc-booking-ota-row-line-height: 1;
  --diadao-hsc-booking-ota-row-font-weight: 300;
  --diadao-hsc-booking-ota-row-text-transform: initial;
  --diadao-hsc-booking-ota-row-text-align: left;
  --diadao-hsc-booking-ota-row-name-width: 150px;
  --diadao-hsc-booking-ota-row-name-text-align: left;
  --diadao-hsc-booking-ota-row-name-color: #ffffff;
  --diadao-hsc-booking-ota-row-value-width: calc(100% - 150px);
  --diadao-hsc-booking-ota-row-value-text-align: left;
  --diadao-hsc-booking-ota-row-value-color: #ffffff;
  --diadao-hsc-booking-noresults-message-display: block;
  --diadao-hsc-booking-noresults-message-max-width: auto;
  --diadao-hsc-booking-noresults-message-width: 100%;
  --diadao-hsc-booking-noresults-message-margin-left: auto;
  --diadao-hsc-booking-noresults-message-margin-right: auto;
  --diadao-hsc-booking-noresults-message-color: #524e4b;
  --diadao-hsc-booking-noresults-message-font-family: initial;
  --diadao-hsc-booking-noresults-message-font-size: 14px;
  --diadao-hsc-booking-noresults-message-letter-spacing: 0;
  --diadao-hsc-booking-noresults-message-line-height: 1;
  --diadao-hsc-booking-noresults-message-font-weight: 300;
  --diadao-hsc-booking-noresults-message-text-transform: initial;
  --diadao-hsc-booking-noresults-message-text-align: left;
  --diadao-hsc-booking-noresults-message-picto-filter: none;
  --diadao-hsc-booking-conditions-color: #524e4b;
  --diadao-hsc-booking-conditions-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-booking-conditions-font-size: 15px;
  --diadao-hsc-booking-conditions-letter-spacing: 0.7px;
  --diadao-hsc-booking-conditions-line-height: 1.2;
  --diadao-hsc-booking-conditions-font-weight: 600;
  --diadao-hsc-booking-conditions-text-transform: uppercase;
  --diadao-hsc-booking-conditions-text-align: left;
  --diadao-hsc-booking-conditions-picto-filter: none;
  --diadao-hsc-booking-legend-color: #524e4b;
  --diadao-hsc-booking-legend-font-family: initial;
  --diadao-hsc-booking-legend-font-size: 14px;
  --diadao-hsc-booking-legend-letter-spacing: 0;
  --diadao-hsc-booking-legend-line-height: 1;
  --diadao-hsc-booking-legend-font-weight: 300;
  --diadao-hsc-booking-legend-text-transform: initial;
  --diadao-hsc-booking-legend-text-align: left;
  --diadao-hsc-booking-legend-title-font-weight: bold;
  --diadao-hsc-booking-legend-title-margin-bottom: 10px;
  --diadao-hsc-booking-legend-link-font-weight: normal;
  --diadao-hsc-booking-legend-link-color: #a05a3d;
  --diadao-hsc-booking-legend-link-color-hover: #7b452f;
  --diadao-hsc-bestprice-font-size: 24px;
  --diadao-hsc-bestprice-letter-spacing: 0;
  --diadao-hsc-bestprice-line-height: 1;
  --diadao-hsc-bestprice-font-weight: 700;
  --diadao-hsc-bestprice-text-transform: initial;
  --diadao-hsc-bestprice-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-bestprice-color: #524e4b;
  --diadao-hsc-bestprice-currency-padding-left: .04em;
  --diadao-hsc-bestprice-currency-font-size: 24px;
  --diadao-hsc-bestprice-currency-letter-spacing: 0;
  --diadao-hsc-bestprice-currency-line-height: 1;
  --diadao-hsc-bestprice-currency-font-weight: 700;
  --diadao-hsc-bestprice-currency-text-transform: initial;
  --diadao-hsc-bestprice-currency-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-bestprice-currency-color: #524e4b;
  --diadao-hsc-bestprice-currency-vertical-align: top;
  --diadao-hsc-bestprice-none-font-size: 12px;
  --diadao-hsc-bestprice-none-letter-spacing: 0;
  --diadao-hsc-bestprice-none-line-height: 1;
  --diadao-hsc-bestprice-none-font-weight: 400;
  --diadao-hsc-bestprice-none-text-transform: initial;
  --diadao-hsc-bestprice-none-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-bestprice-none-currency-padding-left: 4px;
  --diadao-hsc-bestprice-none-color: #524e4b;
  --diadao-hsc-bestprice-none-text-align: left;
  --diadao-hsc-booking-bgcolor: #ffffff;
  --diadao-hsc-booking-color-label: #524e4b;
  --diadao-hsc-booking-color-value: #524e4b;
  --diadao-hsc-booking-bgcolor-toggle: #a05a3d;
  --diadao-hsc-bgcolor-toggle: #a05a3d;
  --diadao-hsc-color-toggle: #ffffff;
  --diadao-hsc-bgcolor-toggle-hover: #7b452f;
  --diadao-hsc-color-toggle-hover: #ffffff;
  --diadao-hsc-room-color-price: #ffffff;
  --diadao-hsc-room-color-none: #ffffff;
  --diadao-hsc-room-color-text: #ffffff;
  --diadao-hsc-booking-people-line-height: initial;
  --diadao-hsc-booking-input-adult-bgcolor: transparent;
  --diadao-hsc-booking-input-adult-border-top-left-radius: 4px;
  --diadao-hsc-booking-input-adult-border-top-right-radius: 0;
  --diadao-hsc-booking-input-adult-border-bottom-left-radius: 4px;
  --diadao-hsc-booking-input-adult-border-bottom-right-radius: 0;
  --diadao-hsc-booking-input-adult-padding-left: 16px;
  --diadao-hsc-booking-input-adult-padding-right: 16px;
  --diadao-hsc-booking-input-adult-padding-top: 22px;
  --diadao-hsc-booking-input-adult-padding-bottom: 22px;
  --diadao-hsc-booking-input-adult-margin-bottom: 0;
  --diadao-hsc-booking-input-children-bgcolor: #ffffff;
  --diadao-hsc-booking-input-children-border-top-left-radius: 0;
  --diadao-hsc-booking-input-children-border-top-right-radius: 4px;
  --diadao-hsc-booking-input-children-border-bottom-left-radius: 0;
  --diadao-hsc-booking-input-children-border-bottom-right-radius: 4px;
  --diadao-hsc-booking-input-children-padding-left: 0;
  --diadao-hsc-booking-input-children-padding-right: 14px;
  --diadao-hsc-booking-input-children-padding-top: 22px;
  --diadao-hsc-booking-input-children-padding-bottom: 22px;
  --diadao-hsc-booking-input-children-margin-bottom: 0;
  --diadao-hsc-booking-input-infant-bgcolor: #524e4b;
  --diadao-hsc-booking-input-infant-border-top-left-radius: 0;
  --diadao-hsc-booking-input-infant-border-top-right-radius: 0;
  --diadao-hsc-booking-input-infant-border-bottom-left-radius: 0;
  --diadao-hsc-booking-input-infant-border-bottom-right-radius: 0;
  --diadao-hsc-booking-input-infant-padding-left: 0;
  --diadao-hsc-booking-input-infant-padding-right: 0;
  --diadao-hsc-booking-input-infant-padding-top: 44px;
  --diadao-hsc-booking-input-infant-padding-bottom: 44px;
  --diadao-hsc-booking-input-infant-margin-bottom: 0;
  --diadao-hsc-desktop-sticky-title-picto-div-width: 82px;
  --diadao-hsc-desktop-sticky-title-picto-div-height: 82px;
  --diadao-hsc-desktop-sticky-title-picto-div-border-radius: 100%;
  --diadao-hsc-desktop-sticky-title-picto-div-bgcolor: #524e4b;
  --diadao-hsc-desktop-sticky-title-picto-div-margin-bottom: 0;
  --diadao-hsc-desktop-sticky-title-picto-img-width: 42px;
  --diadao-hsc-desktop-sticky-title-picto-img-height: 42px;
  --diadao-hsc-desktop-sticky-title-picto-justify-content: flex-start;
  --diadao-hsc-desktop-sticky-widget-padding-left: 0;
  --diadao-hsc-desktop-sticky-widget-margin-top: 0;
  --diadao-hsc-desktop-sticky-widget-margin-bottom: 0;
  --diadao-hsc-desktop-sticky-widget-width: auto;
  --diadao-hsc-desktop-sticky-widget-display: flex;
  --diadao-hsc-desktop-sticky-infos-display: flex;
  --diadao-hsc-desktop-sticky-infos-width: 540px;
  --diadao-hsc-desktop-sticky-infos-padding-left: 0;
  --diadao-hsc-desktop-sticky-infos-margin-bottom: 0;
  --diadao-hsc-desktop-sticky-infos-font-size: 14px;
  --diadao-hsc-desktop-sticky-infos-line-height: 1em;
  --diadao-hsc-desktop-sticky-infos-font-weight: 600;
  --diadao-hsc-desktop-sticky-infos-color: #524e4b;
  --diadao-hsc-desktop-sticky-infos-a-color: #a05a3d;
  --diadao-hsc-desktop-sticky-infos-a-font-weight: bold;
  --diadao-hsc-desktop-sticky-infos-list-li-padding-left: 20px;
  --diadao-hsc-desktop-sticky-infos-list-li-margin-bottom: 2px;
  --diadao-hsc-desktop-sticky-infos-list-icon: none;
  --diadao-hsc-desktop-sticky-infos-list-icon-size: 11px;
  --diadao-hsc-desktop-sticky-infos-list-icon-margin-top: -8px;
  --diadao-hsc-desktop-sticky-infos-contact-padding-left: 0;
  --diadao-hsc-desktop-sticky-infos-contact-text-align: left;
  --diadao-hsc-desktop-sticky-infos-contact-title-margin-bottom: 5px;
  --diadao-hsc-desktop-sticky-bgcolor: #ffffff;
  --diadao-hsc-desktop-sticky-color-label: #524e4b;
  --diadao-hsc-desktop-sticky-single-color-label: #524e4b;
  --diadao-hsc-desktop-sticky-color-value: #524e4b;
  --diadao-hsc-desktop-sticky-single-color-value: #524e4b;
  --diadao-hsc-desktop-sticky-bgcolor-toggle: #a05a3d;
  --diadao-hsc-desktop-sticky-color-toggle: #ffffff;
  --diadao-hsc-desktop-sticky-bgcolor-toggle-hover: #a05a3d;
  --diadao-hsc-desktop-sticky-color-toggle-hover: #ffffff;
  --diadao-hsc-desktop-sticky-text-color-title: #ffffff;
  --diadao-hsc-desktop-sticky-text-color-subtitle: #ffffff;
  --diadao-hsc-desktop-sticky-text-padding-left: 0;
  --diadao-hsc-desktop-sticky-toggle-width: 24px;
  --diadao-hsc-desktop-sticky-toggle-height: 24px;
  --diadao-hsc-desktop-sticky-toggle-line-height: 24px;
  --diadao-hsc-desktop-sticky-toggle-line-height-minus: 22px;
  --diadao-hsc-desktop-sticky-toggle-value-width: 50px;
  --diadao-hsc-desktop-sticky-text-title-text-align: left;
  --diadao-hsc-desktop-sticky-text-title-font-size: 30px;
  --diadao-hsc-desktop-sticky-text-title-line-height: 40px;
  --diadao-hsc-desktop-sticky-text-title-letter-spacing: 0;
  --diadao-hsc-desktop-sticky-text-title-text-transform: initial;
  --diadao-hsc-desktop-sticky-text-title-font-weight: 400;
  --diadao-hsc-desktop-sticky-text-title-font-family: Faustina, Times, serif;
  --diadao-hsc-desktop-sticky-text-title-margin-top: 14px;
  --diadao-hsc-desktop-sticky-text-title-margin-bottom: 14px;
  --diadao-hsc-desktop-sticky-text-title-padding-left: 50px;
  --diadao-hsc-desktop-sticky-text-title-max-width: 560px;
  --diadao-hsc-desktop-sticky-text-subtitle-display: none;
  --diadao-hsc-desktop-sticky-text-subtitle-text-align: center;
  --diadao-hsc-desktop-sticky-text-subtitle-font-size: 16px;
  --diadao-hsc-desktop-sticky-text-subtitle-line-height: 1;
  --diadao-hsc-desktop-sticky-text-subtitle-letter-spacing: 0;
  --diadao-hsc-desktop-sticky-text-subtitle-text-transform: initial;
  --diadao-hsc-desktop-sticky-text-subtitle-font-weight: 400;
  --diadao-hsc-desktop-sticky-text-subtitle-font-family: Faustina, Times, serif;
  --diadao-hsc-desktop-sticky-text-subtitle-margin-bottom: 0;
  --diadao-hsc-sticky-room-bgcolor: #524e4b;
  --diadao-hsc-sticky-room-color-label: #a05a3d;
  --diadao-hsc-sticky-room-single-color-label: #524e4b;
  --diadao-hsc-sticky-room-color-value: #ffffff;
  --diadao-hsc-sticky-room-single-color-value: #524e4b;
  --diadao-hsc-sticky-room-bgcolor-toggle: #a05a3d;
  --diadao-hsc-sticky-room-color-toggle: #ffffff;
  --diadao-hsc-sticky-room-bgcolor-toggle-hover: #a05a3d;
  --diadao-hsc-sticky-room-color-toggle-hover: #ffffff;
  --diadao-hsc-sticky-room-single-bgcolor-toggle: #a05a3d;
  --diadao-hsc-sticky-room-single-color-toggle: #ffffff;
  --diadao-hsc-sticky-room-single-bgcolor-toggle-hover: #a05a3d;
  --diadao-hsc-sticky-room-single-color-toggle-hover: #ffffff;
  --diadao-hsc-sticky-room-people-line-height: 1;
  --diadao-hsc-sticky-room-remaining-bgcolor: #a05a3d;
  --diadao-hsc-sticky-room-remaining-color: #ffffff;
  --diadao-hsc-sticky-room-remaining-line-height: 0.7;
  --diadao-hsc-sticky-room-remaining-padding-top: 4px;
  --diadao-hsc-sticky-room-remaining-padding-bottom: 4px;
  --diadao-hsc-sticky-room-desktop-left-width: 580px;
  --diadao-hsc-sticky-room-desktop-right-width: calc(100% - 580px);
  --diadao-hsc-sticky-room-desktop-label-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-label-height: 24px;
  --diadao-hsc-sticky-room-desktop-label-font-size: 18px;
  --diadao-hsc-sticky-room-desktop-label-letter-spacing: 0;
  --diadao-hsc-sticky-room-desktop-label-text-transform: initial;
  --diadao-hsc-sticky-room-desktop-label-font-weight: 500;
  --diadao-hsc-sticky-room-desktop-label-font-family: Faustina, Times, serif;
  --diadao-hsc-sticky-room-desktop-label-date-text-align: center;
  --diadao-hsc-sticky-room-desktop-label-people-text-align: center;
  --diadao-hsc-sticky-room-desktop-value-text-align: left;
  --diadao-hsc-sticky-room-desktop-value-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-value-font-size: 25px;
  --diadao-hsc-sticky-room-desktop-value-letter-spacing: 0.05em;
  --diadao-hsc-sticky-room-desktop-value-text-transform: initial;
  --diadao-hsc-sticky-room-desktop-value-font-weight: 400;
  --diadao-hsc-sticky-room-desktop-value-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-sticky-room-desktop-input-date-width: auto;
  --diadao-hsc-sticky-room-desktop-input-date-align-items: flex-start;
  --diadao-hsc-sticky-room-desktop-input-date-justify-content: initial;
  --diadao-hsc-sticky-room-desktop-input-date-flex-wrap: nowrap;
  --diadao-hsc-sticky-room-desktop-input-date-text-align: initial;
  --diadao-hsc-sticky-room-desktop-input-date-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-input-date-border-top-left-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-date-border-top-right-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-date-border-bottom-left-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-date-border-bottom-right-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-date-padding-left: 0px;
  --diadao-hsc-sticky-room-desktop-input-date-padding-right: 0px;
  --diadao-hsc-sticky-room-desktop-input-date-padding-top: 14px;
  --diadao-hsc-sticky-room-desktop-input-date-padding-bottom: 14px;
  --diadao-hsc-sticky-room-desktop-input-date-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-input-date-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-input-date-margin-left: 0%;
  --diadao-hsc-sticky-room-desktop-input-date-margin-right: 0;
  --diadao-hsc-sticky-room-desktop-input-date-arrival-width: 140px;
  --diadao-hsc-sticky-room-desktop-input-date-arrival-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-input-date-arrival-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-input-date-departure-width: 180px;
  --diadao-hsc-sticky-room-desktop-input-date-departure-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-input-date-departure-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-input-adult-width: auto;
  --diadao-hsc-sticky-room-desktop-input-adult-align-items: center;
  --diadao-hsc-sticky-room-desktop-input-adult-justify-content: center;
  --diadao-hsc-sticky-room-desktop-input-adult-flex-wrap: nowrap;
  --diadao-hsc-sticky-room-desktop-input-adult-text-align: center;
  --diadao-hsc-sticky-room-desktop-input-adult-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-input-adult-border-top-left-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-adult-border-top-right-radius: 0;
  --diadao-hsc-sticky-room-desktop-input-adult-border-bottom-left-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-adult-border-bottom-right-radius: 0;
  --diadao-hsc-sticky-room-desktop-input-adult-padding-left: 20px;
  --diadao-hsc-sticky-room-desktop-input-adult-padding-right: 0;
  --diadao-hsc-sticky-room-desktop-input-adult-padding-top: 22px;
  --diadao-hsc-sticky-room-desktop-input-adult-padding-bottom: 22px;
  --diadao-hsc-sticky-room-desktop-input-adult-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-input-adult-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-input-adult-margin-left: 16px;
  --diadao-hsc-sticky-room-desktop-input-adult-margin-right: 0%;
  --diadao-hsc-sticky-room-desktop-input-children-width: calc(25% - 20px);
  --diadao-hsc-sticky-room-desktop-input-children-align-items: center;
  --diadao-hsc-sticky-room-desktop-input-children-justify-content: flex-start;
  --diadao-hsc-sticky-room-desktop-input-children-flex-wrap: nowrap;
  --diadao-hsc-sticky-room-desktop-input-children-text-align: center;
  --diadao-hsc-sticky-room-desktop-input-children-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-input-children-border-top-left-radius: 0;
  --diadao-hsc-sticky-room-desktop-input-children-border-top-right-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-children-border-bottom-left-radius: 0;
  --diadao-hsc-sticky-room-desktop-input-children-border-bottom-right-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-children-padding-left: 0;
  --diadao-hsc-sticky-room-desktop-input-children-padding-right: 20px;
  --diadao-hsc-sticky-room-desktop-input-children-padding-top: 22px;
  --diadao-hsc-sticky-room-desktop-input-children-padding-bottom: 22px;
  --diadao-hsc-sticky-room-desktop-input-children-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-input-children-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-input-children-margin-left: 0;
  --diadao-hsc-sticky-room-desktop-input-children-margin-right: 0;
  --diadao-hsc-sticky-room-desktop-input-infant-width: calc(25% - 20px);
  --diadao-hsc-sticky-room-desktop-input-infant-align-items: center;
  --diadao-hsc-sticky-room-desktop-input-infant-justify-content: flex-start;
  --diadao-hsc-sticky-room-desktop-input-infant-flex-wrap: nowrap;
  --diadao-hsc-sticky-room-desktop-input-infant-text-align: center;
  --diadao-hsc-sticky-room-desktop-input-infant-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-input-infant-border-top-left-radius: 0;
  --diadao-hsc-sticky-room-desktop-input-infant-border-top-right-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-infant-border-bottom-left-radius: 0;
  --diadao-hsc-sticky-room-desktop-input-infant-border-bottom-right-radius: 4px;
  --diadao-hsc-sticky-room-desktop-input-infant-padding-left: 0;
  --diadao-hsc-sticky-room-desktop-input-infant-padding-right: 20px;
  --diadao-hsc-sticky-room-desktop-input-infant-padding-top: 22px;
  --diadao-hsc-sticky-room-desktop-input-infant-padding-bottom: 22px;
  --diadao-hsc-sticky-room-desktop-input-infant-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-input-infant-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-input-infant-margin-left: 0%;
  --diadao-hsc-sticky-room-desktop-input-infant-margin-right: 0%;
  --diadao-hsc-sticky-room-desktop-single-bgcolor: transparent;
  --diadao-hsc-sticky-room-desktop-single-border-radius: 4px;
  --diadao-hsc-sticky-room-desktop-single-padding-top: 0;
  --diadao-hsc-sticky-room-desktop-single-padding-bottom: 0;
  --diadao-hsc-sticky-room-desktop-single-padding-left: 0px;
  --diadao-hsc-sticky-room-desktop-single-padding-right: 0px;
  --diadao-hsc-sticky-room-desktop-single-button-price-margin-top: 16px;
  --diadao-hsc-sticky-room-desktop-single-button-price-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-single-input-adult-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-single-input-adult-width: 50%;
  --diadao-hsc-sticky-room-desktop-single-input-adult-margin-left: 0;
  --diadao-hsc-sticky-room-desktop-single-input-adult-margin-right: 0;
  --diadao-hsc-sticky-room-desktop-single-input-children-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-single-input-children-width: 50%;
  --diadao-hsc-sticky-room-desktop-single-input-children-margin-left: 0;
  --diadao-hsc-sticky-room-desktop-single-input-children-margin-right: 0;
  --diadao-hsc-sticky-room-desktop-single-input-infant-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-single-input-infant-width: 100%;
  --diadao-hsc-sticky-room-desktop-single-input-infant-margin-left: 0;
  --diadao-hsc-sticky-room-desktop-single-input-infant-margin-right: 0;
  --diadao-hsc-sticky-room-desktop-single-input-date-align-items: var(--diadao-hsc-sticky-room-desktop-input-date-align-items);
  --diadao-hsc-sticky-room-desktop-single-input-date-justify-content: var(--diadao-hsc-sticky-room-desktop-input-date-justify-content);
  --diadao-hsc-sticky-room-desktop-single-input-date-flex-wrap: var(--diadao-hsc-sticky-room-desktop-input-date-flex-wrap);
  --diadao-hsc-sticky-room-desktop-single-input-date-text-align: var(--diadao-hsc-sticky-room-desktop-input-date-text-align);
  --diadao-hsc-sticky-room-desktop-single-label-date-text-align: var(--diadao-hsc-sticky-room-desktop-label-date-text-align);
  --diadao-hsc-sticky-room-desktop-single-input-date-arrival-width: var(--diadao-hsc-sticky-room-desktop-input-date-arrival-width);
  --diadao-hsc-sticky-room-desktop-single-input-date-arrival-margin-top: var(--diadao-hsc-sticky-room-desktop-input-date-arrival-margin-top);
  --diadao-hsc-sticky-room-desktop-single-input-date-arrival-margin-bottom: var(--diadao-hsc-sticky-room-desktop-input-date-arrival-margin-bottom);
  --diadao-hsc-sticky-room-desktop-single-input-date-departure-width: var(--diadao-hsc-sticky-room-desktop-input-date-departure-width);
  --diadao-hsc-sticky-room-desktop-single-input-date-departure-margin-top: var(--diadao-hsc-sticky-room-desktop-input-date-departure-margin-top);
  --diadao-hsc-sticky-room-desktop-single-input-date-departure-margin-bottom: var(--diadao-hsc-sticky-room-desktop-input-date-departure-margin-bottom);
  --diadao-hsc-sticky-room-desktop-single-input-date-margin-bottom: 0px;
  --diadao-hsc-sticky-room-desktop-single-input-date-padding-left: 10px;
  --diadao-hsc-sticky-room-desktop-single-input-date-padding-right: 10px;
  --diadao-hsc-sticky-room-desktop-single-input-date-padding-top: 0px;
  --diadao-hsc-sticky-room-desktop-single-input-date-padding-bottom: 0px;
  --diadao-hsc-sticky-room-desktop-single-input-date-width: 100%;
  --diadao-hsc-sticky-room-desktop-single-input-date-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-desktop-single-input-adult-padding-top: 16px;
  --diadao-hsc-sticky-room-desktop-single-input-adult-padding-bottom: 16px;
  --diadao-hsc-sticky-room-desktop-single-input-adult-padding-left: 14px;
  --diadao-hsc-sticky-room-desktop-single-input-adult-padding-right: 0;
  --diadao-hsc-sticky-room-desktop-single-input-children-padding-top: 22px;
  --diadao-hsc-sticky-room-desktop-single-input-children-padding-bottom: 22px;
  --diadao-hsc-sticky-room-desktop-single-input-children-padding-left: 0;
  --diadao-hsc-sticky-room-desktop-single-input-children-padding-right: 16px;
  --diadao-hsc-sticky-room-desktop-single-input-infant-padding-top: 0;
  --diadao-hsc-sticky-room-desktop-single-input-infant-padding-bottom: 22px;
  --diadao-hsc-sticky-room-desktop-single-input-infant-padding-left: 0;
  --diadao-hsc-sticky-room-desktop-single-input-infant-padding-right: 0;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-height: auto;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-margin-left: 0;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-top: initial;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-text-align: center;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-justify-content: center;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-margin-bottom: 20px;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-width: 100%;
  --diadao-hsc-sticky-room-desktop-single-remaining-wrapper-left: initial;
  --diadao-hsc-sticky-room-desktop-single-remaining-top: initial;
  --diadao-hsc-sticky-room-desktop-single-remaining-height: auto;
  --diadao-hsc-sticky-room-desktop-single-remaining-font-weight: 400;
  --diadao-hsc-sticky-room-desktop-single-remaining-font-family: initial;
  --diadao-hsc-sticky-room-desktop-single-remaining-font-size: 20px;
  --diadao-hsc-sticky-room-desktop-single-remaining-line-height: 1;
  --diadao-hsc-sticky-room-desktop-single-remaining-letter-spacing: 0;
  --diadao-hsc-sticky-room-desktop-single-remaining-color: #000;
  --diadao-hsc-sticky-room-desktop-single-remaining-text-align: center;
  --diadao-hsc-sticky-room-desktop-single-remaining-justify-content: center;
  --diadao-hsc-sticky-room-desktop-single-remaining-margin-top: 0;
  --diadao-hsc-sticky-room-desktop-single-remaining-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-single-remaining-width: 100%;
  --diadao-hsc-sticky-room-desktop-single-remaining-left: initial;
  --diadao-hsc-sticky-room-desktop-single-official-flex-wrap: nowrap;
  --diadao-hsc-sticky-room-desktop-single-official-title-display: inline-block;
  --diadao-hsc-sticky-room-desktop-single-official-title-text-align: left;
  --diadao-hsc-sticky-room-desktop-single-official-title-width: 50%;
  --diadao-hsc-sticky-room-desktop-single-official-price-display: inline-block;
  --diadao-hsc-sticky-room-desktop-single-official-price-text-align: right;
  --diadao-hsc-sticky-room-desktop-single-official-price-width: 50%;
  --diadao-hsc-sticky-room-desktop-noresults-wrapper-padding-top: 0;
  --diadao-hsc-sticky-room-desktop-noresults-wrapper-padding-bottom: 40px;
  --diadao-hsc-sticky-room-desktop-noresults-wrapper-justify-content: center;
  --diadao-hsc-sticky-room-desktop-noresults-wrapper-margin-top: 20px;
  --diadao-hsc-sticky-room-desktop-noresults-wrapper-margin-bottom: 0;
  --diadao-hsc-sticky-room-desktop-noresults-message-display: inline;
  --diadao-hsc-sticky-room-desktop-noresults-message-max-width: none;
  --diadao-hsc-sticky-room-desktop-noresults-message-width: 100%;
  --diadao-hsc-sticky-room-desktop-noresults-message-margin-left: auto;
  --diadao-hsc-sticky-room-desktop-noresults-message-margin-right: auto;
  --diadao-hsc-sticky-room-desktop-noresults-message-color: #524e4b;
  --diadao-hsc-sticky-room-desktop-noresults-message-font-family: initial;
  --diadao-hsc-sticky-room-desktop-noresults-message-font-size: 14px;
  --diadao-hsc-sticky-room-desktop-noresults-message-letter-spacing: 0;
  --diadao-hsc-sticky-room-desktop-noresults-message-line-height: 1;
  --diadao-hsc-sticky-room-desktop-noresults-message-font-weight: 400;
  --diadao-hsc-sticky-room-desktop-noresults-message-text-transform: initial;
  --diadao-hsc-sticky-room-desktop-noresults-message-text-align: center;
  --diadao-hsc-sticky-room-desktop-noresults-message-picto-filter: none;
  --diadao-hsc-sticky-room-desktop-single-infos-margin-top: 25px;
  --diadao-hsc-sticky-room-desktop-single-infos-title-margin-bottom: 10px;
  --diadao-hsc-sticky-room-desktop-single-infos-font-weight: 400;
  --diadao-hsc-sticky-room-desktop-single-infos-font-family: initial;
  --diadao-hsc-sticky-room-desktop-single-infos-font-size: 12px;
  --diadao-hsc-sticky-room-desktop-single-infos-line-height: 1;
  --diadao-hsc-sticky-room-desktop-single-infos-letter-spacing: 0;
  --diadao-hsc-sticky-room-desktop-single-infos-text-align: center;
  --diadao-hsc-sticky-room-desktop-single-infos-color: #000;
  --diadao-hsc-sticky-room-desktop-single-infos-color-a: #000;
  --diadao-hsc-sticky-room-desktop-single-infos-color-a-hover: #000;
  --diadao-hsc-sticky-room-desktop-single-infos-cancel-margin-top: 25px;
  --diadao-hsc-mobile-sticky-bgcolor: #524e4b;
  --diadao-hsc-mobile-sticky-color-label: #524e4b;
  --diadao-hsc-mobile-sticky-color-value: #524e4b;
  --diadao-hsc-mobile-sticky-bgcolor-toggle: #a05a3d;
  --diadao-hsc-mobile-sticky-color-toggle: #ffffff;
  --diadao-hsc-mobile-sticky-bgcolor-toggle-hover: #7b452f;
  --diadao-hsc-mobile-sticky-color-toggle-hover: #524e4b;
  --diadao-hsc-mobile-sticky-sticked-closed-bgcolor: transparent;
  --diadao-hsc-mobile-sticky-sticked-closed-padding-top: 16px;
  --diadao-hsc-mobile-sticky-sticked-closed-padding-bottom: 0;
  --diadao-hsc-sticky-room-mobile-qs-padding-top: 0;
  --diadao-hsc-sticky-room-mobile-qs-padding-bottom: 0;
  --diadao-hsc-sticky-room-single-mobile-qs-padding-top: 0;
  --diadao-hsc-sticky-room-single-mobile-qs-padding-bottom: 0;
  --diadao-hsc-sticky-room-mobile-padding-left: 16px;
  --diadao-hsc-sticky-room-mobile-padding-right: 16px;
  --diadao-hsc-sticky-room-mobile-padding-top: 40px;
  --diadao-hsc-sticky-room-mobile-padding-bottom: 0;
  --diadao-hsc-sticky-room-detail-mobile-padding-left: 16px;
  --diadao-hsc-sticky-room-detail-mobile-padding-right: 16px;
  --diadao-hsc-sticky-room-detail-mobile-padding-top: 16px;
  --diadao-hsc-sticky-room-detail-mobile-padding-bottom: 16px;
  --diadao-hsc-sticky-room-mobile-bgcolor: #ffffff;
  --diadao-hsc-sticky-room-mobile-color-label: #524e4b;
  --diadao-hsc-sticky-room-mobile-color-value: #524e4b;
  --diadao-hsc-sticky-room-mobile-bgcolor-toggle: #a05a3d;
  --diadao-hsc-sticky-room-mobile-color-toggle: #ffffff;
  --diadao-hsc-sticky-room-mobile-bgcolor-toggle-hover: #7b452f;
  --diadao-hsc-sticky-room-mobile-color-toggle-hover: #524e4b;
  --diadao-hsc-sticky-room-mobile-label-text-align: center;
  --diadao-hsc-sticky-room-mobile-label-margin-bottom: 4px;
  --diadao-hsc-sticky-room-mobile-label-height: 24px;
  --diadao-hsc-sticky-room-mobile-label-font-size: 16px;
  --diadao-hsc-sticky-room-mobile-label-letter-spacing: 0;
  --diadao-hsc-sticky-room-mobile-label-text-transform: initial;
  --diadao-hsc-sticky-room-mobile-label-font-weight: 500;
  --diadao-hsc-sticky-room-mobile-label-font-family: Faustina, Times, serif;
  --diadao-hsc-sticky-room-mobile-value-text-align: center;
  --diadao-hsc-sticky-room-mobile-value-margin-bottom: 0;
  --diadao-hsc-sticky-room-mobile-value-font-size: 24px;
  --diadao-hsc-sticky-room-mobile-value-letter-spacing: 0;
  --diadao-hsc-sticky-room-mobile-value-text-transform: initial;
  --diadao-hsc-sticky-room-mobile-value-font-weight: 400;
  --diadao-hsc-sticky-room-mobile-value-font-family: Sofia Sans Extra Condensed, Arial, sans-serif;
  --diadao-hsc-sticky-room-mobile-input-date-bgcolor: transparent;
  --diadao-hsc-sticky-room-mobile-input-date-border-top-left-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-date-border-top-right-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-date-border-bottom-left-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-date-border-bottom-right-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-date-padding-left: 10px;
  --diadao-hsc-sticky-room-mobile-input-date-padding-right: 10px;
  --diadao-hsc-sticky-room-mobile-input-date-padding-top: 12px;
  --diadao-hsc-sticky-room-mobile-input-date-padding-bottom: 12px;
  --diadao-hsc-sticky-room-mobile-input-date-margin-top: 0;
  --diadao-hsc-sticky-room-mobile-input-date-margin-bottom: 8px;
  --diadao-hsc-sticky-room-mobile-input-adult-bgcolor: transparent;
  --diadao-hsc-sticky-room-mobile-input-adult-border-top-left-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-adult-border-top-right-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-adult-border-bottom-left-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-adult-border-bottom-right-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-adult-padding-left: 14px;
  --diadao-hsc-sticky-room-mobile-input-adult-padding-right: 14px;
  --diadao-hsc-sticky-room-mobile-input-adult-padding-top: 12px;
  --diadao-hsc-sticky-room-mobile-input-adult-padding-bottom: 12px;
  --diadao-hsc-sticky-room-mobile-input-adult-margin-bottom: 0;
  --diadao-hsc-sticky-room-mobile-input-children-bgcolor: #ecebe8;
  --diadao-hsc-sticky-room-mobile-input-children-border-top-left-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-children-border-top-right-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-children-border-bottom-left-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-children-border-bottom-right-radius: 4px;
  --diadao-hsc-sticky-room-mobile-input-children-padding-left: 0;
  --diadao-hsc-sticky-room-mobile-input-children-padding-right: 14px;
  --diadao-hsc-sticky-room-mobile-input-children-padding-top: 22px;
  --diadao-hsc-sticky-room-mobile-input-children-padding-bottom: 22px;
  --diadao-hsc-sticky-room-mobile-input-children-margin-bottom: 8px;
  --diadao-hsc-sticky-room-mobile-input-infant-bgcolor: #ecebe8;
  --diadao-hsc-sticky-room-mobile-input-infant-border-top-left-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-border-top-right-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-border-bottom-left-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-border-bottom-right-radius: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-padding-left: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-padding-right: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-padding-top: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-padding-bottom: 0;
  --diadao-hsc-sticky-room-mobile-input-infant-margin-bottom: 0;
  --diadao-hsc-sticky-room-mobile-price-wrapper-message-padding-left: 0;
  --diadao-hsc-sticky-room-mobile-price-wrapper-message-width: calc(100% - 160px);
  --diadao-hsc-sticky-room-mobile-price-wrapper-button-padding-right: 0;
  --diadao-hsc-sticky-room-mobile-price-wrapper-button-width: 160px;
  --diadao-hsc-sticky-room-mobile-price-wrapper-price-color: #524e4b;
  --diadao-hsc-sticky-room-mobile-price-wrapper-price-font-size: 24px;
  --diadao-hsc-sticky-room-mobile-price-wrapper-price-letter-spacing: 0;
  --diadao-hsc-sticky-room-mobile-price-wrapper-price-text-transform: uppercase;
  --diadao-hsc-sticky-room-mobile-price-wrapper-price-font-weight: 300;
  --diadao-hsc-sticky-room-mobile-price-wrapper-price-font-family: Faustina, Times, serif;
  --diadao-hsc-sticky-room-mobile-noresults-wrapper-padding-left: 0;
  --diadao-hsc-sticky-room-mobile-noresults-wrapper-padding-right: 0;
  --diadao-hsc-sticky-room-mobile-noresults-wrapper-message-width: calc(100% - 120px);
  --diadao-hsc-sticky-room-mobile-noresults-wrapper-button-width: 120px;
  --diadao-hsc-sticky-room-mobile-noresults-message-display: inline-block;
  --diadao-hsc-sticky-room-mobile-noresults-message-color: #524e4b;
  --diadao-hsc-sticky-room-mobile-noresults-message-picto-filter: none;
  --diadao-hsc-sticky-room-mobile-noresults-message-max-width: 150px;
  --diadao-hsc-sticky-room-mobile-noresults-message-text-align: left;
  --diadao-hsc-sticky-room-mobile-noresults-message-font-size: 14px;
  --diadao-hsc-sticky-room-mobile-noresults-message-line-height: 16px;
  --diadao-hsc-sticky-room-mobile-noresults-message-letter-spacing: 0;
  --diadao-hsc-sticky-room-mobile-noresults-message-text-transform: initial;
  --diadao-hsc-sticky-room-mobile-noresults-message-font-weight: 300;
  --diadao-hsc-sticky-room-mobile-noresults-message-font-family: Faustina, Times, serif;
  --diadao-hsc-popup-none-color-title: #ffffff;
  --diadao-hsc-popup-none-color-text: #ffffff;
  --diadao-hsc-popup-none-bgcolor: #ffffff;
  --diadao-hsc-popup-none-color-scrollbar: #ffffff;
  --diadao-hsc-popup-bestprice-color-title: #ffffff;
  --diadao-hsc-popup-bestprice-color-text: #ffffff;
  --diadao-hsc-popup-bestprice-bgcolor: #ffffff;
  --diadao-hsc-popup-bestprice-scrollbar: #ffffff;
}
@media only screen and (min-width: 640px) {
  :root {
    --diadao-hsc-booking-daterange-padding-left: 32px;
    --diadao-hsc-booking-daterange-padding-right: 32px;
    --diadao-hsc-booking-daterange-padding-top: 30px;
    --diadao-hsc-booking-daterange-padding-bottom: 24px;
    --diadao-hsc-booking-input-adult-padding-left: 32px;
    --diadao-hsc-booking-input-adult-padding-right: 32px;
    --diadao-hsc-booking-label-margin-bottom: 12px;
    --diadao-hsc-booking-label-font-size: 18px;
    --diadao-hsc-booking-value-font-size: 32px;
    --diadao-hsc-loader-size: 24px;
    --diadao-hsc-booking-price-value-font-size: 20px;
  }
}

html ul.hsc-conditions-list li i,
html ul.hsc-sticky-rooms-conditions li i {
  display: none !important;
}
html ul.hsc-conditions-list li:before,
html ul.hsc-sticky-rooms-conditions li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/hsc/icon-check.svg");
  mask-image: url("../images/hsc/icon-check.svg");
  -webkit-mask-size: 14px;
  mask-size: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #524e4b;
  background-image: none;
  margin-top: 0 !important;
}
html body .qs-calendars:not(.qs-calendars-opened) {
  display: none !important;
}
html #diadao-qs-snippet-booking .qs-snippet-booking-inner .qs-snippet-booking-content .diadao-popup-title.hsc-popup-title,
html #diadao-qs-availabilities-snippet-booking .qs-snippet-booking-inner .qs-snippet-booking-content .diadao-popup-title.hsc-popup-title {
  color: #524e4b !important;
}

html body.diadao-sdkcustomboilerplatemisterbooking,
html body.diadao-sdkroberthotels {
  /*.hsc-button-panel-book,
  #diadao-qs-availabilities-snippet-close,
  #diadao-qs-snippet-close {
  	min-width: var(--diadao-hsc-booking-button-book-width) !important;
  	height: $btn-size-mobile !important;

  	@include device_992_min {
  		height: $btn-size !important;
  	}
  }*/
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react .i-best-rate,
html body.diadao-sdkroberthotels .qs-react .i-best-rate {
  pointer-events: none;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react .i-best-rate svg path,
html body.diadao-sdkroberthotels .qs-react .i-best-rate svg path {
  fill: #a05a3d;
}
@media only screen and (min-width: 992px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react .diadao-qs__rate--no-availabilities,
  html body.diadao-sdkroberthotels .qs-react .diadao-qs__rate--no-availabilities {
    padding-left: 0 !important;
  }
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react .diadao-qs__booking-informations .wrapper-conditions .hsc-conditions-list,
  html body.diadao-sdkroberthotels .qs-react .diadao-qs__booking-informations .wrapper-conditions .hsc-conditions-list {
    width: 100% !important;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react .diadao-qs .diadao-qs__select.diadao-qs__select-custom.hsc-field-children,
html body.diadao-sdkroberthotels .qs-react .diadao-qs .diadao-qs__select.diadao-qs__select-custom.hsc-field-children {
  display: none;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close {
  position: relative;
  display: inline-flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  min-height: 41px;
  width: auto;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color 0.25s ease-in-out, border 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out;
  color: #524e4b;
  text-decoration: none;
  padding-inline: 16px;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close,
  html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close,
  html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close,
  html body.diadao-sdkroberthotels #diadao-qs-snippet-close {
    gap: 4px;
    padding-inline: 24px;
    min-height: 48px;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close:focus-visible,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close:focus-visible,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close:focus-visible,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close:focus-visible {
  outline: none;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close span,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close span,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close span,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close span {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  display: block;
  text-align: center;
  pointer-events: none;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close span strong,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close span strong,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close span strong,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close span strong {
  color: currentColor;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon {
  flex-shrink: 0;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon--close,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon--close,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon--close,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon--close {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-cross.svg");
  mask-image: url("../images/svg/icons/icon-cross.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon--back,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon--back,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon--back,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon--back {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon--chevron-down,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon--chevron-down,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon--chevron-down,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon--chevron-down {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon--chevron-left,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon--chevron-left,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon--chevron-left,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon--chevron-left {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon--menu-burger,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon--menu-burger,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon--menu-burger,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon--menu-burger {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-close .icon--pen,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-close .icon--pen,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-close .icon--pen,
html body.diadao-sdkroberthotels #diadao-qs-snippet-close .icon--pen {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-edit.svg");
  mask-image: url("../images/svg/icons/icon-edit.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking .hsc-button-not-available-panel,
html body.diadao-sdkroberthotels .hsc-button-not-available-panel {
  text-align: center;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-booking,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-booking,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-booking,
html body.diadao-sdkroberthotels #diadao-qs-snippet-booking {
  transform: translateX(-100%);
  overflow: clip;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 991px) {
  html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-booking,
  html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-booking,
  html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-booking,
  html body.diadao-sdkroberthotels #diadao-qs-snippet-booking {
    max-width: 100%;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-booking.opened,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-booking.opened,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-booking.opened,
html body.diadao-sdkroberthotels #diadao-qs-snippet-booking.opened {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-booking .hsc-popup-list i svg path,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-booking .hsc-popup-list i svg path,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-booking .hsc-popup-list i svg path,
html body.diadao-sdkroberthotels #diadao-qs-snippet-booking .hsc-popup-list i svg path {
  fill: #a05a3d;
}
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-availabilities-snippet-booking #diadao-qs-snippet-close,
html body.diadao-sdkcustomboilerplatemisterbooking #diadao-qs-snippet-booking #diadao-qs-snippet-close,
html body.diadao-sdkroberthotels #diadao-qs-availabilities-snippet-booking #diadao-qs-snippet-close,
html body.diadao-sdkroberthotels #diadao-qs-snippet-booking #diadao-qs-snippet-close {
  top: inherit;
  right: inherit;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs {
  /*.diadao-best-rate-snippet {
  	cursor: pointer;

  	.hsc-best-price-title,
  	.best-rate--official {
  		pointer-events: none;
  	}
  }

  .diadao-qs__rate--no-availabilities {
  	@include device_992_min {
  		padding-left: 0 !important;
  	}
  }

  .diadao-qs__book {
  	> span {
  		text-align: left;
  	}
  }*/
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs ul.diadao-conditions li,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs ul.diadao-conditions li {
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs ul.diadao-conditions li:last-child,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs ul.diadao-conditions li:last-child {
  margin-bottom: 0px;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__input-range,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__input-range {
  order: 0;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs-rate__loading,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs-rate__loading {
  order: 1;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__html.diadao-qs__booking-informations,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__html.diadao-qs__booking-informations {
  order: 2;
  margin-top: 0px;
  margin-bottom: 24px;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__html.diadao-qs__booking-informations .wrapper .wrapper-legend,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__html.diadao-qs__booking-informations .wrapper .wrapper-legend {
  display: none;
}
@media only screen and (min-width: 640px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__html.diadao-qs__booking-informations,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__html.diadao-qs__booking-informations {
    flex: 1 1 45%;
    margin-bottom: 0px;
    padding-right: 16px;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota {
  order: 5;
  flex: 1 1 38%;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  background-color: #a05a3d;
}
@media only screen and (min-width: 640px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota {
    flex: 1 1 21%;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota .wrapper,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota .wrapper {
  height: 100%;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota .wrapper .best-rate,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota .wrapper .best-rate {
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  cursor: pointer;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota .wrapper .best-rate::after,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--price-ota .wrapper .best-rate::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  height: 21px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book {
  order: 6;
  z-index: 3;
  margin-top: 0px;
  flex: 1 1 62%;
  overflow: visible;
}
@media only screen and (min-width: 640px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book {
    flex: 1 1 34%;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book > span,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book > span {
  display: flex;
  min-height: 100%;
  align-items: stretch;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar {
  position: relative;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
@media only screen and (min-width: 992px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar {
    min-height: 80px;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar::before,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar::before {
  content: "";
  position: absolute;
  left: -62%;
  bottom: 0;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 640px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar::before,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar::before {
    left: -63%;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span {
  display: flex;
}
@media only screen and (min-width: 992px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span::before, html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span::after,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span::before,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__book .btn-calendar span::after {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities {
  order: 4;
  flex: 1 1 100%;
}
@media only screen and (min-width: 640px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities {
    flex: 1 1 55%;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities .wrapper .wrapper-not-available-text,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities .wrapper .wrapper-not-available-text {
  width: 37%;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities .wrapper .wrapper-not-available-button,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__rate--no-availabilities .wrapper .wrapper-not-available-button {
  width: 63%;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .btn-calendar.disabled,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .btn-calendar.disabled {
  background-color: #ffffff;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs {
  --diadao-hsc-loader-size: 24px;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs .diadao-qs__rate,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs .diadao-qs__rate {
  min-height: var(--diadao-hsc-loader-size);
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs .diadao-qs__rate .wrapper,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs .diadao-qs__rate .wrapper {
  display: flex;
  align-items: flex-end;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs .rate-loading,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs .rate-loading {
  margin-left: 0;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs.loading .rate-loading,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs.loading .rate-loading {
  margin-left: 0;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs.not-available .diadao-qs__rate,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs.not-available .diadao-qs__rate {
  min-height: auto;
}
html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs.not-available .diadao-qs__rate .not-available-message,
html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs.not-available .diadao-qs__rate .not-available-message {
  font-size: 24px;
  color: var(--diadao-hsc-bestprice-color);
}
@media only screen and (min-width: 992px) {
  html body.diadao-sdkcustomboilerplatemisterbooking .qs-react[data-diadao-widget^=best_price] .diadao-qs.not-available .diadao-qs__rate .not-available-message,
  html body.diadao-sdkroberthotels .qs-react[data-diadao-widget^=best_price] .diadao-qs.not-available .diadao-qs__rate .not-available-message {
    font-size: 24px;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking .module-hsc-room-detail,
html body.diadao-sdkroberthotels .module-hsc-room-detail {
  display: none;
  visibility: hidden;
  opacity: 0;
  height: 0px;
  width: 0px;
  position: absolute;
  left: 9999px;
  overflow: hidden;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .best-rate.rate.rate--official.available,
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .diadao-best-rate-official-label-div,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .best-rate.rate.rate--official.available,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .diadao-best-rate-official-label-div {
  width: 50%;
  display: inline-block;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .diadao-best-rate-official-label-div,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .diadao-best-rate-official-label-div {
  text-align: left;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .diadao-best-rate-official-label-div > span.diadao-best-rate-official-label-text,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .diadao-best-rate-official-label-div > span.diadao-best-rate-official-label-text {
  font-size: 26px;
  line-height: var(--diadao-hsc-booking-bestprice-title-line-height);
  font-weight: var(--diadao-hsc-booking-bestprice-title-font-weight);
  text-transform: var(--diadao-hsc-booking-bestprice-title-text-transform);
  font-family: var(--diadao-hsc-booking-bestprice-title-font-family);
  letter-spacing: var(--diadao-hsc-booking-bestprice-title-letter-spacing);
  color: #a05a3d;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .best-rate.rate.rate--official.available,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__rate.diadao-qs__rate--book-price .wrapper .best-rate.rate.rate--official.available {
  text-align: right;
  color: #a05a3d;
  font-weight: var(--diadao-hsc-booking-price-value-font-weight);
  font-family: var(--diadao-hsc-booking-price-value-font-family);
  font-size: 26px;
  letter-spacing: var(--diadao-hsc-booking-price-value-letter-spacing);
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__book .hsc-button-sticky-book,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__book .hsc-button-sticky-book {
  transition: background 0.3s ease-in-out;
  background-color: #a05a3d;
  width: 100%;
  min-width: auto;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  box-sizing: border-box;
  border-radius: 2px;
  color: #ffffff !important;
  height: 48px;
  font-weight: 600;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__book .hsc-button-sticky-book:hover,
html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__book .hsc-button-sticky-book:hover {
  background-color: #7b452f;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop #diadao-hdp-bar .inner-hdp .hdp-columns,
html body.diadao-sdkroberthotels.device-desktop #diadao-hdp-bar .inner-hdp .hdp-columns {
  align-items: center;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop #diadao-hdp-bar.has-text-column .hdp-column-text,
html body.diadao-sdkroberthotels.device-desktop #diadao-hdp-bar.has-text-column .hdp-column-text {
  display: none !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop #diadao-hdp-bar.has-text-column .hdp-column-text .inner.has-picto,
html body.diadao-sdkroberthotels.device-desktop #diadao-hdp-bar.has-text-column .hdp-column-text .inner.has-picto {
  margin-bottom: 40px !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop #diadao-hdp-bar.has-text-column .hdp-column-widget,
html body.diadao-sdkroberthotels.device-desktop #diadao-hdp-bar.has-text-column .hdp-column-widget {
  max-width: 880px !important;
}
@media only screen and (min-width: 1440px) {
  html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__input-range,
  html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__input-range {
    max-width: 440px !important;
  }
}
@media only screen and (min-width: 1440px) {
  html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__select.diadao-qs__select-custom,
  html body.diadao-sdkroberthotels.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__select.diadao-qs__select-custom {
    max-width: 220px !important;
  }
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room[data-mode=sticky].opened.is-fullmode,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room[data-mode=sticky].opened.is-fullmode {
  background-color: transparent !important;
  height: 100vh !important;
  display: flex !important;
  align-items: flex-end !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile {
  width: 100%;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs {
  /*.diadao-qs__input-date .diadao-qs__input-date--val > div {
  	line-height: 32px;
  	height: 32px;
  }*/
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__select.diadao-qs__select-custom--children,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__select.diadao-qs__select-custom--children {
  display: none;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp {
  background-color: transparent;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile:not(.is-fullmode) .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile.is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile.is-fullmode .inner-hdp {
  width: 100%;
  /*.diadao-hsc-sticky-opened-visible,
  .diadao-hsc-sticky-opened-hidden,
  .diadao-hsc-sticky-opened-hidden,
  .diadao-hsc-sticky-opened-hidden {
  	display: block !important;
  	transition: opacity .6s ease-out, visibility .6s ease-out;
  }*/
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile:not(.is-fullmode) .inner-hdp .diadao-hdp-mobile-container, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile.is-fullmode .inner-hdp .diadao-hdp-mobile-container,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile:not(.is-fullmode) .inner-hdp .diadao-hdp-mobile-container,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile.is-fullmode .inner-hdp .diadao-hdp-mobile-container {
  position: relative;
  left: 0;
  visibility: visible;
  opacity: 1;
  height: 0;
  transition: height 0.6s ease-out;
  padding: 0px 24px !important;
  background: #ffffff;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile:not(.is-fullmode) .inner-hdp .diadao-hdp-mobile-container.opened, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile.is-fullmode .inner-hdp .diadao-hdp-mobile-container.opened,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile:not(.is-fullmode) .inner-hdp .diadao-hdp-mobile-container.opened,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile.is-fullmode .inner-hdp .diadao-hdp-mobile-container.opened {
  height: 266px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .outer-hdp-overlay-close,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .outer-hdp-overlay-close {
  height: 100vh;
  height: 100lvh;
  bottom: 0;
  top: auto;
  background-color: rgba(0, 0, 0, 0.56);
  left: 0;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile.is-fullmode .outer-hdp-overlay-close,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile.is-fullmode .outer-hdp-overlay-close {
  visibility: visible;
  opacity: 1;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react {
  padding-top: 42px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs .diadao-qs__input-range,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs .diadao-qs__input-range {
  border: 1px solid #ecebe8;
  border-radius: 4px;
  position: relative;
  text-align: center;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs .diadao-qs__input-range::after,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs .diadao-qs__input-range::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  background-color: #524e4b;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs .diadao-qs__select-custom--adults,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs .diadao-qs__select-custom--adults {
  width: 100%;
  border: 1px solid #ecebe8;
  justify-content: center;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs__input-date--val,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .qs-react .diadao-qs__input-date--val {
  text-align: center;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp .diadao-hdp-mobile-container.opened,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp .diadao-hdp-mobile-container.opened {
  padding-top: 40px !important;
  border-top-right-radius: 8px !important;
  border-top-left-radius: 8px !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .diadao-hdp-mobile-container,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .diadao-hdp-mobile-container,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .diadao-hdp-mobile-container,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .diadao-hdp-mobile-container {
  background-color: #ffffff;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp {
  align-items: center;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-button-sticky-rooms-open,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-button-sticky-rooms-open,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-button-sticky-rooms-open,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-button-sticky-rooms-open {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 24px;
  right: 24px;
  background-color: #ffffff;
  color: #a05a3d;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-button-sticky-rooms-open span,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-button-sticky-rooms-open span,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-button-sticky-rooms-open span,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-button-sticky-rooms-open span {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #524e4b;
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-button-sticky-rooms-open i,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-button-sticky-rooms-open i,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-button-sticky-rooms-open i,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-button-sticky-rooms-open i {
  display: none !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-close-button,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-close-button,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp > a.hsc-close-button,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp > a.hsc-close-button {
  align-self: flex-start;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile:not(.sticked) .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile.sticked .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room:not(.sticked) .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room.sticked .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile:not(.sticked) .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile.sticked .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room:not(.sticked) .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room.sticked .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile:not(.sticked) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile.sticked .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room:not(.sticked) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room.sticked .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile:not(.sticked) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile.sticked .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room:not(.sticked) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room.sticked .inner-hdp {
  background-color: #ffffff;
  position: relative;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile:not(.sticked):not(.is-fullmode) .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile.sticked:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room:not(.sticked):not(.is-fullmode) .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room.sticked:not(.is-fullmode) .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile:not(.sticked):not(.is-fullmode) .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile.sticked:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room:not(.sticked):not(.is-fullmode) .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room.sticked:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile:not(.sticked):not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile.sticked:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room:not(.sticked):not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room.sticked:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile:not(.sticked):not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile.sticked:not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room:not(.sticked):not(.is-fullmode) .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room.sticked:not(.is-fullmode) .inner-hdp {
  padding-top: 16px;
  padding-bottom: 16px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile:not(.sticked).is-fullmode .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile.sticked.is-fullmode .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room:not(.sticked).is-fullmode .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room.sticked.is-fullmode .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile:not(.sticked).is-fullmode .inner-hdp, html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile.sticked.is-fullmode .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room:not(.sticked).is-fullmode .inner-hdp,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room.sticked.is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile:not(.sticked).is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened #diadao-hdp-bar-mobile.sticked.is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room:not(.sticked).is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-rooms-sticky-opened .diadao-hdp-bar-room.sticked.is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile:not(.sticked).is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened #diadao-hdp-bar-mobile.sticked.is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room:not(.sticked).is-fullmode .inner-hdp,
html body.diadao-sdkroberthotels.device-responsive.diadao-room-sticky-opened .diadao-hdp-bar-room.sticked.is-fullmode .inner-hdp {
  padding-top: 0px;
  padding-bottom: 0px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__html.diadao-qs-rate__loading .wrapper svg,
html body.diadao-sdkroberthotels.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__html.diadao-qs-rate__loading .wrapper svg {
  margin-top: 0px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__remainings,
html body.diadao-sdkroberthotels.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__remainings {
  bottom: 0px !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__remainings .diadao-qs__remainings__texts .remainings .value,
html body.diadao-sdkroberthotels.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__remainings .diadao-qs__remainings__texts .remainings .value {
  font-size: 12px !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .best-rate-label,
html body.diadao-sdkroberthotels.device-responsive .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .best-rate-label {
  color: #524e4b;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit {
  padding: 8px;
  background-color: transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 5;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit::before,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit::before,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit::before,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit::before {
  content: "";
  background-color: #a99d96;
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive #diadao-hdp-bar-mobile .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit span.label-close,
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive .diadao-hdp-bar-room .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit span.label-close,
html body.diadao-sdkroberthotels.device-responsive #diadao-hdp-bar-mobile .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit span.label-close,
html body.diadao-sdkroberthotels.device-responsive .diadao-hdp-bar-room .inner-hdp a.hsc-button.hsc-button-sticky-rooms-exit span.label-close {
  position: relative !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0px !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.diadao-room-detail-page .diadao-sdk-sticky-v2.sticky-v2-sticked,
html body.diadao-sdkroberthotels.diadao-room-detail-page .diadao-sdk-sticky-v2.sticky-v2-sticked {
  top: 40px;
}
html body.diadao-sdkcustomboilerplatemisterbooking.device-responsive.qs-init-no-dates.qs-init-no-dates-responsive .qs-react .diadao-qs .diadao-qs__select.diadao-qs__select-custom, html body.diadao-sdkcustomboilerplatemisterbooking.device-desktop.qs-init-no-dates.qs-init-no-dates-desktop .qs-react .diadao-qs .diadao-qs__select.diadao-qs__select-custom,
html body.diadao-sdkroberthotels.device-responsive.qs-init-no-dates.qs-init-no-dates-responsive .qs-react .diadao-qs .diadao-qs__select.diadao-qs__select-custom,
html body.diadao-sdkroberthotels.device-desktop.qs-init-no-dates.qs-init-no-dates-desktop .qs-react .diadao-qs .diadao-qs__select.diadao-qs__select-custom {
  opacity: 0.3 !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__input-range > .diadao-qs__input-date:first-child,
html body.diadao-sdkcustomboilerplatemisterbooking.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__input-range > .diadao-qs__input-date:first-child,
html body.diadao-sdkroberthotels.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__input-range > .diadao-qs__input-date:first-child,
html body.diadao-sdkroberthotels.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__input-range > .diadao-qs__input-date:first-child {
  width: 100% !important;
  text-align: left !important;
}
html body.diadao-sdkcustomboilerplatemisterbooking.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__input-range,
html body.diadao-sdkcustomboilerplatemisterbooking.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs,
html body.diadao-sdkroberthotels.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__input-range,
html body.diadao-sdkroberthotels.qs-init-no-dates.device-desktop .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs {
  align-items: initial !important;
}

html[lang=en-US] > body.diadao-roberthotels .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__input-range .diadao-qs__input-date .diadao-qs__input-date--val,
html[lang=en-US] > body.diadao-roberthotels .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__input-range .diadao-qs__input-date .diadao-qs__input-date--val,
html[lang=en-US] > body.diadao-roberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__input-range .diadao-qs__input-date .diadao-qs__input-date--val,
html[lang=en-EN] > body.diadao-roberthotels .qs-react[data-diadao-widget=rooms_list_single_hsc] .diadao-qs .diadao-qs__input-range .diadao-qs__input-date .diadao-qs__input-date--val,
html[lang=en-EN] > body.diadao-roberthotels .qs-react[data-diadao-widget=rooms_list_hsc] .diadao-qs .diadao-qs__input-range .diadao-qs__input-date .diadao-qs__input-date--val,
html[lang=en-EN] > body.diadao-roberthotels .qs-react[data-diadao-widget=booking_hsc] .diadao-qs .diadao-qs__input-range .diadao-qs__input-date .diadao-qs__input-date--val {
  display: block !important;
}

:root {
  --diadao-hsc-desktop-sticky-widget-width: auto;
  --diadao-hsc-desktop-sticky-infos-width: auto;
}

#hsc-sticky-rooms {
  transition: bottom 0.25s ease-in-out;
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #hsc-sticky-rooms {
    background: #ffffff;
    padding: 8px 16px;
    height: 96px;
  }
}
#hsc-sticky-rooms .hdp-column-widget,
#hsc-sticky-rooms .hdp-column-infos {
  width: auto;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns {
  justify-content: center;
  gap: 48px;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-text {
  display: none !important;
}
@media only screen and (max-width: 1279px) {
  #hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-widget {
    width: 100%;
  }
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-widget .diadao-qs {
  justify-content: center;
  border: 1px solid #baada4;
  border-radius: 4px;
  flex-wrap: nowrap;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-widget .diadao-qs .diadao-qs__select-custom--adults,
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-widget .diadao-qs .diadao-qs__select-custom--children {
  padding-top: 14px;
  padding-bottom: 14px;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-widget .diadao-qs .diadao-qs__input-range {
  position: relative;
  text-align: center;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-widget .diadao-qs .diadao-qs__input-range::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  background-color: #524e4b;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-infos {
  gap: 48px;
  display: none;
}
@media only screen and (min-width: 1280px) {
  #hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-infos {
    display: flex;
  }
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-infos .hsc-sticky-rooms-conditions {
  min-width: 220px;
  text-transform: uppercase;
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-infos .hsc-sticky-rooms-conditions li {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
}
#hsc-sticky-rooms #diadao-hdp-bar .inner-hdp .hdp-columns .hdp-column-infos .hsc-sticky-rooms-contact {
  text-transform: uppercase;
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
#hsc-sticky-rooms .container-hdp-bar-rooms {
  width: 100%;
}
#hsc-sticky-rooms #diadao-hdp-bar-mobile .label-open {
  display: none !important;
}

.room-item-hsc {
  width: 100%;
}
.room-item-hsc--fallback .room-item-hsc__fallback {
  padding: 8px 16px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result {
  position: relative;
  z-index: 1;
  padding: 16px 16px 24px;
  background: #ffffff;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs {
  display: flex;
  flex-direction: row;
  gap: 0px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  overflow: visible;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs:not(.not-available) {
  background: #a05a3d;
  border-radius: 4px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate {
  display: contents;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .wrapper {
  order: 1;
  flex: 0 0 38%;
  padding: 0px 16px 0px 5px;
  justify-content: flex-end;
  align-items: center;
  background-color: #a05a3d;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .best-rate .hsc-price-value {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .best-rate .hsc-price-value:not(.value) {
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .best-rate .hsc-price-value {
    font-size: 20px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button {
  display: flex;
  flex-direction: row;
  gap: 0px;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  padding: 16px;
  position: absolute;
  bottom: 100%;
  left: -32px;
  right: -32px;
  background-color: #ffffff;
  width: auto;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button.active, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .room-modal__filters .room-menu-item-filter.nav-link.active .qs-sticky-button.btn, .room-modal__filters .room-menu-item-filter.nav-link.active .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button.btn {
  opacity: 0;
  visibility: hidden;
}
.qs-sticky:has(.qs-sticky__form.opened) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button {
    display: none;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button span {
  display: flex;
  flex-direction: row;
  gap: 16px;
  pointer-events: none;
  justify-content: center;
  align-items: center;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button span::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-up.svg");
  mask-image: url("../images/svg/icons/icon-chevron-up.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  background-color: #a99d96;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate .qs-sticky-button .icon {
  display: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__rate--no-availabilities {
  display: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings {
  display: none;
  font-weight: 500;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__remainings .hsc-remainings span {
  padding-inline: 2px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book {
  order: 2;
  flex: 0 0 62%;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book span {
  pointer-events: auto;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link {
  position: relative;
  display: inline-flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  min-height: 41px;
  width: auto;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color 0.25s ease-in-out, border 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out;
  color: #524e4b;
  text-decoration: none;
  padding-inline: 16px;
  cursor: pointer;
  background-color: #a05a3d;
  color: #ffffff;
  padding-left: 8px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  width: 100%;
  padding-inline: 16px;
  justify-content: flex-start;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link {
    gap: 4px;
    padding-inline: 24px;
    min-height: 48px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link:focus-visible {
  outline: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  display: block;
  text-align: center;
  pointer-events: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span strong {
  color: currentColor;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon {
  flex-shrink: 0;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon--close {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-cross.svg");
  mask-image: url("../images/svg/icons/icon-cross.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon--back {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon--chevron-down {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon--chevron-left {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon--menu-burger {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link .icon--pen {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-edit.svg");
  mask-image: url("../images/svg/icons/icon-edit.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link {
    padding-left: 16px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span {
    gap: 16px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span::before {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-calendar-off.svg");
  mask-image: url("../images/svg/icons/icon-calendar-off.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  content: "";
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span::after {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-calendar-on.svg");
  mask-image: url("../images/svg/icons/icon-calendar-on.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  content: "" !important;
  position: absolute !important;
  display: block !important;
  left: 0px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 0;
  visibility: visible !important;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span::before, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span::after {
  transition: opacity 0.4s ease;
  flex: 0 0 24px;
}
html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link:hover span::before, html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link:focus-visible span::before {
  opacity: 0;
}
html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link:hover span::after, html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link:focus-visible span::after {
  opacity: 1 !important;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link {
    min-height: 82px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span {
    font-size: 20px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span::before, .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link span::after {
  height: 32px;
  width: 32px;
  flex: 0 0 32px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 21px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs__book a.dynamic-link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -62%;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--book-price,
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__book--available {
  display: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--no-availabilities {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--no-availabilities .no-availabilities-wrapper {
  flex: 0 0 92px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--no-availabilities .not-available-message {
  padding: 0;
  line-height: 15px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--no-availabilities .hsc-no-availabilities-sticky {
  color: #a05a3d;
  font-size: 12px;
  line-height: 15px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--no-availabilities .hsc-no-availabilities-sticky i {
  display: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .qs-room-price .diadao-qs.not-available .diadao-qs__rate--no-availabilities .wrapper-not-available {
  flex: 1 1 0px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form {
  position: absolute;
  bottom: 100%;
  width: 100%;
  background: #ffffff;
  transition: transform 0.25s ease-in-out;
  z-index: 1;
  transform: translateY(100%);
  padding: 0px 16px;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form.opened {
  transform: translateY(0px);
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close {
    justify-content: flex-end;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button {
  position: relative;
  display: inline-flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  min-height: 41px;
  width: auto;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color 0.25s ease-in-out, border 0.25s ease-in-out, color 0.25s ease-in-out, background 0.25s ease-in-out;
  color: #524e4b;
  text-decoration: none;
  padding-inline: 16px;
  cursor: pointer;
  padding-inline: 0;
  width: 41px;
  background-color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button {
    gap: 4px;
    padding-inline: 24px;
    min-height: 48px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button:focus-visible {
  outline: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button span {
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  display: block;
  text-align: center;
  pointer-events: none;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button span strong {
  color: currentColor;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon {
  flex-shrink: 0;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon--close {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-cross.svg");
  mask-image: url("../images/svg/icons/icon-cross.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon--back {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  mask-image: url("../images/svg/icons/icon-back-arrow.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon--chevron-down {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon--chevron-left {
  display: block;
  width: 14px;
  height: 14px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  mask-image: url("../images/svg/icons/icon-chevron-left.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon--menu-burger {
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  mask-image: url("../images/svg/icons/icon-menu-burger.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon--pen {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-edit.svg");
  mask-image: url("../images/svg/icons/icon-edit.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button {
    width: 48px;
  }
}
html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button:hover, html:not(.touchevents) .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button:focus-visible {
  color: #a05a3d;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  mask-image: url("../images/svg/icons/icon-chevron-down.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  background-color: #a99d96;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close-button .icon {
    width: 24px;
    height: 24px;
  }
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .diadao-qs {
  border: 1px solid #baada4;
  border-radius: 4px;
  flex-wrap: nowrap;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .diadao-qs .diadao-qs__input-range {
  position: relative;
  text-align: center;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .diadao-qs .diadao-qs__input-range::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  mask-image: url("../images/svg/icons/icon-chevron-right.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
  background-color: #524e4b;
}
.room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .diadao-qs .diadao-qs__select-custom--adults {
  justify-content: center;
  width: 40% !important;
}
@media only screen and (min-width: 992px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .diadao-qs .diadao-qs__select-custom--adults {
    width: 100% !important;
  }
}
@media only screen and (max-width: 991px) {
  .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .diadao-qs .diadao-qs__input-range {
    width: 60%;
  }
}

.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form {
  position: relative;
  width: auto;
  bottom: auto;
  transform: none;
  padding: 0;
  flex: 0 0 auto;
  z-index: auto;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__form .qs-sticky__close {
  display: none;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result {
  padding: 0px;
  flex: 0 0 auto;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .diadao-qs.available {
  width: 330px;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .diadao-qs.not-available {
  width: 381px;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .diadao-qs.not-available .diadao-qs__rate--no-availabilities {
  align-items: center;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .diadao-qs.not-available .diadao-qs__rate--no-availabilities .no-availabilities-wrapper {
  flex: 0 0 141px;
}
.device-desktop .room-item-hsc .diadao-hsw-qs-roomstickydetail .diadao-hdp-bar-room .qs-sticky__result .diadao-qs.not-available .diadao-qs__rate--no-availabilities .hsc-no-availabilities-sticky {
  font-size: 16px;
  line-height: 20px;
}

.cards-listing {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: clip;
}
.cards-listing__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) {
  .cards-listing__wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 16px;
  }
  .cards-listing__wrapper h2 {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 991px) {
  .cards-listing--rooms .section__grid {
    order: 0;
  }
}
@media only screen and (max-width: 991px) {
  .cards-listing--rooms #hsc-sticky-rooms {
    order: 1;
  }
}
@media only screen and (min-width: 992px) {
  .cards-listing--areas .cards-listing__wrapper {
    grid-template-columns: repeat(3, minmax(0px, 1fr));
  }
  .cards-listing--areas .cards-listing__wrapper h2 {
    grid-column: span 3;
  }
}

.card {
  position: relative;
  height: 480px;
  color: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
@media only screen and (max-width: 639px) {
  .card--offer {
    max-width: 296px;
  }
}
@media only screen and (min-width: 992px) {
  .card {
    height: 570px;
    width: 400px;
  }
}
.card__infos {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  height: 100%;
  align-items: flex-start;
  padding: 16px 16px 32px;
}
.card__infos__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
}
.card__infos__header__category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Sofia Sans Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.card__infos__header__category:before {
  content: "";
}
.card__infos__header__category--sejour:before {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-bed-white.svg");
  mask-image: url("../images/svg/icons/icon-bed-white.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.card__infos__header__category--gastronomie:before {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-tag-restaurant.svg");
  mask-image: url("../images/svg/icons/icon-tag-restaurant.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.card__infos__header__category--spa:before {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-tag-spa.svg");
  mask-image: url("../images/svg/icons/icon-tag-spa.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.card__infos__header__category--evasion:before {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: contain;
  -webkit-mask-image: url("../images/svg/icons/icon-tag-footsteps.svg");
  mask-image: url("../images/svg/icons/icon-tag-footsteps.svg");
  background-color: currentColor;
  pointer-events: none;
  transition: background-color 0.25s ease-in-out;
}
.card__infos__header__category--actualites, .card__infos__header__category--noicon:before {
  display: none;
}
.card__infos__header__infos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding: 0 16px;
}
.card__infos__header__duration {
  font-weight: 500;
}
.card__infos__header .arrow-link {
  color: inherit;
}
.card__infos__intro {
  font-size: 20px;
  font-weight: 400;
  line-height: 0.8;
  padding: 0 16px;
}
.card__media {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
  z-index: 0;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 50.48%, rgba(0, 0, 0, 0.6) 100%);
}
.card__absolute-link {
  position: absolute;
  inset: 0;
}
html:not(.touchevents) .card:not(.nohover):hover .card__media, html:not(.touchevents) .card:not(.nohover):focus-visible .card__media {
  transform: scale(1.05);
}

.card-area {
  background-color: #fff3f2;
  border-radius: 2px;
  overflow: hidden;
}
.card-area__media {
  position: relative;
}
.card-area__media img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.card-area__infos {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 16px;
}
@media only screen and (min-width: 992px) {
  .card-area__infos {
    padding: 32px;
  }
}
.card-area__features {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.card-area__feature {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid #f0d8d4;
  border-radius: 2px;
  width: calc((100% - 8px * (1 - 1)) / 1);
}
@media only screen and (min-width: 992px) {
  .card-area__feature {
    gap: 24px;
    width: calc((100% - 8px * (2 - 1)) / 2);
  }
}
.card-area__feature__picto {
  width: 24px;
  aspect-ratio: 1;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  .card-area__feature__picto {
    width: 48px;
  }
}
.card-area__feature__picto img,
.card-area__feature__picto svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-area__feature__picto img path,
.card-area__feature__picto svg path {
  fill: #a05a3d;
}
.card-area__feature__text strong {
  font-weight: 500;
}

.offres-sejours .swiper-slide {
  pointer-events: inherit !important;
}
@media only screen and (max-width: 991px) {
  .offres-sejours .swiper-slide {
    width: 280px;
  }
}

.card--sejour {
  background: url("../images/bg-offers.webp");
  background-size: cover;
  min-width: 280px;
  max-width: 300px;
}
.card--sejour:after {
  content: none;
}
@media only screen and (min-width: 992px) {
  .card--sejour {
    min-width: 540px;
  }
}
.card--sejour .card__infos {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 280px;
  padding: 32px;
}
@media only screen and (min-width: 992px) {
  .card--sejour .card__infos {
    padding: 80px 64px;
    max-width: unset;
  }
}
.card--sejour .card__infos__header {
  justify-content: flex-end;
}
.card--sejour .card__infos__header__title {
  position: relative;
  font-family: "Sofia Sans Extra Condensed", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .card--sejour .card__infos__header__title {
    font-size: 56px;
  }
}
.card--sejour .card__infos__header__button {
  position: relative;
}

.text-medias-simple .section__content {
  grid-column-start: 2;
  grid-column-end: span 12;
}
@media only screen and (min-width: 992px) {
  .text-medias-simple .section__content {
    grid-column-start: 2;
    grid-column-end: span 4;
    grid-row-start: 1;
    grid-row-end: span 1;
  }
}
@media only screen and (min-width: 992px) {
  .text-medias-simple .section__content.content-right {
    grid-column-start: 7;
    grid-column-end: span 5;
  }
}
.text-medias-simple .section__media {
  grid-column-start: 2;
  grid-column-end: span 12;
}
@media only screen and (min-width: 992px) {
  .text-medias-simple .section__media {
    grid-column-start: 7;
    grid-column-end: span 5;
    grid-row-start: 1;
    grid-row-end: span 1;
  }
}
@media only screen and (min-width: 992px) {
  .text-medias-simple .section__media.content-right {
    grid-column-start: 2;
    grid-column-end: span 4;
  }
}
.text-medias-simple .section__media .video-wrapper {
  height: 100%;
  width: 100%;
}
.text-medias-simple .section__media hls-video {
  display: block;
  width: 100%;
}

.kwpb-wysiwig h1,
.kwpb-wysiwig h2,
.kwpb-wysiwig h3,
.kwpb-wysiwig h4,
.kwpb-wysiwig h5,
.kwpb-wysiwig h6 {
  margin-bottom: 0.5em;
}
.kwpb-wysiwig h1:not(:first-child),
.kwpb-wysiwig h2:not(:first-child),
.kwpb-wysiwig h3:not(:first-child),
.kwpb-wysiwig h4:not(:first-child),
.kwpb-wysiwig h5:not(:first-child),
.kwpb-wysiwig h6:not(:first-child) {
  margin-top: 1.25em;
}
.kwpb-wysiwig ol {
  counter-reset: wysiwig-counter;
}
.kwpb-wysiwig ol li {
  position: relative;
  padding-left: 1.6em;
  counter-increment: wysiwig-counter;
}
@media only screen and (min-width: 992px) {
  .kwpb-wysiwig ol li {
    padding-left: 36px;
  }
}
.kwpb-wysiwig ol li::before {
  content: counter(wysiwig-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #a05a3d;
  font-weight: 500;
}

/*# sourceMappingURL=diadao-sdkcustom-robert-hotels-full.css.map */
