@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 WEIGHTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER SPECIFIC
\*------------------------------------*/
@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]
*/
/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
.product-zoom__image {
  max-width: 90rem;
  margin: auto;
  max-height: unset;
}

.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 {
  overflow: hidden;
}

.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: auto;
  height: 100%;
}
.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 {
    width: 100%;
    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;
  }
}
@media (min-width: 64rem) {
  .page[data-action=Product-Show] .main {
    margin-top: 0;
  }
  .page[data-action=Product-Show] .main .notfound {
    margin-top: 1rem;
  }
}
.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;
}

.pdp-main__details {
  padding: 0 1rem;
}

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

.pdp__images {
  position: relative;
}

.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;
}

.pdp__final-sale .pdp__final-sale-label {
  white-space: nowrap;
}
.pdp__final-sale .tooltip__final-sale {
  width: auto;
  margin-left: 0.25rem;
  position: initial;
  top: -0.125rem;
  text-align: left;
}
.pdp__final-sale .tooltip__final-sale .tooltip__content {
  min-width: calc((100vw - 4rem) * 0.44 - 2rem);
  left: 0;
  margin-top: -0.375rem;
}
@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);
  }
}
.pdp__final-sale .tooltip__final-sale .tooltip__content:before, .pdp__final-sale .tooltip__final-sale .tooltip__content:after {
  display: none;
}

.pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents, .pdp-main__details .product-attribute--inline.product-attribute--cardValue .product-attribute__contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.375rem, 1fr));
}
.pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents.size-type--one-size, .pdp-main__details .product-attribute--inline.product-attribute--cardValue .product-attribute__contents.size-type--one-size {
  grid-template-columns: repeat(auto-fill, minmax(3.375rem, 1fr));
}
.pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents:has([data-attr-size-type=shoes-domestic][data-attr-intl=uk]), .pdp-main__details .product-attribute--inline.product-attribute--cardValue .product-attribute__contents:has([data-attr-size-type=shoes-domestic][data-attr-intl=uk]) {
  grid-template-columns: repeat(auto-fit, minmax(5.25rem, 1fr));
}
.pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents.size-type--petites-numeric:has([data-attr-intl=uk]), .pdp-main__details .product-attribute--inline.product-attribute--cardValue .product-attribute__contents.size-type--petites-numeric:has([data-attr-intl=uk]) {
  grid-template-columns: repeat(auto-fit, minmax(5.25rem, 1fr));
}
.pdp-main__details .product-attribute--inline .product-attribute__anchor {
  font-size: 0.875rem;
  height: 3rem;
  padding: 0 0.25rem;
  white-space: nowrap;
}
.pdp-main__details .product-attribute--inline .product-attribute__anchor.anchor--cardValue {
  font-size: 0.875rem;
}
.pdp-main__details .product-attribute--inline .swatch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 2rem);
  gap: 0.5rem;
  margin-bottom: 1rem;
  max-width: 22.5rem;
}

.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;
}

.product__marketing-description:not(.toggle--active) .product__marketing-description--expanded {
  display: none;
}
.product__marketing-description.toggle--active .product__marketing-description--truncated {
  display: none;
}
.product__marketing-description.toggle--active .product__marketing-description--toggle-more {
  display: none;
}

.pdp__product-accordion .pdp__product-accordion__title {
  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;
  width: 100%;
}
.pdp__product-accordion .pdp__product-accordion__title .accordion__icon {
  width: 0.625rem;
}
.pdp__product-accordion .pdp__product-accordion__title.toggle--active .accordion__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pdp__product-accordion .pdp__product-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
  transition: grid-template-rows 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
  transition: grid-template-rows 213ms cubic-bezier(0.4, 0.9, 0.3, 1), -ms-grid-rows 213ms cubic-bezier(0.4, 0.9, 0.3, 1);
  overflow: hidden;
}
.pdp__product-accordion .pdp__product-accordion__content .pdp__product-accordion__content-inner {
  min-height: 0;
}
.pdp__product-accordion .pdp__product-accordion__content.toggle--active {
  grid-template-rows: 1fr;
  margin-bottom: 2rem;
  overflow: visible;
}
.pdp__product-accordion .pdp__product-accordion__content .pdp_product-accordion__sustainability strong {
  font-family: "Newtime R Book", Helvetica, Arial, sans-serif;
}

