/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/styles.scss ***!
  \***********************************************************************************************************************************************************/
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: 600;
}

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

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  font: inherit;
  color: inherit;
  line-height: 1;
  cursor: pointer;
}

fieldset {
  border: none;
}

input {
  background-color: transparent;
}

.lucide {
  display: block;
  flex-shrink: 0;
  vertical-align: middle;
}

@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  src: url(570a43d0601bf1073bc2.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: normal;
  font-weight: 600;
  src: url(6b2d141899fd5788942e.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: italic;
  font-weight: 400;
  src: url(70e2fe713ad05587579f.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: normal;
  font-weight: 200;
  src: url(ad460ba7dce0de3be7a3.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: italic;
  font-weight: 200;
  src: url(6aa58bc890788e73d657.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: italic;
  font-weight: 300;
  src: url(a0a823c9ec214ae82955.woff2) format("woff2");
}
:root {
  --transition-speed: 0.3s;
}

:root {
  --color-main: #a4814a;
  --color-main-dark: #8b6634;
  --color-surface: #f0ede8;
  --color-map-fill: #cbc5b5;
  --form-field-border: var(--color-main);
  --form-field-color: var(--color-main);
}

.text-main {
  color: var(--color-main);
}

.text-main-dark {
  color: var(--color-main-dark);
}

.text-surface {
  color: var(--color-surface);
}

.text-map-fill {
  color: var(--color-map-fill);
}

.text-white {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.headline-2 {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
}
@media screen and (min-width: 769px) {
  .headline-2 {
    font-size: 2.3rem;
  }
}
.headline-2 {
  line-height: 1.3;
}

.headline-3, .booking-page__content .mphb-checkout-section h3,
.booking-page__content .mphb-checkout-section h4,
.booking-page__content .mphb-reserve-rooms-details h3,
.booking-page__content .mphb-reserve-rooms-details h4, .text-page__content h2,
.text-page__content h3 {
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .headline-3, .booking-page__content .mphb-checkout-section h3,
  .booking-page__content .mphb-checkout-section h4,
  .booking-page__content .mphb-reserve-rooms-details h3,
  .booking-page__content .mphb-reserve-rooms-details h4, .text-page__content h2,
  .text-page__content h3 {
    font-size: 1.875rem;
  }
}

.headline-4, .form__group-headline {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
}

.list {
  list-style: disc;
  margin-left: 1em;
}

.bodytext, .booking-page--booking .booking-page__content {
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
}
@media screen and (min-width: 981px) {
  .bodytext, .booking-page--booking .booking-page__content {
    font-size: 1.3rem;
  }
}
.bodytext p:not(:last-child), .booking-page--booking .booking-page__content p:not(:last-child) {
  margin-bottom: 1em;
}
.bodytext a, .booking-page--booking .booking-page__content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.bodytext a:hover, .booking-page--booking .booking-page__content a:hover {
  color: var(--color-main-dark);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  height: 100%;
  /* Horizontal overflow: use `clip` not `hidden` — root `overflow-x: hidden` breaks `position: sticky` (e.g. property booking). Collage still clips. */
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: "Spectral", "Georgia", serif;
  -webkit-font-smoothing: antialiased;
  background-color: #f6f6f6;
  color: var(--color-main);
  overflow-x: clip;
}

strong {
  font-weight: 600;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

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

:focus-visible {
  outline: 1px solid var(--color-main);
  outline-offset: 1px;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 769px) {
  .container {
    padding: 0 48px;
  }
}

.container--md {
  max-width: 1000px;
}

.container--lg {
  max-width: 1400px;
}

.container--xl {
  max-width: 1600px;
}

.container--full {
  max-width: 100%;
}

.page-edge {
  width: 100%;
  padding-left: 13px;
  padding-right: 13px;
}
@media screen and (min-width: 769px) {
  .page-edge {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.button, .property__booking input.mphb-reserve-btn.button,
.property__booking input.button.mphb-confirm-reservation, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit], .booking-page__content .mphb_sc_checkout-submit-wrapper input {
  display: inline-block;
  text-transform: uppercase;
  padding: 6px 11px 5px 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font: inherit;
  font-style: normal;
  text-decoration: none;
  line-height: normal;
  text-align: center;
  transition: all var(--transition-speed);
}

button.button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.button--lg, .booking-page__content .mphb_sc_checkout-submit-wrapper input {
  padding: 10px 15px 10px 15px;
}
@media screen and (min-width: 769px) {
  .button--lg, .booking-page__content .mphb_sc_checkout-submit-wrapper input {
    padding: 15px 30px 14px 30px;
  }
}

.button--md {
  padding: 12px 22px 11px 22px;
}

.button--primary, .booking-page__content .mphb_sc_checkout-submit-wrapper input {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.button--primary:hover, .booking-page__content .mphb_sc_checkout-submit-wrapper input:hover {
  background-color: var(--color-main-dark);
  border-color: var(--color-main-dark);
}

.button--white, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit] {
  background-color: #fff;
  color: var(--color-main);
  border-color: #fff;
}
.button--white:hover, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit]:hover {
  filter: brightness(0.96);
}

.button--outline, .property__booking input.mphb-reserve-btn.button,
.property__booking input.button.mphb-confirm-reservation, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit] {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button--outline:hover, .property__booking input.mphb-reserve-btn.button:hover,
.property__booking input.button.mphb-confirm-reservation:hover, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit]:hover {
  background-color: #fff;
  color: var(--color-main);
  filter: none;
}

.button--outline.button--primary, .property__booking input.button--primary.mphb-reserve-btn.button,
.property__booking input.button--primary.button.mphb-confirm-reservation, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input.button--primary[type=submit], .booking-page__content .mphb_sc_checkout-submit-wrapper input.button--outline, .property__booking .booking-page__content .mphb_sc_checkout-submit-wrapper input.mphb-reserve-btn.button, .booking-page__content .mphb_sc_checkout-submit-wrapper .property__booking input.mphb-reserve-btn.button,
.property__booking .booking-page__content .mphb_sc_checkout-submit-wrapper input.button.mphb-confirm-reservation,
.booking-page__content .mphb_sc_checkout-submit-wrapper .property__booking input.button.mphb-confirm-reservation, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper .booking-page__content .mphb_sc_checkout-submit-wrapper input[type=submit], .booking-page__content .mphb_sc_checkout-submit-wrapper .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit] {
  border-color: var(--color-main);
  color: var(--color-main);
}
.button--outline.button--primary:hover, .property__booking input.button--primary.mphb-reserve-btn.button:hover,
.property__booking input.button--primary.button.mphb-confirm-reservation:hover, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input.button--primary[type=submit]:hover, .booking-page__content .mphb_sc_checkout-submit-wrapper input.button--outline:hover, .property__booking .booking-page__content .mphb_sc_checkout-submit-wrapper input.mphb-reserve-btn.button:hover, .booking-page__content .mphb_sc_checkout-submit-wrapper .property__booking input.mphb-reserve-btn.button:hover,
.property__booking .booking-page__content .mphb_sc_checkout-submit-wrapper input.button.mphb-confirm-reservation:hover,
.booking-page__content .mphb_sc_checkout-submit-wrapper .property__booking input.button.mphb-confirm-reservation:hover, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper .booking-page__content .mphb_sc_checkout-submit-wrapper input[type=submit]:hover, .booking-page__content .mphb_sc_checkout-submit-wrapper .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit]:hover {
  background-color: var(--color-main);
  color: #fff;
  filter: none;
}

.button--outline.button--white, .property__booking input.button--white.mphb-reserve-btn.button,
.property__booking input.button--white.button.mphb-confirm-reservation, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit] {
  border-color: #fff;
  color: #fff;
}
.button--outline.button--white:hover, .property__booking input.button--white.mphb-reserve-btn.button:hover,
.property__booking input.button--white.button.mphb-confirm-reservation:hover, .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit]:hover {
  background-color: #fff;
  color: var(--color-main);
  filter: none;
}

.form__group-headline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 0.65em;
  width: 100%;
}
.form__group-headline:after {
  content: "";
  flex: 1 1 auto;
  min-width: 0;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
}

.form__group-headline--mt-lg {
  margin-top: 1em;
}

@media screen and (max-width: 580px) {
  .form__row {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 581px) {
  .form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
  }
  .form__row .form__field, .form__row .property__booking .mphb-check-in-date-wrapper, .property__booking .form__row .mphb-check-in-date-wrapper,
  .form__row .property__booking .mphb-check-out-date-wrapper,
  .property__booking .form__row .mphb-check-out-date-wrapper,
  .form__row .property__booking .mphb-capacity-wrapper,
  .property__booking .form__row .mphb-capacity-wrapper {
    margin-bottom: 0 !important;
  }
}

.form__field, .property__booking .mphb-check-in-date-wrapper,
.property__booking .mphb-check-out-date-wrapper,
.property__booking .mphb-capacity-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__field:not(:last-child), .property__booking .mphb-check-in-date-wrapper:not(:last-child),
.property__booking .mphb-check-out-date-wrapper:not(:last-child),
.property__booking .mphb-capacity-wrapper:not(:last-child) {
  margin-bottom: 16px;
}

.form__input, .property__booking .mphb-datepick, .property__booking .mphb-capacity-wrapper select, .filter-bar .mphb_sc_search-form input:not([type=submit]),
.filter-bar .mphb_sc_search-form select, .booking-page__content .mphb-checkout-section input,
.booking-page__content .mphb-checkout-section select,
.booking-page__content .mphb-checkout-section textarea,
.booking-page__content .mphb-reserve-rooms-details input,
.booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details textarea,
.form__select,
.filter-bar .mphb_sc_search-form select,
.form__textarea {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--form-field-color);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  min-height: 40px;
  padding: 8px 12px;
  background-color: var(--form-field-background, transparent);
  border: 1px solid var(--form-field-border);
}
.form__input::-moz-placeholder, .property__booking .mphb-datepick::-moz-placeholder, .property__booking .mphb-capacity-wrapper select::-moz-placeholder, .filter-bar .mphb_sc_search-form input:not([type=submit])::-moz-placeholder, .filter-bar .mphb_sc_search-form select::-moz-placeholder, .booking-page__content .mphb-checkout-section input::-moz-placeholder, .booking-page__content .mphb-checkout-section select::-moz-placeholder, .booking-page__content .mphb-checkout-section textarea::-moz-placeholder, .booking-page__content .mphb-reserve-rooms-details input::-moz-placeholder, .booking-page__content .mphb-reserve-rooms-details select::-moz-placeholder, .booking-page__content .mphb-reserve-rooms-details textarea::-moz-placeholder, .form__select::-moz-placeholder, .filter-bar .mphb_sc_search-form select::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: var(--form-field-color);
  opacity: 0.7;
}
.form__input::placeholder, .property__booking .mphb-datepick::placeholder, .property__booking .mphb-capacity-wrapper select::placeholder, .filter-bar .mphb_sc_search-form input:not([type=submit])::placeholder,
.filter-bar .mphb_sc_search-form select::placeholder, .booking-page__content .mphb-checkout-section input::placeholder,
.booking-page__content .mphb-checkout-section select::placeholder,
.booking-page__content .mphb-checkout-section textarea::placeholder,
.booking-page__content .mphb-reserve-rooms-details input::placeholder,
.booking-page__content .mphb-reserve-rooms-details select::placeholder,
.booking-page__content .mphb-reserve-rooms-details textarea::placeholder,
.form__select::placeholder,
.filter-bar .mphb_sc_search-form select::placeholder,
.form__textarea::placeholder {
  color: var(--form-field-color);
  opacity: 0.7;
}

