.gw-title {
  font: var(--font-headline-l);
  margin-bottom: var(--space-100);
}
@charset "UTF-8";
.gw-usps_container {
  grid-area: usps;
}

.gw-usps_heading {
  font: var(--font-headline-s);
  margin: 0px 0px var(--space-400);
}

@media (min-width: 768px) {
  .gw-usps {
    display: flex;
    gap: var(--space-1000);
  }
}

.gw-usp-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: var(--space-400);
}

.gw-usp-list__item {
  align-items: center;
  display: flex;
  margin: var(--space-100) 0px;
  position: relative;
}
@media (min-width: 768px) {
  .gw-usp-list__item {
    display: inline-flex;
    margin: var(--space-100) 0px;
  }
  .gw-usp-list__item .gw-usp-list__item:nth-child(2n) {
    white-space: nowrap;
  }
}

.gw-usp-list__item--standard {
  padding-left: var(--space-300);
}
.gw-usp-list__item--standard:before {
  color: var(--color-dark-core-500);
  content: "\2022";
  font-size: 2rem;
  left: 0;
  position: absolute;
  top: -3px;
}

.gw-usp-list__item--past-limit {
  display: none;
}
@media (min-width: 768px) {
  .gw-usp-list__item--past-limit {
    display: inline-flex;
  }
}

.gw-usp-list--is-expanded .gw-usp-list__item--past-limit {
  display: flex;
}
@media (min-width: 768px) {
  .gw-usp-list--is-expanded .gw-usp-list__item--past-limit {
    display: inline-flex;
  }
}

button.gw-usp-list__expand-link {
  display: block;
  margin: var(--space-500) auto var(--space-100);
  text-align: center;
}
@media (min-width: 768px) {
  button.gw-usp-list__expand-link {
    display: none;
  }
}

.gw-usp-list-item__icon {
  margin-right: var(--space-300);
}
.gw-cruise-description-readMore {
  margin-top: var(--space-500);
  display: flex;
  flex-direction: column;
  gap: var(--space-400);
}
@media (min-width: 1024px) {
  .gw-cruise-description-readMore {
    flex-direction: row;
  }
}
.gw-cruise-description-readMore > a, .gw-cruise-description-readMore > button {
  width: 100%;
  justify-content: center;
}
@media (min-width: 1024px) {
  .gw-cruise-description-readMore > a, .gw-cruise-description-readMore > button {
    height: auto;
  }
}

.gw-cruise-description-readMore__route-popup-button {
  border: 1px solid var(--color-grey-300);
  padding: var(--space-400);
  font: var(--font-headline-s);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-300);
}
@media (min-width: 768px) {
  .gw-cruise-description-readMore__route-popup-button {
    padding: var(--space-500);
    margin: 0px;
  }
}
body:not(.globetrotter) .gw-cruise-route-pop-up__accordion {
  border-radius: unset;
  box-shadow: unset;
  background-color: unset;
}

.gw-cruise-route-pop-up__footnote {
  padding-top: var(--space-300);
  color: var(--color-text-subtle);
}
.gw-key-selling-points {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-200);
}

.gw-key-selling-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-100);
  padding: var(--space-100) var(--space-200);
  background-color: var(--color-sand-100);
  color: var(--color-grey-800);
  font: var(--font-body-m);
}
.theme-default .gw-key-selling-points li {
  border-radius: var(--border-radius-200);
}
.globetrotter .gw-cruise-description__view .gw-key-selling-points li {
  font: var(--font-mini);
  background-color: var(--color-quartz-200);
  color: var(--color-background-surface-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  border-radius: 0;
}
@media (min-width: 1024px) {
  .gw-key-selling-points li {
    padding: 6px var(--space-300);
  }
}
.gw-cruise-description__view {
  position: relative;
}

.gw-cruise-description__top-container {
  display: grid;
  margin-bottom: var(--space-600);
  grid-template-areas: "tags" "titles" "side" "usps";
}
.globetrotter .gw-cruise-description__top-container {
  grid-template-areas: "titles" "side" "usps";
}
@media (min-width: 768px) {
  .gw-cruise-description__top-container {
    grid-template-columns: 3fr 1fr;
    row-gap: var(--space-600);
    grid-template-areas: "tags tags" "titles side" "usps usps";
  }
  .globetrotter .gw-cruise-description__top-container {
    grid-template-areas: "titles side" "usps usps";
  }
}

.gw-cruise-tags {
  grid-area: tags;
  margin-bottom: var(--space-300);
}
@media (min-width: 768px) {
  .gw-cruise-tags {
    margin-bottom: calc(var(--space-500) * -1);
  }
}

.gw-cruise-description__titles {
  grid-area: titles;
  display: flex;
  flex-direction: column;
  gap: var(--space-200);
}
@media (min-width: 768px) {
  .gw-cruise-description__titles {
    align-items: flex-start;
    text-align: left;
  }
}

.gw-cruise-description__sub-title-and-rating {
  display: flex;
  align-items: center;
  gap: var(--space-200);
}
@media (min-width: 768px) {
  .gw-cruise-description__sub-title-and-rating {
    flex-direction: row;
  }
}

.gw-cruise-description__sub-title {
  font: var(--font-headline-m);
  color: var(--color-grey-400);
}
@media (min-width: 768px) {
  .gw-cruise-description__sub-title {
    font-size: 2.4rem;
  }
}
.globetrotter .gw-cruise-description__sub-title {
  font: var(--font-body-m);
  color: var(--color-text);
}

.gw-cruise-description__ksps {
  margin-top: var(--space-400);
}

.gw-usp-list-item__icon {
  fill: var(--color-grass-500);
}
.globetrotter .gw-usp-list-item__icon {
  fill: none;
}

.gw-cruise-description__top-side-bar {
  margin: var(--space-500) 0px;
  text-align: center;
  grid-area: side;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .gw-cruise-description__top-side-bar {
    align-self: end;
    justify-self: end;
    margin: 0px;
    text-align: left;
    flex-direction: column;
  }
}
.gw-cruise-description__top-side-bar #gtm-cruisepage-pricebutton {
  max-height: fit-content;
}
@media screen and (min-width: 768px) {
  .gw-cruise-description__top-side-bar #gtm-cruisepage-pricebutton {
    max-height: unset;
  }
}

@media (min-width: 768px) {
  .globetrotter .gw-cruise-description__price-wrapper {
    margin-bottom: var(--space-300);
    width: 100%;
  }
}

.gw-cruise-description__price {
  font-family: var(--font-family-headline);
  font-size: 3.8rem;
  font-weight: 700;
}
.globetrotter .gw-cruise-description__price {
  font-weight: 300;
}
.gw-cruise-description__price--red {
  color: var(--color-ruby-500);
}

.gw-cruise-description__bottom-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .gw-cruise-description__bottom-wrapper {
    align-items: flex-start;
  }
}
.globetrotter .gw-cruise-description__bottom-wrapper {
  position: relative;
  align-items: flex-end;
}

.gw-cruise-description__route-image img {
  width: 100%;
}

.gw-cruise-description__route-popup-button {
  margin: var(--space-grid-row-gap) 0px 0;
}
.gw-cruise-route-description-container {
  display: flex;
  flex-flow: column nowrap;
  gap: var(--space-500);
}

.gw-cruise-route-description__route-image img {
  width: 100%;
}
.gw-cruise-ship-quick-facts-container {
  width: 100%;
  background-color: var(--color-background-surface-secondary);
  border-radius: var(--border-radius-500);
  padding: var(--space-400);
  grid-area: facts;
}
@media (min-width: 768px) {
  .gw-cruise-ship-quick-facts-container {
    width: 220px;
  }
}
.globetrotter .gw-cruise-ship-quick-facts-container {
  background-color: transparent;
  padding: 0px;
}
@media (min-width: 768px) {
  .globetrotter .gw-cruise-ship-quick-facts-container {
    width: 390px;
  }
}

.gw-cruise-ship-quick-facts-heading {
  font: var(--font-headline-xs);
  margin-bottom: var(--space-500);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .gw-cruise-ship-quick-facts-heading {
    margin-bottom: var(--space-300);
  }
}
.globetrotter .gw-cruise-ship-quick-facts-heading {
  font: var(--font-headline-s);
  margin-bottom: var(--space-300);
  font-weight: 500;
  text-align: left;
  text-transform: none;
  padding-left: 0px;
}
@media (min-width: 768px) {
  .globetrotter .gw-cruise-ship-quick-facts-heading {
    padding-left: var(--space-500);
  }
}

.gw-cruise-ship-quick-facts {
  display: block;
  font: var(--font-body-m);
  width: 100%;
}
@media (min-width: 768px) {
  .gw-cruise-ship-quick-facts {
    font: var(--font-body-s);
  }
}
.globetrotter .gw-cruise-ship-quick-facts {
  font: var(--font-headline-xs);
  border-bottom: 0.5px solid var(--color-grey-300);
  padding: 0px 0px var(--space-600);
}
@media (min-width: 768px) {
  .globetrotter .gw-cruise-ship-quick-facts {
    padding: 0px var(--space-500) var(--space-700);
  }
}

.gw-cruise-ship-quick-fact {
  box-sizing: border-box;
  display: flex;
  padding: var(--space-50) 0px;
}
@media (min-width: 768px) {
  .gw-cruise-ship-quick-fact {
    justify-content: space-between;
    padding: 5px 0px;
    width: 100%;
  }
}

.gw-cruise-ship-quick-fact__title {
  flex-grow: 1;
}

.gw-cruise-ship-quick-fact__value {
  font: var(--font-headline-xs);
}
.gw-cruise-ship-description-content {
  position: relative;
}

.gw-cruise-ship-tags {
  margin-bottom: var(--space-400);
}

.gw-cruise-ship-description-container {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  grid-template-areas: "titles" "main" "expand" "facts";
}
@media (min-width: 768px) {
  .gw-cruise-ship-description-container {
    gap: 0 50px;
    grid-template-columns: 33%;
    grid-template-areas: "titles titles titles" "main main facts" "expand expand facts";
  }
  .gw-cruise-ship-description-container--expanded {
    grid-template-areas: "titles titles titles" "main main facts" "main main ." "expand expand .";
  }
}

.gw-cruise-ship-description__titles {
  grid-area: titles;
}

.gw-cruise-ship-description__title {
  font: var(--font-headline-m);
}
@media (min-width: 768px) {
  .gw-cruise-ship-description__title {
    font: var(--font-headline-l);
  }
}

.gw-cruise-ship-description__subtitle-and-rating {
  display: flex;
  align-items: center;
  margin-top: var(--space-100);
}
@media (min-width: 768px) {
  .gw-cruise-ship-description__subtitle-and-rating {
    margin-top: var(--space-200);
  }
}

.gw-cruise-ship-description__sub-title {
  color: var(--color-grey-400);
  margin-right: var(--space-300);
  font: var(--font-body-m);
}
@media (min-width: 768px) {
  .gw-cruise-ship-description__sub-title {
    margin-right: 0px;
  }
}
.globetrotter .gw-cruise-ship-description__sub-title {
  color: var(--color-grey-700);
}

.gw-cruise-ship-description-rating {
  margin: var(--space-100) 0px var(--space-200);
}
@media (min-width: 768px) {
  .gw-cruise-ship-description-rating {
    margin: 0px 0px 0px var(--space-300);
  }
}

.gw-cruise-ship-description__description-title {
  margin: var(--space-500) 0 var(--space-200);
  font: var(--font-headline-s);
}

.gw-cruise-ship-description__description {
  grid-area: main;
  line-height: 2.4rem;
  margin-bottom: var(--space-600);
}
@media (min-width: 768px) {
  .gw-cruise-ship-description__description {
    margin-bottom: 0px;
  }
}

.gw-cruise-ship-description__read-more {
  margin-top: var(--space-500);
}

.gw-cruise-ship-description-top-content {
  padding: 0px var(--space-400) var(--space-400);
  order: 1;
}
@media (min-width: 768px) {
  .gw-cruise-ship-description-top-content {
    width: 69%;
    padding: 0px 52px var(--space-300) 32px;
    order: 0;
  }
}

.gw-cruise-ship-description-paragraph {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gw-cruise-ship-description-paragraph {
    -webkit-line-clamp: 8;
  }
}
.gw-cruise-ship-description-paragraph--expanded {
  display: inline;
}

