@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
\*------------------------------------*/
.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;
  padding: 0 1rem;
}

.pdp__fit_details {
  padding: 0 1rem;
  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;
  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);
  right: 0;
}
@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;
}

.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-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: 1rem;
  height: 3rem;
  padding: 0 0.25rem;
  white-space: nowrap;
}

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

@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;
  }
  .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 0.34375rem 1rem 0.15625rem;
}
.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;
    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 {
    padding: 0 0 0 2rem;
  }
  .pdp__fit_details {
    padding: 0 0 0 3rem;
  }
  .pdp__content--grid-enabled .pdp__fit_details {
    padding: 0 0 0 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;
}

@media (max-width: 47.9375rem) {
  .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;
    background-color: #FFF;
    z-index: 2;
    padding: 0.75rem 1rem;
  }
  .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;
  }
}
.pdp__images-container {
  position: relative;
}

.product-image-missing, .product-image-missing-container, [data-pid=GIFT_CARD] [data-product-component=zoom-trigger] {
  cursor: default;
  pointer-events: none;
}

.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;
  }
}
.product-gallery__video-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

@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: 100vh;
  }
  .gallery--grid-view:not(.slick-initialized)::-webkit-scrollbar {
    display: none;
  }
  .gallery--grid-view:not(.slick-initialized)[data-grid-size="5"] .product-gallery__button:last-of-type, .gallery--grid-view:not(.slick-initialized)[data-grid-size="7"] .product-gallery__button:last-of-type, .gallery--grid-view:not(.slick-initialized)[data-grid-size="9"] .product-gallery__button:last-of-type, .gallery--grid-view:not(.slick-initialized)[data-grid-size="11"] .product-gallery__button:last-of-type {
    display: none;
  }
  .gallery--grid-view:not(.slick-initialized)[data-grid-size="12"] .product-gallery__button:nth-of-type(n+11), .gallery--grid-view:not(.slick-initialized)[data-grid-size="13"] .product-gallery__button:nth-of-type(n+11), .gallery--grid-view:not(.slick-initialized)[data-grid-size="14"] .product-gallery__button:nth-of-type(n+11), .gallery--grid-view:not(.slick-initialized)[data-grid-size="15"] .product-gallery__button:nth-of-type(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 -1rem 0;
}

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

.pdp__mobile_zoom_button {
  display: block;
}

/* PDP Sizepicker */
.pdp_sizepicker__container {
  height: 2.75rem;
}

.pdp_sizepicker {
  border: 0.0625rem solid #000;
}
.pdp_sizepicker.sizepicker-toggle--active {
  position: absolute;
  z-index: 2;
  top: 0;
  background-color: #FFF;
  width: 100%;
}
@media (max-width: 47.9375rem) {
  .pdp_sizepicker.sizepicker-toggle--active {
    top: auto;
    bottom: 0;
  }
}

.pdp_sizepicker__label {
  height: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 0.5rem 0 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  cursor: pointer;
}
.pdp_sizepicker__label.size-selected .product-attribute__label-pre {
  display: none;
}
.pdp_sizepicker__label.pdp_sizepicker__label--one-size {
  color: #b4b4b4;
  pointer-events: none;
}
.pdp_sizepicker__label .pdp__sizepicker-icon {
  width: 1.25rem;
  height: 1.25rem;
  -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__label .pdp__sizepicker-icon {
  margin-top: -0.1875rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.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;
  padding: 0 1.5rem 0 0.75rem;
  margin-right: 1rem;
}
.sizepicker-toggle--active .pdp_sizepicker__content {
  display: block;
  max-height: 22.75rem;
  overflow-y: auto;
}
.sizepicker-toggle--active .pdp_sizepicker__content::-webkit-scrollbar {
  height: 0.125rem;
  width: 0.1875rem;
}
.sizepicker-toggle--active .pdp_sizepicker__content::-webkit-scrollbar-track {
  background: #FFF;
}
.sizepicker-toggle--active .pdp_sizepicker__content::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 0.375rem;
}
.sizepicker-toggle--active .pdp_sizepicker__content::-webkit-scrollbar-thumb:window-inactive {
  background: #d1d1d1;
}
.pdp_sizepicker__content .product-attribute__contents {
  width: 100%;
  background: #FFF;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-attribute__list .pdp_sizepicker__content .product-attribute__contents {
  margin: 0;
}
.pdp_sizepicker__content .product-attribute__sizepicker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1em;
  padding: 1rem 0;
}
.pdp_sizepicker__content .product-attribute__sizepicker:not(:last-child) {
  border-bottom: 0.0625rem solid #d1d1d1;
}
.pdp_sizepicker__content .product-attribute__sizepicker.unselectable {
  color: #b4b4b4;
}

@media (min-width: 48rem) {
  .pdp__images-container.set--overlay:after {
    display: none;
  }
}
.product-attribute__sizepicker-tooltip {
  display: none;
  position: relative;
}
.preorder .product-attribute__sizepicker-tooltip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.product-attribute__sizepicker-tooltip .custom-tooltip__trigger {
  width: 2rem;
  height: 2rem;
  padding: 0.6875rem;
  margin: -0.6875rem -0.6875rem -0.6875rem 0;
}
.product-attribute__sizepicker-tooltip .custom-tooltip__content {
  width: 8.5rem;
  line-height: 1.2em;
  text-align: left;
  display: none;
  position: absolute;
  bottom: 100%;
  right: -0.75rem;
  background: #f8f8f8;
}
.product-attribute__sizepicker-tooltip .custom-tooltip__content.toggle--active {
  display: block;
}

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