.form.form--fields-solid,
.wpcf7-form.form--fields-solid {
  --form-field-color: var(--color-main);
  --form-field-border: transparent;
  --form-field-background: #fff;
}
.form.form--fields-solid .form__input, .form.form--fields-solid .property__booking .mphb-datepick, .property__booking .form.form--fields-solid .mphb-datepick, .form.form--fields-solid .property__booking .mphb-capacity-wrapper select, .property__booking .mphb-capacity-wrapper .form.form--fields-solid select, .form.form--fields-solid .filter-bar .mphb_sc_search-form input:not([type=submit]), .filter-bar .mphb_sc_search-form .form.form--fields-solid input:not([type=submit]),
.form.form--fields-solid .filter-bar .mphb_sc_search-form select,
.filter-bar .mphb_sc_search-form .form.form--fields-solid select, .form.form--fields-solid .booking-page__content .mphb-checkout-section input, .booking-page__content .mphb-checkout-section .form.form--fields-solid input,
.form.form--fields-solid .booking-page__content .mphb-checkout-section select,
.booking-page__content .mphb-checkout-section .form.form--fields-solid select,
.form.form--fields-solid .booking-page__content .mphb-checkout-section textarea,
.booking-page__content .mphb-checkout-section .form.form--fields-solid textarea,
.form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details input,
.booking-page__content .mphb-reserve-rooms-details .form.form--fields-solid input,
.form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .form.form--fields-solid select,
.form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details textarea,
.booking-page__content .mphb-reserve-rooms-details .form.form--fields-solid textarea,
.form.form--fields-solid .form__select,
.form.form--fields-solid .form__textarea,
.wpcf7-form.form--fields-solid .form__input,
.wpcf7-form.form--fields-solid .property__booking .mphb-datepick,
.property__booking .wpcf7-form.form--fields-solid .mphb-datepick,
.wpcf7-form.form--fields-solid .property__booking .mphb-capacity-wrapper select,
.property__booking .mphb-capacity-wrapper .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .filter-bar .mphb_sc_search-form input:not([type=submit]),
.filter-bar .mphb_sc_search-form .wpcf7-form.form--fields-solid input:not([type=submit]),
.wpcf7-form.form--fields-solid .filter-bar .mphb_sc_search-form select,
.filter-bar .mphb_sc_search-form .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-checkout-section input,
.booking-page__content .mphb-checkout-section .wpcf7-form.form--fields-solid input,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-checkout-section select,
.booking-page__content .mphb-checkout-section .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-checkout-section textarea,
.booking-page__content .mphb-checkout-section .wpcf7-form.form--fields-solid textarea,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details input,
.booking-page__content .mphb-reserve-rooms-details .wpcf7-form.form--fields-solid input,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details textarea,
.booking-page__content .mphb-reserve-rooms-details .wpcf7-form.form--fields-solid textarea,
.wpcf7-form.form--fields-solid .form__select,
.wpcf7-form.form--fields-solid .form__textarea {
  border-width: 0;
  background-color: var(--form-field-background);
}
.form.form--fields-solid .form__select, .form.form--fields-solid .property__booking .mphb-capacity-wrapper select, .property__booking .mphb-capacity-wrapper .form.form--fields-solid select, .form.form--fields-solid .filter-bar .mphb_sc_search-form select, .filter-bar .mphb_sc_search-form .form.form--fields-solid select, .form.form--fields-solid .booking-page__content .mphb-checkout-section select, .booking-page__content .mphb-checkout-section .form.form--fields-solid select,
.form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .form.form--fields-solid select,
.wpcf7-form.form--fields-solid .form__select,
.wpcf7-form.form--fields-solid .property__booking .mphb-capacity-wrapper select,
.property__booking .mphb-capacity-wrapper .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .filter-bar .mphb_sc_search-form select,
.filter-bar .mphb_sc_search-form .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-checkout-section select,
.booking-page__content .mphb-checkout-section .wpcf7-form.form--fields-solid select,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .wpcf7-form.form--fields-solid select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27%23a4814a%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M6 9l6 6 6-6%27/%3E%3C/svg%3E");
}
.form.form--fields-solid .form__checkbox, .form.form--fields-solid .booking-page__content .mphb-terms-and-conditions-accept input, .booking-page__content .mphb-terms-and-conditions-accept .form.form--fields-solid input,
.wpcf7-form.form--fields-solid .form__checkbox,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-terms-and-conditions-accept input,
.booking-page__content .mphb-terms-and-conditions-accept .wpcf7-form.form--fields-solid input {
  border-width: 0;
  background-color: var(--form-field-background);
}
.form.form--fields-solid .form__checkbox:checked, .form.form--fields-solid .booking-page__content .mphb-terms-and-conditions-accept input:checked, .booking-page__content .mphb-terms-and-conditions-accept .form.form--fields-solid input:checked,
.wpcf7-form.form--fields-solid .form__checkbox:checked,
.wpcf7-form.form--fields-solid .booking-page__content .mphb-terms-and-conditions-accept input:checked,
.booking-page__content .mphb-terms-and-conditions-accept .wpcf7-form.form--fields-solid input:checked {
  background: var(--form-field-background) url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23a4814a%27 stroke-width=%272.25%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M20 6 9 17l-5-5%27/%3E%3C/svg%3E") center/14px no-repeat;
}

.form__textarea, .booking-page__content .mphb-checkout-section textarea,
.booking-page__content .mphb-reserve-rooms-details textarea {
  padding-top: 12px;
  padding-bottom: 12px;
  resize: none;
  max-height: 200px;
}

.form__checkbox, .booking-page__content .mphb-terms-and-conditions-accept input {
  display: flex;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--form-field-border);
  width: 20px !important;
  height: 20px;
  flex-shrink: 0;
  padding: 0;
  min-height: 0;
}
.form__checkbox:checked, .booking-page__content .mphb-terms-and-conditions-accept input:checked {
  background: var(--color-main) url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23fff%27 stroke-width=%272.25%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M20 6 9 17l-5-5%27/%3E%3C/svg%3E") center/14px no-repeat;
}

.form__select-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.form__select-wrap .form__select, .form__select-wrap .property__booking .mphb-capacity-wrapper select, .property__booking .mphb-capacity-wrapper .form__select-wrap select, .form__select-wrap .filter-bar .mphb_sc_search-form select, .filter-bar .mphb_sc_search-form .form__select-wrap select, .form__select-wrap .booking-page__content .mphb-checkout-section select, .booking-page__content .mphb-checkout-section .form__select-wrap select,
.form__select-wrap .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .form__select-wrap select {
  background-image: none;
}

.form__select-wrap .form__select-chevron {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(1rem + 1px);
  height: calc(1rem + 1px);
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--form-field-color);
}

.form__select-wrap .form__select-chevron .lucide {
  width: 100%;
  height: 100%;
}

.form__select, .property__booking .mphb-capacity-wrapper select, .filter-bar .mphb_sc_search-form select, .booking-page__content .mphb-checkout-section select,
.booking-page__content .mphb-reserve-rooms-details select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27%23a4814a%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M6 9l6 6 6-6%27/%3E%3C/svg%3E");
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 1rem 1rem;
  padding-inline-end: 2rem;
}

.form-section .form__select, .form-section .property__booking .mphb-capacity-wrapper select, .property__booking .mphb-capacity-wrapper .form-section select, .form-section .filter-bar .mphb_sc_search-form select, .filter-bar .mphb_sc_search-form .form-section select, .form-section .booking-page__content .mphb-checkout-section select, .booking-page__content .mphb-checkout-section .form-section select,
.form-section .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .form-section select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M6 9l6 6 6-6%27/%3E%3C/svg%3E");
}

.property__booking-panel .form__select, .property__booking-panel .filter-bar .mphb_sc_search-form select, .filter-bar .mphb_sc_search-form .property__booking-panel select, .property__booking-panel .booking-page__content .mphb-checkout-section select, .booking-page__content .mphb-checkout-section .property__booking-panel select,
.property__booking-panel .booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details .property__booking-panel select,
.property__booking .mphb-capacity-wrapper select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M6 9l6 6 6-6%27/%3E%3C/svg%3E");
}

.form__help {
  font-style: italic;
  opacity: 0.8;
  margin-top: 0.2em;
  line-height: 1.3;
}

.form__actions {
  margin-top: 24px;
}
.form__actions .button, .form__actions .property__booking input.mphb-reserve-btn.button, .property__booking .form__actions input.mphb-reserve-btn.button,
.form__actions .property__booking input.button.mphb-confirm-reservation,
.property__booking .form__actions input.button.mphb-confirm-reservation, .form__actions .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit], .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper .form__actions input[type=submit], .form__actions .booking-page__content .mphb_sc_checkout-submit-wrapper input, .booking-page__content .mphb_sc_checkout-submit-wrapper .form__actions input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}

.form__actions--mt-lg {
  margin-top: 40px;
}

.wpcf7-acceptance {
  display: block;
  margin-top: 8px;
}

.wpcf7 .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  gap: 8px;
}
.wpcf7 .wpcf7-list-item label a {
  text-decoration-line: underline;
}
.wpcf7 .wpcf7-list-item label a:hover {
  text-decoration: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 32px 0 0 0;
  padding: 8px 16px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #46b450;
}

.wpcf7-not-valid-tip {
  margin-top: 0.2em;
  font-style: 0.95rem;
  color: #681111;
  font-style: italic;
}

.lang-switcher {
  position: fixed;
  z-index: 100;
  transition: all var(--transition-speed) ease;
}
.lang-switcher * {
  transition: all var(--transition-speed) ease;
}
@media screen and (max-width: 768px) {
  .lang-switcher {
    right: 24px;
    bottom: 24px;
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  .lang-switcher {
    position: absolute;
    bottom: auto;
    top: -50px;
    right: -10px;
  }
}
@media (min-width: 768px) {
  .lang-switcher {
    top: 10px;
    right: 150px;
  }
}

@media screen and (max-width: 768px) {
  .page-header--open .lang-switcher {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 769px) {
  .page-header--open .lang-switcher {
    opacity: 1;
  }
  .page-header--open .lang-switcher * {
    color: var(--color-main);
  }
}

body.scrolled .page-header:not(.page-header--open) .lang-switcher {
  opacity: 0;
  pointer-events: none;
}

.lang-switcher__link {
  opacity: 0.75;
  color: inherit;
}
.lang-switcher__link:hover {
  opacity: 1;
}

.lang-switcher__current {
  opacity: 1;
  font-weight: 400;
}

.lang-switcher__sep {
  opacity: 0.6;
  margin: 0 0.15em;
  font-weight: 200;
}

:root {
  --page-header-height: 88px;
}
@media screen and (min-width: 769px) {
  :root {
    --page-header-height: 120px;
  }
}

.page-header {
  position: fixed;
  z-index: 100;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: none;
}

.page-header--open {
  pointer-events: auto;
}
@media screen and (max-width: 980px) {
  .page-header--open {
    height: 100%;
  }
}

.page-header__main,
.page-header__main .page-header__container,
.page-header__content {
  pointer-events: none;
}

.page-header__toggle,
.page-header__button,
.lang-switcher {
  pointer-events: auto;
}

.page-header__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--page-header-height);
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
  color: #fff;
}

.header-scheme-main .page-header__main {
  color: var(--color-main);
}

.page-header--open .page-header__main {
  background-color: #fff;
}

body.scrolled-past-top .page-header {
  background-color: transparent;
}