.gw-cruise-ship-description__facilities-header {
  font: var(--font-section-heading);
  text-transform: uppercase;
  margin: var(--space-section-margin) 0px var(--space-grid-row-gap);
}
.globetrotter .gw-cruise-ship-description__facilities-header {
  font: var(--font-headline-l);
  text-transform: none;
  color: var(--color-almostblack);
}

.gw-cruise-ship-description__facilities-content {
  position: relative;
}
.globetrotter .gw-cruise-ship-description__facilities-content {
  background-color: transparent;
  box-shadow: unset;
}

.gw-cruise-ship-description__facility-list-header {
  font: var(--font-headline-s);
}

.gw-cruise-ship-description__facility-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-100) var(--space-300);
  margin: var(--space-500) 0px var(--space-600);
}
.gw-cruise-ship-description__facility-category:last-child .gw-cruise-ship-description__facility-list {
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .gw-cruise-ship-description__facility-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    margin: var(--space-500) 0px var(--space-700);
  }
}

.gw-cruise-ship-description__facility-li {
  display: inline-flex;
  gap: var(--space-200);
  margin-bottom: var(--space-300);
}

.gw-cruise-ship-description__facility-icon {
  color: var(--color-grass-500);
}
.globetrotter .gw-cruise-ship-description__facility-icon {
  color: var(--color-black);
}
@media (min-width: 1024px) {
  .globetrotter .gw-cruise-sc-faq-container {
    display: grid;
    grid-template-columns: 30% 70%;
  }
}

.gw-cruise-sc-faq__header {
  font: var(--font-section-heading);
  text-transform: uppercase;
  margin: 0px auto 20px;
  padding: var(--space-600) var(--space-200) var(--space-200);
}
@media (min-width: 768px) {
  .gw-cruise-sc-faq__header {
    padding: var(--space-600) 0px var(--space-200);
  }
}
.globetrotter .gw-cruise-sc-faq__header {
  color: initial;
  text-transform: initial;
  padding: 0px;
}
@media (min-width: 1024px) {
  .globetrotter .gw-cruise-sc-faq__header {
    text-align: left;
  }
}

.gw-cruise-sc-faq__accordion-content {
  text-align: left;
}
.gw-subtitle,
.gw-subtitle > a {
  color: var(--color-text-subtle);
  font: var(--font-body-l);
  width: 100%;
}

.gw-subtitle > a {
  transition: color 0.25s ease;
  text-decoration: underline;
}
.gw-subtitle > a:hover {
  color: var(--color-text);
}
.gw-excursion-view {
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .gw-excursion-view {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .gw-excursion-view {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .gw-excursion-main-content {
    display: contents;
  }
}
@media (min-width: 768px) {
  .gw-excursion-main-content {
    flex: 0 0 70%;
    margin-right: 32px;
  }
}

@media (max-width: 767px) {
  .gw-excursion-sub-content {
    display: contents;
  }
}
@media (min-width: 768px) {
  .gw-excursion-sub-content {
    flex: 1 1 0;
  }
}

.gw-excursion-heading {
  font: var(--font-headline-l);
  margin-bottom: var(--space-400);
}
@media (max-width: 767px) {
  .gw-excursion-heading {
    order: 0;
  }
}
@media (min-width: 768px) {
  .gw-excursion-heading {
    flex: 0 0 100%;
    max-width: 60%;
  }
}

.gw-excursion-ingress {
  font: var(--font-preamble);
  margin-bottom: var(--space-grid-row-gap);
  max-width: 600px;
}
@media (max-width: 767px) {
  .gw-excursion-ingress {
    order: 1;
  }
}

@media (max-width: 767px) {
  .gw-excursion-linked-resort {
    order: 5;
  }
}
@media (min-width: 768px) {
  .gw-excursion-linked-resort {
    padding-right: 0px;
  }
}

.gw-excursion-linked-resort__heading {
  font: var(--font-headline-s);
  margin-bottom: 0.8em;
}

div.gw-excursion-resort-card {
  background-color: var(--color-background-surface-secondary);
  overflow: hidden;
}

.gw-excursion-resort-card__image-container {
  width: 100%;
}

.gw-excursion-resort-card__image {
  width: 100%;
}
.gw-excursion-resort-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-excursion-resort-card__content {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}

.gw-excursion-resort-card__heading {
  font: var(--font-headline-s);
  margin-bottom: 8px;
}

.gw-excursion-resort-card__description,
.gw-excursion-resort-card__description > a {
  color: var(--color-text-subtle);
}

.gw-excursion-resort-card__description > a {
  transition: color 0.25s ease;
}
.gw-excursion-resort-card__description > a:hover {
  color: var(--color-grey-800);
}

.gw-excursion-resort-card .gw-excursion-resort-card__button {
  align-self: center;
}

@media (max-width: 767px) {
  .gw-excursion-key-selling-points {
    order: 3;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .gw-excursion-key-selling-points {
    padding-right: 0px;
    margin-bottom: var(--space-600);
  }
}

.gw-excursion-key-selling-points-header {
  font: var(--font-headline-s);
  width: 100%;
  margin-bottom: 10px;
}

.gw-excursion-key-selling-point {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: var(--space-200);
}

.gw-excursion-key-selling-point__text {
  align-items: center;
  display: flex;
  padding-left: 15px;
}

.gw-excursion-facts {
  background-color: var(--color-background-surface-secondary);
  border-radius: var(--border-radius-500);
  padding: 25px 20px;
  line-height: 22px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .gw-excursion-facts {
    order: 2;
  }
}

.gw-excursion-fact:not(:last-of-type) {
  margin-bottom: 15px;
}

.gw-excursion-fact__heading {
  font-weight: bold;
}

.gw-excursion-fact__text {
  display: inline;
}

.gw-excursion-fact__link {
  display: inline !important;
}

.gw-excursion-right-container__resort-card-desktop {
  display: none;
}
@media (min-width: 768px) {
  .gw-excursion-right-container__resort-card-desktop {
    display: block;
  }
}

.gw-excursion-container__resort-card-mobile {
  display: block;
  margin: 0px 20px 50px 20px;
}
@media (min-width: 768px) {
  .gw-excursion-container__resort-card-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .gw-excursion-description-container {
    order: 4;
    margin-bottom: var(--space-600);
  }
}
@media (min-width: 768px) {
  .gw-excursion-description-container {
    order: 4;
    margin-bottom: var(--space-500);
  }
}

.gw-excursion-description-header {
  margin-bottom: 10px;
}

.gw-excursion-description {
  font: var(--font-body-m);
}

.gw-excursion-esg {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .gw-excursion-esg {
    order: 5;
  }
}
.gw-excursion-esg__logo {
  margin-bottom: 0.6em;
}
.gw-excursion-esg__heading {
  margin-bottom: 0.3em;
  line-height: 1.2;
}
.gw-excursion-esg__criteria-list {
  margin-bottom: 1em;
}
.gw-excursion-esg__criteria-list-item {
  display: flex;
  line-height: 1.375;
  margin-bottom: 1em;
}
.gw-excursion-esg__checkmark {
  fill: var(--color-grass-500);
  flex: 0 0 auto;
  margin-top: 0.2em;
  margin-right: 0.6em;
}
.gw-excursion-esg p {
  line-height: 1.375;
  margin-bottom: 1em;
}
.gw-excursion-list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-500);
}
.gw-excursion-list-item:last-of-type {
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .gw-excursion-list-item {
    flex-direction: row;
  }
}

.gw-excursion-list-item__image-container {
  display: flex;
  min-height: 150px;
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-500);
}
.gw-excursion-list-item__image-container > * {
  flex: 1;
}
@media (min-width: 768px) {
  .gw-excursion-list-item__image-container {
    width: 30%;
  }
}

.gw-excursion-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gw-excursion-list-item__esg-logo {
  position: absolute;
  top: var(--space-100);
  left: var(--space-100);
}

.gw-excursion-list-item__content {
  padding: var(--space-400) 0px 0px;
}
@media (min-width: 768px) {
  .gw-excursion-list-item__content {
    padding: 0px var(--space-500);
    width: 70%;
  }
}

.gw-excursion-list-item__heading {
  font: var(--font-headline-s);
  margin-bottom: var(--space-300);
}

.gw-excursion-list-item__description {
  font: var(--font-body-m);
}

.gw-excursion-list-item__read-more-link {
  margin-top: var(--space-500);
}
.gw-paragraph {
  margin-bottom: var(--space-500);
}
.gw-paragraph:last-child, .gw-paragraph.gw-paragraph--collapsed {
  margin-bottom: 0;
}
.gw-paragraph h2 {
  margin-bottom: var(--space-300);
  font: var(--font-headline-m);
}
.gw-paragraph a {
  color: var(--color-text);
  text-decoration: underline;
}
.gw-paragraph b {
  font-weight: 700;
}
.gw-paragraph span,
.gw-paragraph div {
  display: inline;
}
.globetrotter .gw-paragraph a {
  color: var(--color-cta-link-primary);
}

.gw-paragraph--hide-heading h2 {
  display: none;
}

.gw-paragraph .gw-paragraph__desktop {
  display: none;
}
@media (min-width: 768px) {
  .gw-paragraph .gw-paragraph__desktop {
    display: inline;
  }
}

.gw-paragraph .gw-paragraph__expanded {
  display: none;
}

.gw-paragraph--expanded .gw-paragraph__expanded {
  display: inline;
}
.gw-paragraph--expanded .gw-paragraph__expanded p {
  margin: 0px 0px 28px;
}

.gw-paragraph.gw-paragraph--expanded .gw-paragraph__desktop {
  display: inline;
}
.gw-description {
  margin-top: var(--space-400);
  padding: 0px;
}
@media (min-width: 768px) {
  .gw-description {
    text-align: left;
  }
}

.gw-description__pop-up .gw-title,
.gw-description__pop-up .gw-subtitle,
.gw-description__pop-up .gw-hotel-description-rating {
  align-self: flex-start;
  text-align: left;
}

button.gw-description__expand-link--mobile {
  margin-top: var(--space-400);
}
@media (min-width: 768px) {
  button.gw-description__expand-link--mobile {
    display: none;
  }
}

button.gw-description__expand-link--desktop {
  margin-top: var(--space-500);
}
@media (max-width: 767px) {
  button.gw-description__expand-link--desktop {
    display: none;
  }
}
.gw-ratings {
  margin: var(--space-500) 0;
  text-align: left;
}
@media (min-width: 768px) {
  .gw-ratings {
    margin: var(--space-700) 0;
  }
}

.gw-ratings__guest-title {
  font: var(--font-headline-s);
  margin-bottom: var(--space-300);
}

.gw-ratings__guest-rating.gw-ratings__guest-rating {
  display: flex;
  flex-direction: row;
  gap: var(--space-200);
  margin-bottom: var(--space-400);
}

.gw-ratings__guest-rating-average {
  font: var(--font-headline-l);
}

.gw-ratings__guest-rating-average-max {
  color: var(--color-grey-400);
  font-size: 2.4rem;
}

.gw-ratings__guest-rating-text {
  color: var(--color-grey-400);
  font-size: 1.4rem;
  line-height: 14px;
  margin-left: 20px;
  text-align: left;
}

.gw-ratings__guest-traveltip {
  margin-bottom: 10px;
  margin-top: 10px;
}

.gw-ratings__guest-traveltip-text {
  margin-bottom: 10px;
}

.gw-ratings__guest-more-ratings {
  width: 100%;
}

@media (min-width: 1024px) {
  .gw-ratings__category-ratings {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--space-700);
    row-gap: var(--space-300);
  }
}

@media (max-width: 1023px) {
  .gw-ratings__category-rating {
    flex: 0 0 100%;
  }
}
@media (min-width: 1024px) {
  .gw-ratings__category-rating {
    flex: 1 1 0;
  }
}

.gw-ratings-popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-500);
}

.gw-ratings-popup-content__category-rating:not(:last-of-type) {
  margin-bottom: 8px;
}

.gw-ratings-popup-content__guest-rating {
  display: flex;
  flex-direction: column;
  gap: var(--space-200);
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .gw-ratings-popup-content__guest-rating {
    margin-top: var(--space-500);
  }
}

.gw-ratings-popup-content__travel-tip-link-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.gw-ratings-popup-content__travel-tip-link {
  margin-top: 20px;
}
.gw-ratings-popup-content--no-guest-rating .gw-ratings-popup-content__travel-tip-link {
  padding-right: 20px;
}
.gw-information-container {
  position: relative;
  z-index: 40;
}

