@charset "UTF-8";
@media (min-width: 75em) and (max-width: 99.99em) {
  .product-page {
    display: grid;
    gap: 0 calc(40px + 40 * (100vw - 1200px) / 400);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: min-content min-content minmax(0, 1fr);
    grid-template-areas: "gallery sticky" "content content";
  }
  .product-page__sticky-container {
    grid-area: sticky;
  }
  .product-page__buy {
    margin-top: 20px;
  }
  .product-page__gallery {
    grid-area: gallery;
  }
  .product-page__content {
    grid-area: content;
    margin-top: 48px;
  }
}
@media (min-width: 100em) {
  .product-page {
    display: grid;
    gap: 0 80px;
    grid-template-columns: minmax(0, 1fr) 590px;
    grid-template-rows: min-content minmax(0, 1fr);
    grid-template-areas: "gallery sticky" "content sticky";
  }
  .product-page__sticky-container {
    grid-area: sticky;
    position: relative;
  }
  .product-page__sticky-scroller {
    position: sticky;
    top: 100px;
  }
  .product-page__buy {
    margin-top: 20px;
  }
  .product-page__gallery {
    grid-area: gallery;
  }
  .product-page__content {
    grid-area: content;
    margin-top: 48px;
  }
}
@media (min-width: 60em) {
  .product-buy-availability__title {
    display: none;
  }
  .product-buy-availability__grid {
    display: flex;
    gap: 24px;
  }
  .product-buy-availability__grid .product-buy-channel {
    flex: 1 1 1px;
  }
}
@media (min-width: 60em) {
  :root.is-kiosk .product-buy-channel__check, :root.is-kiosk .product-buy-channel__bubble {
    margin-top: 4px !important;
  }
  :root.is-kiosk .product-buy-channel__body {
    font-size: 18px !important;
  }
}
@media (min-width: 60em) {
  .product-buy-cta__form {
    flex: 0 0 auto;
    margin-right: 8px;
    max-width: var(--product-buy--preferred-width);
    width: calc(50% - 12px);
  }
  .product-buy-cta__form .compound-input {
    margin-left: 2px;
    width: calc(100% - 4px);
  }
  .product-buy-cta__spacer {
    display: block;
    flex: 0 0 auto;
    width: 0;
  }
  .product-buy-cta__form.hidden ~ .product-buy-cta__spacer {
    width: calc(100% - var(--product-buy--preferred-width));
  }
}
@media (min-width: 60em) {
  .product-buy-price__price {
    font-size: 3.3333333333em;
  }
  .product-buy-price__was, .product-buy-price__promo {
    font-size: 1.1333333333em;
    line-height: 1.25;
  }
  .product-buy-price__was--rrp, .product-buy-price__promo--rrp {
    font-size: 14px;
  }
}
@media (min-width: 100em) {
  .product-gallery-block {
    display: flex;
    justify-content: center;
  }
  .product-gallery-block__viewport {
    flex: 1 1 auto;
    max-width: calc(100vh - 230px);
  }
  .product-gallery-block__viewport:not(:last-child) {
    margin-left: 106px;
  }
  .product-gallery-block__thumbs {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 82px;
  }
}
@media (min-width: 100em) {
  .product-gallery-thumbs {
    height: 100%;
  }
  .product-gallery-thumbs::before, .product-gallery-thumbs::after {
    position: absolute;
    left: 0;
    height: 20px;
    width: 100%;
    content: "";
    display: block;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1;
  }
  .product-gallery-thumbs::before {
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0), white);
    top: 0;
  }
  .product-gallery-thumbs::after {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    bottom: 0;
  }
  .product-gallery-thumbs.at-start::before {
    opacity: 0;
  }
  .product-gallery-thumbs.at-end::after {
    opacity: 0;
  }
  .product-gallery-thumbs__scroller {
    flex-direction: column;
    height: 100%;
  }
}