.page-header__content {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.page-header__toggle {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page-header__toggle-line {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1.5px;
  margin-left: -12px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease, color var(--transition-speed) ease;
}
.page-header__toggle-line--1 {
  top: 14px;
}
.page-header__toggle-line--2 {
  top: 21px;
}
.page-header__toggle-line--3 {
  top: 28px;
}

body.scrolled-past-top .page-header__toggle-line {
  color: var(--color-main);
}

.page-header--open .page-header__toggle-line {
  background-color: var(--color-main);
}
.page-header--open .page-header__toggle-line--1 {
  top: 21px;
  transform: rotate(45deg);
}
.page-header--open .page-header__toggle-line--2 {
  opacity: 0;
}
.page-header--open .page-header__toggle-line--3 {
  top: 21px;
  transform: rotate(-45deg);
}

.page-header__brand {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(-50% - 12px));
  transition: opacity 0s, transform 0s, visibility 0s;
}

.page-header--open .page-header__brand {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: opacity 0s, transform 0s, visibility 0s linear 0s;
}

body.scrolled .page-header__brand {
  transition: opacity var(--transition-speed) cubic-bezier(0.22, 1, 0.36, 1), transform var(--transition-speed) cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear var(--transition-speed);
}

body.scrolled .page-header--open .page-header__brand {
  transition: opacity var(--transition-speed) cubic-bezier(0.22, 1, 0.36, 1), transform var(--transition-speed) cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.page-header__brand-logo {
  display: block;
  width: 100px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .page-header__brand-logo {
    width: 130px;
  }
}

.page-header__button {
  flex: 0 0 auto;
}
.page-header__button:hover {
  background-color: var(--color-main-dark) !important;
  color: #fff;
}

body.is-property-page .page-header__button {
  transition: opacity var(--transition-speed) ease;
}

body.is-property-page.scrolled .page-header:not(.page-header--open) .page-header__button {
  opacity: 0;
  pointer-events: none;
}

body.is-property-page .page-header--open .page-header__button {
  opacity: 1;
  pointer-events: auto;
}

body:not(.is-property-page).scrolled-past-top .page-header__button {
  background-color: var(--color-main);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .page-header--open .page-header__button {
    color: var(--color-main) !important;
    background-color: transparent !important;
  }
}
@media screen and (min-width: 769px) {
  .page-header--open .page-header__button {
    background-color: var(--color-main);
    color: #fff;
  }
}

.page-header__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--color-main);
  color: #fff;
  transition: all var(--transition-speed);
}
@media screen and (max-width: 980px) {
  .page-header__nav {
    flex-grow: 1;
  }
}
@media screen and (min-width: 981px) {
  .page-header__nav {
    height: 56px;
  }
}

.page-header:not(.page-header--open) .page-header__nav * {
  pointer-events: none;
}

.page-header--open .page-header__nav {
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--transition-speed) ease, visibility 0s linear 0s;
}

.page-header__nav-inner {
  position: relative;
}

.page-header__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 1.25rem;
  font-weight: 200;
}
@media screen and (max-width: 980px) {
  .page-header__menu {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 981px) {
  .page-header__menu {
    flex-direction: row;
  }
}
.page-header__menu > li {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-speed);
}
@media screen and (max-width: 980px) {
  .page-header__menu > li:not(:last-child) {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 981px) {
  .page-header__menu > li:not(:first-child):before {
    content: "";
    flex-shrink: 0;
    align-self: center;
    width: 1px;
    height: 0.8em;
    margin-inline: 1.5rem;
    background-color: currentColor;
    opacity: 0.5;
  }
}
@media screen and (max-width: 980px) {
  .page-header__menu > li a {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 981px) {
  .page-header__menu a:hover,
  .page-header__menu .current-menu-item a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
.page-header__menu .current-menu-item a {
  font-weight: 400;
}

.page-header:not(.page-header--open) .page-header__menu > li {
  transition-delay: 0s;
}

.page-header--open .page-header__menu > li {
  opacity: 1;
  transform: translateX(0);
}

.page-header--open .page-header__menu > li:nth-child(1) {
  transition-delay: 0s;
}

.page-header--open .page-header__menu > li:nth-child(2) {
  transition-delay: 0.045s;
}

.page-header--open .page-header__menu > li:nth-child(3) {
  transition-delay: 0.09s;
}

.page-header--open .page-header__menu > li:nth-child(4) {
  transition-delay: 0.135s;
}

.page-header--open .page-header__menu > li:nth-child(5) {
  transition-delay: 0.18s;
}

.page-header--open .page-header__menu > li:nth-child(6) {
  transition-delay: 0.225s;
}

.page-header--open .page-header__menu > li:nth-child(7) {
  transition-delay: 0.27s;
}

.page-header--open .page-header__menu > li:nth-child(8) {
  transition-delay: 0.315s;
}

.page-header--open .page-header__menu > li:nth-child(9) {
  transition-delay: 0.36s;
}

.page-header--open .page-header__menu > li:nth-child(10) {
  transition-delay: 0.405s;
}

.page-header--open .page-header__menu > li:nth-child(11) {
  transition-delay: 0.45s;
}

.page-header--open .page-header__menu > li:nth-child(12) {
  transition-delay: 0.495s;
}

.site-brand {
  position: absolute;
  top: calc(var(--page-header-height, 88px) / 2);
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: block;
  color: #fff;
}

.header-scheme-main .site-brand {
  color: var(--color-main);
}

.site-brand__image {
  display: block;
  width: 100px;
  height: auto;
}
@media screen and (min-width: 769px) {
  .site-brand__image {
    width: 130px;
  }
}

.hero {
  position: relative;
  display: flex;
  height: 60vh;
  min-height: 500px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero--full {
  min-height: 100vh;
  min-height: 100dvh;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero__video,
.hero__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin-top: 64px;
  padding: 0 50px;
}

.hero__headline {
  font-size: clamp(2.2rem, 6.5vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .hero__headline {
    line-height: 1.4;
  }
  .hero__headline br {
    display: none;
  }
}

.hero__subtitle {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 1em;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 300;
}
@media screen and (min-width: 769px) {
  .hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.hero__button {
  margin-top: 32px;
  letter-spacing: 1.5px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 0.35s ease;
}
@media screen and (min-width: 769px) {
  .hero__scroll-hint {
    bottom: 36px;
    font-size: 0.8125rem;
  }
}
.hero__scroll-hint:hover, .hero__scroll-hint:focus-visible {
  opacity: 0.85;
}
.hero__scroll-hint:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.hero__scroll-hint-label {
  display: block;
  line-height: 1.2;
}

.hero__scroll-hint-icon {
  display: block;
  width: 24px;
  height: auto;
  flex-shrink: 0;
  animation: hero-scroll-hint-bob 1.6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint-icon {
    animation: none;
  }
}

@keyframes hero-scroll-hint-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.hero__media-toggle {
  position: absolute;
  right: 8px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.hero__media-toggle-icon {
  position: absolute;
  width: 20px;
  height: 20px;
}

.hero__media-toggle-icon--play {
  opacity: 0;
}

.hero__media-toggle.is-paused .hero__media-toggle-icon--pause {
  opacity: 0;
}
.hero__media-toggle.is-paused .hero__media-toggle-icon--play {
  opacity: 1;
}

.masthead {
  position: relative;
  overflow: hidden;
}
.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0) 52%);
}

.masthead__image-wrapper {
  position: relative;
  z-index: 0;
  height: 60vh;
}

.masthead__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-section {
  scroll-margin-top: 32px;
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .page-section {
    margin-bottom: 200px;
  }
}
.page-section--after-half {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .page-section--after-half {
    margin-bottom: 100px;
  }
}
.page-section--after-none {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .page-section--after-none {
    margin-bottom: 0;
  }
}

.page-section__headline {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
}
@media screen and (min-width: 769px) {
  .page-section__headline {
    font-size: 2.3rem;
  }
}
.page-section__headline::after {
  content: "";
  display: block;
  margin: 16px auto 0;
  width: var(--headline-rule-width, var(--headline-rule-resting-width, 48px));
  height: 1.5px;
  opacity: var(--headline-rule-opacity, 1);
  background: var(--color-main);
  border-radius: 2px;
}
.page-section__headline {
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-main);
  position: relative;
  --headline-rule-resting-width: 40px;
}
@media screen and (max-width: 768px) {
  .page-section__headline {
    font-size: 1.8rem;
    --headline-rule-resting-width: 24px;
  }
}
@media screen and (min-width: 769px) {
  .page-section__headline {
    margin-bottom: 60px;
  }
}
.page-section__headline-text {
  display: inline-block;
}

.collage {
  --collage-tile-height: clamp(233px, 22.7vw, 351px);
  --collage-tile-width: calc(var(--collage-tile-height) * 0.72);
  margin-top: 56px;
  overflow-x: clip;
}
@media screen and (min-width: 769px) {
  .collage {
    margin-top: 100px;
  }
}
.collage .container {
  min-width: 0;
}

.collage__brand {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .collage__brand {
    display: none;
  }
}

.collage__brand-link {
  display: inline-block;
  line-height: 0;
}

.collage__brand-logo {
  display: block;
  width: 130px;
  height: auto;
  margin: 0 auto;
}

.collage__intro {
  --intro-col-w: clamp(210px, 17vw, 310px);
  --intro-col-h: clamp(290px, 25vw, 430px);
  --intro-left-w: calc(var(--intro-col-w) * 1.1);
  --intro-right-w: calc(var(--intro-col-w) * 1.3);
  display: flex;
  gap: 56px;
  max-width: 1600px;
  margin: 0 auto;
}

.collage__intro-image-wrapper {
  flex: 0 0 var(--intro-col-w);
  width: var(--intro-col-w);
  height: var(--intro-col-h);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .collage__intro-image-wrapper {
    display: none;
  }
}
.collage__intro-image-wrapper:first-child {
  flex: 0 0 calc(var(--intro-col-w) * 1.1);
  width: calc(var(--intro-col-w) * 1.1);
  height: calc(var(--intro-col-h) * 1.2);
}
.collage__intro-image-wrapper:last-child {
  margin-top: -32px;
  flex: 0 0 calc(var(--intro-col-w) * 1.3);
  width: calc(var(--intro-col-w) * 1.3);
  height: calc(var(--intro-col-h) * 1.6);
}

.collage__intro-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.collage__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  margin-left: calc(var(--intro-right-w) - var(--intro-left-w));
}
@media screen and (max-width: 1200px) {
  .collage__content {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .collage__content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.collage__text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-main);
}
.collage__text p:not(:last-child) {
  margin-bottom: 1em;
}

.collage__rule {
  display: block;
  width: 28px;
  margin: 25px auto;
  border: none;
  border-top: 1.5px solid var(--color-main);
}
@media screen and (min-width: 769px) {
  .collage__rule {
    margin: 28px auto;
  }
}

@media screen and (max-width: 768px) {
  .collage__bottom {
    padding-left: 0;
    padding-right: 0;
  }
}

.collage__images {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  .collage__images {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1201px) {
  .collage__images {
    margin-top: 24px;
    padding-inline-end: 50px;
  }
}
@media screen and (min-width: 1201px) {
  .collage__images {
    margin-top: clamp(-80px, 160px - 16vw, 0px);
  }
}

.collage__image-wrapper {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.collage__image-wrapper:nth-child(1) {
  flex: 1.2 1 0;
  max-width: calc(var(--collage-tile-width) * 1.2);
  height: calc(var(--collage-tile-height) * 1.2);
}
@media screen and (max-width: 980px) {
  .collage__image-wrapper:nth-child(1) {
    flex: 1.4 1 0;
    max-width: calc(var(--collage-tile-width) * 1.4);
    height: calc(var(--collage-tile-height) * 1.2);
  }
}
@media screen and (max-width: 580px) {
  .collage__image-wrapper:nth-child(1) {
    margin-top: -10px;
    flex: 1.4 1 0;
    max-width: calc(var(--collage-tile-width) * 1.4);
    height: calc(var(--collage-tile-height) * 1.2);
  }
}
@media screen and (min-width: 1401px) {
  .collage__image-wrapper:nth-child(1) {
    margin-top: -60px;
  }
}
.collage__image-wrapper:nth-child(2) {
  flex: 2 1 0;
  max-width: calc(var(--collage-tile-width) * 2);
  height: var(--collage-tile-height);
  margin-top: 20px;
}
@media screen and (max-width: 580px) {
  .collage__image-wrapper:nth-child(2) {
    height: calc(var(--collage-tile-height) * 1);
  }
}
@media screen and (min-width: 1401px) {
  .collage__image-wrapper:nth-child(2) {
    margin-top: 60px;
  }
}

.collage__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

@media screen and (min-width: 769px) {
  .text-section__headline {
    margin-bottom: 40px;
  }
}

.text-section__text {
  max-width: 1000px;
  margin: 0 auto;
}

.image-text {
  margin-top: 0;
  color: var(--color-main);
}

.image-text__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 769px) {
  .image-text__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .image-text__inner {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 769px) {
  .image-text__inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: clamp(32px, 5vw, 72px);
  }
}

@media screen and (min-width: 981px) {
  .image-text--image-left .image-text__inner {
    flex-direction: row;
  }
}

@media screen and (max-width: 768px) {
  .image-text--button-below-media .image-text__inner {
    flex-direction: column;
  }
  .image-text--button-below-media .image-text__body {
    display: contents;
  }
  .image-text--button-below-media .image-text__headline {
    order: 1;
  }
  .image-text--button-below-media .image-text__text {
    order: 2;
  }
  .image-text--button-below-media .image-text__media {
    order: 3;
  }
  .image-text--button-below-media .image-text__button {
    order: 4;
    margin-top: 40px;
  }
}

.image-text__media {
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .image-text__media {
    margin-top: 40px;
  }
}
@media screen and (min-width: 981px) {
  .image-text__media {
    flex: 0 0 46%;
  }
}

.image-text__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1000/1400;
  background-color: rgba(164, 129, 74, 0.12);
}

.image-text__body {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .image-text__body {
    text-align: center;
  }
}
@media screen and (min-width: 981px) {
  .image-text__body {
    flex: 1 1 54%;
    padding-top: 150px;
  }
}

@media screen and (min-width: 769px) {
  .image-text--image-right .image-text__body {
    text-align: right;
  }
}

.image-text__headline {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .image-text__headline {
    --headline-rule-resting-width: 24px;
  }
  .image-text__headline::after {
    content: "";
    display: block;
    margin: 16px auto 0;
    width: var(--headline-rule-width, var(--headline-rule-resting-width, 48px));
    height: 1.5px;
    opacity: var(--headline-rule-opacity, 1);
    background: var(--color-main);
    border-radius: 2px;
  }
}
@media screen and (min-width: 769px) {
  .image-text__headline::after {
    content: "";
    display: block;
    width: var(--headline-rule-width-inline, 24px);
    height: 1.5px;
    margin-top: 8px;
    background: var(--color-main);
    border-radius: 2px;
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (min-width: 769px) {
  .image-text--image-right .image-text__headline::after {
    content: "";
    display: block;
    width: var(--headline-rule-width-inline, 24px);
    height: 1.5px;
    margin-top: 8px;
    background: var(--color-main);
    border-radius: 2px;
    margin-left: auto;
    margin-right: 0;
  }
}

.image-text__button {
  margin-top: 48px;
}

.image-tile {
  display: flex;
}
@media screen and (max-width: 768px) {
  .image-tile {
    flex-direction: column;
  }
}
@media screen and (min-width: 1201px) {
  .image-tile {
    height: 100vh;
  }
}

@media screen and (min-width: 769px) {
  .image-tile--image-right {
    flex-direction: row-reverse;
  }
}

.image-tile__image-wrapper {
  min-width: 0;
}
@media screen and (min-width: 769px) {
  .image-tile__image-wrapper {
    flex: 0 0 50%;
  }
}

.image-tile__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .image-tile__image {
    aspect-ratio: 1/1;
  }
}

.image-tile__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  text-align: center;
  background-color: var(--color-surface);
  padding: 56px;
}
@media screen and (max-width: 768px) {
  .image-tile__content {
    aspect-ratio: 1/1;
  }
}

.image-tile__headline {
  font-size: clamp(1.4rem, 2vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--color-main);
}

.image-tile__headline .page-section__headline-text {
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .image-tile__headline .page-section__headline-text br {
    display: none;
  }
}

.text-page__content .accordion {
  margin-top: 48px;
}
.text-page__content .accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
.text-page__content .accordion__label {
  flex: 1;
  min-width: 0;
}
.text-page__content .accordion__chevron {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.text-page__content .accordion__toggle[aria-expanded=true] .accordion__chevron {
  transform: rotate(-180deg);
}
.text-page__content .accordion__item:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-main) 50%, transparent);
}
.text-page__content .accordion__headline {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 400;
}
.text-page__content .accordion__headline:hover {
  color: var(--color-main-dark);
}
.text-page__content .accordion__content {
  display: flow-root;
  box-sizing: border-box;
  font-size: 1.05rem;
}
.text-page__content .accordion__content-inner {
  padding-top: 16px;
}
.text-page__content .accordion__content-inner p:not(:last-child),
.text-page__content .accordion__content-inner ul:not(:last-child),
.text-page__content .accordion__content-inner ol:not(:last-child) {
  margin-bottom: 1em;
}
.text-page__content .accordion__content[hidden] {
  display: none;
}