.gw-information {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-grid-row-gap);
}
@media (min-width: 1024px) {
  .gw-information {
    flex-direction: row;
  }
}

.gw-information__tag {
  margin-bottom: var(--space-400);
}

.gw-information__left {
  max-width: 870px;
}

@media (min-width: 1024px) {
  .gw-information__right {
    width: 312px;
    flex: 0 0 auto;
    padding-left: var(--space-700);
    margin-left: var(--space-700);
    margin-top: 0px;
    border-left: 1px solid var(--color-border-key-line);
    height: fit-content;
  }
}

.gw-information__buttons {
  display: flex;
  gap: var(--space-400);
  margin-top: var(--space-500);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .gw-information__buttons button,
  .gw-information__buttons a {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .gw-information__buttons {
    gap: var(--space-500);
    margin-top: var(--space-700);
  }
}

.gw-information-usp-list-box__title {
  margin-bottom: var(--space-200);
  font: var(--font-headline-s);
}
@media (min-width: 768px) {
  .gw-information-usp-list-box__title {
    margin-bottom: var(--space-400);
  }
}

.gw-information__about-heading {
  font: var(--font-mini);
  color: var(--color-text-subtle);
  margin-bottom: var(--space-100);
  text-transform: uppercase;
}

.gw-information__heading {
  font: var(--font-headline-m-desktop);
}

.gw-information-description {
  line-height: 24px;
  margin-top: 15px;
}
.gw-information-description p {
  margin-bottom: 15px;
}

.gw-info-globe-ingress {
  max-width: 600px;
  margin: 0px auto;
  text-align: center;
}

.gw-info-globe-ingress__eyebrow {
  margin-bottom: var(--space-200);
}

.gw-info-globe-ingress__title {
  margin-bottom: var(--space-500);
}

.gw-info-globe-ingress__preamble {
  margin-bottom: var(--space-500);
}

.gw-info-globe-ingress__separator {
  width: 40px;
  border-top: 1px solid;
  display: inline-flex;
}

.gw-info-globe-text-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .gw-info-globe-text-container {
    padding: var(--space-600) 0px;
  }
}

.gw-info-globe-text-container .uikit-font-headline-m {
  margin-bottom: var(--space-200);
}

@media (max-width: 767px) {
  .gw-info-globe-empty-col {
    display: none;
  }
}

.gw-info-globe-introduction {
  margin-top: var(--space-section-margin);
}

.gw-info-globe-product {
  margin-top: var(--space-grid-row-gap);
}

@media (max-width: 767px) {
  .gw-info-globe-product__image {
    order: -1;
  }
}

.gw-info-globe-image {
  overflow: hidden;
}

.gw-info-globe-image-wrapper {
  height: 100%;
}
.gw-info-globe-image-wrapper picture {
  height: 100%;
}

.gw-info-globe-image-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.gw-hotel-usps {
  background-color: var(--color-sand-100);
  padding: var(--space-400);
  height: 100%;
}
body:not(.globetrotter) .gw-hotel-usps {
  border-radius: var(--border-radius-500);
}
@media (min-width: 768px) {
  .gw-hotel-usps {
    padding: var(--space-500);
  }
}
.gw-hotel-usps--OBCbySunwing {
  background-color: rgba(214, 226, 229, 0.5019607843);
}
.gw-hotel-usps--Sunprime {
  background-color: rgba(176, 204, 202, 0.3333333333);
}
.gw-hotel-usps--Sunwing {
  background-color: rgba(253, 248, 207, 0.5019607843);
}

.gw-hotel-usps__concept-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .gw-hotel-usps__concept-header {
    flex-direction: row;
  }
}

.gw-hotel-usps__concept-badge {
  margin: 5px 0px 15px;
}

.gw-hotel-usps__concept-description {
  font-weight: 600;
  line-height: 20px;
}
@media (min-width: 768px) {
  .gw-hotel-usps__concept-description {
    margin-left: 15px;
  }
}

.gw-hotel-usps__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 10px;
}
@media (min-width: 768px) {
  .gw-hotel-usps__list {
    margin: 0px;
  }
  .gw-hotel-info-container--concept .gw-hotel-usps__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .gw-hotel-info-container--concept .gw-hotel-usps__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.gw-hotel-usps__list li {
  list-style-type: disc;
  margin-left: 20px;
}

.gw-hotel-usps__list svg {
  fill: var(--color-core-500);
  margin-right: 10px;
  min-width: 16px;
  height: 12px;
  width: 12px;
}

.gw-hotel-usps__heading {
  margin-bottom: 20px;
}
.gw-hotel-info-overview__quick-facts-container {
  background-color: var(--color-sand-100);
  padding: var(--space-400);
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__quick-facts-container {
    padding: var(--space-500);
  }
}
body:not(.globetrotter) .gw-hotel-info-overview__quick-facts-container {
  border-radius: var(--border-radius-500);
}
.globetrotter .gw-hotel-info-overview__quick-facts-container {
  background-color: var(--color-background-surface-primary);
  padding: var(--space-500);
}

.gw-hotel-info-overview__quick-facts-heading {
  font: var(--font-headline-s);
  margin-bottom: var(--space-300);
}

.gw-hotel-info-overview__quick-facts {
  font: var(--font-body-m);
}
.globetrotter .gw-hotel-info-overview__quick-facts li {
  list-style-type: disc;
  margin-left: 20px;
}

.gw-hotel-info-overview__quick-fact {
  display: flex;
  margin: var(--space-300) 0px 0px;
  justify-content: space-between;
}
.globetrotter .gw-hotel-info-overview__quick-fact {
  justify-content: start;
}

.gw-hotel-info-overview__quick-fact-title {
  font-weight: 600;
}
.globetrotter .gw-hotel-info-overview__quick-fact-title {
  font-weight: initial;
}

.gw-hotel-info-overview__quick-fact-value {
  text-wrap: nowrap;
}
.globetrotter .gw-hotel-info-overview__quick-fact-value::before {
  content: ": ";
}
.gw-link-push {
  background-color: var(--color-sand-100);
  border-radius: var(--border-radius-500);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px;
  width: 100%;
  justify-content: space-around;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .gw-link-push {
    padding: 10px;
    flex-direction: row;
    font-size: unset;
  }
}
@media (min-width: 1280px) {
  .gw-link-push {
    padding: 10px 30px;
  }
}

.gw-link-push__children {
  width: 100%;
  padding-right: var(--space-600);
}

svg.gw-link-push__icon {
  display: none;
}
@media (min-width: 768px) {
  svg.gw-link-push__icon {
    display: inline-block;
  }
}

a.gw-link-push span {
  color: var(--color-text);
}
.gw-easy-travel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .gw-easy-travel {
    flex-direction: row;
  }
}

.gw-easy-travel__logo {
  height: 50px;
  margin: -5px;
  max-width: 80px;
}

.gw-gallery-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-200);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--space-100);
  color: var(--color-white);
  padding: var(--space-200) var(--space-300);
  font: var(--font-body-m);
  transition: background-color var(--transition);
  cursor: pointer;
}
.globetrotter .gw-gallery-button {
  display: inline-flex;
  font: var(--font-button);
  background-color: rgba(32, 32, 32, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.68px;
  border-radius: 1px;
  gap: var(--space-300);
  padding: var(--space-200) var(--space-300);
}
@media (min-width: 768px) {
  .globetrotter .gw-gallery-button {
    padding: var(--space-300) var(--space-400);
  }
}

@media (hover: hover) {
  .gw-gallery-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .globetrotter .gw-gallery-button:hover {
    background-color: rgb(32, 32, 32);
  }
}
.gw-hotel-inspirational-images {
  display: grid;
  grid-gap: var(--space-500);
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "largeImage largeImage" "smallImage1 smallImage2";
}
@media (min-width: 768px) {
  .gw-hotel-inspirational-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "largeImage largeImage smallImage1" "largeImage largeImage smallImage2";
  }
}
.gw-hotel-inspirational-images--single {
  grid-template-columns: 1fr;
  grid-template-areas: "largeImage";
}
.gw-hotel-inspirational-images--double {
  grid-template-columns: 1fr;
  grid-template-areas: "largeImage" "smallImage1";
}
@media (min-width: 768px) {
  .gw-hotel-inspirational-images--double {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "largeImage smallImage1";
  }
}
.globetrotter .gw-hotel-inspirational-images {
  margin-bottom: var(--space-500);
}

.gw-hotel-info-container--concept .gw-hotel-inspirational-images {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "largeImage largeImage" "smallImage1 smallImage1" "smallImage2 smallImage3";
}
@media (min-width: 768px) {
  .gw-hotel-info-container--concept .gw-hotel-inspirational-images {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "largeImage largeImage largeImage" "smallImage1 smallImage2 smallImage3";
  }
}

.geo-package-plus-main-option__container--isGlobetrotter .gw-hotel-inspirational-images--globe,
.globetrotter .gw-hotel-inspirational-images--globe {
  display: grid;
  grid-gap: var(--space-300);
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "largeImage largeImage" "smallImage1 smallImage2";
}
.geo-package-plus-main-option__container--isGlobetrotter .gw-hotel-inspirational-images--globe.gw-hotel-inspirational-images--double,
.globetrotter .gw-hotel-inspirational-images--globe.gw-hotel-inspirational-images--double {
  grid-template-columns: 1fr;
  grid-template-areas: "largeImage" "smallImage1";
}
@media (min-width: 768px) {
  .geo-package-plus-main-option__container--isGlobetrotter .gw-hotel-inspirational-images--globe.gw-hotel-inspirational-images--double,
  .globetrotter .gw-hotel-inspirational-images--globe.gw-hotel-inspirational-images--double {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "largeImage smallImage1";
  }
}
@media (min-width: 1024px) {
  .geo-package-plus-main-option__container--isGlobetrotter .gw-hotel-inspirational-images--globe,
  .globetrotter .gw-hotel-inspirational-images--globe {
    grid-gap: var(--space-500);
  }
}

.gw-hotel-inspirational-images__map {
  max-height: 370px;
  width: 100%;
}
@media (min-width: 768px) {
  .gw-hotel-inspirational-images__map {
    max-height: 510px;
  }
}

.gw-hotel-inspirational-images__small,
.gw-hotel-inspirational-images__large {
  overflow: hidden;
}
body:not(.globetrotter) .gw-hotel-inspirational-images__small,
body:not(.globetrotter) .gw-hotel-inspirational-images__large {
  border-radius: var(--border-radius-500);
}
.gw-hotel-inspirational-images__small picture,
.gw-hotel-inspirational-images__small img,
.gw-hotel-inspirational-images__large picture,
.gw-hotel-inspirational-images__large img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gw-hotel-inspirational-images__large {
  grid-area: largeImage;
  position: relative;
}
.gw-hotel-inspirational-images__large picture,
.gw-hotel-inspirational-images__large img {
  height: 100%;
}

.gw-hotel-inspirational-images__small--1 {
  grid-area: smallImage1;
}

.gw-hotel-inspirational-images__small--2 {
  grid-area: smallImage2;
}

.gw-hotel-inspirational-images__small--3 {
  grid-area: smallImage3;
}

.gw-hotel-inspirational-images__gallery-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.globetrotter .gw-hotel-inspirational-images__gallery-button {
  bottom: var(--space-400);
  right: var(--space-500);
  font: var(--font-button);
  letter-spacing: 1.68px;
  background-color: rgba(32, 32, 32, 0.8);
  text-transform: uppercase;
  border-radius: 1px;
  gap: var(--space-300);
  padding: var(--space-300) var(--space-400);
}
.gw-hotel-nugget {
  position: relative;
  background-color: var(--color-sand-100);
  border-radius: var(--border-radius-500);
  display: flex;
  flex-direction: column;
  padding: var(--space-400);
  height: 100%;
}

.gw-hotel-nugget__heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font: var(--font-headline-m);
}
.gw-hotel-nugget__heading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gw-hotel-nugget__content {
  height: 100%;
}
.gw-hotel-map-nugget {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .gw-hotel-info-container--concept .gw-hotel-map-nugget {
    max-height: unset;
    min-height: 215px;
  }
}

.gw-hotel-map-nugget picture {
  width: 100%;
  height: 100%;
  display: flex;
}

