@charset "UTF-8";
/*------------------------------------*\
  #GLOBAL
\*------------------------------------*/
/*------------------------------------*\
  #CUSTOM SETUP

  Mixins ................. custom mixins without inheriting of accelerator
  Variables .............. variables to override accelerator ones with !default
  Fonts .................. client fonts definition

\*------------------------------------*/
/**
 * Position definition
 *
 * Example of utilization
 * @include absolute(top 1rem left 2rem);
 */
/*md
@no-stat

# Scheme

## Greyscale

```html_example
    <div class="styleguide__section-colors">
        <div class="bg--white">
            <span>$white</span>
            #ffffff
        </div>
        <div class="bg--grey-1">
            <span>$grey-1</span>
            #f8f8f8
        </div>
        <div class="bg--grey-2">
            <span>$grey-2</span>
            #e9e8e1
        </div>
        <div class="bg--grey-3">
            <span>$grey-3</span>
            #eeeeee
        </div>
        <div class="bg--grey-4">
            <span>$grey-4</span>
            #c4c4c4
        </div>
        <div class="bg--grey-5">
            <span>$grey-5</span>
            #999999
        </div>
        <div class="bg--black text-color--white">
            <span>$black</span>
            #000000
        </div>
    </div>
```

## Colors

```html_example
    <div class="styleguide__section-colors">
        <div class="bg--beige">
            <span>$beige</span>
            #f5f5dc
        </div>
        <div class="bg--green text-color--white">
            <span>$green</span>
            #00503f
        </div>
        <div class="bg--blue text-color--white">
            <span>$blue</span>
            #4D96E7
        </div>
        <div class="bg--red text-color--white">
            <span>$red</span>
            #e60000
        </div>
        <div class="bg--start-white text-color--black">
            <span>$start-white</span>
            #efefe8
        </div>
    </div>
```

*/
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLTIP ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Newtime R";
  src: url("../fonts/newtime/medium/NewtimeR-Medium.woff2") format("woff2"), url("../fonts/newtime/medium/NewtimeR-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Newtime R Book";
  src: url("../fonts/newtime/book/NewtimeR-Book.woff2") format("woff2"), url("../fonts/newtime/book/NewtimeR-Book.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "Newtime R Heavy";
  src: url("../fonts/newtime/heavy/NewtimeR-Heavy.woff2") format("woff2"), url("../fonts/newtime/heavy/NewtimeR-Heavy.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Catalogue";
  src: url("../fonts/cataloguell/regular/CatalogueLLWeb-Regular.woff2") format("woff2"), url("../fonts/cataloguell/regular/CatalogueLLWeb-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Catalogue Italic";
  src: url("../fonts/cataloguell/italic/CatalogueLLWeb-Italic.woff2") format("woff2"), url("../fonts/cataloguell/italic/CatalogueLLWeb-Italic.woff") format("woff");
  font-display: swap;
}
/*------------------------------------*\
  #ACCELERATOR BASICS

  Variables .............. default variables setting up with !default
  Misins ................. basic mixins

\*------------------------------------*/
/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
* [Strip the pesky units from values]
* @param  {[Number]} $value
*/
/**
* [Fluid Type]
*/
/*------------------------------------*\
  #EXTERNALS
\*------------------------------------*/
.store-locator__detect-location {
  margin-top: 0.5rem;
}

.store-locator__result-check:checked + .store-locator__result-content {
  background-color: #e9e8e1;
}

.store-locator__result-content {
  display: block;
  padding: 1.25rem 1rem;
}
.store-locator__result-content:hover {
  cursor: pointer;
  background-color: #f8f8f8;
}

.store-locator__form {
  margin-bottom: 3rem;
}

.store-locator__results {
  overflow: auto;
}

.store-locator__result-item {
  position: relative;
  border-bottom: solid 0.0625rem #e9e8e1;
}

.store-locator__no-results {
  margin: auto;
}

.store-locator__actions {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.store-locator__container .product-pickup__selected {
  padding-left: 0;
}

@media (min-width: 48rem) {
  .store-locator__results {
    max-height: 30rem;
  }
}
@media (max-width: 47.9375rem) {
  .store-locator--modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: inherit;
  }
  .store-locator--modal .store-locator__form {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .store-locator--modal .store-locator__results {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    max-height: none;
  }
  .store-locator--modal .store-locator__actions {
    margin-top: auto;
  }
  .store-locator__results {
    max-height: 22rem;
  }
}
.pdp__ispu_toggle-button.toggle--active {
  display: none;
}

.pdp__ispu_content:not(.toggle--active) {
  display: none;
}

.product-pickup__selected {
  margin-top: 1rem;
}

.product-pickup__label {
  cursor: pointer;
}
.product-pickup__label .product-pickup__label-text--selected {
  display: none;
}
.product-pickup--has-store .product-pickup__label .product-pickup__label-text--selected {
  display: block;
}
.product-pickup--has-store .product-pickup__label .product-pickup__label-text--default {
  display: none;
}

.product-pickup__selected-action {
  cursor: pointer;
}

.product-pickup__options .form-check-label--radio {
  padding-left: 1.5rem;
}
.product-pickup__options .form-check-label--radio::after, .product-pickup__options .form-check-label--radio::before {
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
.product-pickup__options .form-check-label--radio::after {
  height: 0.5rem;
  opacity: 0;
  left: 0.125rem;
  width: 0.5rem;
}

.product-pickup__spinner {
  position: relative;
  padding-left: 1.875rem;
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.product-pickup__spinner::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -0.625rem;
  border-radius: 50%;
  border: 1px solid #c4c4c4;
  border-top-color: #000;
  -webkit-animation: spinner 0.9s linear infinite;
          animation: spinner 0.9s linear infinite;
}

.product-pickup__error {
  color: #930000;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.product-pickup__error.pdp__notification {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.store-locator__result-item {
  border: none;
  margin-bottom: 1rem;
}

.store-locator__result-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 0.25rem;
}

/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
.product-zoom__image {
  max-width: 90rem;
  margin: auto;
}

.product-zoom-panel {
  position: absolute;
  bottom: 2.5rem;
}

.product-zoom__btn {
  background-color: rgba(255, 255, 255, 0.7);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-zoom__btn .product-zoom__icon {
  width: 1rem;
  height: 1rem;
}

.product-zoom {
  max-height: 100%;
  overflow: auto;
}
.product-zoom::-webkit-scrollbar {
  display: none;
}

.product-zoom__arrow {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-zoom__arrow--prev {
  left: 0;
}

.product-zoom__arrow--next {
  right: 0;
}

.product-zoom__item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: auto;
}
.product-zoom__item::-webkit-scrollbar {
  display: none;
}

.product-zoom__image.zoom--active {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  margin: 0;
}
@media (min-width: 125.0625rem) {
  .product-zoom__image.zoom--active {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    -webkit-transform-origin: center 0;
            transform-origin: center 0;
    margin: auto;
  }
}

.product-zoom__thumbnails {
  position: fixed;
  top: 4.1875rem;
  left: 2.875rem;
  z-index: 10001;
  padding: 1.1875rem;
  width: 5.125rem;
  background: #FFF;
}

.product-zoom__swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: 10003;
  padding: 0.9375rem 0.625rem 0.6875rem 0.9375rem;
  max-width: 21.875rem;
  background: #FFF;
}

.zoom-swatch-options__color {
  position: relative;
  margin: 0 0.3125rem 0.25rem 0;
  width: 1.875rem;
  height: 1.875rem;
}

.zoom-swatch-options__color-image {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media (min-width: 48rem) {
  .product-zoom__image {
    max-width: 100vw;
  }
  .product-zoom__arrow {
    width: 5rem;
    font-size: 3rem;
  }
}
@media (min-width: 90.0625rem) {
  .product-zoom__image {
    max-width: 90rem;
  }
}
@media (max-width: 47.9375rem) {
  .product-zoom__item {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-zoom__item::-webkit-scrollbar {
    display: none;
  }
  .product-zoom__image {
    height: 100vh;
    height: calc(1vh * 100);
    height: calc(var(--vh, 1vh) * 100);
    width: auto;
    -ms-touch-action: pan-x pan-y;
        touch-action: pan-x pan-y;
  }
}
.pdp {
  margin-top: -1.5rem;
  margin-bottom: 4rem;
}
.pdp .price--formated {
  display: none;
}
.pdp .price--reduced {
  display: inline-block;
}

.pdp-main__section--actions {
  margin-bottom: 1rem;
  position: relative;
}

[data-product-component=product-final-sale] {
  color: #930000;
}

@media (min-width: 64rem) {
  [data-test=zoom-trigger] {
    cursor: url("../images/plus-zoom-glass.png"), auto !important;
  }
}
.pdp-main__details {
  padding: 0 1.25rem;
}

.pdp__fit_details {
  padding: 0 1.25rem;
}

.pdp__marketing-description:empty {
  margin: 0;
}

.pdp__fabric-item {
  margin-bottom: 0.9375rem;
}

.pdp__images {
  position: relative;
}

.pdp__images-thumbs-container {
  display: inline-block;
  margin-right: 0.5rem;
  width: 2.5rem;
  vertical-align: top;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.pdp__images-thumb {
  position: relative;
  margin-bottom: 0.25rem;
  cursor: pointer;
}

.pdp__images-thumb-active {
  -webkit-box-shadow: 0 0 0 0.0625rem #000;
          box-shadow: 0 0 0 0.0625rem #000;
}

.pdp__images-thumb-img {
  width: 100%;
  vertical-align: middle;
}

.pdp__images-main-container {
  position: relative;
  width: 100%;
  vertical-align: top;
}

.pdp__header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pdp__title {
  margin-right: 0.625rem;
  width: 100%;
}

.pdp__price {
  position: relative;
  margin-left: auto;
  text-align: right;
}

.pdp__final-sale .pdp__final-sale-label {
  white-space: nowrap;
}
.pdp__final-sale .tooltip__final-sale {
  width: auto;
  margin-left: 0.25rem;
  position: relative;
  top: -0.125rem;
  text-align: left;
}
.pdp__final-sale .tooltip__final-sale .tooltip__content {
  min-width: calc(((100vw - 4rem) * 0.44) - 2rem);
}
@media (min-width: 64rem) {
  .pdp__final-sale .tooltip__final-sale .tooltip__content {
    min-width: 25rem;
  }
}
@media (max-width: 47.9375rem) {
  .pdp__final-sale .tooltip__final-sale .tooltip__content {
    min-width: calc(100vw - 2.5rem);
  }
}

.product-attribute__size-chart--sizepicker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.size-chart__anchor {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.size-chart__anchor .icon {
  width: 0.75rem;
  height: 0.75rem;
  position: relative;
  top: -0.125rem;
  margin-right: 0.375rem;
}

.pdp .wishlist__button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5625rem 0.875rem;
  z-index: 1;
}
.pdp .wishlist__button svg.icon {
  margin-top: 0.5rem;
  margin-right: 0.0625rem;
  height: 1.5rem;
  width: 1.5rem;
}
.pdp .wishlist__button.set--in-wishlist .product-tile__wishlist-add {
  display: none;
}
.pdp .wishlist__button.set--in-wishlist .product-tile__wishlist-remove {
  display: block;
}

.pdp__recommendations {
  margin-top: 6rem;
  position: relative;
}
.pdp__recommendations .tab-nav {
  margin-bottom: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pdp__recommendations .product-promotions {
  display: none;
}

.pdp-main__details .product-attribute--inline .product-attribute__anchor {
  font-size: 1rem;
  height: 3rem;
  padding: 0 0.25rem;
  white-space: nowrap;
  width: calc((100% / 7) - 0.25rem);
}
.pdp-main__details .product-attribute--inline [class*=size-group--alpha] .product-attribute__anchor,
.pdp-main__details .product-attribute--inline [class*=size-group--canadagoose] .product-attribute__anchor,
.pdp-main__details .product-attribute--inline .size-group--collectionalpha .product-attribute__anchor {
  width: calc(20% - 0.25rem);
}
.pdp-main__details .product-attribute--inline [class*=size-group--shoes] [data-attr-size-type=shoes-domestic][data-attr-intl=uk].product-attribute__anchor {
  width: calc((100% / 4) - 0.25rem);
}
.pdp-main__details .product-attribute--inline [class*=size-group--numeric] .product-attribute__anchor,
.pdp-main__details .product-attribute--inline .size-group--denim .product-attribute__anchor {
  width: calc((100% / 7) - 0.25rem);
}
.pdp-main__details .product-attribute--inline [class*=size-group--numeric] [data-attr-intl=uk] {
  width: calc((100% / 4) - 0.25rem);
}
.pdp-main__details .product-attribute--inline .size-group--kids .product-attribute__anchor {
  width: calc((100% / 6) - 0.25rem);
}
.pdp-main__details .product-attribute--inline .size-type--plus-alpha .product-attribute__anchor {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.pdp-main__details .product-attribute--inline .size-type--plus-numeric .product-attribute__anchor,
.pdp-main__details .product-attribute--inline .size-type--shoes-international .product-attribute__anchor {
  width: calc((100% / 6) - 0.25rem);
}
.pdp-main__details .product-attribute--inline .size-type--plus-numeric .product-attribute__anchor[data-attr-intl=uk],
.pdp-main__details .product-attribute--inline .size-type--shoes-international .product-attribute__anchor[data-attr-intl=uk] {
  width: calc((100% / 4) - 0.25rem);
  min-width: 5rem;
}

@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .pdp-main__details .product-attribute--inline .product-attribute__anchor {
    width: calc(20% - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline [class*=size-group--shoes] [data-attr-size-type=shoes-domestic][data-attr-intl=uk].product-attribute__anchor {
    width: calc((100% / 3) - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline [class*=size-group--numeric] .product-attribute__anchor[data-attr-intl=uk] {
    width: calc(25% - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline .size-type--plus-numeric .product-attribute__anchor,
  .pdp-main__details .product-attribute--inline .size-type--es-numeric-denim-sizing-waist .product-attribute__anchor {
    width: calc(25% - 0.25rem);
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media (min-width: 48rem) {
  .pdp__content {
    padding: 0 2rem;
  }
  .pdp__details {
    display: grid;
    grid-template-columns: 56% 44%;
    grid-template-rows: auto 1fr;
    grid-template-areas: "pdp-images pdp-content" "pdp-details pdp-details";
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pdp__details--not-available {
    grid-template-columns: 40% 60%;
  }
  .pdp__images-container {
    grid-area: pdp-images;
  }
  .pdp__content--grid-enabled .pdp__images-container {
    overflow: hidden;
  }
  .pdp__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pdp-main__details {
    grid-area: pdp-content;
    padding: 0 0 0 2rem;
  }
  .pdp__fit_details {
    grid-area: pdp-details;
    padding: 1.5rem 0 0;
  }
}
@media (min-width: 64rem) {
  .pdp {
    margin-top: 0;
  }
  .pdp__content {
    margin-bottom: 1.875rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0 2rem;
    max-width: 72.5rem;
  }
  .pdp__content--grid-enabled {
    max-width: 68.5rem;
    margin-top: 0.75rem;
  }
  .pdp__content--grid {
    max-width: 125rem;
  }
  .pdp__details {
    grid-template-columns: 35.5rem minmax(auto, 33rem);
    grid-template-areas: "pdp-images pdp-content" "pdp-images pdp-details";
  }
  .pdp__content--grid-enabled .pdp__details {
    grid-template-columns: 37.5rem minmax(auto, 27rem);
  }
  .pdp__content--grid-enabled .pdp__details--not-available {
    max-width: 100%;
    grid-template-columns: 37.5rem minmax(auto, 27rem);
  }
  .pdp__content--grid .pdp__details {
    grid-template-columns: minmax(auto, 94rem) 27rem;
  }
  .pdp-main__details {
    padding: 0 0 0 3rem;
  }
  .pdp__content--grid-enabled .pdp-main__details, .pdp__details--sizepicker-enabled .pdp-main__details {
    padding: 0 0 0 2rem;
  }
  .pdp__fit_details {
    padding: 0 0 0 3rem;
  }
  .pdp__content--grid-enabled .pdp__fit_details, .pdp__details--sizepicker-enabled .pdp__fit_details {
    padding: 0 0 0 2rem;
  }
  .pdp__description-show-less {
    display: none;
  }
  .pdp__description-content:not(.pdp__description-content--expanded) {
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  @media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .pdp__description-content:not(.pdp__description-content--expanded) div, .pdp__description-content:not(.pdp__description-content--expanded) p {
        display: inline;
      }
    }
  }
  @supports (-webkit-hyphens: none) {
    .pdp__description-content:not(.pdp__description-content--expanded) div, .pdp__description-content:not(.pdp__description-content--expanded) p {
      display: inline;
    }
  }
  .pdp__description-content:not(.pdp__description-content--expanded) br {
    display: none;
  }
  .pdp__description-content.pdp__description-content--expanded + .pdp__description-content--expand .pdp__description-show-less {
    display: inline;
  }
  .pdp__description-content.pdp__description-content--expanded + .pdp__description-content--expand .pdp__description-show-more {
    display: none;
  }
}
@media (max-width: 47.9375rem) {
  .pdp-main__details .product-attribute--inline .size-group--shoes [data-attr-intl=uk] {
    width: calc(20% - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline [class*=size-group--numeric] [data-attr-size=petite][data-attr-intl=uk] {
    width: calc(25% - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline [class*=size-group--numeric] [data-attr-intl=uk] {
    width: calc(20% - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline [data-attr=cardValue] {
    width: calc(20% - 0.25rem);
  }
  .pdp-main__section--actions {
    margin-bottom: 1.5rem;
  }
}
/* PDP Sizepicker */
.pdp_sizepicker__label {
  height: 3.5rem;
  border: 0.0625rem solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1.25rem 0 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  cursor: pointer;
}
.pdp_sizepicker__label.size-selected .product-attribute__label-pre {
  font-size: 0.75rem;
}

.pdp_sizepicker__label .product-attribute__scarcity-message, .product-attribute__contents-header .product-attribute__scarcity-message {
  font-family: "Newtime R", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-transform: lowercase;
  line-height: 1.5rem;
}
.pdp_sizepicker__label .product-attribute__scarcity-message:before, .product-attribute__contents-header .product-attribute__scarcity-message:before {
  content: "-";
  margin: 0 0.25rem;
  color: #000;
}

.pdp_sizepicker__content {
  display: none;
  position: relative;
  z-index: 2;
}
.pdp_sizepicker__content.sizepicker-toggle--active {
  display: block;
}
.pdp_sizepicker__content .product-attribute__contents {
  position: absolute;
  width: 100%;
  background: #FFF;
  padding: 1rem;
  border: 0.0625rem solid;
  border-top-width: 0;
  display: grid;
  gap: 0.25rem;
  grid-template-columns: repeat(auto-fit, minmax(2.5rem, 1fr));
}
.pdp_sizepicker__content .product-attribute__contents.size-type--uk {
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
}
.pdp_sizepicker__content .product-attribute__contents.size-group--alpha, .pdp_sizepicker__content .product-attribute__contents[data-attr-variations=cardValue] {
  grid-template-columns: repeat(auto-fit, minmax(3.5rem, 1fr));
}
.pdp_sizepicker__content .product-attribute__contents.size-type--one-size {
  grid-template-columns: repeat(auto-fit, 3rem);
}
.product-attribute__list .pdp_sizepicker__content .product-attribute__contents {
  margin: 0;
}
.pdp_sizepicker__content .product-attribute__anchor {
  margin: 0;
  height: 3rem;
  font-size: 1rem;
  padding: 0 0.5rem;
}

.pdp .pdp_sizepicker .wishlist__button,
.pdp .add_to_cart--unavailable .wishlist__button {
  position: relative;
  width: 4rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-left-width: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pdp .pdp_sizepicker .wishlist__button svg.icon,
.pdp .add_to_cart--unavailable .wishlist__button svg.icon {
  width: 1.0625rem;
  margin: 0;
}
.pdp .pdp_sizepicker.add_to_cart--unavailable .wishlist__button,
.pdp .add_to_cart--unavailable.add_to_cart--unavailable .wishlist__button {
  border-width: 0.0625rem;
}
.pdp .pdp_sizepicker .pdp-main__section--actions-container,
.pdp .add_to_cart--unavailable .pdp-main__section--actions-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 0.25rem;
}

@media (max-width: 47.9375rem) {
  .pdp.set--overlay:after {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .pdp__details--sizepicker-mobile-enabled .product-add__estimated-date:not(:empty) {
    display: none;
  }
  .pdp_sizepicker__content {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    border-top: 0.0625rem solid #000;
    padding-top: 1rem;
    display: block;
    z-index: 3;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 426ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: -webkit-transform 426ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform 426ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform 426ms cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 426ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .pdp_sizepicker__content.sizepicker-toggle--active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .pdp_sizepicker__content .product-attribute__contents-header {
    padding: 0.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pdp_sizepicker__content .product-attribute__contents-header .pdp_sizepicker__label-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 1.875rem;
  }
  .pdp_sizepicker__content .product-attribute__contents-header .product-attribute__scarcity-message::before {
    content: "";
  }
  .pdp_sizepicker__content .product-attribute__contents {
    position: relative;
    border: none;
  }
  .pdp_sizepicker__content .product-attribute__add-to-bag {
    padding: 0 1rem;
  }
  .pdp_sizepicker__content .product-add__estimated-date:not(:empty) {
    font-size: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0.5rem 0 1rem;
  }
  .pdp__details--sizepicker-mobile-enabled .product-attribute--color .product-attribute__scarcity-message,
  .pdp__details--sizepicker-mobile-enabled .pdp-main__section--actions-container #preorder-international-tooltip {
    display: none;
  }
}
@media (min-width: 48rem) {
  .pdp__sizepicker-icon {
    -webkit-transition: -webkit-transform 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
    transition: -webkit-transform 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
    transition: transform 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
    transition: transform 213ms cubic-bezier(0.4, 0.9, 0.3, 1), -webkit-transform 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
  }
  .sizepicker-toggle--active .pdp__sizepicker-icon {
    margin-top: -0.1875rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .pdp__details--sizepicker-enabled .product-attribute--color .product-attribute__scarcity-message,
  .pdp__details--sizepicker-enabled .pdp-main__section--actions-container #preorder-international-tooltip {
    display: none;
  }
}
.pdp__accordion-item {
  border-top: 1px solid #000;
}
.pdp__accordion-item:last-child {
  border-bottom: 1px solid #000;
}

.pdp__accordion-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
}

.toggle--active .pdp__accordion-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-bottom: 0;
  margin-right: 0.125rem;
  margin-top: -0.375rem;
}

.pdp__accordion-content {
  padding-bottom: 1.875rem;
}

.pdp__accordion-content--fabric {
  padding-bottom: 0.9375rem;
}

.pdp__accordion-content:not(.toggle--active) {
  display: none;
}

div#cld-gallery > div > div > div > div > div[selected] {
  height: 5px;
  width: 5px;
}

[data-test=gallery-spacer] {
  height: 15px !important;
}

.afterpay-link .icon {
  display: inline-block;
  height: 1.1875rem;
  vertical-align: middle;
  width: 3.4375rem;
}

.afterpay-text {
  display: inline-block;
  line-height: 19px;
  vertical-align: middle;
}

.giftcard__form [data-floating-label] {
  margin-bottom: 0.5rem;
}
.giftcard__form [data-floating-label] .form-control--textarea {
  height: 6.5rem;
}
.giftcard__form [data-floating-label]:not(.set--floating-label) .form-control-label {
  font-size: 1rem;
  top: 1.25rem;
}
.giftcard__form input.form-control {
  height: 3.5rem;
  font-size: 1rem;
  overflow: hidden;
  font-family: "Newtime R", Helvetica, Arial, sans-serif;
}

.pdp_fit-details-item {
  position: relative;
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.pdp_fit-details-item:before {
  position: absolute;
  left: 0;
  content: "–";
}
.pdp_fit-details-item .pdp_size-guide-link {
  text-align: left;
}

/** Hide elements on PDP recommender tiles */
.product-list .product__badges,
.product-list .product__badge {
  display: none;
}
.product-list .product-tile__colors-container {
  display: none;
}

.pdp_fit-details-cta {
  display: inline;
  cursor: pointer;
}

.pdp_size-guide-link {
  cursor: pointer;
}

.modal--fabric-detail [data-product-component=fabric-detail-modal],
.modal--fabric-detail .fabric_detail_modal-content {
  height: 100%;
}
.modal--fabric-detail .fabric_detail_modal-disclaimer {
  margin-top: auto;
}

.pww-comma {
  margin-left: -0.25rem;
}

@media (min-width: 64rem) {
  .afterpay-link .icon {
    height: 1rem;
    width: 4.5rem;
    position: relative;
    top: -0.0625rem;
  }
}
@media (min-width: 48rem) {
  .pdp_fit-details.single-layout .pdp__fit_header, .pdp_fit-details.single-layout--shoe-bag .pdp__fit_header {
    display: none;
  }
  .pdp_fit-details.single-layout .pdp__details_header, .pdp_fit-details.single-layout--shoe-bag .pdp__details_header {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .pdp_fit-details.single-layout .pdp__mobile_image--split, .pdp_fit-details.single-layout--shoe-bag .pdp__mobile_image--split {
    display: none;
  }
}
@media (max-width: 47.9375rem) {
  .product-list {
    padding-left: 0;
    padding-right: 0;
  }
  .pdp_fit-details.single-layout--mobile .pdp__fit_header, .pdp_fit-details.single-layout--shoe-bag .pdp__fit_header {
    display: none;
  }
  .pdp_fit-details.single-layout--mobile .pdp__details_header, .pdp_fit-details.single-layout--shoe-bag .pdp__details_header {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .pdp_fit-details.single-layout--mobile .pdp__mobile_image--split, .pdp_fit-details.single-layout--shoe-bag .pdp__mobile_image--split {
    display: none;
  }
}
.pdp__images-container {
  position: relative;
}

.product-gallery__img {
  max-height: none;
}

.product-gallery__container:empty {
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}
.product-gallery__container:empty:before {
  display: block;
  content: "";
  padding-bottom: 133%;
  width: 100%;
}

.product-gallery__button--mobile {
  min-width: 100%;
  position: relative;
}

.mobile-indicators {
  -webkit-overflow-scrolling: touch;
  width: 100vw;
  white-space: nowrap;
  overflow-x: scroll;
  scroll-behavior: smooth;
}
.mobile-indicators::-webkit-scrollbar {
  display: none;
}

.mobile-indicators > * {
  display: inline-block;
  width: 100vw;
}

.mobile-indicator__container {
  margin: 0 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: transparent;
}

.indicator, .indicator--active {
  text-indent: -9999em;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.0625rem;
  border: 0.0625rem solid #000;
  border-radius: 50%;
}
.indicator.indicator--active, .indicator--active.indicator--active {
  background-color: #000;
}

.product-gallery__video-icon {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
@media (max-width: 47.9375rem) {
  .product-gallery__video-icon {
    right: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .pdp__images-container {
    max-width: 35.625rem;
  }
  .pdp__content--grid-enabled .pdp__images-container {
    width: 37.5rem;
    max-width: 100%;
  }
  .pdp__content--grid .pdp__images-container {
    width: 100%;
  }
}
@media (min-width: 48rem) {
  .pdp__content--grid-enabled .product-gallery__button:not(.product-gallery__video) {
    cursor: url("../images/zoom-cursor.svg"), auto;
  }
}
/* New Grid Layout */
.gallery--grid-view {
  overflow: hidden;
}
@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .gallery--grid-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .gallery--grid-view .product-gallery__button {
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 64rem) {
  .gallery--grid-view:not(.slick-initialized) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.125rem;
    overflow-y: scroll;
    max-height: calc((100vw - 31rem) * (4/3) + 2.25rem);
  }
}
@media (min-width: 64rem) and (min-width: 125.0625rem) {
  .gallery--grid-view:not(.slick-initialized) {
    max-height: 128.75rem;
  }
}
@media (min-width: 64rem) {
  .gallery--grid-view:not(.slick-initialized)::-webkit-scrollbar {
    display: none;
  }
  .gallery--grid-view:not(.slick-initialized)[data-grid-size="5"] .product-gallery__button:last-child, .gallery--grid-view:not(.slick-initialized)[data-grid-size="7"] .product-gallery__button:last-child, .gallery--grid-view:not(.slick-initialized)[data-grid-size="9"] .product-gallery__button:last-child, .gallery--grid-view:not(.slick-initialized)[data-grid-size="11"] .product-gallery__button:last-child {
    display: none;
  }
  .gallery--grid-view:not(.slick-initialized)[data-grid-size="12"] .product-gallery__button:nth-child(n+11), .gallery--grid-view:not(.slick-initialized)[data-grid-size="13"] .product-gallery__button:nth-child(n+11), .gallery--grid-view:not(.slick-initialized)[data-grid-size="14"] .product-gallery__button:nth-child(n+11), .gallery--grid-view:not(.slick-initialized)[data-grid-size="15"] .product-gallery__button:nth-child(n+11) {
    display: none;
  }
}

.gallery--slider-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.gallery--slider-view .product-gallery__button {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon--pdp-arrow-prev,
.icon--pdp-arrow-next {
  background-color: #FFF;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
}
.icon--pdp-arrow-prev .icon,
.icon--pdp-arrow-next .icon {
  width: 0.6875rem;
}

.product-gallery__video-aspect-ratio:before {
  content: "";
  display: block;
  padding-bottom: 133.33%;
  width: 100%;
}

.pdp__mobile_image--second-position,
.pdp__mobile_image--split {
  margin: 1.5rem -1.25rem 0;
}

.pdp__mobile_image_caption {
  background: #f8f8f8;
  padding: 0.5rem 1rem;
}

.pdp__mobile_zoom_button {
  display: block;
}

@media (min-width: 64rem) {
  .sustainability_tiles__container {
    margin: 6rem 0 3rem;
    padding: 0 1rem;
  }
  .sustainability_tiles__container .sustainability_tile {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    position: relative;
  }
  .sustainability_tiles__container .sustainability_tile:empty {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
  .sustainability_tiles__container .sustainability_tile .sustainability__tile-content {
    margin: 0 1rem;
  }
  .sustainability_tiles__container .sustainability_tile .sustainability__tile-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .sustainability_tiles__container .sustainability_tile .component-overlay {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .sustainability_tiles__container .sustainability_tile:hover .component-overlay {
    opacity: 0;
  }
  .sustainability_tiles__container .sustainability_tile:hover .sustainability__tile-overlay {
    opacity: 1;
  }
}
@media (max-width: 63.9375rem) {
  .sustainability_tiles__container {
    margin: 3rem 0 2.5rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 0.0625rem solid;
    border-bottom: 0.0625rem solid;
  }
  .sustainability_tiles__container .sustainability_tile {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .sustainability_tiles__container .sustainability__tile-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sustainability_tiles__container .slick-dots {
    padding: 1rem 0 0;
  }
  .sustainability_tiles__container .slick-dots button {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.125rem;
  }
  .sustainability_tiles__container .sustainability__tile-img {
    width: 100%;
  }
  .sustainability_tiles__container .sustainability__tile-img:not(.lazyloaded) {
    height: 24.73vw;
  }
}
@media (min-width: 41.5625rem) and (max-width: 63.9375rem) {
  .sustainability_tiles__container.slick-initialized {
    border-bottom: 0;
  }
  .sustainability_tiles__container.slick-initialized .slick-dots {
    border-top: 0.0625rem solid;
  }
  .sustainability_tiles__container .sustainability__tile-default,
  .sustainability_tiles__container .sustainability__tile-overlay {
    width: 50%;
  }
}
@media (max-width: 41.5rem) {
  .sustainability_tiles__container .sustainability__tile-overlay {
    padding: 1.5rem 1rem;
  }
  .sustainability_tiles__container .sustainability__tile-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sustainability_tiles__container .sustainability__tile-overlay {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .sustainability_tiles__container .sustainability__tile-link {
    margin-top: 2.5rem;
  }
  .sustainability_tiles__container .slick-dots {
    padding: 0 0 1.5rem;
  }
  .sustainability_tiles__container .sustainability__tile-img:not(.lazyloaded) {
    height: 49.46vw;
  }
  .sustainability_tiles__container .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sustainability_tiles__container .slick-slide {
    height: auto;
  }
  .sustainability_tiles__container .slick-slide .sustainability_tile--alt,
  .sustainability_tiles__container .slick-slide .sustainability__tile-content {
    height: 100%;
  }
}
@media (min-width: 90.0625rem) {
  .sustainability_tiles__container .sustainability__tile-overlay {
    font-size: 1.25rem;
  }
  .sustainability_tiles__container .sustainability__tile-title {
    font-size: 2rem;
  }
}
.sustainability_tiles__container .sustainability_tile .sustainability_tile--alt {
  display: none;
}
.sustainability_tiles__container .sustainability_tile[data-alt-enabled] > .sustainability__tile-content {
  display: none;
}
.sustainability_tiles__container .sustainability_tile[data-alt-enabled] .sustainability_tile--alt {
  display: block;
}
.sustainability_tiles__container .sustainability_tile .sustainability__tile-img--secondary {
  display: none;
}
.sustainability_tiles__container .sustainability_tile[data-tile-sustainability-metric=water] .sustainability__tile-img--primary {
  display: none;
}
.sustainability_tiles__container .sustainability_tile[data-tile-sustainability-metric=water] .sustainability__tile-img--secondary {
  display: block;
}

.pdp__reviews {
  margin-bottom: 3rem;
}

.pdp-set__footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-shadow: 0 -0.0625rem 0 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 -0.0625rem 0 0 rgba(0, 0, 0, 0.15);
}
.pdp-set__footer:not(.fixit--active) {
  z-index: 1;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.set-item {
  position: relative;
  margin-bottom: 3rem;
}

.pdp-bundle__item {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.pdp-bundle__main {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.0625rem solid #e9e8e1;
}

.pdp-bundle__label {
  margin-bottom: 1.25rem;
}

@media (min-width: 48rem) {
  .pdp-bundle__main {
    padding-bottom: 2rem;
  }
}
.product-detail .afterpay-widget-message .afterpay-link {
  font-size: 0.75em;
  padding: 0.375em 0.9375em;
  border: 0.0625em solid #ccc;
}

.afterpay-widget-message.plp-afterpay-message .afterpay-link {
  font-size: 0.75em;
}

.afterpay-image {
  vertical-align: middle;
  width: 5em;
  display: inline;
}

.pdp-afterpay-message a {
  display: none;
}

.cart-page .cart-afterpay-message .afterpay-link {
  font-size: 0.75em;
  padding: 0.375em 0.4375em;
}

.cart-afterpay-message {
  margin-bottom: 0.9375em;
  border: 0.0625em solid #ccc;
}

.modal.show {
  display: block;
}

.afterpay-modal {
  width: -webkit-fill-available;
}

.afterpayModal {
  background: rgba(0, 0, 0, 0.3);
}
.afterpayModal .quick-view-dialog {
  max-width: 48em;
}
.afterpayModal .modal-content {
  border-radius: 0.8125em;
  overflow: hidden;
  position: absolute;
}
.afterpayModal .modal-content .modal-header {
  border-bottom: medium none;
  background-color: #fbfcfc;
  height: 2em;
}
.afterpayModal .modal-content .modal-header button {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  border: 0.05em solid #999;
  position: absolute;
  right: 0.25em;
  top: 0.25em;
  padding: 0;
}
.afterpayModal .modal-content .modal-header button .close-button {
  position: relative;
  top: -0.35em;
  font-size: 1.5em;
  color: #999;
}
.afterpayModal .modal-content .modal-header button:hover .close-button {
  color: #000;
}
.afterpayModal .modal-content .modal-body {
  padding: 0;
  max-height: initial;
}
.afterpayModal.modal.show .modal-dialog {
  -webkit-transition: top 0.1s ease-out, -webkit-transform 0.3s ease-out;
  transition: top 0.1s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.1s ease-out;
  transition: transform 0.3s ease-out, top 0.1s ease-out, -webkit-transform 0.3s ease-out;
}

.cancel-symbol {
  position: relative;
  bottom: 0.4375em;
  right: 0.3125em;
  background-color: transparent;
}

.terms-content {
  margin-left: 2.9375em;
  color: #878787;
  font-size: 0.9375em;
  margin-bottom: 0.75em;
}

.copy-rights {
  text-align: center;
}

.redirect-text {
  text-align: center;
  margin-top: 2.1875em;
  font-size: 1.375em;
}

/* Afterpay checkout widget */
#afterpaInstallmentChart {
  border-collapse: collapse;
}

#afterpaInstallmentChart th {
  text-align: center;
}

#afterpaInstallmentChart td {
  text-align: center;
  padding-top: 16px;
}

.pie {
  width: 64px;
  display: block;
  margin: auto;
}

.pie path {
  fill: #0070d2;
  stroke: none;
}

.pie .circle {
  fill: #ccc;
  stroke: #0070d2;
  stroke-width: 0.3;
}

.link-us {
  font-size: 0.9375em;
  color: gray;
  text-decoration: underline;
}

.terms-us {
  font-size: 0.875em;
  color: gray;
  padding-left: 2.4375em;
}

.terms-us a {
  font-size: 0.875em;
}

.terms-content-us {
  padding-bottom: 0.75em;
  background-color: #fbfcfc;
}

.pdp__afterpay {
  cursor: pointer;
}

/*# sourceMappingURL=productMain.css.map*/