/* Product identity, gallery, dates, and booking surfaces. */
.sx-reference-topbar {
  min-height: 72px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.sx-reference-header-content {
  width: min(90%, var(--sx-product-wide-width));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
}

.sx-reference-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sx-product-ink);
  text-decoration: none;
}

.sx-reference-brand img {
  width: 47px;
  height: 29px;
  display: block;
  object-fit: contain;
}

.sx-reference-brand > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sx-reference-brand strong {
  color: var(--sx-product-ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.sx-reference-brand small {
  color: var(--sx-product-faint);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.sx-reference-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sx-reference-currency {
  position: relative;
}

.sx-reference-currency__trigger,
.sx-reference-currency__menu button,
.sx-reference-account-trigger {
  border: 0;
  background: transparent;
  color: var(--sx-product-text);
  cursor: pointer;
}

.sx-reference-currency__trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
}

.sx-reference-currency__trigger > span,
.sx-reference-currency__menu span {
  font-size: 15px;
  line-height: 1;
}

.sx-reference-currency__trigger strong,
.sx-reference-currency__menu strong {
  font-size: 12px;
  font-weight: 700;
}

.sx-reference-currency__trigger .sx-icon {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.sx-reference-currency__trigger[aria-expanded="true"] .sx-icon {
  transform: rotate(-90deg);
}

.sx-reference-currency__menu {
  width: 132px;
  position: absolute;
  top: calc(100% + 3px);
  right: 0;
  z-index: 84;
  padding: 5px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.sx-reference-currency__menu button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border-radius: 3px;
  text-align: left;
}

.sx-reference-currency__menu button:hover,
.sx-reference-currency__menu button[aria-selected="true"] {
  background: #f2f2f2;
}

.sx-reference-account-trigger {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 0;
  text-align: left;
}

.sx-reference-account-trigger > img,
.sx-reference-account-trigger__icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 50%;
  object-fit: cover;
  place-items: center;
}

.sx-reference-account-trigger__icon .sx-icon {
  width: 17px;
  height: 17px;
}

.sx-reference-account-trigger > span:last-child {
  display: grid;
  gap: 2px;
}

.sx-reference-account-trigger strong,
.sx-reference-account-trigger small {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sx-reference-account-trigger strong {
  font-size: 12px;
  font-weight: 700;
}

.sx-reference-account-trigger small {
  color: var(--sx-product-faint);
  font-size: 9px;
}

.sx-reference-account-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr min(430px, 92vw);
}

.sx-reference-account-drawer__backdrop {
  border: 0;
  background: rgba(0, 0, 0, 0.58);
  cursor: pointer;
}

.sx-reference-account-drawer > aside {
  min-width: 0;
  overflow-y: auto;
  padding: 42px 34px;
  background: #fff;
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.14);
}

.sx-reference-account-drawer > aside > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--sx-product-line);
}

.sx-reference-account-drawer h2 {
  margin: 0;
  color: var(--sx-product-ink);
  font-size: 28px;
  line-height: 1.2;
}