.gw-hotel-map-nugget img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body:not(.globetrotter) .gw-hotel-map-nugget img {
  border-radius: var(--border-radius-500);
}
.gw-guest-review__container {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: var(--color-white);
  position: relative;
  padding: var(--space-400) var(--space-300);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.gw-guest-review__header-wrap {
  display: flex;
  align-items: center;
}

.gw-guest-review-rating__icon {
  margin-right: var(--space-200);
}

.gw-guest-review-rating {
  color: var(--color-grey-800);
  font: var(--font-headline-s);
}

.gw-guest-review__body {
  color: var(--color-text-subtle);
  font-size: 1.6rem;
  font-style: italic;
  padding: var(--space-200) 0px 11px 0px;
  flex-grow: 1;
}

.gw-guest-review-footer {
  color: var(--color-grey-800);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.gw-guest-review-list {
  display: flex;
  flex-direction: row;
  gap: var(--space-200);
  height: 100%;
}

.gw-guest-review-list-item {
  flex: 1;
  min-width: 0;
  display: none;
}
.gw-guest-review-list-item:first-child {
  display: block;
}
@media (min-width: 768px) {
  .gw-guest-review-list-item {
    display: block;
  }
}
.gw-weather-month {
  font-family: var(--font-family-headline);
  color: var(--color-text-subtle);
  width: 100%;
  border-radius: 4px;
  background: var(--color-white);
  padding: 10px 20px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .gw-weather-month {
    padding: var(--space-600) 25px var(--space-600);
  }
}

.gw-weather-month__name {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.gw-weather-month__temperatures-wrapper {
  display: flex;
  gap: 16px;
}
@media (min-width: 768px) {
  .gw-weather-month__temperatures-wrapper {
    gap: 19px;
  }
}

.gw-weather-month__temperature {
  font-size: 3.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.02px;
}

.gw-weather-month__sun-icon {
  margin-bottom: 13px;
  fill: #ffcc4d;
}
@media (min-width: 768px) {
  .gw-weather-month__sun-icon {
    margin-bottom: 18px;
  }
}

.gw-weather-month__night-icon {
  margin-bottom: 13px;
  fill: var(--color-teal-800);
}
@media (min-width: 768px) {
  .gw-weather-month__night-icon {
    margin-bottom: 18px;
  }
}
.gw-weather-nugget-list--multi {
  display: flex;
  gap: var(--space-200);
}

.gw-weather-nugget-list--multi .gw-weather-nugget-list__item {
  flex: 1;
  min-width: 0;
  display: none;
}
.gw-weather-nugget-list--multi .gw-weather-nugget-list__item--center {
  display: block;
}
@media (min-width: 768px) {
  .gw-weather-nugget-list--multi .gw-weather-nugget-list__item {
    display: block;
  }
}
.gw-hotel-info-overview {
  display: grid;
  gap: var(--space-500);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "images images images" "desc desc info" "usps usps info" "rating rating map" "weather weather weather";
  }
}
@media (min-width: 1024px) {
  .gw-hotel-info-overview {
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .gw-hotel-info-overview.gw-hotel-info-overview--no-reviews {
    grid-template-areas: "images images images" "desc desc info" "usps usps info" "weather weather map";
  }
}
@media (min-width: 768px) {
  .gw-hotel-info-overview.gw-hotel-info-overview--dp {
    grid-template-areas: "images images images" "desc desc info" "usps usps info" "weather weather weather";
  }
}

@media (min-width: 768px) {
  .gw-hotel-info-container--concept .gw-hotel-info-overview {
    grid-template-areas: "desc desc info" "images images images" "usps usps map" "rating rating rating" "weather weather weather" "links links links";
  }
}
@media (min-width: 1024px) {
  .gw-hotel-info-container--concept .gw-hotel-info-overview {
    grid-template-areas: "desc desc info" "images images images" "usps usps map" "rating rating weather" "links links links";
  }
}

@media (min-width: 768px) {
  .gw-hotel-info-container--concept .gw-hotel-info-overview--no-reviews {
    grid-template-areas: "desc desc info" "images images images" "usps usps map" "weather weather weather" "links links links";
  }
}

.gw-hotel-info-overview--hidden,
.gw-hotel-info-container--concept .gw-hotel-info-overview--hidden {
  display: none;
}

.gw-hotel-info-overview__description {
  font-size: 1.8rem;
}
.gw-hotel-info-overview__description .gw-paragraph__expanded {
  line-height: 1.35;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__description {
    grid-area: desc;
  }
}
@media (min-width: 1024px) {
  .gw-hotel-info-container--concept .gw-hotel-info-overview__description {
    font-size: 2rem;
  }
}
.globetrotter .gw-hotel-info-overview__description {
  font-size: inherit;
}
@media (min-width: 768px) {
  .globetrotter .gw-hotel-info-overview__description {
    padding-right: var(--space-500);
  }
}

.gw-hotel-info-overview__description-link {
  color: var(--color-cta-link-primary);
  font-size: 1.8rem;
}
.globetrotter .gw-hotel-info-overview__description-link {
  font-size: inherit;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .gw-hotel-info-overview__quick-info {
    grid-area: info;
    gap: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .gw-hotel-info-container--concept .gw-hotel-info-overview__quick-info {
    gap: 0;
  }
}

.gw-hotel-info-overview__description-usps ul {
  gap: 0;
}
.gw-hotel-info-overview__description-usps li {
  background-color: transparent;
  padding: 6px 18px 6px 0px;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__description-usps {
    grid-area: usps;
  }
}

@media (min-width: 768px) {
  .gw-hotel-info-overview__usps {
    grid-area: usps;
  }
}

@media (min-width: 768px) {
  .gw-hotel-info-overview__map-nugget {
    grid-area: map;
  }
}

.gw-hotel-info-overview__images {
  order: -1;
}
.gw-hotel-info-container--concept .gw-hotel-info-overview__images, .globetrotter .gw-hotel-info-overview__images {
  order: initial;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__images {
    grid-area: images;
  }
}

.gw-hotel-info-overview__rating-nugget {
  max-width: 100vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__rating-nugget {
    grid-area: rating;
  }
}

.gw-hotel-info-overview__weather-nugget {
  max-width: 100vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__weather-nugget {
    grid-area: weather;
  }
}

.gw-hotel-info-overview__quick-info-links {
  display: none;
}
@media (min-width: 768px) {
  .gw-hotel-info-overview__quick-info-links {
    grid-area: links;
    display: initial;
  }
}

@media (min-width: 768px) {
  .gw-hotel-info-overview__bottom-links {
    grid-area: links;
    display: none;
  }
}
.gw-hotel-info-container--concept .gw-hotel-info-overview__bottom-links {
  display: initial;
}

.gw-hotel-info-overview__links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.gw-hotel-info-overview--no-reviews .gw-hotel-info-overview__links {
  justify-content: start;
}
@media (min-width: 768px) {
  .gw-hotel-info-container--concept .gw-hotel-info-overview__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-area: links;
    gap: var(--space-500);
  }
}

@media (min-width: 768px) {
  .globetrotter .gw-hotel-info-overview {
    grid-template-areas: "desc desc info" "usps usps info" "images images images";
  }
}
@media (min-width: 768px) {
  .globetrotter .gw-hotel-info-overview__quick-info {
    gap: 0;
  }
}
.gw-hotel-info-navigation {
  background-color: var(--color-white);
}
body:not(.globetrotter) .gw-hotel-info-navigation {
  border-radius: var(--border-radius-500);
}

.gw-hotel-info-navigation__tab-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-100);
  align-items: center;
}

.gw-hotel-info-navigation__tab-item svg {
  height: 26px;
  width: 26px;
}
.gw-room-gallery {
  width: 100%;
}

.gw-room-gallery__image-wrapper {
  position: relative;
  aspect-ratio: 3/2;
  z-index: -1;
}
@media (min-width: 768px) {
  .gw-room-gallery__image-wrapper {
    aspect-ratio: 16/9;
  }
}
.gw-room-gallery__image-wrapper picture {
  height: 100%;
}
.gw-room-gallery__image-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.gw-room-gallery__image--map img,
.gw-room-gallery__image--portrait img {
  object-fit: contain;
}

.gw-room-gallery__default-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(60, 60, 60, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gw-room-gallery__default-image-overlay span {
  color: var(--color-background-surface-primary);
  font-size: 2.4rem;
}

.gw-room-gallery__image-text-wrapper {
  align-items: center;
  background: rgba(32, 32, 32, 0.6);
  border-radius: var(--border-radius-400);
  color: var(--color-background-surface-primary);
  display: inline-flex;
  fill: var(--color-background-surface-primary);
  padding: var(--space-100) var(--space-200);
  position: absolute;
  left: var(--space-200);
  right: var(--space-200);
  bottom: var(--space-200);
  width: fit-content;
}

.gw-room-gallery__thumbnails {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: var(--space-400);
  gap: var(--space-200);
}
.gw-room-type--in-web-view .gw-room-gallery__thumbnails {
  padding-left: var(--space-100);
}

.gw-room-gallery__thumbnails-image {
  outline: transparent 2px solid;
  outline-offset: 2px;
  width: auto;
}
body:not(.globetrotter) .gw-room-gallery__thumbnails-image {
  border-radius: var(--border-radius-300);
}
body:not(.globetrotter) .gw-room-gallery__thumbnails-image img {
  border-radius: var(--border-radius-300);
}

.gw-room-gallery__thumbnails-image--selected {
  outline-color: var(--color-black);
}

.gw-room-gallery__thumbnail-tab:focus-visible {
  outline-color: var(--color-black);
}

.gw-room-gallery__default-image {
  align-items: center;
  justify-content: center;
  background-color: var(--color-pyright-light-500);
  display: flex;
  height: 100%;
  width: 100%;
}
.gw-room-gallery__default-image svg {
  stroke: var(--color-white);
}
@charset "UTF-8";
.gw-concept-info__name {
  font: var(--font-headline-s);
}

.gw-concept-info__description {
  padding-top: var(--space-100);
}

.gw-concept-info__usps {
  margin-top: var(--space-300);
  margin-right: 20px;
}

.gw-concept-info__usps .gw-concept-info__usps-item {
  line-height: 18px;
  align-items: flex-start;
  display: flex;
  padding: 0px 0px var(--space-100) var(--space-300);
  position: relative;
  margin: 0px 0px var(--space-100);
}

.gw-concept-info__usps .gw-concept-info__usps-item::before {
  color: var(--color-dark-core-500);
  content: "\2022";
  font-size: 2rem;
  left: 0;
  position: absolute;
  top: -1px;
}
.gw-part-info {
  width: 100%;
}

.gw-part-info__images {
  margin-top: var(--space-500);
}
.gw-part-info__images img {
  width: 100%;
}

.gw-part-info__room {
  align-items: center;
  display: flex;
  margin-top: var(--space-200);
}

.gw-part-info__room-color {
  margin-right: var(--space-300);
  display: flex;
  align-items: center;
  aspect-ratio: 1;
  height: 18px;
}

.gw-part-info__room-text {
  display: flex;
  align-items: center;
}

.gw-part-info__expand-link {
  margin-top: var(--space-400);
}

.gw-part-info__table-heading {
  margin-top: var(--space-400);
}

.gw-part-info__name {
  font: var(--font-headline-s);
  margin-bottom: var(--space-200);
}

@media (min-width: 768px) {
  .gw-part-info__name,
  .gw-part-info__description,
  .gw-part-info__table-heading,
  .gw-part-info__room {
    max-width: 600px;
  }
}
.gw-section-paragraph {
  max-width: 780px;
}
.gw-section-paragraph:not(:last-child) {
  margin-bottom: var(--space-500);
}
.globetrotter .gw-section-content--top-right .gw-section-paragraph {
  margin-bottom: 0px;
}
.gw-section-paragraph .gw-section-paragraph-h3 {
  font: var(--font-headline-s);
  margin-bottom: var(--space-300);
}
.gw-tiles-view .gw-section-paragraph a {
  color: var(--color-text);
  text-decoration: underline;
}
.globetrotter .gw-section-paragraph {
  margin-bottom: var(--space-700);
}
.globetrotter .gw-section-paragraph .gw-section-paragraph__list--column {
  display: block;
  column-count: 1;
  max-width: none;
}
@media (min-width: 768px) {
  .globetrotter .gw-section-paragraph .gw-section-paragraph__list--column {
    column-count: 2;
    column-fill: balance;
    column-gap: var(--space-500);
  }
  .globetrotter .gw-section-paragraph .gw-section-paragraph__list--column li {
    break-inside: avoid;
  }
}

@media (max-width: 767px) {
  .gw-section-paragraph-content--truncate {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.gw-section-paragraph li {
  white-space: break-spaces;
}
.gw-room-type {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-500) var(--space-300);
}

.theme-default .gw-room-type--has-no-image {
  padding-top: var(--space-600);
}
.theme-default .gw-room-type--has-no-image .gw-room-gallery {
  display: none;
}

.gw-room-type .gw-section-paragraph {
  margin-bottom: var(--space-500);
}

.gw-room-type > span {
  width: 100%;
}

.gw-room-type li {
  list-style-type: disc;
  margin: 0px 0px var(--space-100) var(--space-400);
}

.gw-room-type-heading-container {
  margin-bottom: var(--space-500);
}

.gw-room-type-heading {
  font: var(--font-headline-m);
}

.gw-room-type-building {
  color: var(--color-text-subtle);
  display: block;
  font: var(--font-headline-xs);
  padding-top: var(--space-300);
}

@media (min-width: 768px) {
  .gw-room-type-left {
    max-width: 600px;
  }
}

.gw-room-type-right {
  font: var(--font-body-m);
  height: fit-content;
}
@media (min-width: 768px) {
  .gw-room-type-right {
    max-width: 300px;
  }
  body:not(.globetrotter) .gw-room-type-right {
    border-radius: var(--border-radius-500);
    padding: var(--space-500);
    background: var(--color-background-surface-secondary);
  }
  .globetrotter .gw-room-type-right {
    max-width: 400px;
  }
}

.gw-room-type-right .gw-section-paragraph {
  margin-bottom: 0px;
}

.gw-room-type-floorplans {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: var(--space-500);
}

.gw-room-type-floorplans img {
  width: 100%;
}
.gw-room-accessibility__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--space-500) var(--space-400) var(--space-300);
  border-radius: 8px;
  background-color: var(--color-sand-100);
  gap: var(--space-400);
}

.gw-room-accessibility__heading--icon {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-300);
}
.gw-room-accessibility__heading--icon h3 {
  font-size: var(--font-headline-s);
}

