.w-text-link {
  display: inline-flex;
  align-items: center;
  transition: all 150ms ease-in-out;
}
.w-text-link__anchor {
  color: var(--text-link-color);
  cursor: pointer;
  text-decoration: var(--text-link-text-decoration, none);
  display: flex;
  flex-direction: var(--text-link-flex-direction, row);
  align-items: center;
  gap: var(--spacing-4-rem);
}
.w-text-link__anchor--button {
  font: inherit;
  text-align: inherit;
}
.w-text-link__anchor--disabled {
  color: var(--color-fg-default-disabled);
  cursor: auto;
}
.w-text-link__anchor:hover {
  --text-link-text-decoration: underline;
}
.w-text-link--default-container {
  --text-link-color: var(--color-fg-brand-link);
}
.w-text-link--light-container {
  --text-link-color: var(--color-fg-brand-link);
}
.w-text-link--dark-container {
  --text-link-color: var(--color-fg-brand-link-inverted);
}
.w-container--theme-light .w-text-link--default-container,
.w-container--theme-subtle .w-text-link--default-container {
  --text-link-color: var(--color-fg-brand-link);
}
.w-container--theme-dark .w-text-link--default-container {
  --text-link-color: var(--color-fg-brand-link-inverted);
}
.w-text-link--size-small {
  --text-link-icon-size: var(--spacing-16-rem);
}
.w-text-link--size-medium {
  --text-link-icon-size: var(--spacing-24-rem);
}
.w-text-link--icon-left {
  --text-link-flex-direction: row-reverse;
}
.w-text-link svg {
  width: var(--text-link-icon-size);
  height: var(--text-link-icon-size);
  color: var(--text-link-color);
}

.w-large-photo-module-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  overflow: hidden;
  padding: var(--spacing-24-rem) var(--spacing-12-rem);
  aspect-ratio: 2/3;
  gap: var(--spacing-8-rem);
  border-radius: var(--corner-radius-lg-rem);
  box-shadow: 0 calc(2/var(--size-rem-base)*1rem) calc(20/var(--size-rem-base)*1rem) 0 rgba(0, 0, 0, .08);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight {
    --large-photo-module-spotlight-align-items: flex-start;
    --large-photo-module-spotlight-text-align: left;
    padding: var(--spacing-24-rem) var(--spacing-32-rem);
    aspect-ratio: 3/2;
    box-shadow: none;
  }
}
.w-large-photo-module-spotlight__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.w-large-photo-module-spotlight__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 40%,
      var(--color-container-default-tone-80) 100%);
}
.w-large-photo-module-spotlight__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: var(--spacing-16-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__content {
    gap: var(--spacing-24-rem);
  }
}
.w-large-photo-module-spotlight__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: var(--spacing-16-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__header {
    flex-direction: row;
  }
}
.w-large-photo-module-spotlight__brand-icon {
  width: var(--spacing-48-rem);
  height: var(--spacing-48-rem);
  aspect-ratio: 1/1;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  background-color: var(--color-container-default-lightest);
  filter: drop-shadow(0 calc(-3 / var(--size-rem-base) * 1rem) calc(6 / var(--size-rem-base) * 1rem) rgba(51, 51, 51, 0.06)) drop-shadow(0 0 calc(2 / var(--size-rem-base) * 1rem) rgba(85, 85, 85, 0.08));
}
.w-large-photo-module-spotlight__text-column {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  justify-content: center;
  align-items: var(--large-photo-module-spotlight-align-items, center);
  min-width: 0;
}
.w-large-photo-module-spotlight__location {
  text-align: var(--large-photo-module-spotlight-text-align, center);
}
.w-large-photo-module-spotlight__location--bold {
  --web-type-values-body-md-reg-weight: var( --web-type-values-body-md-bold-weight );
}
.w-large-photo-module-spotlight__title {
  align-self: stretch;
  text-align: var(--large-photo-module-spotlight-text-align, center);
}
.w-large-photo-module-spotlight__title-link {
  color: inherit;
  text-decoration: none;
}
.w-large-photo-module-spotlight__title-link:hover {
  text-decoration: underline;
}
.w-large-photo-module-spotlight__info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: var(--spacing-32-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__info-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
}
.w-large-photo-module-spotlight__badges {
  display: flex;
  align-items: center;
  gap: var(--spacing-8-rem);
}
.w-large-photo-module-spotlight__ctas {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--spacing-8-rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-spotlight__ctas {
    margin-left: auto;
  }
}