.map__country {
  outline: none;
}
.map__country path {
  transition: fill var(--transition-speed) ease-in-out;
}

.map__country--active path {
  opacity: 1;
  fill: var(--color-map-fill);
  cursor: pointer;
}
.map__country--active:hover path {
  fill: var(--color-main);
}
.map__country--active.is-active path {
  fill: var(--color-main);
}

.map-section__inner {
  --container-max: 1200px;
  --container-pad: 50px;
  --map-breakout-right: calc(
    ((100vw - min(100vw, var(--container-max))) / 2) + var(--container-pad)
  );
}

.map-section__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 980px) {
  .map-section__wrapper {
    flex-direction: column;
  }
}
@media screen and (min-width: 981px) {
  .map-section__wrapper {
    margin-top: 144px;
  }
}

.map-section__image-wrapper {
  flex: 0 0 calc(58% + var(--map-breakout-right));
  margin-top: clamp(-300px, -33vw, -70px);
  margin-right: calc(var(--map-breakout-right) * -1);
}
@media screen and (max-width: 980px) {
  .map-section__image-wrapper {
    flex: 0 0 auto;
    margin-top: -64px;
    margin-right: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }
}

.map-section__image {
  display: block;
  width: 120%;
  max-width: none;
  margin-left: -10%;
  height: auto;
  max-height: 125vh;
}
@media screen and (max-width: 980px) {
  .map-section__image {
    width: 100%;
    margin-left: 0;
    height: auto;
  }
}

.map-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 44%;
  flex-direction: column;
  font-weight: 300;
  font-style: italic;
}
@media screen and (max-width: 980px) {
  .map-section__content {
    flex: 0 0 auto;
  }
}
@media screen and (min-width: 981px) {
  .map-section__content {
    transform: translateX(40px);
  }
}

.map-section__previews-host {
  flex: 0 0 auto;
}

.map-section__surface {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#map-section-copy {
  scroll-margin-top: 80px;
}

.map-section__subheadline {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .map-section__subheadline {
    font-size: 1.875rem;
  }
}

.map-section__lead {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .map-section__lead {
    font-size: 1.5rem;
  }
}

.map-section__previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 56px;
}
@media screen and (min-width: 769px) {
  .map-section__previews {
    gap: 16px;
  }
}
@media screen and (min-width: 981px) {
  .map-section__previews {
    margin-left: -100px;
    margin-right: -100px;
  }
}

.map-section__preview {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.map-section__stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

.map-section__stat {
  line-height: 1.2;
  position: relative;
}
.map-section__stat:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 581px) {
  .map-section__stat:not(:last-child) {
    padding-right: 28px;
    margin-right: 28px;
  }
}
@media screen and (min-width: 769px) {
  .map-section__stat:not(:last-child) {
    padding-right: 42px;
    margin-right: 42px;
  }
}
.map-section__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 24px;
  background-color: rgba(164, 129, 74, 0.4);
}

.map-section__stat-value {
  font-size: 1.7rem;
  font-weight: 400;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 2.5ch;
}
@media screen and (min-width: 581px) {
  .map-section__stat-value {
    font-size: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .map-section__stat-value {
    font-size: 2.4rem;
  }
}

.map-section__stat:nth-child(3) .map-section__stat-value {
  min-width: 4.5ch;
}

.map-section__stat-label {
  font-size: 1.2rem;
}

.map-section__cta {
  display: none;
  align-self: flex-start;
  max-width: 500px;
}
@media screen and (min-width: 769px) {
  .map-section__cta {
    margin-top: 32px;
  }
}
.map-section__cta:hover {
  background-color: var(--color-main);
  color: #fff;
}

.map-section__notice,
.map-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.map-section__notice::after,
.map-section__cta::after {
  content: "";
  width: 24px;
  height: 16px;
  background: url(2b60ec4f5619cd7a3bfc.svg) no-repeat center/contain;
  flex: 0 0 auto;
}

@keyframes map-section-notice-arrow-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
}
@keyframes map-section-notice-arrow-nudge-down {
  0%, 100% {
    transform: rotate(45deg) translateX(0);
  }
  50% {
    transform: rotate(45deg) translateX(5px);
  }
}
.map-section__notice {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
  margin-top: 72px;
}
@media screen and (max-width: 980px) {
  .map-section__notice {
    margin-left: calc(50% - 30vw);
  }
}
@media screen and (max-width: 580px) {
  .map-section__notice {
    margin-left: 24px;
  }
}
@media screen and (min-width: 769px) {
  .map-section__notice {
    font-size: 1.5rem;
    margin-right: 0;
    margin-top: 102px;
  }
}
@media screen and (min-width: 1201px) {
  .map-section__notice {
    margin-left: auto;
  }
}
.map-section__notice::after {
  animation: map-section-notice-arrow-nudge-down 3.2s ease-in-out infinite;
}
@media screen and (min-width: 981px) {
  .map-section__notice::after {
    animation: map-section-notice-arrow-nudge 2.4s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-section__notice::after {
    animation: none;
  }
}
.map-section__content--has-country .map-section__notice {
  display: none;
}
.map-section__content--has-country .map-section__cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.map-section__content--has-country .map-section__cta:after {
  width: 22px;
  height: 14px;
  background-image: url(82c733ac4dd413486766.svg);
}

.steps {
  --steps-bg: var(--color-surface);
  --steps-icon-size: 104px;
  --steps-line: var(--color-main);
  --steps-line-height: 1.5px;
  --steps-line-bleed: 3px;
  --steps-column-gap: 2.5rem;
  --steps-row-gap: 56px;
  --steps-connector-y: calc(var(--steps-icon-size) * 0.5);
  --steps-lucide-stroke: 1px;
  color: var(--color-main);
  background-color: var(--color-surface);
  padding: 88px 0;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .steps {
    --steps-icon-size: 76px;
  }
}
@media screen and (min-width: 769px) {
  .steps {
    margin-bottom: 150px;
  }
}

.steps__items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--steps-row-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .steps__items {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--steps-column-gap);
  }
}

@media screen and (max-width: 768px) {
  .steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .steps__item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding-top: 0;
  }
}

.steps__item-line {
  display: none;
}
@media screen and (min-width: 769px) {
  .steps__item-line {
    display: block;
    position: absolute;
    top: calc(var(--steps-connector-y) - var(--steps-line-height) * 0.5);
    left: calc(50% - var(--steps-line-bleed));
    width: calc(100% + var(--steps-column-gap) + 2 * var(--steps-line-bleed));
    height: var(--steps-line-height);
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--steps-line);
    z-index: 0;
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.steps__item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--steps-icon-size);
  height: var(--steps-icon-size);
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid var(--color-main);
  background: var(--steps-bg);
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .steps__item-icon-wrapper {
    position: relative;
    z-index: 1;
    margin: 0 auto 24px;
  }
}

.steps__item-icon-wrapper .lucide {
  width: 40px;
  height: 40px;
  stroke-width: var(--steps-lucide-stroke);
}
@media screen and (max-width: 768px) {
  .steps__item-icon-wrapper .lucide {
    width: 30px;
    height: 30px;
  }
}
.steps__item-icon-wrapper .lucide.lucide-send {
  margin-right: 5px;
}
.steps__item-icon-wrapper .lucide path,
.steps__item-icon-wrapper .lucide circle,
.steps__item-icon-wrapper .lucide line,
.steps__item-icon-wrapper .lucide polyline,
.steps__item-icon-wrapper .lucide polygon,
.steps__item-icon-wrapper .lucide rect {
  stroke-width: var(--steps-lucide-stroke);
}

.steps__item-icon-wrapper--lg .lucide {
  width: 44px;
  height: 44px;
}