.gw-room-accessibility__heading {
  font-size: var(--font-headline-xs);
  margin-bottom: var(--space-300);
}

.gw-room-accessibility__table {
  width: 100%;
  margin-bottom: var(--space-500);
}

.gw-room-accessibility__row {
  display: flex;
  border-bottom: var(--color-border-key-line) 1px solid;
  margin-bottom: var(--space-200);
}
.gw-room-accessibility__row dt,
.gw-room-accessibility__row dd {
  width: 50%;
  padding: var(--space-100) 0 var(--space-300);
  padding-left: 0;
  text-align: left;
}
.gw-room-accessibility__row dd {
  color: #737373;
}

.gw-room-accessibility__paragraph .gw-section-paragraph-h3 {
  font-size: var(--font-headline-xs);
}

.gw-room-accessibility__toggle-button {
  align-self: center;
  order: 1;
  margin-bottom: var(--space-300);
}
.gw-weather-chart-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: var(--space-400);
  padding: var(--space-500);
  background-color: var(--color-background-surface-primary);
}
body:not(.globetrotter) .gw-weather-chart-month {
  border: solid 1px var(--color-border-key-line);
  border-radius: var(--border-radius-500);
}

.gw-weather-chart-month__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-400);
}

.gw-weather-chart-month__name {
  text-transform: capitalize;
  font: var(--font-headline-s);
  margin: 0px;
}

.gw-weather-chart-month__temperatures {
  display: flex;
  flex-direction: column;
  gap: var(--space-200);
}

.gw-weather-chart-month__temperature {
  display: flex;
  align-items: center;
  gap: var(--space-200);
  font-size: 4.8rem;
  line-height: 1;
  justify-content: center;
}

.gw-weather-chart-month__temperature--night {
  color: var(--color-text-subtle);
}

.gw-weather-chart-month__extra-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: lowercase;
  color: var(--color-text-subtle);
}

.gw-weather-chart-month__icon-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-100);
  font: var(--font-body-l);
  color: var(--color-text);
}

.gw-weather-chart-month__sun-icon {
  fill: var(--color-sunlight-600);
}
.globetrotter .gw-weather-chart-month__sun-icon {
  fill: none;
}

.gw-weather-chart-month__moon-icon {
  color: var(--color-text-subtle);
  margin-right: var(--space-100);
}

.gw-weather-chart-month__drop-icon {
  fill: var(--color-teal-700);
}

.gw-weather-chart-month__umbrella-icon {
  fill: #a48c6a;
}
.gw-weather-chart__container {
  position: relative;
  margin-bottom: var(--space-500);
}

.gw-weather-chart {
  display: flex;
  gap: var(--space-500);
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.gw-weather-chart::-webkit-scrollbar {
  display: none;
}

.gw-weather-chart__arrow {
  display: none;
  position: absolute;
  z-index: 1;
  top: calc(50% - 16px);
  color: var(--color-white);
  opacity: 0.8;
  background: var(--color-grey-800);
  border-radius: 50%;
  outline-offset: 2px;
  height: 30px;
  width: 30px;
}
@media (min-width: 768px) {
  .gw-weather-chart__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.gw-weather-chart__arrow:hover {
  opacity: 1;
}

.gw-weather-chart__arrow--next {
  right: var(--space-100);
}

.gw-weather-chart__arrow--previous {
  left: var(--space-100);
}

.gw-weather-chart__explanation {
  margin-top: var(--space-500);
  font: var(--font-mini);
}
.gw-room-view {
  margin-top: 30px;
}

.gw-room-view__intro {
  max-width: 600px;
  margin-bottom: 30px;
}

.gw-room-view__room {
  border-bottom: var(--color-grey-100) solid 1px;
  padding: var(--space-200) 0px;
}
.gw-room-view__room:first-of-type {
  border-top: var(--color-grey-100) solid 1px;
}

.gw-room-view__concept {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .gw-room-view__concept {
    flex-direction: row;
  }
  .gw-room-view__concept:not(:last-child) {
    padding-bottom: var(--space-600);
  }
}

.gw-room-view__concept-image {
  flex-shrink: 0;
  height: auto;
  position: relative;
  width: 100%;
}
.gw-room-view__concept-image img {
  width: 100%;
}
body:not(.globetrotter) .gw-room-view__concept-image img {
  border-radius: var(--border-radius-500);
}
@media (min-width: 768px) {
  .gw-room-view__concept-image {
    width: 30%;
    max-width: 360px;
  }
}

.gw-room-view__concept-image-source {
  width: 100%;
}

.gw-room-view__content {
  flex-grow: 1;
  line-height: 24px;
  padding: var(--space-400) 0px 48px;
}
@media (min-width: 768px) {
  .gw-room-view__content {
    max-width: 548px;
    padding: 0px 0px 0px var(--space-500);
  }
}

@media (min-width: 768px) {
  .gw-room-view__content.gw-room-view__content p:not(:last-child) {
    margin-bottom: var(--space-200);
  }
}

.gw-room-view__content-expand {
  margin-top: var(--space-200);
}

.gw-room-view__content-rooms {
  padding: 20px 0px var(--space-300);
}

.gw-room-view__content-rooms--hidden {
  display: none;
}

.gw-room-view__room-building {
  color: var(--color-grey-600);
  display: block;
  font-size: 1.4rem;
}

.gw-room-view__room-link {
  text-align: left;
}
.gw-building-view {
  margin-top: 30px;
  max-width: 600px;
}

.gw-building-view__intro {
  margin-bottom: 30px;
}

.gw-building-view__image img {
  width: 100%;
}

.gw-building-view__part {
  margin-top: var(--space-500);
}

.gw-alternative-content-html {
  margin-top: 30px;
}

.gw-room-type-list {
  margin-bottom: var(--space-500);
}

.gw-room-type-list-item {
  display: flex;
  flex-direction: column;
}
.gw-room-type-list-item:not(:last-child) {
  margin-bottom: var(--space-500);
}
@media (min-width: 768px) {
  .gw-room-type-list-item {
    flex-direction: row;
  }
}

.gw-room-type-list-item__image-container {
  overflow: hidden;
  margin-bottom: var(--space-500);
  height: 200px;
  position: relative;
}
@media (min-width: 768px) {
  .gw-room-type-list-item__image-container {
    height: 240px;
    width: 360px;
    max-width: 360px;
    margin-right: var(--space-500);
    margin-bottom: 0;
  }
}
body:not(.globetrotter) .gw-room-type-list-item__image-container img {
  border-radius: var(--border-radius-500);
}

@media (min-width: 768px) {
  .gw-room-type-list-item__info-container {
    flex: 1;
  }
}

.gw-room-type-list-item__heading {
  margin-bottom: 10px;
}

.gw-room-type-list-item__no-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(60, 60, 60, 0.75);
  border-radius: 4px;
}
.gw-room-type-list-item__no-image-overlay span {
  color: var(--color-white);
  font-size: 1.8rem;
}
.gw-section-content .gw-section-heading {
  font: var(--font-headline-m);
  margin-bottom: var(--space-500);
}

.gw-section-content--alternative p {
  max-width: 650px;
}

.gw-section-content--hidden {
  display: none;
}

div.gw-section-content .idun-text-box-block {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 0px;
}

.gw-section-content--map,
.gw-section-content--weather,
.gw-section-content--rating,
.gw-section-content--sustainability {
  max-width: 100%;
}

.gw-section-content--weather .gw-weather-chart-container {
  margin-top: var(--space-500);
}

.gw-section-content--map .gw-map-content {
  margin-top: var(--space-500);
  z-index: 200;
}
@media (min-width: 768px) {
  .gw-section-content--map .gw-map-content {
    z-index: 50;
  }
}
@media (min-width: 768px) {
  .theme-default .gw-section-content--map .gw-map-content .gw-map {
    border-radius: var(--border-radius-500);
  }
}

@media (min-width: 768px) {
  .gw-section-content--map .gtm-list-view {
    display: none;
  }
}

.gw-section-content--top:not(:last-child) {
  margin-bottom: var(--space-500);
}
@media (min-width: 1024px) {
  .gw-section-content--top {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .gw-section-content--top--grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: var(--space-700);
  }
}

.gw-section-content--top-right {
  margin-bottom: var(--space-700);
}
.gw-section-content--top-right--box {
  height: auto;
  background-color: var(--color-sand-100);
  padding: var(--space-400);
  max-width: 780px;
}
@media (min-width: 1024px) {
  .gw-section-content--top-right--box {
    min-width: 380px;
  }
}
.globetrotter .gw-section-content--top-right {
  background-color: var(--color-background-surface-primary);
  padding: var(--space-500);
}
.globetrotter .gw-section-content--top-right li {
  padding: var(--space-100);
}
.gw-section-content--top-right > div, .gw-section-content--top-right p {
  margin-bottom: 0px;
}
.gw-section-content--top-right li {
  padding-bottom: var(--space-100);
}

.globetrotter .gw-section-content--top .gw-section-content__paragraph-list {
  background-color: unset;
  border-color: var(--color-border-key-line);
  border-style: solid;
  border-width: 1px 0;
}
@media (max-width: 767px) {
  .globetrotter .gw-section-content--top .gw-section-content__paragraph-list {
    padding: var(--space-500) 0px;
  }
}
.globetrotter .gw-section-content__paragraph-list {
  background-color: var(--color-background-surface-primary);
  padding: var(--space-500);
}
.globetrotter .gw-section-content__paragraph-list ul {
  padding: 0px;
}
.globetrotter .gw-section-content__paragraph-list li {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.globetrotter .gw-section-content__paragraph-list li:not(:last-child) {
  margin-bottom: var(--space-300);
}

.gw-section-block:not(:last-child) {
  margin-bottom: var(--space-500);
}

.gw-section-block .gw-section-block-heading {
  margin-bottom: var(--space-300);
}

.gw-section-subsection {
  margin-top: var(--space-800);
  position: relative;
}
@media (min-width: 768px) {
  .gw-section-subsection {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-areas: "heading content";
  }
  .gw-section-subsection h2 {
    grid-area: heading;
  }
  .gw-section-subsection__content {
    grid-area: content;
  }
}
.gw-section-subsection .gw-section-block-heading {
  font: var(--font-headline-m);
  font-size: 2.8rem;
  font-weight: 300;
  height: fit-content;
  position: relative;
  margin-bottom: var(--space-700);
}
@media (min-width: 1024px) {
  .gw-section-subsection .gw-section-block-heading {
    position: sticky;
    top: var(--space-900);
  }
}
.gw-section-subsection .gw-section-block-heading::after {
  content: "";
  background: #000;
  position: absolute;
  bottom: -12px;
  left: 0;
  height: 1px;
  width: 30px;
}

.gw-section-content--bottom {
  background-color: var(--color-teal-200);
  padding: var(--space-500);
}
.gw-section-content--bottom .gw-section-paragraph {
  max-width: unset;
  margin-bottom: var(--space-50);
}
.gw-section-content--bottom .gw-section-paragraph p:last-child {
  margin-bottom: unset;
}

@media (min-width: 768px) {
  .gw-map-placeholder {
    height: 707px;
  }
}
.gw-accessibility-content__table {
  width: 100%;
  margin-bottom: var(--space-600);
}
.gw-accessibility-content__table .gw-accessibility-content__table-row {
  display: flex;
  border-bottom: var(--color-border-key-line) 1px solid;
}
.gw-accessibility-content__table .gw-accessibility-content__table-row dt,
.gw-accessibility-content__table .gw-accessibility-content__table-row dd {
  width: 50%;
  padding: var(--space-300);
  padding-left: 0;
  text-align: left;
}
.gw-accessibility-content__table .gw-accessibility-content__table-row dd {
  color: #737373;
}

.gw-accessibility-block:not(:last-child) {
  margin-bottom: var(--space-500);
}

.gw-accessibility-block .gw-accessibility-block-heading {
  margin-bottom: var(--space-300);
}

.gw-accessibility-block-heading__icon {
  display: flex;
  align-items: center;
  gap: var(--space-200);
  margin-bottom: var(--space-300);
}
.gw-accessibility-block-heading__icon .gw-accessibility-block-heading {
  margin-top: var(--space-50);
  margin-bottom: 0;
}
#hotel-info-view {
  position: relative;
}

.gw-hotel-info__top {
  margin-bottom: var(--space-grid-row-gap);
}
@media (min-width: 768px) {
  .gw-hotel-info__top.gw-hotel-info__top {
    padding: var(--space-500);
  }
}
.globetrotter .gw-hotel-info__top {
  box-shadow: none;
  padding: 0px;
  background-color: var(--color-background-body);
}
@media (min-width: 1024px) {
  .globetrotter .gw-hotel-info__top {
    margin-bottom: var(--space-700);
  }
}

.gw-hotel-info__top-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-400);
}
@media (min-width: 768px) {
  .gw-hotel-info__top-wrapper {
    flex-direction: row;
    align-items: flex-end;
    gap: var(--space-500);
  }
}