.w-large-photo-module {
  width: 100%;
  aspect-ratio: var(--large-photo-module-aspect-ratio, 375/562);
  position: relative;
  box-shadow: 0 var(--spacing-2-rem) var(--spacing-20-rem) 0 rgba(0, 0, 0, .08);
}
.w-large-photo-module--appearance-card {
  border-radius: var(--corner-radius-lg-rem);
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-large-photo-module {
    --large-photo-module-aspect-ratio: 769.07 / 432;
  }
}
@media (min-width: 1024px) {
  .w-large-photo-module {
    --large-photo-module-aspect-ratio: 1023.64 / 575;
  }
}
@media (min-width: 1280px) {
  .w-large-photo-module {
    --large-photo-module-aspect-ratio: 1280 / 719;
    max-height: calc(719/var(--size-rem-base)*1rem);
  }
}
.w-large-photo-module__container {
  position: absolute;
  inset: 0;
}
.w-large-photo-module__container--overlay {
  background: var(--color-container-default-tone-50, rgba(0, 0, 0, 0.5));
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__container {
  background: var(--color-container-default-tone-50);
}
.w-large-photo-module__container--overlay-gradient {
  background: var(--large-photo-module-container-gradient, linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, var(--color-container-default-tone-80) 90%));
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__container--overlay-gradient {
  --large-photo-module-container-gradient:
    linear-gradient(
      
      0deg,
      var(--color-container-default-lightest-on-image-80) 0%,
      var(--color-container-default-lightest-on-image-80) 100% );
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__container--overlay:not(.w-large-photo-module__container--overlay-gradient) {
  background: var(--color-container-default-lightest-on-image-50, rgba(255, 255, 255, 0.5));
}
.w-large-photo-module__text-container {
  color: var(--color-fg-default-primary-inverted);
  text-align: var(--large-photo-module-text-align, center);
  display: flex;
  flex-direction: column;
  align-items: var(--large-photo-module-align-item, center);
  gap: var(--spacing-24-rem);
  position: absolute;
  inset: var(--large-photo-module-text-container-top, 50%) var(--large-photo-module-text-container-right, auto) var(--large-photo-module-text-container-bottom, auto) var(--large-photo-module-text-container-left, 50%);
  width: var(--large-photo-module-text-width, 100%);
  transform: var(--large-photo-module-text-container-transform, translate(-50%, -50%));
  padding: var(--large-photo-module-text-container-padding, var(--spacing-24-rem) var(--spacing-12-rem));
}
@media (min-width: 768px) {
  .w-large-photo-module__text-container {
    --large-photo-module-text-width: calc(458 / var(--size-rem-base) * 1rem);
    --large-photo-module-text-align: center;
  }
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__text-container {
  color: var(--color-fg-default-primary);
}
.w-large-photo-module--layout-bottom-text .w-large-photo-module__text-container {
  --large-photo-module-text-width: 100%;
  --large-photo-module-text-align: center;
  --large-photo-module-align-item: flex-start;
  --large-photo-module-text-container-transform: none;
  --large-photo-module-text-container-top: auto;
  --large-photo-module-text-container-left: auto;
  --large-photo-module-text-container-right: auto;
  --large-photo-module-text-container-bottom: 0;
}
@media (min-width: 768px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__text-container {
    --large-photo-module-text-align: left;
    --large-photo-module-text-container-padding: var(--spacing-32-rem);
  }
}
.w-large-photo-module__info-container {
  display: flex;
  flex-direction: var(--large-photo-module-info-container-flex-direction, column);
  gap: var(--spacing-24-rem);
  align-items: center;
}
.w-large-photo-module--layout-bottom-text .w-large-photo-module__info-container {
  width: 100%;
}
@media (min-width: 1024px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__info-container {
    --large-photo-module-info-container-flex-direction: row;
    justify-content: space-between;
  }
}
.w-large-photo-module__subheading {
  padding: var(--spacing-12-rem) var(--spacing-32-rem);
}
.w-large-photo-module--layout-bottom-text .w-large-photo-module__subheading {
  border-radius: var(--corner-radius-md-rem);
  background: var(--color-container-default-lightest-on-image-35);
  backdrop-filter: blur(calc(var(--effect-bg-blur-on-image-rem) / 2));
}
@media (min-width: 1024px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__subheading {
    min-width: 0;
  }
}
.w-large-photo-module__link {
  color: var(--color-fg-brand-link-inverted);
  text-decoration: none;
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__link {
  color: var(--color-fg-brand-link);
}
@media (min-width: 1024px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__link {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .w-large-photo-module--layout-bottom-text .w-large-photo-module__button {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
.w-large-photo-module__background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.w-large-photo-module__caption {
  color: var(--color-fg-default-primary-inverted);
  position: absolute;
  bottom: var(--large-photo-module-caption-bottom, var(--spacing-16-rem));
  left: var(--large-photo-module-caption-left, var(--spacing-16-rem));
  right: var(--large-photo-module-caption-right, var(--spacing-16-rem));
  padding: var(--spacing-12-rem) var(--spacing-16-rem);
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .w-large-photo-module__caption {
    --large-photo-module-caption-left: var(--spacing-24-rem);
    --large-photo-module-caption-right: var(--spacing-24-rem);
    --large-photo-module-caption-bottom: var(--spacing-24-rem);
  }
}
.w-large-photo-module--overlay-color-light .w-large-photo-module__caption {
  color: var(--color-fg-default-primary);
}
.w-large-photo-module--clickable {
  cursor: pointer;
  transition: transform .2s ease;
}
.w-large-photo-module--clickable:hover {
  transform: scale(1.02);
}
.w-large-photo-module--clickable:focus-visible {
  outline: 2px solid var(--color-border-brand-primary);
  outline-offset: 2px;
}

.w-large-photo-module-carousel {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(100% + .5*var(--true-viewport-width, 100vw) - 50%);
  margin-right: calc(50% - .5*var(--true-viewport-width, 100vw));
}
.w-large-photo-module-carousel__navigation {
  justify-content: center;
  padding: var(--spacing-32-rem) 0;
}
.w-large-photo-module-carousel .swiper-slide {
  --large-photo-module-carousel-slide-width: calc( (100vw - calc(12 / var(--size-rem-base) * 1rem)) / 1.1 );
  width: min(100%, var(--large-photo-module-carousel-slide-width));
  max-width: calc(939/var(--size-rem-base)*1rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel .swiper-slide {
    --large-photo-module-carousel-slide-width: calc( (100vw - calc(48 / var(--size-rem-base) * 1rem)) / 1.3 );
  }
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel .swiper-slide-prev:not(.w-large-photo-module-carousel--centered-slides *) {
    transition: visibility 0s linear 400ms;
    visibility: hidden;
  }
}
.w-large-photo-module-carousel .swiper-wrapper {
  transition-timing-function: ease-in-out;
}
.w-large-photo-module-carousel--centered-slides.swiper-autoheight .swiper-wrapper {
  align-items: center;
}

.w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel {
  margin-left: var(--spacing-12-rem);
  width: auto;
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel {
    margin-left: 0;
  }
}
.w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide {
  --swipper-slide-variation-height-padding-support: calc(64 / var(--size-rem-base) * 1rem);
  max-width: calc(322/var(--size-rem-base)*1rem);
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide {
    --large-photo-module-carousel-merch-slide-width: calc(574 / var(--size-rem-base) * 1rem);
    width: var(--large-photo-module-carousel-merch-slide-width);
    max-width: var(--large-photo-module-carousel-merch-slide-width);
  }
}
@media (min-width: 1024px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide {
    --large-photo-module-carousel-merch-slide-width: calc(784 / var(--size-rem-base) * 1rem);
    max-width: var(--large-photo-module-carousel-merch-slide-width);
  }
}
@media (min-width: 1280px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide {
    --large-photo-module-carousel-merch-slide-width: calc(936 / var(--size-rem-base) * 1rem);
    max-width: var(--large-photo-module-carousel-merch-slide-width);
  }
}
@media (min-width: 768px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide:not(.swiper-slide-active) {
    --large-photo-module-carousel-merch-slide-width: calc(489 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 1024px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide:not(.swiper-slide-active) {
    --large-photo-module-carousel-merch-slide-width: calc(701 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 1280px) {
  .w-large-photo-module-carousel-merchandising .w-large-photo-module-carousel--centered-slides .swiper-slide:not(.swiper-slide-active) {
    --large-photo-module-carousel-merch-slide-width: calc(855 / var(--size-rem-base) * 1rem);
  }
}

.w-modal {
  position: fixed;
  inset: var(--modal-inset, auto auto 0 50%);
  transform: var(--modal-transform, translateX(-50%));
  background-color: var(--color-container-default-lightest);
  border-radius: var(--modal-border-radius, var(--corner-radius-lg-rem) var(--corner-radius-lg-rem) 0 0);
  border: none;
  padding: 0;
  min-height: 0;
  width: var(--modal-width, 100vw);
  max-width: var(--modal-max-width, 100vw);
  max-height: var(--modal-max-height, calc(100vh - var(--spacing-40-rem)));
  height: auto;
  overflow: hidden;
}
@supports (height: 100dvh) {
  .w-modal {
    --modal-max-height: calc(100dvh - var(--spacing-40-rem));
  }
}
@media (min-width: 375px) {
  .w-modal {
    --modal-width: calc(100vw - var(--spacing-24-rem));
    --modal-max-width: calc(640 / var(--size-rem-base) * 1rem);
  }
}
@media (width <= 375px) {
  .w-modal {
    --modal-width: 100vw;
    --modal-max-width: 100vw;
  }
}
@media (min-width: 768px) {
  .w-modal {
    --modal-border-radius: var(--corner-radius-lg-rem);
    --modal-max-height: calc(100vh - var(--spacing-32-rem));
    --modal-inset: 50% auto auto 50%;
    --modal-transform: translate(-50%, -50%);
  }
  @supports (height: 100dvh) {
    .w-modal {
      --modal-max-height: calc(100dvh - var(--spacing-32-rem));
    }
  }
}
@media (min-width: 1024px) {
  .w-modal {
    --modal-max-width: auto;
    --modal-max-height: calc(720 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 1024px) {
  .w-modal--size-small .w-modal {
    --modal-width: calc(480 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 768px) {
  .w-modal--size-small.w-modal--width-fixed .w-modal {
    --modal-width: calc(480 / var(--size-rem-base) * 1rem);
    --modal-max-width: calc(480 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 1024px) {
  .w-modal--size-large .w-modal {
    --modal-width: calc(936 / var(--size-rem-base) * 1rem);
  }
}
.w-modal--layout-keep-in-touch .w-modal {
  --modal-width: 100vw;
  --modal-max-width: 100vw;
  --modal-max-height: calc(100vh - var(--spacing-40-rem));
  --modal-inset: var(--spacing-40-rem) 0 0 50%;
  --modal-transform: translateX(-50%);
  --modal-border-radius: var(--corner-radius-lg-rem) var(--corner-radius-lg-rem) 0 0;
  --modal-header-padding: var(--spacing-16-rem) var(--spacing-20-rem);
  --modal-body-padding: var(--spacing-12-rem);
  --modal-body-padding-lg: var(--spacing-12-rem);
  --modal-footer-padding: var(--spacing-16-rem);
}
@supports (height: 100dvh) {
  .w-modal--layout-keep-in-touch .w-modal {
    --modal-max-height: calc(100dvh - var(--spacing-40-rem));
  }
}
@media (min-width: 768px) {
  .w-modal--layout-keep-in-touch .w-modal {
    --modal-width: calc(100vw - (var(--spacing-64-rem) * 2));
    --modal-max-width: calc(640 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 1024px) {
  .w-modal--layout-keep-in-touch .w-modal {
    --modal-width: calc(480 / var(--size-rem-base) * 1rem);
    --modal-max-width: calc(480 / var(--size-rem-base) * 1rem);
    --modal-max-height: calc(100vh - (var(--spacing-40-rem) * 2));
    --modal-inset: 50% auto auto 50%;
    --modal-transform: translate(-50%, -50%);
    --modal-border-radius: var(--corner-radius-lg-rem);
  }
  @supports (height: 100dvh) {
    .w-modal--layout-keep-in-touch .w-modal {
      --modal-max-height: calc(100dvh - (var(--spacing-40-rem) * 2));
    }
  }
}
.w-modal--layout-preference-mobile-card .w-modal {
  --modal-width: calc(100vw - var(--spacing-24-rem));
  --modal-max-width: calc(350 / var(--size-rem-base) * 1rem);
  --modal-max-height: calc(100vh - var(--spacing-32-rem));
  --modal-inset: 50% auto auto 50%;
  --modal-transform: translate(-50%, -50%);
  --modal-border-radius: var(--corner-radius-lg-rem);
}
@supports (height: 100dvh) {
  .w-modal--layout-preference-mobile-card .w-modal {
    --modal-max-height: calc(100dvh - var(--spacing-32-rem));
  }
}
.w-modal--position-top .w-modal {
  --modal-inset: var(--spacing-40-rem) auto auto 50%;
  --modal-transform: translateX(-50%);
  --modal-max-height: calc(100vh - var(--spacing-40-rem));
}
@supports (height: 100dvh) {
  .w-modal--position-top .w-modal {
    --modal-max-height: calc(100dvh - var(--spacing-40-rem));
  }
}
@media (min-width: 1024px) {
  .w-modal--position-top .w-modal {
    --modal-max-height: calc(100vh - (var(--spacing-40-rem) * 2));
  }
  @supports (height: 100dvh) {
    .w-modal--position-top .w-modal {
      --modal-max-height: calc(100dvh - (var(--spacing-40-rem) * 2));
    }
  }
}
@media (min-width: 768px) {
  .w-modal--position-center .w-modal {
    --modal-width: calc(100vw - var(--spacing-128-rem));
    --modal-max-width: calc(640 / var(--size-rem-base) * 1rem);
    --modal-max-height: calc(100vh - var(--spacing-32-rem));
    --modal-inset: 50% auto auto 50%;
    --modal-transform: translate(-50%, -50%);
    --modal-border-radius: var(--corner-radius-lg-rem);
  }
  @supports (height: 100dvh) {
    .w-modal--position-center .w-modal {
      --modal-max-height: calc(100dvh - var(--spacing-32-rem));
    }
  }
}
@media (min-width: 1024px) {
  .w-modal--position-center .w-modal {
    --modal-width: calc(480 / var(--size-rem-base) * 1rem);
    --modal-max-width: auto;
    --modal-max-height: calc(100vh - (var(--spacing-40-rem) * 2));
  }
  @supports (height: 100dvh) {
    .w-modal--position-center .w-modal {
      --modal-max-height: calc(100dvh - (var(--spacing-40-rem) * 2));
    }
  }
}
.w-modal[open] {
  display: flex;
  flex-direction: column;
}
.w-modal::backdrop {
  background-color: var(--color-container-default-tone-80);
}
@media (min-width: 1024px) {
  .w-modal.w-modal--rollover-nights::backdrop {
    background-color: var(--color-container-default-tone-50);
  }
}
.w-modal.w-modal--privacy-notice::backdrop {
  background-color: var(--color-container-default-tone-50);
}
.w-modal__header {
  display: flex;
  flex-shrink: 0;
  gap: var(--spacing-8-rem);
  align-items: center;
  padding: var(--modal-header-padding, var(--spacing-16-rem) var(--spacing-24-rem));
  border-bottom: var(--modal-header-border-bottom, calc(1 / var(--size-rem-base) * 1rem) solid var(--color-border-default-subtle));
}
.w-modal__header.w-modal__header--no-divider {
  border-bottom: none;
}
.w-modal__header-close-button {
  margin-inline-start: auto;
  --button-color: var(--color-fg-default-primary);
  --button-color-hover: var(--color-fg-default-primary);
  --button-color-pressed: var(--color-fg-default-primary);
}
.w-modal__title-truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.w-modal__body {
  padding: var(--modal-body-padding, var(--spacing-16-rem) var(--spacing-12-rem));
  flex: 0 1 auto;
  min-height: 0;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .w-modal--no-footer .w-modal__body {
    border-radius: 0 0 var(--corner-radius-lg-rem) var(--corner-radius-lg-rem);
  }
}
@media (min-width: 1024px) {
  .w-modal__body {
    padding: var(--modal-body-padding-lg, var(--modal-body-padding, var(--spacing-16-rem) var(--spacing-16-rem)));
  }
}
.w-modal--background-subtle .w-modal__body {
  background-color: var(--color-container-default-subtle);
}
.w-modal--background-light .w-modal__body {
  background-color: var(--color-container-default-lightest);
}
.w-modal__footer {
  padding: var(--modal-footer-padding, var(--spacing-24-rem));
  border-top: calc(1/var(--size-rem-base)*1rem) solid var(--color-border-default-subtle);
  display: flex;
  flex-shrink: 0;
  justify-content: end;
  gap: var(--spacing-8-rem);
}
.w-modal__footer-link {
  margin-inline-end: auto;
}
.w-modal--header-borderless .w-modal__header {
  border-bottom: none;
  padding: var(--spacing-16-rem);
}
.w-modal--body-flush .w-modal__body {
  padding: 0;
}
@media (min-width: 1024px) {
  .w-modal--body-flush .w-modal__body {
    padding: 0;
  }
}
.w-modal.w-modal--rollover-nights {
  --modal-header-padding: var(--spacing-8-rem) var(--spacing-24-rem);
  height: calc(350/var(--size-rem-base)*1rem);
  max-height: var(--modal-max-height);
}
.w-modal.w-modal--rollover-nights .w-modal__header {
  height: calc(var(--spacing-40-rem) + var(--spacing-20-rem));
}
.w-modal.w-modal--rollover-nights .w-modal__body {
  flex: 1 1 auto;
}
.w-modal.w-modal--rollover-nights .w-modal__footer {
  align-items: center;
  height: var(--spacing-80-rem);
}
.w-modal.w-modal--legal {
  --modal-width: calc(100vw - var(--spacing-24-rem));
  --modal-max-width: calc(350 / var(--size-rem-base) * 1rem);
  --modal-inset: var(--spacing-32-rem) auto auto 50%;
  --modal-transform: translateX(-50%);
  --modal-border-radius: var(--corner-radius-lg-rem) var(--corner-radius-lg-rem) 0 0;
  --modal-max-height: calc(100vh - var(--spacing-32-rem));
  min-height: calc(350/var(--size-rem-base)*1rem);
  height: var(--modal-max-height);
  overflow: hidden;
}
@supports (height: 100dvh) {
  .w-modal.w-modal--legal {
    --modal-max-height: calc(100dvh - var(--spacing-32-rem));
  }
}
.w-modal.w-modal--legal .w-modal__body {
  font-weight: var(--web-type-values-body-md-reg-weight);
  font-size: calc(var(--web-type-values-body-md-reg-size)/var(--size-rem-base)*1rem);
  line-height: calc(var(--web-type-values-body-md-reg-line-height)/var(--size-rem-base)*1rem);
  letter-spacing: calc(var(--web-type-values-body-md-reg-letter-spacing)/var(--size-rem-base)*1rem);
  flex: 1 1 auto;
  padding: var(--spacing-16-rem) var(--spacing-12-rem);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.w-modal.w-modal--legal .w-modal__body a {
  display: inline;
  overflow-wrap: anywhere;
}
.w-modal.w-modal--legal .w-modal__body .cmp-text p,
.w-modal.w-modal--legal .w-modal__body .cmp-text ul,
.w-modal.w-modal--legal .w-modal__body .cmp-text ol {
  margin-bottom: var(--spacing-16-rem);
}
.w-modal.w-modal--legal .w-modal__body .cmp-text p:last-child,
.w-modal.w-modal--legal .w-modal__body .cmp-text ul:last-child,
.w-modal.w-modal--legal .w-modal__body .cmp-text ol:last-child {
  margin-bottom: 0;
}
.w-modal.w-modal--legal .w-modal__body .cmp-text ul,
.w-modal.w-modal--legal .w-modal__body .cmp-text ol {
  padding-inline-start: var(--spacing-32-rem);
}
.w-modal.w-modal--legal .w-modal__body .cmp-text ul {
  list-style: disc;
}
.w-modal.w-modal--legal .w-modal__body .cmp-text ol {
  list-style: decimal;
}
.w-modal.w-modal--legal .w-modal__body .cmp-text li {
  margin-bottom: var(--spacing-8-rem);
}
.w-modal.w-modal--legal .w-modal__body .cmp-text b,
.w-modal.w-modal--legal .w-modal__body .cmp-text strong {
  font-weight: var(--web-type-values-body-md-semi-weight);
}
.w-modal.w-modal--legal .w-modal__header {
  box-sizing: border-box;
  height: calc(60/var(--size-rem-base)*1rem);
  min-height: calc(60/var(--size-rem-base)*1rem);
  padding-block: var(--spacing-8-rem);
}
@media (min-width: 768px) {
  .w-modal.w-modal--legal {
    --modal-width: calc(100vw - var(--spacing-128-rem));
    --modal-max-width: calc(640 / var(--size-rem-base) * 1rem);
  }
}
@media (min-width: 1024px) {
  .w-modal.w-modal--legal {
    --modal-width: calc(936 / var(--size-rem-base) * 1rem);
    --modal-max-width: auto;
    --modal-max-height: calc(720 / var(--size-rem-base) * 1rem);
    --modal-inset: 50% auto auto 50%;
    --modal-transform: translate(-50%, -50%);
    --modal-border-radius: var(--corner-radius-lg-rem);
    height: var(--modal-max-height);
  }
  .w-modal.w-modal--legal .w-modal__body {
    padding: var(--modal-body-padding-lg, var(--modal-body-padding, var(--spacing-16-rem) var(--spacing-16-rem)));
  }
}
.w-modal.w-modal--privacy-notice .cmp-contentfragment__title,
.w-modal.w-modal--privacy-notice .cmp-contentfragment__element-title {
  display: none;
}
.w-modal--room-details-booking {
  --room-details-booking-body-inline: var(--spacing-12-rem);
  --room-details-booking-room-inset: var(--spacing-12-rem);
}
@media (min-width: 768px) {
  .w-modal--room-details-booking {
    --room-details-booking-body-inline: var(--spacing-16-rem);
    --room-details-booking-room-inset: calc( var(--spacing-16-rem) + var(--spacing-4-rem) );
  }
}
.w-modal--room-details-booking {
  --modal-header-padding: var(--spacing-8-rem) var(--room-details-booking-room-inset);
  --modal-body-padding: var(--spacing-16-rem) var(--room-details-booking-body-inline) 0;
  --modal-body-padding-lg: var(--spacing-16-rem) var(--spacing-16-rem) 0;
}
.w-modal--room-details-booking .w-modal__header {
  box-sizing: border-box;
  min-height: calc(60/var(--size-rem-base)*1rem);
}
.w-modal--room-details-booking .w-modal__body {
  min-width: 0;
  overflow-x: hidden;
}
.w-modal--room-details-booking .w-modal__header.w-modal__header--no-divider {
  border-bottom: calc(1/var(--size-rem-base)*1rem) solid var(--color-border-default-subtle);
}
.w-modal--room-details-booking .w-modal__footer {
  box-sizing: border-box;
  align-items: center;
  min-height: var(--spacing-80-rem);
  height: var(--spacing-80-rem);
  padding: var(--spacing-12-rem) var(--room-details-booking-room-inset);
  border-top: calc(1/var(--size-rem-base)*1rem) solid var(--color-border-default-subtle, #bec9d8);
  background-color: var(--color-container-default-lightest);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .w-modal--room-details-booking .w-modal__footer {
    padding: var(--spacing-24-rem) var(--room-details-booking-room-inset);
  }
}
@media (min-width: 1024px) {
  .w-modal--room-details-booking .w-modal__footer {
    padding: var(--spacing-24-rem);
  }
}
.w-modal--room-details-booking .w-modal__header-close-button {
  flex-shrink: 0;
  --button-min-width: 0;
  min-width: 0;
  box-sizing: border-box;
  padding: 0;
}

.w-divider {
  width: var(--divider-width);
  height: var(--divider-height);
  background-color: var(--divider-background-color);
}
.w-divider--background-light {
  --divider-background-color: var(--color-border-default-subtle);
}
.w-divider--background-dark {
  --divider-background-color: var(--color-border-default-subtle-inverted);
}
.w-divider--direction-horizontal {
  --divider-width: 100%;
  --divider-height: 1px;
}
.w-divider--direction-vertical {
  --divider-width: 1px;
  --divider-height: 100%;
}


/*# sourceMappingURL=c-feature-carousel.e93bb8f4.css.map*/