@media (min-width: 48rem) {
  .pdp__content {
    padding: 0 2rem;
  }
  .pdp__details {
    display: grid;
    grid-template-columns: 56% 44%;
    grid-template-rows: auto 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pdp__details--not-available {
    grid-template-columns: 40% 60%;
  }
  .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 {
    padding: 0 0 0 2rem;
  }
  .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;
  }
}
.product-attribute--type-anchor .product-attribute__contents {
  margin: -0.125rem;
}

.product-attribute__anchor {
  margin: 0.125rem;
}

.product-attribute__swatch {
  text-indent: -9999999px;
  margin: 0;
}
.product-attribute__swatch.swatch--on-sale {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.tooltip__final-sale:not(.set--tooltip-active) .tooltip__content {
  display: none;
}

@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;
  }
  .pdp__content--grid {
    max-width: 125rem;
  }
  .pdp__images {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
@media (min-width: 64rem) and (min-width: 80rem) {
  .pdp__images {
    top: 3.375rem;
  }
}
@media (min-width: 64rem) {
  .pdp__details {
    grid-template-columns: 35.5rem minmax(auto, 33rem);
  }
  .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: 2.25rem 0 4rem;
  }
  .pdp__content--grid-enabled .pdp-main__details {
    padding-left: 2rem;
  }
}
@media (max-width: 47.9375rem) {
  .pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(3.125rem, 1fr));
  }
  .pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents.size-type--one-size {
    grid-template-columns: repeat(auto-fill, minmax(3.375rem, 1fr));
  }
  .pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents:has([data-attr-size-type=shoes-domestic][data-attr-intl=uk]) {
    grid-template-columns: repeat(auto-fit, minmax(5.25rem, 1fr));
  }
  .pdp-main__details .product-attribute--inline.product-attribute--size .product-attribute__contents.size-type--petites-numeric:has([data-attr-intl=uk]) {
    grid-template-columns: repeat(auto-fit, minmax(5.25rem, 1fr));
  }
  .pdp-main__section--actions {
    margin-bottom: 1.5rem;
  }
  .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;
  }
}
.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;
}

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

@media (min-width: 64rem) {
  .afterpay-link .icon {
    height: 1rem;
    width: 4.5rem;
    position: relative;
    top: -0.0625rem;
  }
}
.pdp__ispu_content:not(.toggle--active) {
  display: none;
}

.pdp__mobile_search_cta {
  padding: 0.25rem 0.75rem 0.5rem;
  background: #FFF;
  z-index: 2;
}
.pdp__mobile_search_cta:not(.pdp--atc-visible) {
  position: -webkit-sticky;
  position: sticky;
  top: 3rem;
}

.pdp__mobile_search_cta-button {
  width: 100%;
  height: 2rem;
}
.pdp__mobile_search_cta-button .icon--search-mobile {
  width: 1.25rem;
  height: 1.25rem;
}

.length-variation-links__container .button {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2.75rem;
  border: 0.0625rem solid #d1d1d1;
}
.length-variation-links__container .button.active {
  border: 0.09375rem solid #000;
  pointer-events: none;
}
.length-variation-links__container .button:hover:not([disabled]):not(.disabled) {
  opacity: 1;
}

.product-add__button {
  height: 3rem;
  padding-top: 0;
  padding-bottom: 0;
}