.steps__item-content {
  max-width: 26rem;
  margin-inline: auto;
}

.steps__item-title {
  color: var(--color-main);
  margin-bottom: 1rem;
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .steps__item-title {
    font-size: 1.6rem;
  }
}

.steps__item-text p {
  margin: 0;
}
.steps__item-text p + p {
  margin-top: 0.75em;
}
.steps__item-text a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.steps__item-text a:hover {
  color: var(--color-main-dark);
}

.property-slider {
  width: 100%;
}

.property-slider__embla {
  position: relative;
  width: 100%;
  --slider-slides-to-scroll: 1;
}
@media screen and (min-width: 581px) {
  .property-slider__embla {
    --slider-slides-to-scroll: 2;
  }
}
@media screen and (min-width: 769px) {
  .property-slider__embla {
    --slider-slides-to-scroll: 3;
  }
}

.property-slider__viewport {
  overflow: hidden;
  box-sizing: border-box;
}

.property-slider__container {
  display: flex;
}

.property-slider__slide {
  position: relative;
  min-width: 0;
  height: auto;
  flex: 0 0 90.9090909091%;
  padding: 0 1px;
  box-sizing: border-box;
}
@media screen and (min-width: 581px) {
  .property-slider__slide {
    flex: 0 0 47.619047619%;
  }
}
@media screen and (min-width: 769px) {
  .property-slider__slide {
    flex: 0 0 32.2580645161%;
  }
}

.property-slider__slide-inner {
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.property-slider__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/2.5;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Own compositor layer — reduces flicker when parent animates opacity/transform */
  transform: translateZ(0);
}

.property-slider__content {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 32px;
  transition: background-color 0.6s ease;
}
.property-slider__content:after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  display: none !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.property-slider__content-panel {
  width: 100%;
  transform: translateY(calc(100% - 48px));
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.property-slider__content-body {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease 0.12s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.property-slider__slide:hover .property-slider__content,
.property-slider__slide:focus-within .property-slider__content {
  background-color: rgba(0, 0, 0, 0.56);
}

.property-slider__slide:hover .property-slider__content-panel,
.property-slider__slide:focus-within .property-slider__content-panel {
  transform: translateY(0);
}

.property-slider__slide:hover .property-slider__content-body,
.property-slider__slide:focus-within .property-slider__content-body {
  opacity: 1;
  transform: translateY(0);
}

.property-slider__content-title {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.7em;
  font-style: italic;
  position: relative;
  opacity: 0.9;
  transition: opacity 0.55s ease;
}
.property-slider__content-title::after {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  margin-top: 0.5em;
  background: #fff;
  opacity: 0.8;
  border-radius: 1px;
}

.property-slider__content-subtitle {
  margin-bottom: 16px;
}

.property-slider__slide:hover .property-slider__content-title,
.property-slider__slide:focus-within .property-slider__content-title {
  opacity: 1;
}

.property-slider__content-text {
  font-size: 1rem;
  line-height: 1.5;
}

.property-slider__content-button {
  margin-top: 24px;
}

.property-slider__arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  border: 0;
  background: #fff;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}
.property-slider__arrow:hover {
  background-color: #e5e5e5;
}

.property-slider__arrow-icon {
  display: block;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform-origin: center;
}

.property-slider__arrow--prev {
  left: 8px;
}
.property-slider__arrow--prev .property-slider__arrow-icon {
  transform: translateX(2px) rotate(-135deg);
}

.property-slider__arrow--next {
  right: 8px;
}
.property-slider__arrow--next .property-slider__arrow-icon {
  transform: translateX(-2px) rotate(45deg);
}

.text-page {
  padding-bottom: 100px;
  background-color: #f6f6f6;
  color: #a4814a;
}

.text-page--pb-0 {
  padding-bottom: 0;
}

.text-page__main {
  margin-top: 48px;
}
@media screen and (min-width: 769px) {
  .text-page__main {
    margin-top: 104px;
  }
}

.text-page__title::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}
.text-page__title {
  margin-bottom: 1em;
  hyphens: auto;
}

.text-page__content {
  font-size: 1.1rem;
  line-height: 1.4;
}
.text-page__content h2,
.text-page__content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.7em;
  margin-top: 1.6em;
}
.text-page__content ul,
.text-page__content ol {
  margin: 0.5em 0 1em;
  padding-left: 1.25em;
}
.text-page__content ul {
  list-style-type: disc;
}
.text-page__content li {
  margin-bottom: 0.25em;
}
.text-page__content address {
  font-style: normal;
  margin: 0.5em 0 1em;
}
.text-page__content p:not(:last-child),
.text-page__content ul:not(:last-child),
.text-page__content ol:not(:last-child) {
  margin-bottom: 1.3em;
}
.text-page__content ul,
.text-page__content ol {
  margin-left: 1em;
}
.text-page__content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.text-page__content a:hover {
  color: var(--color-main-dark);
}
.text-page__content hr {
  border: none;
  height: 1px;
  background-color: var(--color-main);
  opacity: 0.3;
  margin-top: 40px;
  margin-bottom: 40px;
}
.text-page__content hr + h3 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .legal-page,
  .booking-page {
    border-top: 88px solid var(--color-surface);
  }
}
@media screen and (min-width: 769px) {
  .legal-page,
  .booking-page {
    padding-top: 100px;
  }
}

.booking-page__intro {
  margin-bottom: 48px;
}