.gw-hotel-info__tags {
  width: 100%;
  margin-bottom: var(--space-200);
}
@media (min-width: 768px) {
  .gw-hotel-info__tags {
    margin-bottom: var(--space-300);
  }
}

.gw-hotel-info__price-wrapper {
  font: var(--font-headline-m);
}
.globetrotter .gw-hotel-info__price-wrapper {
  font: var(--font-headline-l);
}

.gw-hotel-info__top-book {
  display: flex;
  flex-direction: column;
  gap: var(--space-400);
}
@media (max-width: 767px) {
  .gw-hotel-info__top-book {
    width: 100%;
    border-top: 1px solid var(--color-border-key-line);
    padding-top: var(--space-400);
  }
}
.gw-hotel-info__top-book a {
  width: 100%;
}

.gw-hotel-info__price-prefix {
  font: var(--font-body-l);
  color: var(--color-text-subtle);
  margin-right: var(--space-100);
}

.gw-hotel-info__price {
  font: var(--font-headline-l);
}
.gw-hotel-info__price--red {
  color: #e42a25;
}

.gw-hotel-info__ratings {
  display: flex;
  column-gap: var(--space-400);
  row-gap: var(--space-100);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-200);
}

.gw-hotel-info__ksps {
  margin-top: var(--space-400);
}

div.gw-hotel-info-container {
  padding: 0px var(--space-400) var(--space-400);
  position: relative;
}
@media (min-width: 1024px) {
  div.gw-hotel-info-container {
    padding: 0px var(--space-500) var(--space-500);
  }
}
.globetrotter div.gw-hotel-info-container {
  padding: 0px;
}

.gw-hotel-info {
  position: relative;
}

.gw-hotel-info__nav-container {
  position: sticky;
  top: -1px;
  z-index: 101;
  margin: 0px calc(var(--space-400) * -1) 0px calc(var(--space-400) * -1);
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .gw-hotel-info__nav-container {
    margin: 0px calc(var(--space-500) * -1);
  }
}
.globetrotter .gw-hotel-info__nav-container {
  margin: 0px;
}
@media (max-width: 767px) {
  .gw-hotel-info__nav-container--sticky {
    margin: 0px calc(var(--space-400) * -2) 0px calc(var(--space-400) * -2);
  }
}

.gw-hotel-info__main-container {
  padding: var(--space-400) 0 0;
}
@media (min-width: 768px) {
  .gw-hotel-info__main-container {
    padding: var(--space-500) 0 0;
  }
}

.gw-hotel-info__sticky-cta-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background-color: #454545;
  padding: var(--space-300);
}
.tpl-hotel-info-block__picture {
  border-radius: var(--border-radius-500);
  overflow: hidden;
}

@media (min-width: 768px) {
  .tpl-hotel-info-block .tpl-hotel-info-block__text {
    margin-top: var(--space-300);
  }
}

.tpl-hotel-info-block--portrait .tpl-hotel-info-block__text {
  margin-top: var(--space-400);
}

.tpl-hotel-info-block__text h4 .tpl-hotel-info-block__text h3 {
  font: var(--font-headline-s);
}
.geo-package-plus__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-300);
  position: relative;
}
@media (min-width: 768px) {
  .geo-package-plus__container {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--space-500);
  }
}
.globetrotter .geo-package-plus__container {
  position: static;
  gap: var(--space-500);
}

.geo-package-plus__heading {
  font: var(--font-headline-l);
}

.geo-package-plus__location {
  font: var(--font-headline-s);
  font-weight: 400;
  color: var(--color-text-subtle);
  margin: var(--space-300) 0px 0px;
}
.globetrotter .geo-package-plus__location {
  font: var(--font-body-l);
  margin: var(--space-300) 0px 0px;
}

.geo-package-plus__tags-container {
  display: flex;
  gap: var(--space-200);
  margin: var(--space-400) 0px 0px;
}
.globetrotter .geo-package-plus__tags-container {
  margin: var(--space-500) 0px 0px;
}

.geo-package-plus__right-section {
  border-top: 1px solid var(--color-grey-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-200) 0px 0px;
}
.globetrotter .geo-package-plus__right-section {
  border-top: none;
  padding: 0px;
}
@media (min-width: 768px) {
  .geo-package-plus__right-section {
    justify-content: normal;
    gap: var(--space-300);
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
  }
}

.geo-package-plus__price-wrapper {
  font: var(--font-headline-m);
  display: flex;
  gap: var(--space-100);
}

.geo-package-plus__from-price-label {
  color: var(--color-text-subtle);
  text-align: center;
}
.geo-package-plus-main-option__heading {
  font: var(--font-headline-s);
}

.geo-package-plus-main-option__description {
  margin-top: var(--space-500);
  white-space: pre-wrap;
}
@media (min-width: 768px) {
  .geo-package-plus-main-option__description {
    width: 66%;
  }
}

.geo-package-plus-main-option__images {
  margin-top: var(--space-500);
}
@media (min-width: 768px) {
  .geo-package-plus-main-option__images {
    margin-top: var(--space-600);
  }
}
.globetrotter .geo-package-plus-main-option__images {
  margin-top: var(--space-600);
}
@media (min-width: 768px) {
  .globetrotter .geo-package-plus-main-option__images {
    margin-top: var(--space-900);
  }
}
.gw-resort-list-item__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gw-resort-list {
  position: relative;
  width: 100%;
}
.globetrotter .gw-resort-list .gw-resort-list__map-card {
  height: auto;
}
.gw-resort-list .gw-map-content {
  height: 70vh;
  margin-bottom: calc(var(--space-700) * -1);
}

.gw-resort-list__map-image {
  align-self: center;
  flex: 0 0 auto;
  height: 100%;
  max-width: none;
  width: 100%;
}

.gw-resort-list .gw-map {
  height: 100%;
}
.gw-section-content:not(:last-child) {
  margin-bottom: var(--space-500);
}
.gw-section-content .gw-section-content-heading {
  margin-bottom: var(--space-500);
}
.tile-popup .webui-modal-header__children {
  width: 100%;
}

.tile-popup-tab-list {
  margin-bottom: var(--space-500);
}

.tile-popup-header-nav {
  margin: var(--space-500) 0px 0px;
}
@media (min-width: 768px) {
  .tile-popup-header-nav {
    width: 100%;
  }
}

.tile-popup-header-nav-weather {
  margin: var(--space-500) 0px 0px;
  width: calc(100% + 105px);
}
@media (min-width: 768px) {
  .tile-popup-header-nav-weather {
    width: calc(100% + 70px);
  }
}

.tile-content-group {
  display: none;
}

.tile-content-group--active {
  display: block;
}

.gw-tile-excursion-preamble {
  margin-bottom: var(--space-600);
  line-height: var(--space-500);
  max-width: 600px;
}