.sx-reference-account-drawer header button {
  width: 44px;
  height: 44px;
  display: grid;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.sx-reference-account-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  margin: 28px 0 18px;
  padding: 22px;
  border: 1px solid #ddd;
  background: linear-gradient(135deg, #fff 0 55%, #ececec 100%);
}

.sx-reference-account-card span,
.sx-reference-account-card small {
  color: var(--sx-product-faint);
  font-size: 10px;
}

.sx-reference-account-card strong {
  color: var(--sx-product-ink);
  font-size: 18px;
}

.sx-reference-account-drawer nav {
  display: grid;
}

.sx-reference-account-drawer nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #ececec;
  color: var(--sx-product-text);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.sx-reference-account-drawer nav .sx-icon {
  width: 20px;
  height: 20px;
}

.sx-reference-breadcrumb {
  width: 90%;
  max-width: none;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-inline: auto;
  overflow: hidden;
  color: var(--sx-product-faint);
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.sx-reference-breadcrumb a,
.sx-reference-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.sx-reference-breadcrumb a {
  color: var(--sx-product-faint);
}

.sx-reference-breadcrumb a:first-child {
  color: var(--sx-product-blue-dark);
}

.sx-reference-breadcrumb a:hover {
  color: var(--sx-product-blue);
}

.sx-reference-breadcrumb span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sx-reference-stage {
  display: grid;
  grid-template-columns: minmax(0, 59.98%) minmax(0, 37.5%);
  grid-template-areas:
    "gallery-main gallery-side"
    "product-info calendar"
    "copy calendar"
    "booking booking";
  grid-template-rows: 518px auto auto auto;
  column-gap: clamp(23px, 1.6667vw, 24px);
  padding-bottom: 78px;
}

.sx-reference-gallery-main,
.sx-reference-gallery-side {
  min-width: 0;
  overflow: hidden;
  background: #eee;
}

.sx-reference-tablet-gallery {
  display: none;
}

.sx-reference-mobile-thumbnails {
  display: none;
}

.sx-reference-gallery-main {
  grid-area: gallery-main;
  position: relative;
}

.sx-reference-gallery-title {
  display: none;
}

.sx-reference-gallery-side {
  grid-area: gallery-side;
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  background: #fff;
}

.sx-reference-share {
  width: auto !important;
  height: 35px !important;
  min-height: 35px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 400;
}

.sx-reference-share span {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.sx-reference-desktop-share {
  position: relative;
  z-index: 4;
  grid-area: calendar;
  align-self: start;
  justify-self: end;
}

.sx-reference-desktop-share > .sx-reference-share {
  width: 87px !important;
  padding: 0 !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none;
}

.sx-reference-desktop-share > .sx-reference-share:hover {
  background: var(--sx-product-soft) !important;
}

.sx-reference-share .sx-icon {
  width: 25px;
  height: 25px;
}

.sx-reference-share-status {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  z-index: 4;
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.76);
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
}

.sx-reference-share-status:empty {
  display: none;
}

.sx-reference-mobile-share {
  display: none;
}

.sx-reference-gallery-main > button,
.sx-reference-gallery-side > button {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.sx-reference-gallery-main img,
.sx-reference-gallery-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease;
}

.sx-reference-gallery-main button:hover img,
.sx-reference-gallery-side button:hover img {
  transform: scale(1.02);
}

.sx-reference-gallery-side > button:not(.sx-reference-share) span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  background: rgba(16, 16, 16, 0.64);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.sx-reference-mobile-gallery {
  display: none;
}

.sx-reference-product-info {
  min-width: 0;
  grid-area: product-info;
  padding: 46px 54px 0 0;
  scroll-margin-top: 82px;
}

.sx-reference-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--sx-product-line);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.sx-reference-meta b {
  padding: 0;
  border: 0;
  color: var(--sx-product-muted);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
}

.sx-reference-product-info h1 {
  max-width: 577px;
  margin: 0;
  color: var(--sx-product-ink);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sx-reference-product-info h1 span {
  display: block;
}

.sx-reference-product-info h1 span:first-child {
  margin-bottom: 0;
  color: var(--sx-product-ink);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.sx-reference-subtitle {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--sx-product-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.sx-reference-service-facts {
  display: grid;
  gap: 5px;
  margin: 23px 0 0;
  padding: 0;
  border: 0;
}

.sx-reference-service-facts div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  color: var(--sx-product-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
}

.sx-reference-service-facts dt {
  flex: 0 0 auto;
  font-weight: 700;
}

.sx-reference-service-facts dd {
  min-width: 0;
  margin: 0;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.sx-reference-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 18px;
  color: var(--sx-product-text);
  font-size: 14px;
  line-height: 1.4;
}

.sx-reference-rating-row strong {
  color: #eb641b;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.sx-reference-rating-row span {
  display: inline-flex;
  align-items: center;
}

.sx-reference-rating-row span::before {
  width: 1px;
  height: 15px;
  margin: 0 12px;
  background: var(--sx-product-line);
  content: "";
}

.sx-reference-calendar-card {
  width: calc(100% + 1px);
  min-width: 0;
  min-height: 587.4px;
  grid-area: calendar;
  align-self: start;
  margin-top: 50.6px;
  margin-left: 4.4px;
  padding: 0 22px;
  border: 1px solid var(--sx-product-line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  scroll-margin-top: 82px;
}

.sx-reference-calendar-card .sx-reference-calendar,
.sx-reference-calendar-panel {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sx-reference-calendar-note {
  min-height: 46px;
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  align-items: start;
  gap: 5px;
  margin: 0 -22px;
  padding: 8px 12px;
  background: #fff8f3;
  color: #d79442;
  font-size: 10px;
  line-height: 1.35;
}

.sx-reference-calendar-note > span:first-child {
  font-size: 13px;
  line-height: 1;
}

.sx-reference-month-tabs {
  display: flex;
  min-height: 51px;
  align-items: stretch;
  gap: 0;
  margin-right: -22px;
  margin-bottom: 12px;
  margin-left: -22px;
  overflow-x: auto;
  border-bottom: 1px solid var(--sx-product-line);
  scrollbar-width: none;
}

.sx-reference-month-tabs::-webkit-scrollbar {
  display: none;
}

.sx-reference-month-tabs button {
  min-width: 70px;
  min-height: 51px;
  position: relative;
  display: flex;
  flex: 1 0 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0 5px;
  border: 0;
  background: transparent;
  color: var(--sx-product-faint);
  font-size: 12px;
  cursor: pointer;
}

.sx-reference-month-tabs button strong {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  white-space: nowrap;
}

.sx-reference-month-tabs button small {
  color: #8f8f8f;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  white-space: nowrap;
}

.sx-reference-month-tabs .sx-reference-month-nav {
  min-width: 18px;
  flex: 0 0 18px;
  padding: 0;
  color: #262626;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.sx-reference-month-tabs .sx-reference-month-nav::after {
  display: none;
}

.sx-reference-month-tabs button::after {
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  background: transparent;
  content: "";
}

.sx-reference-month-tabs button[aria-selected="true"] {
  color: var(--sx-product-blue);
  font-weight: 700;
}

.sx-reference-month-tabs button[aria-selected="true"]::after {
  background: var(--sx-product-blue);
}

.sx-reference-calendar-weekdays,
.sx-reference-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.sx-reference-calendar-weekdays {
  padding: 12px 0 8px;
  color: var(--sx-product-faint);
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

.sx-reference-calendar-grid {
  grid-auto-rows: 71.7333px;
}

.sx-reference-calendar-grid > button,
.sx-reference-calendar-grid > span {
  min-width: 0;
  min-height: 44px;
  height: 71.7333px;
  align-self: stretch;
}

.sx-reference-calendar-grid > button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 1px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--sx-product-soft);
  color: var(--sx-product-text);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.sx-reference-calendar-grid > button:hover:not(:disabled) {
  border-color: var(--sx-product-blue);
}

.sx-reference-calendar-grid > button.is-selected {
  border-color: var(--sx-product-blue);
  background: #eef6fd;
  color: var(--sx-product-blue-dark);
}

.sx-reference-calendar-grid > button:disabled {
  background: #f7f7f7;
  color: #aaa;
  opacity: 0.62;
  cursor: not-allowed;
}

.sx-reference-calendar-grid > button span,
.sx-reference-calendar-day b {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.sx-reference-calendar-grid > button b {
  max-width: 100%;
  overflow: hidden;
  color: currentColor;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sx-reference-calendar-day {
  display: grid;
  place-items: start center;
  padding-top: 8px;
  color: #aaa;
}

.sx-reference-no-departure {
  margin: 0;
  padding: 24px 0;
  border-block: 1px solid var(--sx-product-line);
  color: var(--sx-product-muted);
  font-size: 14px;
}

.sx-reference-copy {
  min-width: 0;
  grid-area: copy;
  padding: 34px 54px 0 0;
}

.sx-reference-description {
  max-width: 660px;
  color: var(--sx-product-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sx-reference-description p {
  margin: 0 0 14px;
}

.sx-reference-description > :last-child {
  margin-bottom: 0;
}

.sx-reference-selling-points {
  margin-top: 34px;
}

.sx-reference-selling-points h2 {
  margin: 0 0 10px;
  color: var(--sx-product-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.sx-reference-selling-points p {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  padding: 13px 0;
  border-top: 0;
  color: var(--sx-product-text);
  font-size: 15px;
  line-height: 1.6;
}

.sx-reference-selling-points .sx-icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--sx-product-blue-dark);
}

.sx-reference-booking {
  min-width: 0;
  min-height: 156px;
  grid-area: booking;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 112px);
  margin-top: 46px;
  padding: 24px 28px;
  border: 0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 7px 25px rgba(20, 24, 21, .2);
}

.sx-reference-booking-fields {
  width: min(490px, 100%);
  min-width: 0;
}

.sx-reference-booking-guests {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.sx-reference-booking-guests label {
  position: relative;
  min-width: 0;
}

.sx-reference-booking-guests select {
  width: 100%;
  height: 44px;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.sx-reference-booking-guest-display {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px 0 13px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background-color: var(--sx-product-soft);
  color: var(--sx-product-ink);
  font-size: 13px;
}

.sx-reference-booking-guest-display > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sx-reference-booking-guest-display small {
  color: var(--sx-product-muted);
  font-size: inherit;
}

.sx-reference-booking-guest-display b {
  flex: 0 0 auto;
  font-size: 14px;
}

.sx-reference-booking-guests label::after {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 16px;
  right: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  pointer-events: none;
}

.sx-reference-booking-guests label:focus-within .sx-reference-booking-guest-display {
  outline: 2px solid var(--sx-product-blue);
  outline-offset: 2px;
}

.sx-reference-favorite {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--sx-product-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.sx-reference-favorite .sx-icon {
  width: 25px;
  height: 25px;
  color: var(--sx-product-ink);
  transition: color 180ms ease, fill 180ms ease, transform 180ms ease;
}

.sx-reference-favorite:hover .sx-icon {
  transform: scale(1.05);
}

.sx-reference-favorite.is-active,
.sx-reference-favorite.is-active .sx-icon {
  color: var(--sx-product-blue-dark);
}

.sx-reference-favorite.is-active .sx-icon {
  fill: currentColor;
}

.sx-reference-booking-date {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--sx-product-soft);
}

.sx-reference-booking-date strong {
  min-width: 0;
  overflow: hidden;
  color: var(--sx-product-ink);
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sx-reference-booking-date .sx-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--sx-product-ink);
}

.sx-reference-booking-date--floating {
  border-color: var(--sx-product-ink);
  background: transparent;
}

.sx-reference-booking-action {
  width: min(430px, 100%);
  min-width: 0;
  display: grid;
  justify-self: end;
  gap: 11px;
}

.sx-reference-price {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: 0;
  color: var(--sx-product-ink);
  font-family: inherit;
  white-space: nowrap;
}

.sx-reference-price-label {
  margin-right: 12px;
  color: var(--sx-product-ink);
  font-size: 14px;
  font-weight: 700;
}

.sx-reference-price .sx-reference-price-currency {
  color: var(--sx-product-blue-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.sx-reference-price .sx-reference-price-amount {
  color: var(--sx-product-blue-dark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.sx-reference-price small {
  margin-left: 6px;
  color: var(--sx-product-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.sx-reference-book-button,
.sx-reference-submit {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: var(--sx-product-orange);
  color: #111;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.sx-reference-book-button:hover,
.sx-reference-submit:hover {
  background: #df5d12;
}

.sx-reference-book-button:hover {
  transform: translateY(-1px);
}

.sx-reference-book-button span {
  font-size: inherit;
  font-weight: inherit;
}

.sx-reference-floating-booking {
  width: min(var(--sx-product-width), calc(100% - 40px));
  min-height: 156px;
  position: fixed;
  bottom: 18px;
  left: 50%;
  z-index: 70;
  display: flex;
  align-items: center;
  border: 1px solid rgba(220, 222, 216, .84);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 7px 25px rgba(20, 24, 21, .2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(100% + 40px));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, visibility 0s linear 420ms;
  pointer-events: none;
  will-change: transform, opacity;
}

.sx-reference-floating-booking.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
  pointer-events: auto;
}

.sx-reference-floating-booking > .sx-reference-content {
  width: 100%;
  min-height: 154px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 112px);
  margin: 0 auto;
  padding: 24px 28px;
}

.sx-reference-floating-booking .sx-reference-booking-fields {
  width: min(490px, 100%);
}

.sx-reference-floating-booking .sx-reference-booking-action {
  width: min(430px, 100%);
  justify-self: end;
}

.sx-reference-floating-price-note {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 7px;
  color: #666;
  font-size: 12px;
  line-height: 1;
}

.sx-reference-floating-price-note i {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.sx-reference-floating-service {
  min-width: 126px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 28px;
  background: #e8f3ff;
  color: var(--sx-product-blue);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.sx-reference-floating-service:hover {
  background: #dcecff;
  transform: translateY(-1px);
}

.sx-reference-floating-service-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(24, 102, 155, 0.14);
}

.sx-reference-floating-service-icon .sx-icon {
  width: 22px;
  height: 22px;
}

.sx-reference-floating-button {
  margin: 0;
  border-radius: 28px;
  color: #fff;
}

.sx-reference-gallery-dialog > div button,
.sx-reference-modal-close,
.sx-reference-inquiry-dialog fieldset button {
  min-width: 44px;
  width: 44px;
  min-height: 44px;
  height: 44px;
}

@media (max-width: 900px) {
  .sx-reference-stage {
    position: relative;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    grid-template-rows: 455px auto auto auto;
    column-gap: 14px;
  }

  .sx-reference-product-info,
  .sx-reference-copy {
    padding-right: 34px;
  }

  .sx-reference-product-info h1 {
    font-size: 39px;
  }

  .sx-reference-calendar-card {
    width: auto;
    min-height: 0;
    margin-top: 46px;
    margin-left: 0;
    padding-inline: 14px;
    box-shadow: none;
  }

  .sx-reference-calendar-grid {
    gap: 2px;
    grid-auto-rows: 50px;
  }

  .sx-reference-calendar-grid > button,
  .sx-reference-calendar-grid > span {
    height: 50px;
  }

  .sx-reference-calendar-grid > button b {
    font-size: 8px;
  }

  .sx-reference-booking,
  .sx-reference-floating-booking > .sx-reference-content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
  }
}

@media (min-width: 901px) {
  .sx-reference-stage {
    padding-top: 15px;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .sx-reference-gallery-main,
  .sx-reference-gallery-side {
    visibility: hidden;
  }

  .sx-reference-tablet-gallery {
    height: 57px;
    position: absolute;
    top: 95px;
    left: 96px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }

  .sx-reference-tablet-gallery button {
    width: 43px;
    height: 57px;
    flex: 0 0 43px;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #eee;
    cursor: pointer;
  }

  .sx-reference-tablet-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .sx-reference-product-info {
    padding-top: 50px;
  }

  .sx-reference-calendar-card {
    height: 379px;
    min-height: 379px;
    margin-top: 50px;
    margin-left: 1px;
    padding: 0;
    overflow: hidden;
  }

  .sx-reference-calendar-card .sx-reference-calendar {
    width: 431px;
    min-height: 585px;
    transform: scale(0.644);
    transform-origin: top left;
  }

  .sx-reference-calendar-note {
    margin: 0;
  }

  .sx-reference-month-tabs {
    width: 431px;
    margin: 0 0 12px;
  }

  .sx-reference-calendar-weekdays,
  .sx-reference-calendar-grid {
    width: 387px;
    margin-left: 22px;
  }

  .sx-reference-calendar-grid {
    gap: 3px;
    grid-auto-rows: 71.7333px;
  }

  .sx-reference-calendar-grid > button,
  .sx-reference-calendar-grid > span {
    height: 71.7333px;
  }
}

@media (min-width: 1301px) {
  .sx-reference-gallery-main,
  .sx-reference-gallery-side {
    transform: translateX(1px);
  }
}

@media (max-width: 700px) {
  .sx-reference-topbar,
  .sx-reference-header-content {
    min-height: 62px;
  }

  .sx-reference-header-content {
    width: calc(100% - 32px);
  }

  .sx-reference-header-actions {
    gap: 8px;
  }

  .sx-reference-account-trigger > span:last-child,
  .sx-reference-currency__trigger .sx-icon {
    display: none;
  }

  .sx-reference-currency__trigger {
    gap: 5px;
  }

  .sx-reference-account-drawer {
    grid-template-columns: minmax(0, 1fr);
  }

  .sx-reference-account-drawer__backdrop {
    display: none;
  }

  .sx-reference-account-drawer > aside {
    padding: 28px 22px;
  }

  .sx-reference-brand img {
    width: 40px;
    height: 25px;
  }

  .sx-reference-brand strong {
    font-size: 17px;
  }

  .sx-reference-brand small {
    font-size: 7px;
  }

  .sx-reference-breadcrumb {
    width: calc(100% - 39px);
    min-height: 35px;
    display: flex;
    gap: 5px;
    font-size: 12px;
    line-height: 12px;
  }

  .sx-reference-breadcrumb > * {
    transform: translateY(-1px);
  }

  .sx-reference-breadcrumb a:nth-of-type(2),
  .sx-reference-breadcrumb > span[aria-hidden="true"] {
    font-size: 0;
  }

  .sx-reference-breadcrumb a:nth-of-type(2)::after {
    content: "...";
    font-size: 12px;
  }

  .sx-reference-breadcrumb > span[aria-hidden="true"]::after {
    content: ">";
    font-size: 12px;
  }

  .sx-reference-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "gallery-main"
      "gallery-thumbnails"
      "product-info"
      "calendar"
      "copy"
      "booking";
    grid-template-rows: auto;
    gap: 0;
    padding-top: 0;
    padding-bottom: 61px;
  }

  .sx-reference-gallery-main {
    width: 100%;
    height: auto;
    aspect-ratio: 1.4;
    margin: 14px 0 0;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
    transform: none;
  }

  .sx-reference-gallery-side {
    display: none;
  }

  .sx-reference-gallery-main > button {
    overflow: hidden;
    border-radius: inherit;
  }

  .sx-reference-desktop-share {
    display: none;
  }

  .sx-reference-mobile-share {
    display: none;
  }

  .sx-reference-mobile-share .sx-reference-share {
    width: 87px !important;
    height: 35px !important;
    min-height: 35px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none;
  }

  .sx-reference-mobile-share .sx-reference-share span {
    position: relative;
    top: -0.25px;
    left: 0.23px;
    font-size: 16px;
    line-height: 22px;
  }

  .sx-reference-gallery-title {
    display: none;
  }

  .sx-reference-gallery-title:empty {
    display: none;
  }

  .sx-reference-gallery-main button:hover img {
    transform: none;
  }

  .sx-reference-mobile-gallery {
    width: 50px;
    position: absolute;
    top: 50%;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .sx-reference-mobile-gallery button,
  .sx-reference-mobile-gallery span {
    pointer-events: auto;
    border: 1px solid #efefef;
    background: #fff;
    color: #222;
  }

  .sx-reference-mobile-gallery button {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--sx-product-blue);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    font-size: 24px;
    line-height: 1;
    touch-action: manipulation;
    cursor: pointer;
  }

  .sx-reference-mobile-gallery .sx-reference-gallery-arrow {
    display: block;
    width: 12.286px;
    height: 20.833px;
    max-width: none;
    fill: currentColor;
  }

  .sx-reference-mobile-gallery button:first-child .sx-reference-gallery-arrow {
    transform: scaleX(-1);
  }

  .sx-reference-mobile-gallery span {
    padding: 7px 10px;
    border-radius: 3px;
    font-size: 11px;
    line-height: 1;
  }

  .sx-reference-mobile-gallery button:first-child,
  .sx-reference-mobile-gallery span {
    display: none;
  }

  .sx-reference-mobile-thumbnails {
    grid-area: gallery-thumbnails;
    display: flex;
    gap: 8px;
    margin: 9px 0 32px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .sx-reference-mobile-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .sx-reference-mobile-thumbnails button {
    width: calc((100% - 24px) / 4);
    aspect-ratio: 1;
    flex: 0 0 calc((100% - 24px) / 4);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #eef3f4;
    scroll-snap-align: start;
    cursor: pointer;
  }

  .sx-reference-mobile-thumbnails img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 160ms ease;
  }

  .sx-reference-mobile-thumbnails button.is-active img {
    opacity: 0.42;
  }

  .sx-reference-product-info {
    padding: 0 0 0 4px;
  }

  .sx-reference-meta {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 16px;
  }

  .sx-reference-meta b {
    color: var(--sx-product-muted);
    font-size: 18px;
  }

  .sx-reference-product-info h1 {
    max-width: none;
    font-size: 35px;
    line-height: 1.2;
  }

  .sx-reference-product-info h1 span:first-child {
    margin-bottom: 0;
    font-size: inherit;
  }

  .sx-reference-subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .sx-reference-service-facts {
    gap: 6px;
    margin-top: 20px;
  }

  .sx-reference-service-facts div {
    font-size: 14px;
    line-height: 1.5;
  }

  .sx-reference-rating-row {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
  }

  .sx-reference-rating-row strong {
    font-size: 16px;
    font-weight: 700;
  }

  .sx-reference-rating-row strong::before {
    content: "☆";
    display: inline-block;
    margin-right: 6px;
    color: #eb641b;
    font-size: 24px;
    font-weight: 400;
    line-height: 22.4px;
    transform: translateY(1px);
  }

  .sx-reference-rating-row span::before {
    margin-inline: 9px;
  }

  .sx-reference-calendar-card {
    display: none;
  }

  .sx-reference-calendar-note {
    margin: -20px 0 0;
  }

  .sx-reference-month-tabs {
    margin-bottom: 14px;
  }

  .sx-reference-month-tabs button {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .sx-reference-calendar-grid {
    grid-auto-rows: 50px;
    gap: 3px;
  }

  .sx-reference-calendar-grid > button,
  .sx-reference-calendar-grid > span {
    min-height: 44px;
    height: 50px;
  }

  .sx-reference-calendar-grid > button {
    gap: 4px;
    padding-inline: 0;
  }

  .sx-reference-calendar-grid > button span,
  .sx-reference-calendar-day b {
    font-size: 11px;
  }

  .sx-reference-calendar-grid > button b {
    font-size: 8px;
  }

  .sx-reference-copy {
    width: calc(100% - 0.016px);
    max-width: none;
    margin-left: 4.468px;
    padding: 0;
  }

  .sx-reference-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .sx-reference-selling-points {
    margin-top: 40px;
  }

  .sx-reference-selling-points h2 {
    margin-bottom: 17px;
    font-size: 20px;
    line-height: 22px;
  }

  .sx-reference-selling-points p {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 12px;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    font-size: 15px;
    line-height: 22px;
  }

  .sx-reference-selling-points p:last-child {
    margin-bottom: 0;
  }

  .sx-reference-selling-point-mark {
    width: 12px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
  }

  .sx-reference-booking {
    width: calc(100% - 0.016px);
    max-width: none;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 30px;
    margin-left: 4.468px;
    padding: 16px 14px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.18);
  }

  .sx-reference-booking-fields,
  .sx-reference-booking-action {
    width: 100%;
  }

  .sx-reference-product .sx-reference-favorite {
    min-height: 36px;
    gap: 7px;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
  }

  .sx-reference-booking-guests {
    display: none;
  }

  .sx-reference-booking-guests select {
    height: 50px;
  }

  .sx-reference-booking-guest-display {
    min-height: 50px;
    padding: 0 30px 0 11px;
    border-radius: 8px;
    font-size: 12px;
  }

  .sx-reference-booking-guest-display > span {
    display: grid;
    gap: 2px;
    line-height: 1.1;
    white-space: normal;
  }

  .sx-reference-booking-guest-display small {
    display: block;
    font-size: 9px;
  }

  .sx-reference-booking-guest-display b {
    font-size: 13px;
  }

  .sx-reference-booking-guests label::after {
    width: 7px;
    height: 7px;
    top: 19px;
    right: 12px;
  }

  .sx-reference-favorite .sx-icon {
    width: 20px;
    height: 20px;
  }

  .sx-reference-booking-date {
    width: 100%;
    min-height: 50px;
    margin-top: 0;
    padding-inline: 14px;
    border-radius: 8px;
  }

  .sx-reference-booking-date strong {
    font-size: 14px;
  }

  .sx-reference-booking-date .sx-icon {
    width: 22px;
    height: 22px;
  }

  .sx-reference-booking-action {
    align-self: stretch;
    justify-self: stretch;
    gap: 11px;
  }

  .sx-reference-price .sx-reference-price-currency {
    font-size: 16px;
  }

  .sx-reference-price .sx-reference-price-amount {
    font-size: 29px;
  }

  .sx-reference-price small {
    margin-left: 4px;
    font-size: 15px;
  }

  .sx-reference-booking-action .sx-reference-book-button {
    width: 100%;
    min-height: 52px;
    height: 52px;
    justify-self: stretch;
    padding-inline: 16px;
    border-radius: 8px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
  }

  .sx-reference-floating-booking {
    width: calc(100% - 20px);
    height: auto;
    min-height: 0;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 55;
    border: 1px solid rgba(220, 222, 216, .84);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 25px rgba(20, 24, 21, .2);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .sx-reference-floating-booking > .sx-reference-content {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 0;
    padding: 16px 14px;
    border: 0;
    border-radius: inherit;
    background: transparent;
    box-shadow: none;
  }

  .sx-reference-floating-booking .sx-reference-booking-fields,
  .sx-reference-floating-booking .sx-reference-booking-action {
    width: 100%;
  }

  .sx-reference-floating-booking .sx-reference-booking-action {
    align-self: stretch;
    justify-self: stretch;
    gap: 11px;
  }

  .sx-reference-floating-booking .sx-reference-price {
    justify-content: flex-end;
  }

  .sx-reference-floating-booking .sx-reference-booking-action .sx-reference-book-button {
    width: 100%;
    min-height: 52px;
    height: 52px;
    justify-self: stretch;
    padding-inline: 16px;
    border-radius: 8px;
    color: #111;
    font-size: 15px;
  }
}

@media (max-width: 370px) {
  .sx-reference-product-info h1 {
    font-size: 31px;
  }

  .sx-reference-floating-booking > .sx-reference-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-inline: 8px;
  }

  .sx-reference-floating-booking .sx-reference-booking-action .sx-reference-book-button {
    width: 100%;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sx-reference-gallery-main img,
  .sx-reference-gallery-side img,
  .sx-reference-floating-booking,
  .sx-reference-book-button,
  .sx-reference-favorite .sx-icon {
    transition-duration: 0.01ms !important;
  }
}