.booking-page__content .mphb-checkout-section:not(.mphb-booking-details),
.booking-page__content .mphb-reserve-rooms-details:not(.mphb-booking-details) {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(164, 129, 74, 0.2);
}
.booking-page__content .mphb-checkout-section h3,
.booking-page__content .mphb-checkout-section h4,
.booking-page__content .mphb-reserve-rooms-details h3,
.booking-page__content .mphb-reserve-rooms-details h4 {
  font-size: 1.7rem;
  margin-top: 0;
  margin-bottom: 0.8em;
  font-weight: 300;
}
.booking-page__content .mphb-checkout-section p:not(:last-child),
.booking-page__content .mphb-reserve-rooms-details p:not(:last-child) {
  margin-bottom: 1em;
}
.booking-page__content .mphb-checkout-section input,
.booking-page__content .mphb-checkout-section select,
.booking-page__content .mphb-checkout-section textarea,
.booking-page__content .mphb-reserve-rooms-details input,
.booking-page__content .mphb-reserve-rooms-details select,
.booking-page__content .mphb-reserve-rooms-details textarea {
  background-color: #fff;
  width: auto;
}
@media screen and (max-width: 580px) {
  .booking-page__content .mphb-checkout-section input,
  .booking-page__content .mphb-checkout-section select,
  .booking-page__content .mphb-checkout-section textarea,
  .booking-page__content .mphb-reserve-rooms-details input,
  .booking-page__content .mphb-reserve-rooms-details select,
  .booking-page__content .mphb-reserve-rooms-details textarea {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .booking-page__content .mphb-checkout-section select,
  .booking-page__content .mphb-reserve-rooms-details select {
    min-width: 176px;
  }
}
@media screen and (min-width: 769px) {
  .booking-page__content .mphb-checkout-section input,
  .booking-page__content .mphb-reserve-rooms-details input {
    min-width: 336px;
  }
}
.booking-page__content .mphb-checkout-section textarea,
.booking-page__content .mphb-reserve-rooms-details textarea {
  padding-top: 8px;
  padding-bottom: 8px;
}
.booking-page__content .mphb-adults-chooser,
.booking-page__content .mphb-children-chooser {
  display: flex;
}
@media screen and (max-width: 580px) {
  .booking-page__content .mphb-check-in-date > span:first-child,
  .booking-page__content .mphb-check-out-date > span:first-child,
  .booking-page__content .mphb-room-type-title > span:first-child,
  .booking-page__content .mphb-adults-chooser > label,
  .booking-page__content .mphb-children-chooser > label,
  .booking-page__content .mphb-guest-name-wrapper > label {
    display: block;
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 581px) {
  .booking-page__content .mphb-check-in-date > span:first-child,
  .booking-page__content .mphb-check-out-date > span:first-child,
  .booking-page__content .mphb-room-type-title > span:first-child,
  .booking-page__content .mphb-adults-chooser > label,
  .booking-page__content .mphb-children-chooser > label,
  .booking-page__content .mphb-guest-name-wrapper > label {
    display: inline-block;
    min-width: 130px;
  }
}
.booking-page__content .mphb-guest-name-wrapper {
  display: none !important;
}
.booking-page__content .mphb-price-breakdown {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.booking-page__content .mphb-price-breakdown th,
.booking-page__content .mphb-price-breakdown td {
  padding: 8px;
  border: 1px solid var(--color-surface);
  text-align: left;
}
.booking-page__content .mphb-price-breakdown a.mphb-price-breakdown-accommodation {
  text-decoration: none;
}
.booking-page__content .mphb-price-breakdown .mphb-price-breakdown-expand > .mphb-inner-icon {
  line-height: 14px;
  background-color: var(--color-main);
  color: #fff;
  transition: all var(--transition-speed) ease;
}
.booking-page__content .mphb-price-breakdown .mphb-price-breakdown-expand:hover > .mphb-inner-icon {
  background-color: var(--color-main-dark);
}
.booking-page__content .mphb-price-breakdown .mphb-price-breakdown-rate {
  margin-top: 4px;
}
.booking-page__content .mphb-price-breakdown tfoot th {
  background-color: color-mix(in srgb, var(--color-surface) 30%, transparent);
}
.booking-page__content .mphb-customer-details .mphb-required-fields-tip small {
  font-size: 0.9rem;
}
.booking-page__content .mphb-customer-details label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.booking-page__content .mphb-customer-details input,
.booking-page__content .mphb-customer-details select,
.booking-page__content .mphb-customer-details textarea {
  width: 100%;
}
.booking-page__content .mphb-booking-infos {
  list-style: disc;
  margin-left: 1em;
  margin-top: 32px;
}
.booking-page__content .mphb-checkout-terms-wrapper {
  margin-top: 24px !important;
}
.booking-page__content .mphb-terms-and-conditions-accept input {
  min-width: 0 !important;
  float: left;
  margin-right: 8px;
}
.booking-page__content .mphb-terms-and-conditions-accept label {
  gap: 8px;
}
.booking-page__content .mphb-total-price {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 32px !important;
}
.booking-page__content .mphb_sc_checkout-submit-wrapper {
  margin-top: 40px;
}
.booking-page__content .mphb-customer-anrede,
.booking-page__content .mphb-customer-first-name,
.booking-page__content .mphb-customer-email,
.booking-page__content .mphb-customer-zip {
  float: left;
  width: 49%;
}
.booking-page__content .mphb-customer-last-name,
.booking-page__content .mphb-customer-phone,
.booking-page__content .mphb-customer-city {
  float: right;
  width: 49%;
}
.booking-page__content .mphb-customer-first-name,
.booking-page__content .mphb-customer-address1 {
  clear: left;
}

.mphb-room-number {
  display: none;
}

.booking-page--booking {
  margin-top: auto;
  padding-bottom: 200px;
}
.booking-page--booking .booking-page__content {
  text-align: center;
}
.booking-page--booking .booking-page__title::after {
  content: "";
  display: block;
  margin: 16px auto 0;
  width: var(--headline-rule-width, var(--headline-rule-resting-width, 48px));
  height: 1.5px;
  opacity: var(--headline-rule-opacity, 1);
  background: var(--color-main);
  border-radius: 2px;
}
.booking-page--booking .booking-page__title {
  text-align: center;
}

.mphb-reservation-submitted-title {
  display: none !important;
}

.contact-box {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(164, 129, 74, 0.2);
}
@media screen and (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .contact-box {
    align-items: center;
  }
}

.contact-box--extended {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.contact-box__headline {
  font-size: 1.2rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  .contact-box__headline {
    font-size: 1.4rem !important;
  }
}

@media screen and (min-width: 769px) {
  .contact-box--extended .contact-box__headline {
    font-size: 1.55rem !important;
  }
}

.contact-box__image {
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media screen and (min-width: 769px) {
  .contact-box--extended .contact-box__image {
    width: 140px;
    height: 140px;
  }
}

.contact-box__button,
.contact-box__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  line-height: 1;
  text-decoration: none !important;
  color: var(--color-main);
  cursor: pointer;
}
.contact-box__button svg,
.contact-box__action svg {
  pointer-events: none;
}

.contact-box__button {
  margin-top: 16px;
}

.contact-box__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .contact-box__actions {
    align-items: center;
  }
}

.contact-box__button-icon {
  flex-shrink: 0;
  block-size: 1.15em;
  inline-size: 1.15em;
  margin-top: -4px;
  display: block;
}
.contact-box__button-icon.lucide {
  stroke: currentColor;
}

.contact-box__action-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  color: var(--color-main);
}
.contact-box__action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-box__action-icon--lucide.lucide {
  stroke: currentColor;
}

.owners-cta {
  padding: clamp(64px, 10vw, 100px) 0;
  background-color: var(--color-surface);
  color: var(--color-main);
  text-align: center;
}

.owners-cta__inner {
  max-width: 630px;
  margin: 0 auto;
}

.owners-cta__headline {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 20px;
}

.owners-cta__text {
  margin: 0 0 32px;
}

.owners-cta__button {
  margin-top: 0;
}

.follow-cta {
  --container-max: 1200px;
  --container-pad: 24px;
  --follow-breakout-right: calc(
    ((100vw - min(100vw, var(--container-max))) / 2) + var(--container-pad)
  );
}
@media screen and (min-width: 769px) {
  .follow-cta {
    --container-pad: 48px;
  }
}
.follow-cta {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 56px);
}
@media screen and (max-width: 768px) {
  .follow-cta {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (min-width: 769px) {
  .follow-cta {
    margin-top: 80px;
  }
}

.follow-cta__content {
  flex: 0 0 50%;
  min-width: 0;
}
.follow-cta__content .follow-cta__image-wrapper {
  position: relative;
  width: 330px;
  margin-top: 70px;
  margin-bottom: -10%;
  margin-left: -10%;
}
@media screen and (max-width: 768px) {
  .follow-cta__content .follow-cta__image-wrapper {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .follow-cta__content {
    flex: 0 0 auto;
    width: 100%;
  }
}

.follow-cta__headline::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}
.follow-cta__headline {
  margin-bottom: 24px;
}

.follow-cta__text {
  max-width: 530px;
}

.follow-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}
.follow-cta__link .lucide {
  flex-shrink: 0;
}

.follow-cta__images {
  display: flex;
  gap: 32px;
  flex: 1 1 auto;
  min-width: 0;
  margin-right: calc(var(--follow-breakout-right) * -1);
}
@media screen and (max-width: 768px) {
  .follow-cta__images {
    margin-right: 0;
    margin-top: 24px;
    width: 100%;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .follow-cta__image-wrapper:nth-child(1) {
    margin-left: -24px;
  }
}
@media screen and (min-width: 769px) {
  .follow-cta__image-wrapper:nth-child(1) {
    margin-top: -70px;
  }
}
.follow-cta__image-wrapper:nth-child(2) {
  margin-top: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .follow-cta__image-wrapper:nth-child(2) {
    position: relative;
    margin-right: -24px;
    flex: 0 0 60%;
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 769px) {
  .follow-cta__image-wrapper:nth-child(2) {
    margin-top: 120px;
  }
}

.follow-cta__image {
  width: 100%;
  height: auto;
}

.form-section {
  --form-field-border: #fff;
  --form-field-color: #fff;
  background-color: var(--color-main);
  color: #fff;
  margin-top: 64px;
  padding-block: 56px;
}

.form-section__headline::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}
.form-section__headline {
  margin-bottom: 1em;
}
.form-section__headline:after {
  background-color: #fff;
}

.form-section__form-wrapper {
  margin-top: 24px;
}

.filter-bar {
  background-color: var(--color-main);
  padding: 12px 0 16px 0;
  color: #fff;
}
.filter-bar .mphb-required-fields-tip {
  display: none;
}
.filter-bar .mphb_sc_search-form {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .filter-bar .mphb_sc_search-form {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 580px) {
  .filter-bar .mphb_sc_search-form {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .filter-bar .mphb_sc_search-form {
    align-items: flex-end;
    gap: 16px;
  }
}
@media screen and (min-width: 581px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-check-in-date,
  .filter-bar .mphb_sc_search-form .mphb_sc_search-check-out-date {
    flex: 0 0 calc(50% - 6px);
  }
}
@media screen and (min-width: 769px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-check-in-date,
  .filter-bar .mphb_sc_search-form .mphb_sc_search-check-out-date {
    flex: 0 0 18%;
  }
}
@media screen and (min-width: 581px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-adults,
  .filter-bar .mphb_sc_search-form .mphb_sc_search-children {
    flex: 0 0 calc(50% - 6px);
  }
}
@media screen and (min-width: 769px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-adults,
  .filter-bar .mphb_sc_search-form .mphb_sc_search-children {
    flex: 0 0 10%;
  }
}
@media screen and (min-width: 581px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-land {
    flex: 0 0 calc(50% - 6px);
  }
}
@media screen and (min-width: 769px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-land {
    flex: 0 0 18%;
  }
}
.filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper {
    flex: 0 0 100%;
  }
}
.filter-bar .mphb_sc_search-form label {
  display: inline-block;
  margin-bottom: 3px;
  font-style: italic;
  font-weight: 300;
}
.filter-bar .mphb_sc_search-form input:not([type=submit]),
.filter-bar .mphb_sc_search-form select {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.filter-bar .mphb_sc_search-form input.mphb-datepick,
.filter-bar .mphb_sc_search-form select {
  min-height: 2.5rem;
  line-height: 1.3;
}
.filter-bar .mphb_sc_search-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Cpath stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M6 9l6 6 6-6%27/%3E%3C/svg%3E");
}
.filter-bar .mphb_sc_search-form select option {
  color: var(--color-main);
}
.filter-bar .mphb_sc_search-form abbr {
  display: none;
}
.filter-bar .mphb_sc_search-form input.mphb-datepick {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 24 24%27%3E%3Crect x=%273%27 y=%274%27 width=%2718%27 height=%2718%27 rx=%272%27 fill=%27none%27 stroke=%27%23ffffff%27 stroke-width=%271.5%27/%3E%3Cpath fill=%27none%27 stroke=%27%23ffffff%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 d=%27M8 2v4M16 2v4M3 10h18%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem 1rem;
  padding-inline-end: 2.25rem;
}
.filter-bar .mphb_sc_search-form input.mphb-datepick::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  font-weight: 300;
}
.filter-bar .mphb_sc_search-form input.mphb-datepick::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  font-weight: 300;
}
.filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit] {
  border-width: 1px;
  min-height: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .filter-bar .mphb_sc_search-form .mphb_sc_search-submit-button-wrapper input[type=submit] {
    background-color: #fff;
    color: var(--color-main);
    margin-top: 8px;
  }
}

.filter-bar__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  font: inherit;
  font-style: normal;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: filter var(--transition-speed);
}
@media screen and (max-width: 768px) {
  .filter-bar__toggle {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  .filter-bar__toggle {
    display: none;
  }
}
.filter-bar__toggle:hover {
  filter: brightness(0.96);
}

.filter-bar__toggle-label {
  flex: 1;
  padding-top: 3px;
}

.filter-bar__toggle .lucide {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
}

@media screen and (max-width: 768px) {
  .filter-bar__panel {
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 0;
    transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
  }
}

@media screen and (max-width: 768px) {
  .filter-bar.is-open .filter-bar__panel {
    grid-template-rows: 1fr;
    margin-top: 12px;
  }
}

@media screen and (max-width: 768px) {
  .filter-bar__panel-inner {
    overflow: hidden;
    min-height: 0;
  }
}

@media screen and (min-width: 769px) {
  .filter-bar__panel {
    display: block;
  }
  .filter-bar__panel-inner {
    overflow: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  .filter-bar__panel {
    transition: none;
  }
}
.property__top-bar {
  background-color: var(--color-surface);
  padding: 16px 0;
}

.property__top-bar-inner {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 981px) {
  .property__top-bar-inner {
    justify-content: space-between;
  }
}

@media screen and (max-width: 980px) {
  .property__meta {
    display: none;
  }
}

.property__meta-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 8px;
}

.property__meta-item {
  display: flex;
  align-items: center;
}
.property__meta-item + .property__meta-item::before {
  content: "";
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  margin-inline: 1.3em;
  background-color: currentColor;
  border-radius: 50%;
}

@media screen and (max-width: 980px) {
  .property__top-bar-button {
    width: 100%;
  }
}

.property__intro {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .property__intro {
    margin-top: 88px;
  }
}

.property__intro {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}
.property__intro::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  .property__intro {
    line-height: 1.4;
  }
}
.property__intro:after {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .property__intro:after {
    margin-top: 32px;
  }
}

.property__gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.property__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.property__gallery--strip {
  position: relative;
  overflow: visible;
  margin-top: 48px;
}
@media screen and (min-width: 769px) {
  .property__gallery--strip {
    margin-top: 72px;
  }
}

.property__gallery-strip__embla {
  width: 100%;
  min-width: 0;
}

.property__gallery-strip__viewport {
  overflow: hidden;
}

.property__gallery-strip__container {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
@media screen and (min-width: 769px) {
  .property__gallery-strip__container {
    gap: 16px;
  }
}
@media screen and (min-width: 981px) {
  .property__gallery-strip__container {
    gap: 24px;
  }
}

.property__gallery-strip__slide {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
  height: clamp(220px, 33vw, 260px);
}

.property__gallery--strip .property__gallery-item {
  height: 100%;
}

.property__gallery--strip .property__gallery-lightbox {
  position: relative;
  display: block;
  height: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.property__gallery--strip .property__gallery-lightbox::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  transition: background var(--transition-speed) ease;
}
.property__gallery--strip .property__gallery-lightbox:hover::after, .property__gallery--strip .property__gallery-lightbox:focus-visible::after {
  background: rgba(0, 0, 0, 0.2);
}

.property__gallery--strip .property__gallery-lightbox:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.property__gallery--strip .property__gallery-image {
  width: auto;
  max-width: none;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.property__gallery-strip__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-main);
  cursor: pointer;
  margin: 0;
  transform: translateY(-50%);
  transition: opacity var(--transition-speed) ease, color var(--transition-speed) ease;
}
.property__gallery-strip__arrow:hover {
  color: var(--color-main-dark);
}
.property__gallery-strip__arrow.is-disabled, .property__gallery-strip__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.property__gallery-strip__arrow--prev {
  left: 0;
  transform: translate(calc(-100% - 12px), -50%);
}

.property__gallery-strip__arrow--next {
  right: 0;
  transform: translate(calc(100% + 12px), -50%);
}

.property__gallery-strip__arrow-icon {
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform-origin: center;
}

.property__gallery-strip__arrow--prev .property__gallery-strip__arrow-icon {
  transform: translateX(2px) rotate(-135deg);
}

.property__gallery-strip__arrow--next .property__gallery-strip__arrow-icon {
  transform: translateX(-2px) rotate(45deg);
}

.property__booking-section-map {
  width: 100%;
  height: 380px;
}

.property__booking-section-map-text {
  margin-top: 0.5em;
}

.property__booking-section-map-text {
  font-size: 1.15rem;
}

.property__main-inner {
  display: flex;
  gap: 56px;
}

.property__main-content {
  flex-grow: 1;
}

.property__main-aside {
  flex: 0 0 352px;
}

.property__description {
  font-size: 1.1rem;
  font-weight: normal;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .property__description {
    font-size: 1.15rem;
  }
}

.property__overview {
  margin-top: 56px;
  margin-bottom: 48px;
}
@media screen and (min-width: 769px) {
  .property__overview {
    margin-top: 72px;
    margin-bottom: 64px;
  }
}

.property__overview-headline {
  margin-bottom: 32px;
}
.property__overview-headline::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}