.gw-tile-excursion-esg {
  display: flex;
}
@media (max-width: 767px) {
  .gw-tile-excursion-esg {
    margin-bottom: var(--space-400);
  }
}
@media (min-width: 768px) {
  .gw-tile-excursion-esg {
    margin-bottom: var(--space-500);
  }
}
.gw-tile-excursion-esg__logo {
  margin: var(--space-50) var(--space-200) 0px 0px;
}
.gw-tile-excursion-esg__text {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .gw-tile-excursion-esg__text {
    max-width: 510px;
  }
}
.gw-weather-overlay {
  bottom: 0px;
  color: var(--color-white);
  left: 0px;
  position: absolute;
  right: 0px;
  text-align: center;
  top: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gw-weather-overlay__title {
  display: inline-block;
  font: var(--font-headline-m);
  text-transform: uppercase;
  width: 100%;
}

.gw-weather-overlay__temperature {
  display: inline-block;
  font: var(--font-headline-xl);
  padding-top: var(--space-100);
}
@media (min-width: 768px) {
  .gw-weather-overlay__temperature {
    font-size: 4.8rem;
    padding-top: var(--space-300);
  }
}
@media (min-width: 1024px) {
  .gw-weather-overlay__temperature {
    font-size: 6rem;
  }
}

.gw-weather-overlay__icon {
  display: inline-block;
  fill: var(--color-white);
  margin-top: calc(-1 * var(--space-200));
  padding-top: var(--space-400);
}
@media (min-width: 768px) {
  .gw-weather-overlay__icon {
    margin-top: 0px;
    padding-top: var(--space-300);
  }
}

.gw-weather-overlay__entry {
  padding-right: var(--space-200);
  fill: var(--color-white);
}
.gw-weather-overlay__entry .gw-weather-overlay__sun-icon,
.gw-weather-overlay__entry .gw-weather-overlay__night-icon {
  vertical-align: top;
  margin: var(--space-50) var(--space-100) 0px 0px;
  padding: var(--space-50);
}
@media (min-width: 768px) {
  .gw-weather-overlay__entry .gw-weather-overlay__sun-icon,
  .gw-weather-overlay__entry .gw-weather-overlay__night-icon {
    margin-top: var(--space-300);
    padding: 0px;
  }
}
.gw-tiles-view {
  position: relative;
  width: 100%;
}
.gw-tiles-view .gw-map-content {
  height: 70vh;
  margin-bottom: calc(var(--space-700) * -1);
}
.gw-tiles-view .gw-map {
  height: 100%;
}

.gw-tiles-view__map-image {
  align-self: center;
  flex: 0 0 auto;
  height: 100%;
  max-width: none;
  width: 100%;
}

.gw-tiles-view__card .uikit-card-content-title {
  display: flex;
  align-items: center;
  min-height: calc(70px - var(--space-400) * 2);
}
@media (min-width: 768px) {
  .gw-tiles-view__card .uikit-card-content-title {
    min-height: calc(70px - var(--space-500) * 2);
  }
}
.gw-tiles-view__card .uikit-card-content-title > div {
  font: var(--font-headline-s);
}
.overflow-hidden {
  overflow: hidden;
}

.gw-gallery {
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 799;
  color: var(--color-grey-800);
  background-color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}

.gw-gallery--in-web-view {
  position: relative;
  background-color: unset;
}

.gw-gallery--darkmode {
  color: var(--color-white);
  background-color: var(--color-black);
}

.theme-globetrotter .gw-gallery--darkmode {
  color: var(--color-white);
  background-color: var(--color-black);
}

.gw-gallery__content {
  padding: var(--space-100) var(--space-100);
  box-sizing: border-box;
  height: 90%;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
@media (min-width: 416px) {
  .gw-gallery__content {
    padding: var(--space-100) var(--space-200) var(--space-400);
  }
}
@media (min-width: 1280px) {
  .gw-gallery__content {
    padding: var(--space-100) var(--space-300) var(--space-400);
  }
}
.theme-globetrotter .gw-gallery__content {
  padding: var(--space-100) var(--space-400) var(--space-500);
}
@media (min-width: 1024px) {
  .theme-globetrotter .gw-gallery__content {
    padding: var(--space-100) var(--space-500) var(--space-600);
  }
}

.gw-gallery--in-web-view .gw-gallery__content {
  padding: 0;
}
@media (min-width: 416px) {
  .gw-gallery--in-web-view .gw-gallery__content {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .gw-gallery--in-web-view .gw-gallery__content {
    padding: 0;
  }
}

.gw-gallery--withCategories .gw-gallery__content {
  height: 85%;
}

.gw-gallery__youtube {
  height: 90%;
  width: 100%;
}
@media (min-width: 768px) {
  .gw-gallery__youtube {
    height: 510px;
  }
}
@media (min-width: 1024px) {
  .gw-gallery__youtube {
    height: 81vh;
  }
}

.gw-gallery__content-play-icon {
  background: rgba(32, 32, 32, 0.5);
  border-radius: 100%;
  fill: var(--color-white);
  height: 40px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  pointer-events: none;
}

.gw-gallery__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.yarl__fullscreen:fullscreen .yarl__thumbnails_container {
  visibility: hidden;
  display: none;
}

.yarl__slide_caption {
  text-align: center;
  color: var(--color-white);
}

.yarl__slide_captions_container {
  padding: var(--space-200) var(--space-400) var(--space-500) var(--space-400);
}

.gw-gallery-album-item:focus-visible {
  border-radius: 0;
}
.gw-gallery--darkmode .gw-gallery-album-item:focus-visible {
  outline-color: var(--color-white);
}

.gw-gallery-album-item img,
.gw-gallery-album-item picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.theme-globetrotter .yarl__container {
  background-color: var(--color-quartz-50);
}
.theme-globetrotter .yarl__slide {
  padding: var(--space-900) var(--space-400);
}
.theme-globetrotter .yarl__button {
  filter: none;
}
.theme-globetrotter .yarl__icon {
  color: var(--color-grey-900);
}
.theme-globetrotter .yarl__toolbar {
  padding: var(--space-400);
  align-items: center;
}
.theme-globetrotter .yarl__navigation_prev {
  position: absolute;
  top: unset;
  left: unset;
  transform: none;
  right: 110px;
  bottom: 0;
  z-index: 1;
}
.theme-globetrotter .yarl__navigation_next {
  position: absolute;
  top: unset;
  left: unset;
  transform: none;
  right: 0;
  bottom: 0;
  margin-right: var(--space-400);
  z-index: 1;
}
.theme-globetrotter .yarl__counter {
  position: absolute;
  top: unset;
  left: unset;
  right: 48px;
  bottom: 0;
  margin: 0px;
  padding: var(--space-500);
  color: var(--color-almostblack);
  filter: none;
}
.theme-globetrotter .yarl__slide_description_container {
  background-color: var(--color-quartz-50);
  right: unset;
}
.theme-globetrotter .yarl__slide_description {
  color: var(--color-black);
}
.theme-globetrotter .yarl__slide_captions_container {
  padding: var(--space-200) var(--space-400) 28px var(--space-400);
}
.theme-globetrotter .gw-gallery-lightbox--darkmode .yarl__container {
  background-color: var(--color-black);
}
.theme-globetrotter .gw-gallery-lightbox--darkmode .yarl__container .yarl__icon {
  color: var(--color-white);
}
.theme-globetrotter .gw-gallery-lightbox--darkmode .yarl__container .yarl__counter {
  color: var(--color-white);
}
.theme-globetrotter .gw-gallery-lightbox--darkmode .yarl__container .yarl__slide_description {
  color: var(--color-white);
}
.theme-globetrotter .gw-gallery-lightbox--darkmode .yarl__container .yarl__slide_description_container {
  background-color: var(--color-black);
}

.gw-gallery-lightbox--in-web-view .gw-gallery__youtube {
  aspect-ratio: 3/2;
}
.gw-gallery-lightbox--in-web-view.yarl__portal_open {
  height: 550px;
  position: unset;
}
.gw-gallery-lightbox--in-web-view .yarl__carousel {
  align-items: center;
}
.gw-gallery-lightbox--in-web-view .yarl__slide {
  max-height: calc(100% - 120px);
  padding: 0;
}
.gw-gallery-lightbox--in-web-view .yarl__container {
  background-color: var(--color-background-body);
}
.gw-gallery-lightbox--in-web-view .yarl__slide_description_container {
  padding: var(--space-200);
}
.gw-gallery-lightbox--in-web-view .yarl__slide_description {
  font: var(--font-body-s);
}
.gw-gallery-lightbox--in-web-view .yarl__button,
.gw-gallery-lightbox--in-web-view .yarl__counter {
  color: var(--color-text);
  filter: none;
}
.yarl__fullsize {
  height: 100%;
  width: 100%;
}

.yarl__relative {
  position: relative;
}

.yarl__portal {
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity var(--yarl__fade_animation_duration, 0.25s) var(--yarl__fade_animation_timing_function, ease);
  z-index: var(--yarl__portal_zindex, 9999);
}

.yarl__portal_open {
  opacity: 1;
}

.yarl__container {
  background-color: var(--yarl__container_background_color, var(--yarl__color_backdrop, #000));
  bottom: 0;
  left: 0;
  outline: none;
  overflow: hidden;
  overscroll-behavior: var(--yarl__controller_overscroll_behavior, contain);
  position: absolute;
  right: 0;
  top: 0;
  touch-action: var(--yarl__controller_touch_action, none);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.yarl__carousel {
  align-content: center;
  align-items: stretch;
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  justify-content: center;
  opacity: var(--yarl__pull_opacity, 1);
  transform: translate(var(--yarl__swipe_offset, 0), var(--yarl__pull_offset, 0));
  width: calc(100% + (var(--yarl__carousel_slides_count) - 1) * (100% + var(--yarl__carousel_spacing_px, 0) * 1px + var(--yarl__carousel_spacing_percent, 0) * 1%));
}

.yarl__carousel_with_slides {
  -moz-column-gap: calc(var(--yarl__carousel_spacing_px, 0) * 1px + 100 / (var(--yarl__carousel_slides_count) * 100 + (var(--yarl__carousel_slides_count) - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_spacing_percent, 0) * 1%);
  column-gap: calc(var(--yarl__carousel_spacing_px, 0) * 1px + 100 / (var(--yarl__carousel_slides_count) * 100 + (var(--yarl__carousel_slides_count) - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_spacing_percent, 0) * 1%);
}

.yarl__flex_center {
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

.yarl__slide {
  flex: 1;
  overflow: hidden;
  padding: calc(var(--yarl__carousel_padding_px, 0) * 1px + 100 / (var(--yarl__carousel_slides_count) * 100 + (var(--yarl__carousel_slides_count) - 1) * var(--yarl__carousel_spacing_percent, 0)) * var(--yarl__carousel_padding_percent, 0) * 1%);
  position: relative;
}

[dir=rtl] .yarl__slide {
  --yarl__direction:-1;
}

.yarl__slide_image {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  touch-action: var(--yarl__controller_touch_action, none);
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

@media screen and (min-width: 800px) {
  .yarl__slide_image {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transform-style: preserve-3d;
  }
}
.yarl__slide_image_cover {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.yarl__slide_image_loading {
  opacity: 0;
}

.yarl__slide_placeholder {
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.yarl__slide_loading {
  animation: yarl__delayed_fadein 1s linear;
  color: var(--yarl__slide_icon_loading_color, var(--yarl__color_button, hsla(0, 0%, 100%, 0.8)));
}

.yarl__slide_loading line {
  animation: yarl__stroke_opacity 1s linear infinite;
}

.yarl__slide_loading line:first-of-type {
  animation-delay: -1.875s;
}

.yarl__slide_loading line:nth-of-type(2) {
  animation-delay: -1.75s;
}

.yarl__slide_loading line:nth-of-type(3) {
  animation-delay: -1.625s;
}

.yarl__slide_loading line:nth-of-type(4) {
  animation-delay: -1.5s;
}

.yarl__slide_loading line:nth-of-type(5) {
  animation-delay: -1.375s;
}

.yarl__slide_loading line:nth-of-type(6) {
  animation-delay: -1.25s;
}

.yarl__slide_loading line:nth-of-type(7) {
  animation-delay: -1.125s;
}

.yarl__slide_loading line:nth-of-type(8) {
  animation-delay: -1s;
}

.yarl__slide_error {
  color: var(--yarl__slide_icon_error_color, red);
  height: var(--yarl__slide_icon_error_size, 48px);
  width: var(--yarl__slide_icon_error_size, 48px);
}

@media (prefers-reduced-motion) {
  .yarl__portal, .yarl__slide {
    transition: unset;
  }
  .yarl__slide_loading, .yarl__slide_loading line {
    animation: unset;
  }
}
.yarl__toolbar {
  bottom: auto;
  display: flex;
  justify-content: flex-end;
  left: auto;
  padding: var(--yarl__toolbar_padding, 8px);
  position: absolute;
  right: 0;
  top: 0;
}

[dir=rtl] .yarl__toolbar {
  bottom: auto;
  left: 0;
  right: auto;
  top: 0;
}

.yarl__icon {
  height: var(--yarl__icon_size, 32px);
  width: var(--yarl__icon_size, 32px);
}

.yarl__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--yarl__button_background_color, transparent);
  border: var(--yarl__button_border, 0);
  color: var(--yarl__color_button, hsla(0, 0%, 100%, 0.8));
  cursor: pointer;
  filter: var(--yarl__button_filter, drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8)));
  line-height: 0;
  margin: var(--yarl__button_margin, 0);
  outline: none;
  padding: var(--yarl__button_padding, 8px);
  -webkit-tap-highlight-color: transparent;
}

.yarl__button:focus {
  color: var(--yarl__color_button_active, #fff);
}

.yarl__button:focus:not(:focus-visible) {
  color: var(--yarl__color_button, hsla(0, 0%, 100%, 0.8));
}

.yarl__button:focus-visible {
  color: var(--yarl__color_button_active, #fff);
}

@media (hover: hover) {
  .yarl__button:focus-visible:hover, .yarl__button:focus:hover, .yarl__button:hover {
    color: var(--yarl__color_button_active, #fff);
  }
}
.yarl__button:disabled {
  color: var(--yarl__color_button_disabled, hsla(0, 0%, 100%, 0.4));
  cursor: default;
}

.yarl__navigation_next, .yarl__navigation_prev {
  padding: var(--yarl__navigation_button_padding, 24px 16px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.yarl__navigation_prev {
  left: 0;
}

[dir=rtl] .yarl__navigation_prev {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.yarl__navigation_next {
  right: 0;
}

[dir=rtl] .yarl__navigation_next {
  left: 0;
  right: unset;
  transform: translateY(-50%) rotate(180deg);
}

.yarl__no_scroll {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

@keyframes yarl__delayed_fadein {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes yarl__stroke_opacity {
  0% {
    stroke-opacity: 1;
  }
  to {
    stroke-opacity: 0.125;
  }
}
.yarl__counter {
  bottom: var(--yarl__counter_bottom, unset);
  color: var(--yarl__counter_color, var(--yarl__color_button, hsla(0, 0%, 100%, 0.8)));
  filter: var(--yarl__counter_filter, drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8)));
  left: var(--yarl__counter_left, 0);
  line-height: var(--yarl__counter_line_height, var(--yarl__icon_size, 32px));
  margin: var(--yarl__counter_margin, var(--yarl__toolbar_padding, 8px));
  padding: var(--yarl__counter_padding, var(--yarl__button_padding, 8px));
  position: var(--yarl__counter_position, absolute);
  right: var(--yarl__counter_right, unset);
  top: var(--yarl__counter_top, 0);
  -webkit-user-select: var(--yarl__counter_user_select, none);
  -moz-user-select: var(--yarl__counter_user_select, none);
  user-select: var(--yarl__counter_user_select, none);
}
.yarl__slide_captions_container {
  background: var(--yarl__slide_captions_container_background, rgba(0, 0, 0, 0.5));
  left: var(--yarl__slide_captions_container_left, 0);
  padding: var(--yarl__slide_captions_container_padding, 16px);
  position: absolute;
  right: var(--yarl__slide_captions_container_right, 0);
  -webkit-transform: translateZ(0);
}

.yarl__slide_title {
  color: var(--yarl__slide_title_color, #fff);
  font-size: var(--yarl__slide_title_font_size, 125%);
  font-weight: var(--yarl__slide_title_font_weight, bolder);
  max-width: calc(100% - var(--yarl__toolbar_width, 0px));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yarl__slide_title_container {
  top: var(--yarl__slide_title_container_top, 0);
}

.yarl__slide_description {
  display: -webkit-box;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--yarl__slide_description_max_lines, 3);
  color: var(--yarl__slide_description_color, #fff);
  text-align: var(--yarl__slide_description_text_align, start);
}

.yarl__slide_description_container {
  bottom: var(--yarl__slide_description_container_bottom, 0);
}
.yarl__thumbnails {
  display: flex;
  height: 100%;
}

.yarl__thumbnails_bottom, .yarl__thumbnails_end .yarl__thumbnails_track, .yarl__thumbnails_start .yarl__thumbnails_track, .yarl__thumbnails_top {
  flex-direction: column;
}

.yarl__thumbnails_wrapper {
  flex: 1;
  position: relative;
}

.yarl__thumbnails_container {
  background-color: var(--yarl__thumbnails_container_background_color, var(--yarl__color_backdrop, #000));
  flex: 0 0 auto;
  overflow: hidden;
  padding: var(--yarl__thumbnails_container_padding, 16px);
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.yarl__thumbnails_vignette {
  pointer-events: none;
  position: absolute;
  --yarl__thumbnails_vignette_size:12%;
}

@media (min-width: 1200px) {
  .yarl__thumbnails_vignette {
    --yarl__thumbnails_vignette_size:8%;
  }
}
@media (min-width: 2000px) {
  .yarl__thumbnails_vignette {
    --yarl__thumbnails_vignette_size:5%;
  }
}
.yarl__thumbnails_bottom .yarl__thumbnails_vignette, .yarl__thumbnails_top .yarl__thumbnails_vignette {
  background: linear-gradient(to right, var(--yarl__color_backdrop, #000) 0, transparent var(--yarl__thumbnails_vignette_size, 12%) calc(100% - var(--yarl__thumbnails_vignette_size, 12%)), var(--yarl__color_backdrop, #000) 100%);
  height: 100%;
  left: 0;
  right: 0;
}

.yarl__thumbnails_end .yarl__thumbnails_vignette, .yarl__thumbnails_start .yarl__thumbnails_vignette {
  background: linear-gradient(to bottom, var(--yarl__color_backdrop, #000) 0, transparent var(--yarl__thumbnails_vignette_size, 12%) calc(100% - var(--yarl__thumbnails_vignette_size, 12%)), var(--yarl__color_backdrop, #000) 100%);
  bottom: 0;
  top: 0;
  width: 100%;
}

.yarl__thumbnails_track {
  gap: var(--yarl__thumbnails_thumbnail_gap, 16px);
  outline: none;
}

.yarl__thumbnails_thumbnail {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--yarl__thumbnails_thumbnail_background, #000);
  border-color: var(--yarl__thumbnails_thumbnail_border_color, var(--yarl__color_button, hsla(0, 0%, 100%, 0.8)));
  border-radius: var(--yarl__thumbnails_thumbnail_border_radius, 4px);
  border-style: var(--yarl__thumbnails_thumbnail_border_style, solid);
  border-width: var(--yarl__thumbnails_thumbnail_border, 1px);
  cursor: pointer;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
  box-sizing: content-box;
  height: var(--yarl__thumbnails_thumbnail_height, 80px);
  outline: none;
  overflow: hidden;
  padding: var(--yarl__thumbnails_thumbnail_padding, 4px);
  position: relative;
  width: var(--yarl__thumbnails_thumbnail_width, 120px);
}

.yarl__thumbnails_thumbnail_active {
  border-color: var(--yarl__thumbnails_thumbnail_active_border_color, var(--yarl__color_button_active, #fff));
}

.yarl__thumbnails_thumbnail_fadein {
  animation: yarl__thumbnails_thumbnail_fadein var(--yarl__thumbnails_thumbnail_fadein_duration, 0.5s) ease-in-out var(--yarl__thumbnails_thumbnail_fadein_delay, 0s) forwards;
  opacity: 0;
}

.yarl__thumbnails_thumbnail_fadeout {
  animation: yarl__thumbnails_thumbnail_fadeout var(--yarl__thumbnails_thumbnail_fadeout_duration, 0.5s) ease-in-out var(--yarl__thumbnails_thumbnail_fadeout_delay, 0s) forwards;
  cursor: unset;
}

.yarl__thumbnails_thumbnail_placeholder {
  cursor: unset;
  visibility: hidden;
}

.yarl__thumbnails_thumbnail:focus {
  box-shadow: var(--yarl__thumbnails_thumbnail_focus_box_shadow, #000 0 0 0 2px, var(--yarl__color_button, hsla(0, 0%, 100%, 0.8)) 0 0 0 4px);
}

.yarl__thumbnails_thumbnail:focus:not(:focus-visible) {
  box-shadow: unset;
}

.yarl__thumbnails_thumbnail:focus-visible {
  box-shadow: var(--yarl__thumbnails_thumbnail_focus_box_shadow, #000 0 0 0 2px, var(--yarl__color_button, hsla(0, 0%, 100%, 0.8)) 0 0 0 4px);
}

.yarl__thumbnails_thumbnail_icon {
  color: var(--yarl__thumbnails_thumbnail_icon_color, var(--yarl__color_button, hsla(0, 0%, 100%, 0.8)));
  filter: var(--yarl__thumbnails_thumbnail_icon_filter, drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8)));
  height: var(--yarl__thumbnails_thumbnail_icon_size, 32px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: var(--yarl__thumbnails_thumbnail_icon_size, 32px);
}

@keyframes yarl__thumbnails_thumbnail_fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes yarl__thumbnails_thumbnail_fadeout {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.gw-gallery__head {
  padding: var(--space-200) var(--space-300);
}
@media (min-width: 1024px) {
  .gw-gallery__head {
    padding: var(--space-300);
  }
}
.theme-globetrotter .gw-gallery__head {
  padding: var(--space-300) var(--space-400);
}
@media (min-width: 1024px) {
  .theme-globetrotter .gw-gallery__head {
    padding: var(--space-500);
  }
}

.gw-gallery__top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gw-gallery__top-bar-title {
  font: var(--font-headline-m);
  font-weight: 400;
  line-height: normal;
}
.theme-globetrotter .gw-gallery__top-bar-title {
  font: var(--font-headline-s);
}

.gw-gallery__close {
  display: flex;
  align-items: center;
  padding: 14px 14px;
}
.gw-gallery__close .gw-gallery__close-icon {
  fill: black;
}
@media (min-width: 768px) {
  .gw-gallery__close .gw-gallery__close-icon {
    stroke: black;
  }
}

.gw-gallery--darkmode .gw-gallery__close-icon {
  fill: white;
  stroke: white;
}
.gw-gallery--darkmode .gw-gallery__category-text {
  color: var(--color-black);
}
.gw-gallery--darkmode .gw-gallery__categories-row {
  filter: invert(1);
}

.theme-globetrotter .gw-gallery--darkmode .gw-gallery__close-icon {
  fill: white;
  stroke: white;
}
.theme-globetrotter .gw-gallery--darkmode .gw-gallery__category-text {
  color: #000;
}
.theme-globetrotter .gw-gallery--darkmode .gw-gallery__categories-row {
  filter: invert(1);
}

.gw-gallery__close-button-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gw-top-image {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .globetrotter .gw-top-image {
    aspect-ratio: 21/9;
    max-height: 65vh;
    max-width: 3440px;
    margin: 0px auto;
  }
}
@media (min-aspect-ratio: 18/9) {
  .globetrotter .gw-top-image {
    max-height: 75vh;
  }
}
@media (min-width: 768px) {
  .gw-top-image {
    aspect-ratio: 21/9;
    max-height: 55vh;
    max-width: 3440px;
    margin: 0px auto;
  }
}
@media (min-aspect-ratio: 18/9) {
  .gw-top-image:not(.gw-top-image--in-web-view) {
    max-height: 75vh;
  }
}
.gw-top-image .gw-top-image__picture img,
.gw-top-image .gw-top-image__video,
.gw-top-image .gw-top-image__picture {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gw-top-image .gw-top-image__picture_mix {
  background-color: white;
  display: flex;
  height: 100%;
  width: 100%;
}
.gw-top-image .gw-top-image__picture_mix--right {
  display: none;
}
@media (min-width: 1024px) {
  .gw-top-image .gw-top-image__picture_mix--right {
    display: initial;
  }
}

.gw-top-image__content-grid {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  grid-template-rows: 100%;
}

.gw-top-image__content {
  position: relative;
  pointer-events: none;
}

.gw-top-image__button-layer {
  position: absolute;
  top: var(--space-200);
  left: var(--space-200);
  right: var(--space-200);
  bottom: var(--space-200);
  cursor: pointer;
}
.gw-top-image__button-layer:focus-visible {
  outline: none;
  box-shadow: none;
}

.gw-top-image__lollo-and-bernie {
  position: absolute;
  top: unset;
  bottom: 40px;
  left: 0;
  width: auto;
  display: flex;
}
.gw-top-image__lollo-and-bernie img {
  height: 60px;
}
@media (min-width: 768px) {
  .gw-top-image__lollo-and-bernie {
    bottom: 60px;
  }
  .gw-top-image__lollo-and-bernie img {
    height: 80px;
  }
}

.gw-top-image__concept-logo {
  position: absolute;
  top: var(--space-400);
  left: 0;
}

.gw-top-image__cruise-logo {
  position: absolute;
  top: var(--space-400);
  left: 0;
}

.gw-top-image__gallery-button {
  position: absolute;
  right: 0;
  top: var(--space-400);
}
@media (max-width: 767px) {
  .theme-default .gw-top-image__gallery-button svg:last-of-type,
  .theme-default .gw-top-image__gallery-button .gw-gallery-button__text {
    display: none;
  }
}
.globetrotter .gw-top-image__gallery-button {
  top: unset;
  bottom: var(--space-500);
  right: 0;
}

.gw-top-image__button-layer:focus-visible + div .gw-top-image__gallery-button {
  outline: 0.2rem solid var(--color-focus-outline);
  outline-offset: 0.2rem;
  box-shadow: 0 0 0 0.4rem var(--color-white);
  border-radius: 0.4rem;
}
.globetrotter .gw-top-image__button-layer:focus-visible + div .gw-top-image__gallery-button {
  border-radius: 0;
}
.gw-tree-list-item {
  width: 100%;
}

.gw-tree-list-item__children {
  display: none;
}
.gw-tree-list-item--expanded > .gw-tree-list-item__children {
  display: block;
  margin-top: var(--space-100);
  margin-bottom: var(--space-300);
}

.gw-tree-list-item__heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}
.gw-tree-list-item__heading-container.gw-tree-list-item__no-children {
  background-color: inherit;
  box-shadow: inherit;
}

.gw-tree-list-item__link {
  display: flex;
  flex: 1 1 auto;
}

.gw-tree-list-item__heading--level-3 {
  padding-left: var(--space-500);
}

.gw-tree-list-item__heading--level-4 {
  padding-left: var(--space-600);
}

.gw-tree-list-item__expand-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-200);
}
.gw-world-tree__region {
  display: flex;
  flex-direction: column;
  padding: var(--space-400);
}
@media (min-width: 768px) {
  .gw-world-tree__region {
    padding: var(--space-500);
  }
}

.gw-world-tree__region-name {
  font: var(--font-headline-s);
  text-transform: uppercase;
  overflow-wrap: break-word;
  margin-bottom: var(--space-300);
}

.gw-world-tree__region-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.theme-default .gw_world-tree__item {
  height: 100%;
  overflow: hidden;
}

/*# sourceMappingURL=cruise-shipping-company-faq.a51b9faca4a2f9cab2ca.css.map*/