@-webkit-keyframes slideUpfromBottom {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUpfromBottom {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideOutToBottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes slideOutToBottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@media (max-width: 47.9375rem) {
  .pdp-main__details--size_buttons .product-add__container {
    padding-top: 0.5rem;
  }
  .add_to_bag--set-sticky {
    min-height: undefined;
    min-height: var(--height);
  }
  .add_to_bag--set-sticky .product-add__container {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    background-color: #FFF;
    z-index: 2;
    padding: 0.75rem 1rem;
    -webkit-animation: slideUpfromBottom 320ms cubic-bezier(0.4, 0.9, 0.3, 1) forwards;
            animation: slideUpfromBottom 320ms cubic-bezier(0.4, 0.9, 0.3, 1) forwards;
  }
  .add_to_bag--set-sticky .pdp-stripe-express-checkout,
  .add_to_bag--set-sticky .paypal-pdp-button,
  .add_to_bag--set-sticky .product-add__estimated-date,
  .add_to_bag--set-sticky .tooltip {
    display: none;
  }
  .add_to_bag--set-sticky.add_to_bag--slide-down .product-add__container {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    z-index: 2;
    padding: 0.75rem 1rem;
    -webkit-animation: slideOutToBottom 320ms cubic-bezier(0.4, 0.9, 0.3, 1) forwards;
            animation: slideOutToBottom 320ms cubic-bezier(0.4, 0.9, 0.3, 1) forwards;
  }
}
.pdp__details-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pdp__details-entry .pdp__images-container-flex {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
}
.pdp__details-entry .pdp__images-container-flex .pdp__image-btn {
  max-width: 36%;
}
.pdp__details-entry .pdp__image-btn {
  display: inline-block;
  margin: 0px -3px;
}
.pdp__details-entry .product__image-slider,
.pdp__details-entry .pdp__attributes--scrollable-desktop {
  overflow: auto;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.pdp__details-entry .product__image-slider::-webkit-scrollbar,
.pdp__details-entry .pdp__attributes--scrollable-desktop::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.pdp__details-entry .product-attribute__contents {
  position: relative;
}
.pdp__details-entry .product-attribute__contents [data-attr-size-type=shoes-domestic][data-attr-intl=uk].product-attribute__anchor,
.pdp__details-entry .product-attribute__contents [data-attr-size-type=numeric][data-attr-intl=uk].product-attribute__anchor,
.pdp__details-entry .product-attribute__contents [data-attr-size-type=plus-numeric][data-attr-intl=uk].product-attribute__anchor,
.pdp__details-entry .product-attribute__contents [data-attr-size=petite][data-attr-intl=uk].product-attribute__anchor {
  min-width: 5rem;
}
.pdp__details-entry .pdp-main__details-flex {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  max-width: 400px;
}
.pdp__details-entry .pdp__price-small {
  display: none;
}
.pdp__details-entry .pdp__full-product-link {
  display: block;
  text-decoration: underline;
  text-align: center;
}
.pdp__details-entry .swatch--color-large {
  width: 2rem;
  height: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  margin-left: 0.15625rem;
  margin-right: 0.34375rem;
  margin-bottom: 1rem;
}
.pdp__details-entry btn.icon--small.slick-arrow {
  -webkit-appearance: initial !important;
}

.pdp__recommendations {
  margin: 3rem auto 0 auto;
}
.pdp__recommendations .product-list__grid {
  margin: 0 -1rem;
}
.pdp__recommendations .product-list__grid .product-tile__mobile-quickadd-button {
  display: none;
}
.pdp__recommendations .product-list__grid .product-tile__colors-container {
  display: none;
}

.pdp__recommender-header {
  padding-bottom: 1rem;
  font-weight: 900;
  text-align: center;
}

.pdp__content-entry {
  max-width: 125rem;
  margin: 0 auto;
}

.product-grid__item {
  padding: 0 1rem;
}

@media (max-width: 125rem) {
  .pdp__details-entry {
    padding: 0 2rem;
  }
}
@media (max-width: 80rem) {
  .pdp__details-entry .pdp__images-container-flex .pdp__image-btn {
    max-width: 60%;
  }
}
@media (min-width: 64rem) {
  .product-attribute__contents .sizes-scrolling {
    display: block;
    margin: 2px;
  }
  .product-attribute__contents .sizes-scrolling .product-attribute__anchor {
    width: calc(16.6666666667% - 0.25rem);
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 63.9375rem) {
  .pdp__details-entry .product-attribute__contents [data-attr-size-type=numeric][data-attr-intl=uk].product-attribute__anchor,
  .pdp__details-entry .product-attribute__contents [data-attr-size=petite][data-attr-intl=uk].product-attribute__anchor {
    min-width: unset;
  }
  .pdp__details-entry .pdp__images-container-flex .pdp__image-btn,
  .pdp__details-entry .pdp__images--two .pdp__image-btn {
    max-width: 80% !important;
  }
  .pdp__details-entry btn.icon--small.slick-arrow {
    display: none;
  }
  .pdp__details-entry .pdp__attributes--scrollable-desktop {
    overflow: unset;
    white-space: unset;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .pdp-main__details .product-attribute--inline .product-attribute__anchor {
    width: calc(25% - 0.25rem);
  }
  .pdp-main__details .product-attribute--inline .size-group--denim .product-attribute__anchor {
    width: calc(20% - 0.25rem);
  }
  .tooltip__content {
    min-width: 37vw;
  }
}
@media (max-width: 47.9375rem) {
  .product-grid__item:nth-child(odd) {
    padding-right: 0.156rem;
    padding-left: 0;
  }
  .product-grid__item:nth-child(even) {
    padding-left: 0.156rem;
    padding-right: 0;
  }
  .pdp__recommendations .product-list__grid {
    margin: 0;
  }
  .pdp__recommendations {
    max-height: unset;
    padding: 0 0.9375rem;
  }
  .pdp__recommendations .product-tile__body {
    padding: 0 0.6875rem 0 0.5rem;
  }
  .pdp__details-entry {
    margin: 0;
    padding: 0 0.9375rem;
  }
  .pdp__details-entry .pdp__images-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
  .pdp__details-entry .pdp-main__details {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    max-width: 50%;
  }
  .pdp__details-entry .product-gallery__scroll--mobile {
    -webkit-overflow-scrolling: touch;
    width: 50vw;
    white-space: nowrap;
    overflow-x: scroll;
    scroll-behavior: smooth;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.25rem;
  }
  .pdp__details-entry .product-gallery__scroll--mobile::-webkit-scrollbar {
    display: none;
  }
  .pdp__details-entry .product-gallery__scroll--mobile .product-gallery__button--mobile {
    width: calc(50vw - 1rem);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .pdp__details-entry .pdp__name {
    font-size: 1rem;
  }
  .pdp__details-entry .pdp__title {
    margin-right: 0;
  }
  .pdp__details-entry .product-attribute__label,
  .pdp__details-entry .product-attribute__size-chart {
    display: none;
  }
  .pdp__details-entry .pdp__price {
    display: none;
  }
  .pdp__details-entry .pdp__price-small {
    display: block;
  }
  .pdp__details-entry .pdp__price-small .price {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1rem;
  }
  .pdp__details-entry .pdp__attributes--scrollable-mobile {
    overflow-x: auto;
    -ms-flex-flow: nowrap;
        flex-flow: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
  }
  .pdp__details-entry .pdp__attributes--scrollable-mobile::-webkit-scrollbar {
    display: none;
  }
  .pdp__details-entry .product-add__button {
    height: unset;
    padding: 0.4375rem 0;
  }
  .pdp__details-entry .product-attribute__contents {
    margin: -0.125rem 0 !important;
  }
  .pdp__details-entry .mobile-indicator__container {
    font-size: 22px;
    margin-top: -6px;
  }
  .pdp__details-entry .swatch--color-large {
    width: 2rem;
    height: 2rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2rem;
            flex: 0 0 2rem;
    margin-bottom: 0;
  }
  .pdp__details-entry .product-attribute__list .product-attribute:not(.product-attribute--first) {
    margin-top: 0.75rem;
  }
  .pdp__details-entry .price .strike-through {
    margin-left: 0;
  }
  .pdp__details-entry .price__sales {
    margin-right: 0.5rem;
  }
  .pdp__details-entry #preorder-international-tooltip {
    display: none;
  }
  .pdp__details-entry .pdp-main__section--actions {
    margin-bottom: 1rem;
  }
}
@media (max-width: 41.5rem) {
  .pdp__details-entry {
    margin: 0;
    padding: 0;
  }
  .pdp__recommendations {
    padding: 0;
  }
  .product-grid__item:nth-child(odd) {
    padding-right: 0.125rem;
  }
  .product-grid__item:nth-child(even) {
    padding-left: 0.125rem;
  }
  .price .is-sale {
    font-size: 0.75rem;
  }
}

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