.property__overview-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px 40px;
}
@media screen and (min-width: 581px) {
  .property__overview-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
  }
}
@media screen and (min-width: 769px) {
  .property__overview-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.property__overview-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.property__overview-item .lucide {
  flex-shrink: 0;
  margin-top: 2px;
}

.property__overview-text {
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--color-main);
}

.property-list {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .property-list {
    margin-top: 72px;
  }
}

.mphb-reservation-cart {
  display: none;
}

.mphb_sc_search_results-info {
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  margin-bottom: 56px;
  padding: 8px 12px;
  background-color: var(--color-surface);
}

.property-list__grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 32px);
  row-gap: clamp(24px, 2.5vw, 32px);
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 769px) {
  .property-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 981px) {
  .property-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-list__grid > .mphb-recommendation-title,
.property-list__grid > .mphb-recommendation,
.property-list__grid > .mphb-reservation-cart {
  grid-column: 1/-1;
}

.property-list__grid > nav.mphb-pagination {
  grid-column: 1/-1;
}

.property-list__item {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.property-entry {
  display: grid;
  flex: 1;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.property-entry__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-entry__cta {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: flex;
  width: 100%;
  justify-content: center;
  transform: translate(-50%, -50%);
  margin-top: 10px;
  color: #fff;
  align-items: center;
  gap: 0.35em;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  opacity: 0;
  transition: all 0.5s;
}
.property-entry__cta .lucide {
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--transition-duration);
}
.property-entry:hover .property-entry__cta, .property-entry:focus-visible .property-entry__cta {
  margin-top: 0;
  opacity: 1;
}

.property-entry__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.28s ease;
}

.property-entry:hover .property-entry__image,
.property-entry:focus-visible .property-entry__image {
  filter: brightness(0.6);
}

.property-entry__content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  min-width: 0;
}

.property-entry__headline::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}
.property-entry__headline {
  margin-bottom: 16px;
}
.property-entry__headline:after {
  margin-top: 4px;
  width: 16px;
}

.property-entry__body {
  display: flex;
  flex-direction: column;
}

.property-entry__text {
  margin-bottom: 16px;
}

.property-entry__meta {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.property-entry__meta .property__meta-item:before {
  margin-inline: 0.8em;
}

.property-entry .property__booking-price {
  margin-top: auto;
}

.property-entry .mphb-price {
  font-size: 1.7em !important;
}

.property-entry .mphb-price-period {
  border-bottom: none;
}

@media (prefers-reduced-motion: reduce) {
  .property-entry__image {
    transition: none;
  }
  .property-entry__cta .lucide {
    transition: none;
  }
  .property-entry:hover .property-entry__cta .lucide,
  .property-entry:focus-visible .property-entry__cta .lucide {
    transform: none;
  }
}
.property {
  margin-bottom: 64px;
}
@media screen and (min-width: 769px) {
  .property {
    margin-bottom: 128px;
  }
}

.property__booking-text {
  margin-bottom: 32px;
}

.property__booking-panel {
  padding: 24px;
  background-color: var(--color-main);
  color: #fff;
  --form-field-border: #fff;
  --form-field-color: #fff;
}

.property__booking-panel-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .property__booking-panel-inner {
    flex-direction: column;
  }
}
@media screen and (min-width: 981px) {
  .property__booking-panel-inner {
    gap: 24px 32px;
  }
}

@media screen and (min-width: 981px) {
  .property__booking-price {
    margin-top: 8px;
    flex: 0 1 auto;
    min-width: min(100%, 11rem);
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    padding-right: 24px;
  }
}

.property__booking-price-from {
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
}

.property__booking-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
  margin: 0;
  line-height: 1.1;
}

.property__booking-price-amount {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}

.property__booking-price-currency {
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.95;
}

.property__booking-price-duration {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
}

.property__booking-price-note {
  margin: 8px 0 0;
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  opacity: 0.9;
}

.property__booking-price--from {
  font-family: "Spectral", "Georgia", serif;
}
.property__booking-price--from strong {
  font-weight: 300;
  font-style: italic;
}
.property__booking-price--from .mphb-price {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.property__booking-price--from .mphb-price-period,
.property__booking-price--from .mphb-tax-information {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.95;
  border-bottom: none;
}
.property__booking-price--from .mphb-price-period {
  display: inline-block;
}
.property__booking-price--from .mphb-price-period::before {
  content: "/ ";
}

.property__booking-section {
  margin-top: 56px;
  scroll-margin-top: calc(var(--page-header-height, 88px) + 16px);
}
.property__booking-section:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (min-width: 769px) {
  .property__booking-section {
    margin-top: 72px;
  }
  .property__booking-section:not(:last-child) {
    margin-bottom: 128px;
  }
}

.property__booking-section-headline {
  margin-bottom: 32px;
}
.property__booking-section-headline::after {
  content: "";
  display: block;
  width: var(--headline-rule-width-inline, 24px);
  height: 1.5px;
  margin-top: 8px;
  background: var(--color-main);
  border-radius: 2px;
  margin-left: 0;
  margin-right: auto;
}

.property__booking-section-text {
  margin-bottom: 48px;
}

.property__booking-panel .form {
  display: flex;
  gap: 16px;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .property__booking-panel .form {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .property__booking-panel .form {
    align-items: flex-end;
  }
}
@media screen and (min-width: 981px) {
  .property__booking-panel .form {
    flex: 1 1 17rem;
  }
}

.property__booking-panel .form__field, .property__booking-panel .property__booking .mphb-check-in-date-wrapper, .property__booking .property__booking-panel .mphb-check-in-date-wrapper,
.property__booking-panel .property__booking .mphb-check-out-date-wrapper,
.property__booking .property__booking-panel .mphb-check-out-date-wrapper,
.property__booking-panel .property__booking .mphb-capacity-wrapper,
.property__booking .property__booking-panel .mphb-capacity-wrapper {
  flex: 1 1 auto;
  min-width: 0;
}

.property__booking-panel .form__label,
.property__booking .mphb-check-in-date-wrapper label,
.property__booking .mphb-check-out-date-wrapper label,
.property__booking .mphb-capacity-wrapper label {
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

.property__booking-panel .form__input,
.property__booking .mphb-datepick,
.property__booking .mphb-capacity-wrapper select {
  box-shadow: none;
}
.property__booking-panel .form__input::-moz-placeholder, .property__booking .mphb-datepick::-moz-placeholder, .property__booking .mphb-capacity-wrapper select::-moz-placeholder {
  font-family: "Spectral", "Georgia", serif;
  font-style: italic;
  opacity: 0.65;
}
.property__booking-panel .form__input::placeholder,
.property__booking .mphb-datepick::placeholder,
.property__booking .mphb-capacity-wrapper select::placeholder {
  font-family: "Spectral", "Georgia", serif;
  font-style: italic;
  opacity: 0.65;
}

.property__booking-panel .form__button {
  height: 40px;
  white-space: nowrap;
}

.property__booking .mphb_sc_booking_form-wrapper {
  min-width: 0;
}
@media screen and (min-width: 981px) {
  .property__booking .mphb_sc_booking_form-wrapper {
    flex: 1 1 17rem;
  }
}
.property__booking .mphb-booking-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 16px;
  margin: 0;
}
.property__booking .mphb-required-fields-tip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.property__booking .mphb-check-in-date-wrapper:not(:last-child),
.property__booking .mphb-check-out-date-wrapper:not(:last-child),
.property__booking .mphb-capacity-wrapper:not(:last-child) {
  margin-bottom: 0;
}
.property__booking .mphb-check-in-date-wrapper,
.property__booking .mphb-check-out-date-wrapper,
.property__booking .mphb-capacity-wrapper {
  flex: 1 1 9rem;
  margin: 0;
}
.property__booking .mphb-check-in-date-wrapper br,
.property__booking .mphb-check-out-date-wrapper br,
.property__booking .mphb-capacity-wrapper br {
  display: none;
}
.property__booking .mphb-check-in-date-wrapper abbr,
.property__booking .mphb-check-out-date-wrapper abbr,
.property__booking .mphb-capacity-wrapper abbr {
  text-decoration: none;
}
.property__booking .mphb-capacity-wrapper {
  flex: 0 1 5.5rem;
}
.property__booking .mphb-datepick {
  line-height: 1.3;
}
.property__booking .mphb-reserve-room-section.mphb-hide {
  display: none !important;
}
.property__booking .mphb-errors-wrapper {
  flex: 1 0 100%;
  margin: 0;
}
.property__booking .mphb-reserve-btn-wrapper {
  flex: 0 0 auto;
  margin: 0;
}
.property__booking input.mphb-reserve-btn.button,
.property__booking input.button.mphb-confirm-reservation {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  border-radius: 0;
  font: inherit;
  line-height: 1.2;
}
.property__booking input.mphb-reserve-btn.button:focus-visible,
.property__booking input.button.mphb-confirm-reservation:focus-visible {
  background-color: #fff;
  color: var(--color-main);
  filter: none;
}
.property__booking input.button.mphb-confirm-reservation {
  margin-top: 16px;
}
.property__booking .mphb-period-price.mphb-regular-price {
  font-size: 1.15rem;
  margin-top: 8px;
}

.datepick-popup .datepick {
  width: 40em !important;
  border: 2px solid var(--color-main) !important;
  margin-left: -2px !important;
}

.mphb-calendar .datepick,
.datepick-popup .datepick {
  font-size: 1rem !important;
}
.mphb-calendar .datepick *,
.datepick-popup .datepick * {
  color: var(--color-main) !important;
}

.datepick-nav a:hover,
.datepick-cmd:hover {
  background-color: transparent !important;
}
.datepick-nav a:hover:not(.datepick-disabled),
.datepick-cmd:hover:not(.datepick-disabled) {
  color: var(--color-main-dark) !important;
}

.mphb-calendar .datepick-nav,
.datepick-popup .datepick-nav,
.datepick-ctrl {
  background-color: var(--color-surface) !important;
}

.datepick-ctrl {
  border: none !important;
}

.datepick-popup .datepick-month {
  border: none !important;
}
.datepick-popup .datepick-month.first {
  border-right: 1px solid var(--color-surface) !important;
}

.datepick-popup .datepick-month-header {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 40px !important;
}

.datepick-popup .datepick-month-header,
.datepick-popup .datepick-month-header select {
  background-color: transparent !important;
  font: inherit !important;
}

.datepick-popup .datepick-month {
  border-top: none !important;
}

.mphb-unselectable-date {
  opacity: 0.5 !important;
}

.datepick-popup .datepick-selected,
.datepick-popup a.datepick-highlight,
.datepick-popup .mphb-check-in-date {
  background-color: var(--color-main) !important;
  color: #fff !important;
}

.page-footer {
  position: relative;
  margin-top: auto;
  background-color: var(--color-surface);
  color: var(--color-main);
}

.page-footer__image {
  display: block;
  width: 100%;
  height: auto;
  background-color: #f6f6f6;
}

body.home .page-footer__image {
  background-color: var(--color-surface);
}

.page-footer__content {
  position: relative;
  background-color: var(--color-surface);
}

.page-footer__inner {
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
@media screen and (max-width: 980px) {
  .page-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 981px) {
  .page-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}

.page-footer__contact {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-footer__contact {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .page-footer__contact {
    align-items: center;
    justify-self: start;
    gap: 0 1.25rem;
  }
}

@media screen and (min-width: 769px) {
  .page-footer__separator {
    flex-shrink: 0;
    width: 1px;
    height: 0.95em;
    background-color: currentColor;
    opacity: 0.5;
  }
}

.page-footer__cta {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.page-footer__cta:hover {
  color: var(--color-main-dark);
}

.page-footer__brand {
  justify-self: center;
}
@media screen and (max-width: 980px) {
  .page-footer__brand {
    order: -1;
  }
}

.page-footer__logo {
  display: block;
  width: 90px;
  height: auto;
}

.page-footer__aside {
  display: flex;
  justify-self: end;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .page-footer__aside {
    margin-top: 16px;
  }
}
@media screen and (max-width: 580px) {
  .page-footer__aside {
    flex-direction: column;
  }
}

.page-footer__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 580px) {
  .page-footer__nav-list {
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (min-width: 769px) {
  .page-footer__nav-list {
    gap: 28px;
  }
}
.page-footer__nav-list a {
  color: inherit;
  text-decoration: none;
}
.page-footer__nav-list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-footer__social-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: inherit;
  margin-top: -1px;
}
.page-footer__social-link:hover {
  opacity: 0.85;
}

.page-footer__social-icon {
  display: block;
  width: 20px;
  height: 20px;
}
/*!******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/@fancyapps/ui/dist/fancybox/fancybox.css ***!
  \******************************************************************************************************************************************************************************************/
: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-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --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-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  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);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

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

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
}

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

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

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

[data-panzoom-action=toggleFS] g:first-child {
  display: flex;
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:first-child {
  display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: flex;
}

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

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

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  translate: -50% -50%;
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  border-radius: var(--f-spinner-border-radius);
  animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
  to {
    rotate: 360deg;
  }
}
.f-panzoom, .f-zoomable {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  display: block;
  content: "";
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom.in-fullscreen, .f-zoomable.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999;
}

.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  width: auto;
  height: auto;
  vertical-align: top;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.f-panzoom__wrapper > .f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.f-panzoom__viewport > .f-panzoom__content {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

.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;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
  z-index: 2;
}

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

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

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

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

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

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

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

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

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

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }
  to {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

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

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}
.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-html {
  position: relative;
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
}

.is-loading > .f-html {
  opacity: 0;
}

.f-html.is-error {
  text-align: center;
}

.f-iframe {
  display: block;
  margin: 0;
  border: 0;
  height: 100%;
  width: 100%;
}

.f-caption {
  align-self: center;
  flex-shrink: 0;
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  max-width: 100%;
  max-height: calc(80vh - 100px);
  overflow: auto;
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, rgba(0, 0, 0, 0.9));
}

.f-html5video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

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

.f-carousel__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  position: relative;
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar .f-button:focus-visible {
  position: relative;
  z-index: 1;
}

.f-carousel__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
}

.f-carousel__toolbar__column.is-left {
  display: flex;
  justify-self: flex-start;
  justify-content: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  display: flex;
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  display: flex;
  justify-self: flex-end;
  justify-content: flex-end;
  flex-flow: nowrap;
}

.f-carousel__toolbar__column {
  pointer-events: none;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-counter {
  position: relative;
  display: flex;
  flex-direction: row;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
}

.f-counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: transparent;
  --f-thumbs-transition: max-height .3s ease, max-width .3s ease, padding .3s ease;
  --f-thumbs-z-index: 1;
  --f-thumbs-viewport-padding-x: 0px;
  --f-thumbs-viewport-padding-y: 0px;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-border-transition: all .1s ease;
  --f-thumb-img-width: 100%;
  --f-thumb-img-height: 100%;
  --f-thumb-img-fit: cover;
  --f-thumb-img-position: 50% 20%;
}

.f-thumbs {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: hidden;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: var(--f-thumbs-transition);
  z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2);
}

.f-thumbs.is-horizontal.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2);
}

.f-thumbs.is-vertical.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
}

.f-thumbs.is-scrollable.is-hidden {
  max-height: 0;
  --f-thumbs-padding-y: 0;
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

.f-thumbs img {
  display: block;
  width: var(--f-thumb-img-width);
  height: var(--f-thumb-img-height);
  -o-object-fit: var(--f-thumb-img-fit);
     object-fit: var(--f-thumb-img-fit);
  -o-object-position: var(--f-thumb-img-position);
     object-position: var(--f-thumb-img-position);
  pointer-events: none;
  border-radius: inherit;
  color: transparent;
}

.f-thumbs img[data-lazy-src] {
  visibility: hidden;
}

.f-thumbs img.has-lazyerror {
  display: none;
}

.f-thumbs__viewport {
  box-sizing: border-box;
  height: 100%;
  padding: var(--f-thumbs-viewport-padding-y) var(--f-thumbs-viewport-padding-x);
  overflow: visible;
  display: grid;
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  display: block;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: var(--f-thumb-border-transition);
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2 + var(--f-thumbs-padding-x));
  margin-inline: calc((var(--f-carousel-slide-width) + var(--f-thumbs-padding-x)) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-thumbs.is-scrollable .f-thumbs__viewport {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--f-thumb-width), 1fr));
  grid-auto-rows: var(--f-thumb-height);
  gap: var(--f-thumbs-gap);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.f-thumbs.is-scrollable .f-thumbs__viewport .f-thumbs__slide {
  grid-area: auto;
  display: block;
  position: relative;
  max-width: 100%;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  cursor: pointer;
  outline: none;
}

:root {
  --f-progressbar-height: 3px;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30;
}

.f-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform: scaleX(0);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-play-state: running;
  animation-timing-function: linear;
}

.f-progressbar:empty {
  display: block;
}

button > .f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2;
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
[data-fullscreen-action=toggle] svg g:first-child {
  display: flex;
}

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

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

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

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

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

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

.fancybox__dialog {
  position: fixed;
  inset: 0;
  z-index: 1050;
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  touch-action: none;
  overscroll-behavior: contain;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}
.fancybox__dialog *:empty {
  display: block;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 8px;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 16px;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 10px;
  --f-counter-gap: 4px;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 17px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 16px 8px;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: rgba(255, 255, 255, .2);
  --f-spinner-color-2: rgba(255, 255, 255, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
  --f-progressbar-color: rgba(255, 255, 255);
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(255, 255, 255, .75);
  --f-button-outline-offset: 0px;
  --f-button-bg: rgba(54, 54, 54, .75);
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)), drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 32px;
  --f-arrow-width: 50px;
  --f-arrow-height: 50px;
  --f-arrow-svg-width: 24px;
  --f-arrow-svg-height: 24px;
  --f-arrow-svg-stroke-width: 2.5;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: rgba(54, 54, 54, .65);
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-close-button-width: 30px;
  --f-close-button-height: 30px;
  --f-close-button-svg-width: 24px;
  --f-close-button-svg-height: 24px;
  --f-close-button-svg-stroke-width: 1.75;
  --f-close-border-radius: 4px;
  --f-close-button-color: #fff;
  --f-close-button-hover-color: #fff;
  --f-close-button-bg: transparent;
  --f-close-button-hover-bg: transparent;
  --f-close-button-active-bg: transparent;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
  --f-thumb-selected-transform: none;
  --f-scrollbar-width: 7px;
  --f-scrollbar-track-bg: #444;
  --f-scrollbar-track-border-radius: 10px;
  --f-scrollbar-track-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
  --f-scrollbar-thumb-bg: #ddd;
  --f-scrollbar-thumb-border-radius: 10px;
}

.fancybox__container[theme=light] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: rgba(0, 0, 0, .2);
  --f-spinner-color-2: rgba(0, 0, 0, .8);
  --f-spinner-border-width: 3.5px;
  --f-progressbar-color: rgba(111, 111, 116);
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: rgba(0, 0, 0, .85);
  --f-button-bg: rgba(255, 255, 255, .85);
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: rgba(255, 255, 255, .85);
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
  --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
  --f-scrollbar-track-bg: #ddd;
  --f-scrollbar-thumb-bg: #444;
}

.fancybox__container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fancybox__container:focus {
  outline: none;
}

.fancybox__container.has-vertical-thumbs {
  flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow-x: clip;
  overflow-y: visible;
}

.fancybox__container > *:not(.fancybox__carousel), .fancybox__container .fancybox__carousel > *:not(.fancybox__grid, .fancybox__viewport), .fancybox__container .fancybox__column > *:not(.fancybox__viewport), .fancybox__container .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > *:not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > *:not(.fancybox__grid, .fancybox__viewport), .fancybox__container.is-revealing .fancybox__column > *:not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-enter-duration, 0.35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > *:not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > *:not(.fancybox__grid, .fancybox__viewport), .fancybox__container.is-hiding .fancybox__column > *:not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.fancybox__container.is-hiding .fancybox__carousel .fancybox__slide:not(.is-selected) {
  opacity: 0;
}

.fancybox__container.is-hiding {
  pointer-events: none;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
  filter: var(--fancybox-backdrop-filter);
}

.fancybox__carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  position: absolute;
  content: "";
  inset: -30px;
  z-index: 1;
}

.fancybox__viewport {
  display: grid;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
}

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

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

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

.fancybox__slide {
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.fancybox__slide:before, .fancybox__slide:after {
  display: block;
  content: "";
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  overflow: auto;
  padding: 8px;
}

.fancybox__slide.has-iframe {
  overflow: hidden;
  padding: 8px 0;
}

.fancybox__slide.has-close-btn {
  padding-top: 34px;
}

.fancybox__slide.has-controls:before {
  margin: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.fancybox__container.is-closing .fancybox__carousel, .fancybox__container.is-closing .fancybox__viewport, .fancybox__container.is-closing .fancybox__slide.is-selected {
  overflow: visible;
}

.f-button.is-close-button {
  --f-button-width: var(--f-close-button-width);
  --f-button-height: var(--f-close-button-height);
  --f-button-border-radius: var(--f-close-border-radius);
  --f-button-color: var(--f-close-button-color);
  --f-button-hover-color: var(--f-close-button-hover-color);
  --f-button-bg: var(--f-close-button-bg);
  --f-button-hover-bg: var(--f-close-button-hover-bg);
  --f-button-active-bg: var(--f-close-button-active-bg);
  --f-button-svg-width: var(--f-close-button-svg-width);
  --f-button-svg-height: var(--f-close-button-svg-height);
  --f-button-svg-stroke-width: var(--f-close-button-svg-stroke-width);
  position: absolute;
  top: calc((var(--f-button-height) + 2px) * -1);
  right: 0;
  z-index: 10;
}

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

.fancybox__thumbs {
  flex: 0 1 100%;
}

.fancybox__thumbs.is-scrollable {
  --f-thumbs-cols: 1;
  --f-thumbs-gap: 8px;
  --f-thumbs-transition: none;
  --f-thumbs-padding-x: 4px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-viewport-padding-x: 4px;
  --f-thumbs-viewport-padding-y: 0px;
  max-width: calc(var(--f-thumb-width) * var(--f-thumbs-cols) + var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-viewport-padding-x) * 2);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar {
  width: var(--f-scrollbar-width);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-track {
  background: var(--f-scrollbar-track-bg);
  border-radius: var(--f-scrollbar-track-border-radius);
  box-shadow: var(--f-scrollbar-track-shadow);
}

.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-thumb {
  background: var(--f-scrollbar-thumb-bg);
  border-radius: var(--f-scrollbar-thumb-border-radius);
}

.fancybox__thumbs.is-scrollable.is-hidden {
  max-width: 0;
  --f-thumbs-padding-x: 0;
  max-height: unset;
  --f-thumbs-padding-y: unset;
}

.fancybox__thumbs.is-scrollable .f-thumbs__viewport {
  overflow-x: hidden !important;
  grid-template-columns: repeat(auto-fill, calc((100% - var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1)) / var(--f-thumbs-cols))) !important;
}
/*!*******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/fancybox-brand.scss ***!
  \*******************************************************************************************************************************************************************/
.fancybox__container.fancybox-brand {
  --f-toolbar-color: var(--color-main) !important;
  --f-button-color: var(--color-main) !important;
  --f-button-hover-color: var(--color-main-dark) !important;
  --f-button-active-color: var(--color-main-dark) !important;
  --f-arrow-color: var(--color-main) !important;
  --f-arrow-hover-color: var(--color-main-dark) !important;
  --f-arrow-active-color: var(--color-main-dark) !important;
  --f-close-button-color: var(--color-main) !important;
  --f-close-button-hover-color: var(--color-main-dark) !important;
  --f-progressbar-color: var(--color-main) !important;
  --f-spinner-color-2: var(--color-main) !important;
  --f-button-svg-filter: none !important;
}

/*# sourceMappingURL=bundle-v3.css.map*/