@import url(https://fonts.googleapis.com/css?family=Archivo);
@import url(https://fonts.googleapis.com/css?family=PT+Serif:400,700);
/* FRETTE: Start Variables
-------------------------- */
@font-face {
  font-family: 'Didot';
  src: url("../fonts/Didot/DidoteTextPro-Regular.otf") format("opentype"); }

@font-face {
  font-family: 'Didot';
  font-weight: bold;
  src: url("../fonts/Didot/DidoteTextPro-Bold.otf") format("opentype"); }

@font-face {
  font-family: 'Didot';
  font-style: italic;
  src: url("../fonts/Didot/DidoteTextPro-Italic.otf") format("opentype"); }

@font-face {
  font-family: 'Didot';
  font-weight: bold;
  font-style: italic;
  src: url("../fonts/Didot/DidoteTextPro-BoldItalic.otf") format("opentype"); }

@font-face {
  font-family: 'HelveticaNeue';
  src: url("../fonts/HelveticaNeue/HelveticaNeueeTextPro-Roman.otf") format("opentype"); }

@font-face {
  font-family: 'HelveticaNeueMd';
  src: url("../fonts/HelveticaNeue/HelveticaNeueeTextPro-Md.otf") format("opentype"); }

/*Replace old fonts with new fonts by default*/
body {
  margin: 0; }

/* FRETTE: End Variables
------------------------ */
/*------------------------------------*\
  #FORMS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
.pull-left-xs {
  float: left; }

.pull-right-xs {
  float: right; }

@media (min-width: 480px) and (max-width: 543.98px) {
  .pull-left-vs {
    float: left; }
  .pull-right-vs {
    float: right; } }

@media (min-width: 544px) and (max-width: 768.98px) {
  .pull-left-sm {
    float: left; }
  .pull-right-sm {
    float: right; } }

@media (min-width: 769px) and (max-width: 991.98px) {
  .pull-left-md {
    float: left; }
  .pull-right-md {
    float: right; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .pull-left-lg {
    float: left; }
  .pull-right-lg {
    float: right; } }

@media (min-width: 1200px) {
  .pull-left-xl {
    float: left; }
  .pull-right-xl {
    float: right; } }

@media (max-width: 479.98px) {
  .hidden-xs-down {
    display: none !important; } }

@media (max-width: 543.98px) {
  .hidden-vs-down {
    display: none !important; } }

@media (max-width: 768.98px) {
  .hidden-sm-down {
    display: none !important; } }

@media (max-width: 991.98px) {
  .hidden-md-down {
    display: none !important; } }

@media (max-width: 1199.98px) {
  .hidden-lg-down {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.row.equal-height > [class^="col"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

/**
 * [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]
 */
@-webkit-keyframes flipdown
  0% {
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg); }
@keyframes flipdown
  0% {
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg); }

5% {
  opacity: 1; }

80% {
  -webkit-transform: rotateX(8deg);
          transform: rotateX(8deg); }

83% {
  -webkit-transform: rotateX(6deg);
          transform: rotateX(6deg); }

92% {
  -webkit-transform: rotateX(-3deg);
          transform: rotateX(-3deg); }

100% {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg); }

/**
 * [Strip the pesky units from values]
 * @param  {[Number]} $value
 */
/**
 * [Fluid Type]
 */
.aspect-ratio-1-1 {
  aspect-ratio: 1; }

.aspect-ratio-2-3 {
  aspect-ratio: 0.6667; }

.aspect-ratio-3-2 {
  aspect-ratio: 1.5; }

.aspect-ratio-3-4 {
  aspect-ratio: 0.75; }

.aspect-ratio-4-3 {
  aspect-ratio: 1.3333; }

.aspect-ratio-4-5 {
  aspect-ratio: 0.8; }

.aspect-ratio-5-4 {
  aspect-ratio: 1.25; }

.aspect-ratio-16-9 {
  aspect-ratio: 1.7778; }

.aspect-ratio-21-9 {
  aspect-ratio: 2.3333; }

.aspect-ratio-25-9 {
  aspect-ratio: 2.7777; }

@media (min-width: 768px) {
  .aspect-ratio-md-1-1 {
    aspect-ratio: 1; }
  .aspect-ratio-md-2-3 {
    aspect-ratio: 0.6667; }
  .aspect-ratio-md-3-2 {
    aspect-ratio: 1.5; }
  .aspect-ratio-md-3-4 {
    aspect-ratio: 0.75; }
  .aspect-ratio-md-4-3 {
    aspect-ratio: 1.3333; }
  .aspect-ratio-md-4-5 {
    aspect-ratio: 0.8; }
  .aspect-ratio-md-5-4 {
    aspect-ratio: 1.25; }
  .aspect-ratio-md-16-9 {
    aspect-ratio: 1.7778; }
  .aspect-ratio-md-21-9 {
    aspect-ratio: 2.3333; }
  .aspect-ratio-md-25-9 {
    aspect-ratio: 2.7777; } }

@media (min-width: 1280px) {
  .aspect-ratio-lg-1-1 {
    aspect-ratio: 1; }
  .aspect-ratio-lg-2-3 {
    aspect-ratio: 0.6667; }
  .aspect-ratio-lg-3-2 {
    aspect-ratio: 1.5; }
  .aspect-ratio-lg-3-4 {
    aspect-ratio: 0.75; }
  .aspect-ratio-lg-4-3 {
    aspect-ratio: 1.3333; }
  .aspect-ratio-lg-4-5 {
    aspect-ratio: 0.8; }
  .aspect-ratio-lg-5-4 {
    aspect-ratio: 1.25; }
  .aspect-ratio-lg-16-9 {
    aspect-ratio: 1.7778; }
  .aspect-ratio-lg-21-9 {
    aspect-ratio: 2.3333; }
  .aspect-ratio-lg-25-9 {
    aspect-ratio: 2.7777; } }

@media (min-width: 1920px) {
  .aspect-ratio-xl-1-1 {
    aspect-ratio: 1; }
  .aspect-ratio-xl-2-3 {
    aspect-ratio: 0.6667; }
  .aspect-ratio-xl-3-2 {
    aspect-ratio: 1.5; }
  .aspect-ratio-xl-3-4 {
    aspect-ratio: 0.75; }
  .aspect-ratio-xl-4-3 {
    aspect-ratio: 1.3333; }
  .aspect-ratio-xl-4-5 {
    aspect-ratio: 0.8; }
  .aspect-ratio-xl-5-4 {
    aspect-ratio: 1.25; }
  .aspect-ratio-xl-16-9 {
    aspect-ratio: 1.7778; }
  .aspect-ratio-xl-21-9 {
    aspect-ratio: 2.3333; }
  .aspect-ratio-xl-25-9 {
    aspect-ratio: 2.7777; } }

.slot__container:has(.hero-redesign) {
  background: #efede9;
  margin: 0; }
  .slot__container:has(.hero-redesign) .slot__info {
    background: #E9E1CF;
    padding: 48px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0; }
  .slot__container:has(.hero-redesign) .slot__text {
    font-size: 16px;
    letter-spacing: 0.03em; }
  .slot__container:has(.hero-redesign) .slot__info-inner {
    gap: 40px; }
  .slot__container:has(.hero-redesign) .slot__cta {
    padding: 0 32px;
    font-family: "Archivo";
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
    height: 40px;
    border-radius: 2px;
    background: #212529;
    color: #ffffff;
    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;
    margin: 0;
    text-decoration: none; }

.hero-redesign {
  display: block;
  position: relative;
  overflow: hidden; }
  @media (min-width: 1200px) {
    .hero-redesign .hero__background-img {
      max-height: 80vh;
      -o-object-fit: cover;
         object-fit: cover; } }
  @media (min-width: 1200px) {
    .hero-redesign .hero__video-block video {
      max-height: 80vh; } }

.hero__video-block {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }
  .hero__video-block video {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
  .hero__video-block:first-child {
    position: relative;
    height: auto; }
    .hero__video-block:first-child video {
      width: 100%;
      position: relative; }

.hero__content {
  position: absolute;
  inset: auto 0 0;
  padding: 96px 24px 24px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  min-height: 275px;
  color: #ffffff; }

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 20px; }

.hero__content-subtitle {
  font-family: "Archivo";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0; }

.hero__content-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; }

.hero__content-title {
  font-family: "Butler";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0; }

.hero__button {
  font-family: "Archivo";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-decoration: underline;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }
  a:is(:hover, :focus, :active) .hero__button {
    text-decoration: underline; }

@media (min-width: 1200px) {
  .slot__container:has(.hero-redesign) {
    margin: 0; }
    .slot__container:has(.hero-redesign) .slot__info {
      padding: 48px 64px 48px 48px;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 96px; }
    .slot__container:has(.hero-redesign) .slot__text {
      font-size: 18px;
      letter-spacing: 0.02em; }
  .hero__content {
    min-height: 344px;
    padding: 40px 48px;
    gap: 24px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .hero__content-subtitle {
    font-size: 16px;
    letter-spacing: 0.03em; }
  .hero__content-heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px; }
  .hero__content-title {
    font-size: 48px; } }

/* FRETTE: Start Variables
-------------------------- */
@font-face {
  font-family: 'Didot';
  src: url("../fonts/Didot/DidoteTextPro-Regular.otf") format("opentype"); }

@font-face {
  font-family: 'Didot';
  font-weight: bold;
  src: url("../fonts/Didot/DidoteTextPro-Bold.otf") format("opentype"); }

@font-face {
  font-family: 'Didot';
  font-style: italic;
  src: url("../fonts/Didot/DidoteTextPro-Italic.otf") format("opentype"); }

@font-face {
  font-family: 'Didot';
  font-weight: bold;
  font-style: italic;
  src: url("../fonts/Didot/DidoteTextPro-BoldItalic.otf") format("opentype"); }

@font-face {
  font-family: 'HelveticaNeue';
  src: url("../fonts/HelveticaNeue/HelveticaNeueeTextPro-Roman.otf") format("opentype"); }

@font-face {
  font-family: 'HelveticaNeueMd';
  src: url("../fonts/HelveticaNeue/HelveticaNeueeTextPro-Md.otf") format("opentype"); }

/*Replace old fonts with new fonts by default*/
body {
  margin: 0; }

/* FRETTE: End Variables
------------------------ */
/*------------------------------------*\
  #FORMS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
.swatch--anchor {
  display: inline-block; }

.swatch-circle-beige {
  width: 2.5em;
  height: 2.5em;
  background-color: #f5f5dc;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-beige.disabled {
    opacity: 0.2; }

.swatch-filter-beige {
  width: 1.38em;
  height: 1.38em;
  background-color: #f5f5dc;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #f5f5dc;
  display: block;
  position: relative; }
  .swatch-filter-beige.disabled {
    opacity: 0.2; }

.swatch-circle-black {
  width: 2.5em;
  height: 2.5em;
  background-color: #000;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-black.disabled {
    opacity: 0.2; }

.swatch-filter-black {
  width: 1.38em;
  height: 1.38em;
  background-color: #000;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #000;
  display: block;
  position: relative; }
  .swatch-filter-black.disabled {
    opacity: 0.2; }

.swatch-circle-blue {
  width: 2.5em;
  height: 2.5em;
  background-color: #007bff;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-blue.disabled {
    opacity: 0.2; }

.swatch-filter-blue {
  width: 1.38em;
  height: 1.38em;
  background-color: #007bff;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #007bff;
  display: block;
  position: relative; }
  .swatch-filter-blue.disabled {
    opacity: 0.2; }

.swatch-circle-brown {
  width: 2.5em;
  height: 2.5em;
  background-color: #a52a2a;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-brown.disabled {
    opacity: 0.2; }

.swatch-filter-brown {
  width: 1.38em;
  height: 1.38em;
  background-color: #a52a2a;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #a52a2a;
  display: block;
  position: relative; }
  .swatch-filter-brown.disabled {
    opacity: 0.2; }

.swatch-circle-green {
  width: 2.5em;
  height: 2.5em;
  background-color: #28a745;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-green.disabled {
    opacity: 0.2; }

.swatch-filter-green {
  width: 1.38em;
  height: 1.38em;
  background-color: #28a745;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #28a745;
  display: block;
  position: relative; }
  .swatch-filter-green.disabled {
    opacity: 0.2; }

.swatch-circle-grey {
  width: 2.5em;
  height: 2.5em;
  background-color: #8f979d;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-grey.disabled {
    opacity: 0.2; }

.swatch-filter-grey {
  width: 1.38em;
  height: 1.38em;
  background-color: #8f979d;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #8f979d;
  display: block;
  position: relative; }
  .swatch-filter-grey.disabled {
    opacity: 0.2; }

.swatch-circle-navy {
  width: 2.5em;
  height: 2.5em;
  background-color: #000080;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-navy.disabled {
    opacity: 0.2; }

.swatch-filter-navy {
  width: 1.38em;
  height: 1.38em;
  background-color: #000080;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #000080;
  display: block;
  position: relative; }
  .swatch-filter-navy.disabled {
    opacity: 0.2; }

.swatch-circle-orange {
  width: 2.5em;
  height: 2.5em;
  background-color: #ffa500;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-orange.disabled {
    opacity: 0.2; }

.swatch-filter-orange {
  width: 1.38em;
  height: 1.38em;
  background-color: #ffa500;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #ffa500;
  display: block;
  position: relative; }
  .swatch-filter-orange.disabled {
    opacity: 0.2; }

.swatch-circle-pink {
  width: 2.5em;
  height: 2.5em;
  background-color: #fe249a;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-pink.disabled {
    opacity: 0.2; }

.swatch-filter-pink {
  width: 1.38em;
  height: 1.38em;
  background-color: #fe249a;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #fe249a;
  display: block;
  position: relative; }
  .swatch-filter-pink.disabled {
    opacity: 0.2; }

.swatch-circle-purple {
  width: 2.5em;
  height: 2.5em;
  background-color: #800080;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-purple.disabled {
    opacity: 0.2; }

.swatch-filter-purple {
  width: 1.38em;
  height: 1.38em;
  background-color: #800080;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #800080;
  display: block;
  position: relative; }
  .swatch-filter-purple.disabled {
    opacity: 0.2; }

.swatch-circle-red {
  width: 2.5em;
  height: 2.5em;
  background-color: #f00;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-red.disabled {
    opacity: 0.2; }

.swatch-filter-red {
  width: 1.38em;
  height: 1.38em;
  background-color: #f00;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #f00;
  display: block;
  position: relative; }
  .swatch-filter-red.disabled {
    opacity: 0.2; }

.swatch-circle-white {
  width: 2.5em;
  height: 2.5em;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-white.disabled {
    opacity: 0.2; }

.swatch-filter-white {
  width: 1.38em;
  height: 1.38em;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #ffffff;
  display: block;
  position: relative; }
  .swatch-filter-white.disabled {
    opacity: 0.2; }

.swatch-circle-yellow {
  width: 2.5em;
  height: 2.5em;
  background-color: #ff0;
  background-position: center;
  background-size: cover;
  border-radius: 1.25em;
  display: block;
  position: relative; }
  .swatch-circle-yellow.disabled {
    opacity: 0.2; }

.swatch-filter-yellow {
  width: 1.38em;
  height: 1.38em;
  background-color: #ff0;
  background-position: center;
  background-size: cover;
  border-radius: 0.69em;
  background-color: #ff0;
  display: block;
  position: relative; }
  .swatch-filter-yellow.disabled {
    opacity: 0.2; }

.swatch-circle-miscellaneous {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #821e91), color-stop(25%, #821e91), color-stop(25%, #edd134), color-stop(50%, yellow), color-stop(50%, #edd134), color-stop(50%, #59ba00), color-stop(76%, #59ba00), color-stop(76%, #111), to(#111)), -webkit-gradient(linear, left bottom, left top, color-stop(0, #0e5cd1), color-stop(50%, #0e5cd1), color-stop(50%, #e20b0b), to(#e20b0b));
  background: -webkit-linear-gradient(bottom, #821e91 0, #821e91 25%, #edd134 25%, yellow 50%, #edd134 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), -webkit-linear-gradient(bottom, #0e5cd1 0, #0e5cd1 50%, #e20b0b 50%, #e20b0b 100%);
  background: -o-linear-gradient(bottom, #821e91 0, #821e91 25%, #edd134 25%, yellow 50%, #edd134 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), -o-linear-gradient(bottom, #0e5cd1 0, #0e5cd1 50%, #e20b0b 50%, #e20b0b 100%);
  background: linear-gradient(0deg, #821e91 0, #821e91 25%, #edd134 25%, yellow 50%, #edd134 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), linear-gradient(0deg, #0e5cd1 0, #0e5cd1 50%, #e20b0b 50%, #e20b0b 100%);
  background-repeat: repeat-y, repeat;
  background-size: 50% 100%, 100% 100%;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  border-radius: 1.25em;
  display: block;
  height: 2.5em;
  position: relative;
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
  width: 2.5em; }
  .swatch-circle-miscellaneous.disabled {
    opacity: 0.2; }
  .swatch-circle-miscellaneous.selected::after {
    -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
            transform: rotate(-35deg); }

.product-detail .text-color--matterhorn {
  color: #757575; }

@media (max-width: 768.98px) {
  .pdp--wrapper {
    padding-right: 0;
    padding-left: 0;
    width: 100%; } }

.pdp--wrapper h1 {
  font-size: 2rem;
  font-family: "Butler";
  letter-spacing: 0.8px;
  color: #031e2f; }

.pdp--wrapper .pdp--media__img {
  aspect-ratio: 1; }
  @media (min-width: 769px) {
    .pdp--wrapper .pdp--media__img:not(:last-child) {
      margin-bottom: 0; } }

.pdp--container {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative; }
  @media (max-width: 768.98px) {
    .pdp--container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      overflow: hidden; } }

.discover-collection {
  position: relative;
  top: 4rem;
  left: 0;
  right: 0;
  font-size: 2rem;
  font-family: Butler;
  letter-spacing: 0.8px;
  color: #031e2f;
  line-height: unset; }

.pdp--media {
  width: 100%; }
  @media (min-width: 769px) {
    .pdp--media {
      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-flex: 1;
          -ms-flex: 1 1 57.50799%;
              flex: 1 1 57.50799%;
      max-width: 45.50799%; } }
  @media (max-width: 768.98px) {
    .pdp--media {
      margin-bottom: 2.25rem; } }
  @media screen and (min-width: 1280px) {
    .pdp--media {
      position: sticky;
      top: 129px; } }
  .pdp--media .pdp-main__img {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (max-width: 767px) {
      .pdp--media .pdp-main__img {
        position: relative; } }
    .pdp--media .pdp-main__img .zoomIcon {
      display: none; }
      @media (max-width: 767px) {
        .pdp--media .pdp-main__img .zoomIcon {
          display: block !important;
          position: absolute;
          z-index: 1;
          bottom: 50px;
          right: 5px;
          font-size: 19px;
          width: 26px;
          text-align: center;
          height: 26px;
          background: #031e2f;
          border-radius: 20%; } }
      @media (max-width: 767px) {
        .pdp--media .pdp-main__img .zoomIcon i {
          color: #fff; } }

@media (max-width: 768.98px) {
  .pdp-main__img-gallery:not(.slick-initialized) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto; }
    .pdp-main__img-gallery:not(.slick-initialized) .pdp--media__img {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%; } }

.pdp--media__thumbnails:focus {
  outline: 2px solid #ccc; }

.pdp--media__thumbnail {
  width: 60px;
  height: 60px;
  max-width: none;
  margin-bottom: 1.875rem;
  cursor: pointer;
  -webkit-transition: opacity 213ms ease-in-out;
  -o-transition: opacity 213ms ease-in-out;
  transition: opacity 213ms ease-in-out; }
  .pdp--media__thumbnail:hover:not(.toggle--active) {
    opacity: 0.75; }
  .pdp--media__thumbnail:not(.toggle--active) {
    opacity: 0.5; }
  .pdp--media__thumbnail:focus {
    outline: 2px solid #ccc; }

@media (min-width: 769px) {
  .pdp--product__specs {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 37.53994%;
            flex: 1 1 37.53994%;
    max-width: 45.53994%;
    margin-left: 3.625rem; } }

@media (max-width: 768.98px) {
  .pdp--product__specs {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; } }

.pdp--product__specs .container {
  padding-left: 0; }

.pdp--product__specs .prices-add-to-cart-actions {
  padding: 0;
  position: static !important;
  -webkit-box-shadow: none;
          box-shadow: none; }

.product-attributes__container {
  margin-top: 2rem;
  margin-bottom: 1.25rem; }

.pdp--swatches {
  width: 100%;
  max-width: 14.5rem; }

.pdp--value {
  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-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }
  .pdp--value .value {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.6px; }

.pdp-size__list {
  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-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }
  .pdp-size__list .pdp--color__available {
    margin-right: 0;
    max-width: none; }

.pdp__quantity {
  margin-top: 1.25rem; }

.quantity-select__container {
  position: relative;
  padding: 0.625rem 0;
  max-width: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .quantity-select__container:before, .quantity-select__container:after {
    pointer-events: none;
    z-index: 1;
    position: absolute;
    top: 50%;
    width: 0.0625rem;
    height: 0.5rem;
    background-color: #000;
    content: ""; }
  .quantity-select__container:before {
    right: 0.625rem;
    -webkit-transform: translate(-0.25rem, -50%) rotate(-45deg);
        -ms-transform: translate(-0.25rem, -50%) rotate(-45deg);
            transform: translate(-0.25rem, -50%) rotate(-45deg); }
  .quantity-select__container:after {
    right: 0.8rem;
    -webkit-transform: translate(0.25rem, -50%) rotate(45deg);
        -ms-transform: translate(0.25rem, -50%) rotate(45deg);
            transform: translate(0.25rem, -50%) rotate(45deg); }

.quantity-select__label {
  pointer-events: none;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  margin: 0;
  letter-spacing: 0.11em; }

.quantity-select__field {
  width: 100%;
  border: 0;
  position: relative;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-left: 4.25rem; }
  .quantity-select__field::-ms-expand {
    display: none; }
  @media (min-width: 992px) {
    .quantity-select__field {
      font-size: 0.8125rem; } }

.pdp__utilities {
  margin-top: 0;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3px; }
  @media (min-width: 992px) {
    .pdp__utilities {
      margin-top: 9px; } }
  .pdp__utilities .fa {
    font-family: 'FontAwesome' !important;
    font-weight: normal !important; }

.product-availability {
  margin-bottom: 1rem; }

.add-to-wish-list {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.range--pricing__range {
  display: block; }
  .range--pricing__range .value {
    font-weight: normal; }

.pdpCarousel-container {
  max-width: 500px; }
  @media (min-width: 768.02px) and (max-width: 991.98px) {
    .pdpCarousel-container {
      max-width: 369px; } }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    .pdpCarousel-container {
      max-width: 449px; } }

.product-dimens {
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  font-family: Archivo; }

.pdp-detail {
  margin-top: 3rem;
  margin-right: 4rem; }
  .pdp-detail .pdp-detail-heading {
    font-family: Archivo;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.3px;
    color: #031e2f; }
  .pdp-detail .pdp-detail-description {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 23.9333px;
    height: 140px;
    color: #505050; }
  @media (max-width: 768.98px) {
    .pdp-detail {
      display: none; } }

/**mobile sticky add to bag button**/
@media (max-width: 768.98px) {
  .mobile-fixit {
    position: static;
    right: 15px;
    left: 15px;
    z-index: 8;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    outline: none; }
    .mobile-fixit.fixed {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9;
      background: #ffffff;
      padding: 15px 15px 25px;
      border-top: 1px solid #d8d8d8; } }

.pdp-main__img-gallery .slick-arrow {
  z-index: 1;
  position: absolute;
  bottom: 0.5rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 24px;
  -webkit-appearance: none; }

.pdp-main__img-gallery .slick-slide:focus {
  outline: auto !important; }

.pdp-main__img-gallery .prev-arrow {
  left: 93%; }

.pdp-main__img-gallery .next-arrow {
  left: 98%; }

@media screen and (max-width: 767px) {
  .pdp-main__img-gallery .prev-arrow {
    left: 90%; }
  .pdp-main__img-gallery .next-arrow {
    left: 96%; } }

.pdp-main__img-gallery .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8rem;
  list-style-type: none;
  margin: 0; }

.quickview-section__media .slick--inner-dots .slick-dots {
  position: relative;
  bottom: 3.675rem; }
  .quickview-section__media .slick--inner-dots .slick-dots li:not(.slick-active) button:after {
    background-color: #9f9f9f; }

#notifyModal .modal-dialog {
  max-width: 700px; }

#notifyModal .modal-body {
  padding: 2rem; }
  #notifyModal .modal-body .close {
    position: absolute;
    right: 14px;
    top: 8px;
    font-size: 2rem;
    line-height: 1; }
  @media screen and (max-width: 500px) {
    #notifyModal .modal-body {
      padding: 1rem; } }

#notifyModal form .form-inner {
  max-width: 500px; }

#notifyModal .discover-collection {
  position: unset;
  top: 0;
  letter-spacing: 0;
  font-size: 1.5rem;
  padding: 30px 0;
  border-top: 0; }
  @media screen and (max-width: 500px) {
    #notifyModal .discover-collection {
      font-size: 1.1rem; } }

#notifyModal .product-attributes__container {
  margin: 40px 0 30px; }

#notifyModal .pdp--swatches .swatch--anchor-color:first-child {
  margin-left: 0; }

#notifyModal .size-chart {
  display: none; }

#notifyModal .size-anchor__list {
  margin-top: 0; }

#notifyModal .custom-control-label {
  font-size: .7rem;
  text-transform: none;
  font-family: "Archivo-Regular"; }
  #notifyModal .custom-control-label span {
    display: block;
    font-size: .625rem; }
  #notifyModal .custom-control-label a {
    text-decoration: underline; }

#notifyModal .btn-primary {
  max-width: 150px;
  width: 100%;
  position: relative !important; }

#notifyModal .radio-option-wraper .reg-radio-box label,
#notifyModal .radio-option-wraper .after-radio-txt,
#notifyModal .radio-option-wraper .rd-txt-btm {
  font-size: .7rem; }

#notifyModal .message {
  display: none;
  border-radius: 4px;
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #031e2f;
  padding: 10px;
  font-size: .7rem; }
  #notifyModal .message h4 {
    font-size: 1rem; }

#notifyModal .product-attributes__container .pdp--swatches .color {
  top: -30px;
  left: 0; }

.background-pdp-fade {
  position: relative;
  overflow: hidden; }
  .background-pdp-fade:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.51);
    z-index: 2000; }

@media (max-width: 1279.98px) {
  .breadcrumb-list {
    display: none !important; } }

.breadcrumb-pdp {
  font-family: 'Archivo-ExtraLight';
  font-size: 14px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.71;
  letter-spacing: 0.28px;
  text-align: left;
  color: #575757;
  text-transform: capitalize;
  padding-left: 23px;
  margin-left: 0; }
  @media (min-width: 1280px) {
    .breadcrumb-pdp {
      margin-bottom: 0; } }
  @media (min-width: 1920px) {
    .breadcrumb-pdp {
      font-size: 16px;
      line-height: 2.38;
      letter-spacing: 0.32px;
      padding-left: 42px; } }
  .breadcrumb-pdp .breadcrumb-list__divider::after {
    content: '/';
    display: inline-block; }

.pdp--wrapper.container {
  padding: 0;
  max-width: none; }

.pdp--wrapper .pdp-main__img .zoomIcon {
  display: none !important; }

.pdp--wrapper .product-name {
  font-family: "Butler";
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #212529;
  margin: 0; }
  @media (min-width: 992px) {
    .pdp--wrapper .product-name {
      padding: 9.5px 0; } }

.pdp--wrapper .pdp--value {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .pdp--wrapper .pdp--value .promotions {
    margin-left: 0; }
  .pdp--wrapper .pdp--value .value {
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #71767c;
    margin-right: 10px; }
  .pdp--wrapper .pdp--value .strike-through {
    display: inline;
    float: right;
    color: #000; }
    .pdp--wrapper .pdp--value .strike-through .value {
      opacity: 0.3; }

@media (min-width: 1280px) {
  .pdp--wrapper .pdp--product__description {
    margin-bottom: 20px; } }

.pdp--wrapper .paragraph--2 {
  font-family: "Archivo";
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.48px;
  text-align: left;
  color: #212529; }

.pdp--wrapper .mobile-show {
  display: block; }
  @media (min-width: 1280px) {
    .pdp--wrapper .mobile-show {
      display: none; } }

.pdp--wrapper .desktop-show {
  display: none; }
  @media (min-width: 1280px) {
    .pdp--wrapper .desktop-show {
      display: block; } }

.pdp--wrapper .pdp-variation-wrapper {
  position: relative; }
  .pdp--wrapper .pdp-variation-wrapper .size-chart {
    position: absolute;
    top: 0;
    right: 0;
    z-index: unset; }

.pdp--wrapper .pdp-variation-text {
  font-family: 'Archivo-Regular';
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: 0.48px;
  text-align: left;
  color: #212529;
  text-transform: capitalize; }

.pdp--wrapper .quantity-select__container::before, .pdp--wrapper .quantity-select__container::after {
  background-color: #ffffff; }

.pdp--wrapper .pdp-quantity {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding-left: 10px;
  z-index: 2; }
  .pdp--wrapper .pdp-quantity .quantity-select {
    display: none !important; }
  .pdp--wrapper .pdp-quantity .quantity-decrease, .pdp--wrapper .pdp-quantity .quantity-increase, .pdp--wrapper .pdp-quantity .quantity-select {
    margin-left: 5px; }
  .pdp--wrapper .pdp-quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none; }
  .pdp--wrapper .pdp-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none; }
  .pdp--wrapper .pdp-quantity .pdp-quantity__value {
    display: none !important; }
    .pdp--wrapper .pdp-quantity .pdp-quantity__value.selected {
      display: block !important; }
  .pdp--wrapper .pdp-quantity option {
    display: none; }
    .pdp--wrapper .pdp-quantity option:checked {
      display: block; }

.pdp--wrapper .quantity-select {
  display: none !important; }

.pdp--wrapper .quantity-hidden {
  padding-left: 0;
  width: 30px;
  text-align: center;
  margin-left: 5px; }

.pdp--wrapper .quantity-select__container, .pdp--wrapper .quantity-select__label, .pdp--wrapper .quantity-select {
  font-family: 'Archivo-ExtraLight';
  font-size: 18px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.72;
  letter-spacing: 0.54px;
  text-align: left;
  color: #575757;
  text-transform: capitalize !important; }
  @media (min-width: 1280px) {
    .pdp--wrapper .quantity-select__container, .pdp--wrapper .quantity-select__label, .pdp--wrapper .quantity-select {
      font-family: 'Archivo-Thin';
      font-size: 16px;
      font-weight: 100;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.94;
      letter-spacing: 0.48px; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .quantity-select__container, .pdp--wrapper .quantity-select__label, .pdp--wrapper .quantity-select {
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: 0.6px; } }
  .pdp--wrapper .quantity-select__container .quantity-select__label, .pdp--wrapper .quantity-select__label .quantity-select__label, .pdp--wrapper .quantity-select .quantity-select__label {
    color: #000;
    font-weight: 300;
    letter-spacing: 0.54px; }
    @media (min-width: 1280px) {
      .pdp--wrapper .quantity-select__container .quantity-select__label, .pdp--wrapper .quantity-select__label .quantity-select__label, .pdp--wrapper .quantity-select .quantity-select__label {
        letter-spacing: 0.48px; } }
    @media (min-width: 1920px) {
      .pdp--wrapper .quantity-select__container .quantity-select__label, .pdp--wrapper .quantity-select__label .quantity-select__label, .pdp--wrapper .quantity-select .quantity-select__label {
        letter-spacing: 0.6px; } }
  .pdp--wrapper .quantity-select__container .quantity-select, .pdp--wrapper .quantity-select__container .quantity-decrease, .pdp--wrapper .quantity-select__container .quantity-increase, .pdp--wrapper .quantity-select__label .quantity-select, .pdp--wrapper .quantity-select__label .quantity-decrease, .pdp--wrapper .quantity-select__label .quantity-increase, .pdp--wrapper .quantity-select .quantity-select, .pdp--wrapper .quantity-select .quantity-decrease, .pdp--wrapper .quantity-select .quantity-increase {
    font-weight: 300; }

.pdp--wrapper .quantity-select__field {
  padding-left: 12px;
  width: 30px; }

.pdp--wrapper .quantity-decrease {
  margin-left: 40px; }
  @media (min-width: 1920px) {
    .pdp--wrapper .quantity-decrease {
      margin-left: 50px; } }

.pdp--wrapper .quantity-increase.disabled, .pdp--wrapper .quantity-decrease.disabled {
  cursor: not-allowed;
  opacity: 0.5; }

.pdp--wrapper .product-available-registry {
  font-family: "Archivo";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: #212529;
  margin-bottom: 32px; }

.pdp--wrapper .product-availability {
  margin-bottom: 0; }
  @media (max-width: 1279.98px) {
    .pdp--wrapper .product-availability {
      position: relative; } }

.pdp--wrapper .availability-msg {
  padding: 15px 0; }

.pdp--wrapper .add-to-cart, .pdp--wrapper .btn-store-locator, .pdp--wrapper .notify-button {
  font-family: "Archivo";
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 2.11px;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  background-color: #212529 !important;
  height: 48px;
  border: none;
  border-radius: 2px; }
  .pdp--wrapper .add-to-cart:disabled, .pdp--wrapper .btn-store-locator:disabled, .pdp--wrapper .notify-button:disabled {
    background-color: #c7c7c7 !important;
    opacity: 1;
    border-color: #c7c7c7; }

.pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button) {
  position: relative; }

.pdp--wrapper .cart-and-ipay .apple-pay-btn-wrapper:has(.dw-apple-pay-button), .pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button):not(:has(.apple-pay-btn-wrapper)) {
  height: 48px;
  position: relative;
  margin-top: 24px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  gap: 4px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  font-family: "Archivo";
  border-radius: 4px;
  background: #000;
  overflow: hidden; }
  .pdp--wrapper .cart-and-ipay .apple-pay-btn-wrapper:has(.dw-apple-pay-button):is(.sticky-bottom-fixed .cart-and-ipay), .pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button):not(:has(.apple-pay-btn-wrapper)):is(.sticky-bottom-fixed .cart-and-ipay) {
    border-radius: 0;
    margin-top: 1px; }
  .pdp--wrapper .cart-and-ipay .apple-pay-btn-wrapper:has(.dw-apple-pay-button):before, .pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button):not(:has(.apple-pay-btn-wrapper)):before {
    content: attr(data-pay-with);
    display: block; }
  .pdp--wrapper .cart-and-ipay .apple-pay-btn-wrapper:has(.dw-apple-pay-button):after, .pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button):not(:has(.apple-pay-btn-wrapper)):after {
    content: '';
    display: block;
    width: 40px;
    height: 100%;
    background: -webkit-named-image(apple-pay-logo-white) center center no-repeat; }
  .pdp--wrapper .cart-and-ipay .apple-pay-btn-wrapper:has(.dw-apple-pay-button) .dw-apple-pay-button.btn,
  .pdp--wrapper .cart-and-ipay .apple-pay-btn-wrapper:has(.dw-apple-pay-button) .dw-apple-pay-button.btn:hover, .pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button):not(:has(.apple-pay-btn-wrapper)) .dw-apple-pay-button.btn,
  .pdp--wrapper .cart-and-ipay:has(.dw-apple-pay-button):not(:has(.apple-pay-btn-wrapper)) .dw-apple-pay-button.btn:hover {
    inset: 0;
    position: absolute;
    z-index: 1;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    border: none; }

.pdp--wrapper .product-registry-container .myregistry {
  padding: 15px 32px !important;
  font: inherit !important;
  min-width: 0 !important;
  color: inherit !important;
  background: inherit !important;
  height: auto !important;
  margin: 0 !important; }
  @media (min-width: 992px) {
    .pdp--wrapper .product-registry-container .myregistry {
      padding: 15px 0 !important; } }
  .pdp--wrapper .product-registry-container .myregistry span {
    font-size: inherit !important;
    font-family: "Archivo";
    font-weight: 500;
    text-transform: unset !important;
    text-decoration: underline; }

.pdp--wrapper .product-registry-container.false {
  display: none; }

.pdp--wrapper .product-registry a:hover, .pdp--wrapper .product-registry a:active {
  text-decoration: none; }

.pdp--wrapper .product-registry .button_text {
  font-family: 'Archivo-ExtraLight' !important;
  font-size: 16px !important;
  font-weight: 200 !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56 !important;
  letter-spacing: 0.48px !important;
  text-align: left;
  color: #000 !important;
  text-transform: capitalize !important;
  margin-right: 0 !important;
  width: auto !important;
  top: -41px;
  border-bottom: 1px solid #707070; }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-registry .button_text {
      font-size: 12px !important;
      line-height: 2.08 !important;
      letter-spacing: 0.36px !important;
      top: 0;
      border-bottom: none; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .product-registry .button_text {
      bottom: 50px;
      left: 10px;
      font-size: 14px !important;
      line-height: 1.79 !important;
      letter-spacing: 0.42px !important; } }

.pdp--wrapper .add-to-cart-wishlist-mobile {
  display: grid;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px; }
  @media (min-width: 1280px) {
    .pdp--wrapper .add-to-cart-wishlist-mobile {
      display: none !important; } }
  .pdp--wrapper .add-to-cart-wishlist-mobile .mobile-fixit {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%; }
  .pdp--wrapper .add-to-cart-wishlist-mobile .prices-add-to-cart-actions {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    display: block !important;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%; }
  .pdp--wrapper .add-to-cart-wishlist-mobile > .prices-add-to-cart-actions {
    grid-column: 1 / -1; }
  .pdp--wrapper .add-to-cart-wishlist-mobile .add-to-wish-list {
    border: 1px solid #212529;
    border-radius: 2px;
    line-height: 1;
    font-size: 12px;
    padding: 0 12px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    height: 48px; }
  .pdp--wrapper .add-to-cart-wishlist-mobile .add-to-wishlist-mobile-text {
    color: #212529;
    font-family: "Archivo";
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 1.11px;
    text-align: center;
    line-height: 1.2; }
  .pdp--wrapper .add-to-cart-wishlist-mobile .add-to-cart {
    height: 48px;
    min-height: 48px;
    line-height: 1.2;
    font-size: 12px;
    padding: 0 12px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%; }
  .pdp--wrapper .add-to-cart-wishlist-mobile.sticky-bottom-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    margin: 10px 0 0;
    background-color: #ffffff;
    gap: 0; }
    .pdp--wrapper .add-to-cart-wishlist-mobile.sticky-bottom-fixed .add-to-cart,
    .pdp--wrapper .add-to-cart-wishlist-mobile.sticky-bottom-fixed .add-to-wish-list {
      border-radius: 0; }

.pdp--wrapper .pdp--product__information {
  margin-top: 0; }
  @media (min-width: 1280px) {
    .pdp--wrapper .pdp--product__information {
      margin-top: 20px; } }

.pdpCarousel-container .slick-list {
  padding: 0 15px !important; }
  @media (min-width: 768px) {
    .pdpCarousel-container .slick-list {
      padding: 0 14px !important; } }
  @media (min-width: 1280px) {
    .pdpCarousel-container .slick-list {
      padding: 0 15px !important; } }
  @media (min-width: 1280px) {
    .pdpCarousel-container .slick-list {
      padding: 0 !important; } }

.pdpCarousel-container .slick--simple-dots .slick-dots {
  margin-bottom: 0;
  padding-bottom: 14px; }
  @media (min-width: 768px) {
    .pdpCarousel-container .slick--simple-dots .slick-dots {
      padding-bottom: 15px; } }
  .pdpCarousel-container .slick--simple-dots .slick-dots button {
    padding: 5px; }
    .pdpCarousel-container .slick--simple-dots .slick-dots button::after {
      height: 5px;
      width: 5px;
      border-radius: 100px;
      opacity: 0.4;
      background: #ffffff; }
  .pdpCarousel-container .slick--simple-dots .slick-dots .slick-active button::after {
    background: #ffffff;
    opacity: 1; }

.pdpCarousel-container .pdp--media__img {
  margin: 0 5px; }
  .pdpCarousel-container .pdp--media__img video {
    width: 100%; }
  @media (min-width: 768px) {
    .pdpCarousel-container .pdp--media__img {
      margin: 0 6px; } }
  @media (min-width: 1280px) {
    .pdpCarousel-container .pdp--media__img {
      margin: 0; } }
  @media (min-width: 768px) and (max-width: 1279.98px) {
    .pdpCarousel-container .pdp--media__img:not(:last-child) {
      margin-bottom: 0; } }
  @media (min-width: 1280px) {
    .pdpCarousel-container .pdp--media__img img:hover,
    .pdpCarousel-container .pdp--media__img video:hover {
      cursor: url("../images/icons/zoomCursor.svg"), auto !important; } }

@media (min-width: 1280px) {
  .pdpCarousel-container .qv-pdp--media__img img:hover {
    cursor: pointer !important; } }

.pdp--media {
  width: 100%;
  max-width: none;
  margin-bottom: 31px; }
  @media (min-width: 768px) {
    .pdp--media {
      margin-bottom: 19px; } }
  @media (min-width: 1280px) {
    .pdp--media {
      width: 50%;
      margin-bottom: 0;
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto;
      margin-left: 0;
      margin-right: 26px; } }
  @media (min-width: 1920px) {
    .pdp--media {
      margin-right: 40px; } }
  .pdp--media .pdp-image__thumbs {
    display: none; }
    @media (min-width: 1280px) {
      .pdp--media .pdp-image__thumbs {
        display: block;
        padding-right: 20px;
        width: 16.6%;
        max-height: 546px;
        overflow-y: auto; } }
    @media (min-width: 1920px) {
      .pdp--media .pdp-image__thumbs {
        padding-right: 40px;
        width: 15.58%; } }
  .pdp--media .pdp-image__thumbs-item {
    position: relative; }
    .pdp--media .pdp-image__thumbs-item .play-icon {
      position: absolute;
      width: 49px;
      text-align: center;
      color: #fff;
      font-size: 26px;
      top: 32%;
      left: 25%;
      z-index: 1; }
    @media (min-width: 1280px) {
      .pdp--media .pdp-image__thumbs-item {
        margin-bottom: 24px; } }
    @media (min-width: 1920px) {
      .pdp--media .pdp-image__thumbs-item {
        margin-bottom: 30px; } }
    .pdp--media .pdp-image__thumbs-item.slick-nav--active .pdp-thumb__main-image {
      opacity: 1; }
  .pdp--media .pdp-thumb__main-image {
    opacity: 0.3; }
  .pdp--media .pdpCarousel-container {
    width: 100%;
    max-width: none; }
    @media (min-width: 1280px) {
      .pdp--media .pdpCarousel-container {
        width: 83.4%; } }
    @media (min-width: 1920px) {
      .pdp--media .pdpCarousel-container {
        width: 84.42%; } }
    .pdp--media .pdpCarousel-container .slick-dots {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }

.pdp--product__specs {
  width: 100%;
  max-width: none;
  padding: 0 20px;
  margin: 0; }
  @media (min-width: 1280px) {
    .pdp--product__specs {
      width: 50%;
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto;
      padding-right: 173px;
      padding-top: 48px;
      padding-left: 26px; } }
  @media (min-width: 1920px) {
    .pdp--product__specs {
      padding-right: 246px;
      padding-left: 40px; } }

@media (min-width: 1280px) {
  .pdp--media {
    padding-top: 48px; } }

.pdp--container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .pdp--container {
      margin-bottom: 48px; } }
  @media (min-width: 1280px) {
    .pdp--container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin: 0 20px 27px; } }
  @media (min-width: 1920px) {
    .pdp--container {
      margin: 0 42px 41px; } }

.add-to-wishlist-mobile, .add-to-wishlist-mobile-text {
  display: block; }
  @media (min-width: 1280px) {
    .add-to-wishlist-mobile, .add-to-wishlist-mobile-text {
      display: none; } }

.product-name-utilities {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px; }
  .product-name-utilities .add-to-wish-list {
    display: none; }
    @media (min-width: 1280px) {
      .product-name-utilities .add-to-wish-list {
        display: block;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }

.pdp--value.prices {
  padding-top: 0; }
  @media (min-width: 1280px) {
    .pdp--value.prices {
      padding-bottom: 15px; } }

.pdp--wrapper .product-attributes__container {
  margin-top: 0px;
  margin-bottom: 0; }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-attributes__container {
      margin-bottom: 10px; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .product-attributes__container {
      margin-bottom: 25px; } }
  .pdp--wrapper .product-attributes__container .attribute {
    margin-top: 5px; }
  @media (min-width: 768px) {
    .pdp--wrapper .product-attributes__container .pdp--color__available {
      width: 384px; } }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-attributes__container .pdp--color__available {
      width: 360px; } }
  .pdp--wrapper .product-attributes__container .pdp-size__list .pdp--swatches {
    width: 100%;
    max-width: 100%; }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-attributes__container .pdp-size__list {
      padding-right: 0;
      max-width: 100%; } }
  .pdp--wrapper .product-attributes__container .pdp--swatches {
    max-width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (min-width: 768px) {
      .pdp--wrapper .product-attributes__container .pdp--swatches {
        max-width: 50%; } }
    @media (min-width: 1280px) {
      .pdp--wrapper .product-attributes__container .pdp--swatches {
        max-width: 100%; } }
    .pdp--wrapper .product-attributes__container .pdp--swatches .color {
      font-family: 'Archivo-Light';
      color: #000;
      font-size: 12px;
      line-height: 2.5;
      top: -35px;
      left: 70px;
      position: absolute; }
      @media (min-width: 1920px) {
        .pdp--wrapper .product-attributes__container .pdp--swatches .color {
          top: -35px;
          left: 70px; } }
    .pdp--wrapper .product-attributes__container .pdp--swatches .swatch--anchor-color {
      margin: 0 16px 25px 0;
      position: relative; }
    .pdp--wrapper .product-attributes__container .pdp--swatches .size-anchor__list {
      margin-top: 0;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      @media (min-width: 1280px) {
        .pdp--wrapper .product-attributes__container .pdp--swatches .size-anchor__list {
          width: 100%; } }

.pdp--wrapper .pdp__quantity {
  margin-top: 15px; }
  @media (min-width: 1280px) {
    .pdp--wrapper .pdp__quantity {
      margin-top: 10px; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .pdp__quantity {
      margin-top: 15px; } }

.pdp--wrapper .mobile-fixit, .pdp--wrapper .prices-add-to-cart-actions {
  display: none; }
  @media (min-width: 1280px) {
    .pdp--wrapper .mobile-fixit, .pdp--wrapper .prices-add-to-cart-actions {
      display: block; } }

.pdp--wrapper .product-share__list {
  padding: 0 20px;
  border: none; }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-share__list {
      width: 123px;
      height: 203px;
      padding: 8px 0;
      border: solid 1px #000;
      top: calc(100% + 10px);
      left: -3px;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .pdp--wrapper .product-share__list.toggle--active {
        -webkit-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .product-share__list {
      width: 178px;
      height: 275px;
      padding: 19px 0;
      top: calc(100% + 10px);
      left: 0; } }
  @media (max-width: 1279.98px) {
    .pdp--wrapper .product-share__list {
      width: 100%;
      position: fixed;
      bottom: 0;
      left: 0;
      top: auto;
      z-index: 2001;
      display: none;
      -webkit-transform: translateY(100%);
          -ms-transform: translateY(100%);
              transform: translateY(100%); }
      .pdp--wrapper .product-share__list.toggle--active {
        -webkit-animation: share-slide-in 0.5s forwards;
                animation: share-slide-in 0.5s forwards; }
      .pdp--wrapper .product-share__list:not(.toggle--active) {
        -webkit-animation: share-slide-out 0.5s forwards;
                animation: share-slide-out 0.5s forwards; } }

.pdp--wrapper .product-share__item {
  font-family: 'Archivo-ExtraLight';
  font-size: 20px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.9;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0 !important;
  padding: 8px 0;
  border-top: 0.5px solid #b5b5b5; }
  .pdp--wrapper .product-share__item:hover {
    opacity: 1; }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-share__item {
      padding: 3px 0 3px 20px;
      font-size: 12px;
      line-height: 2.58;
      letter-spacing: 0.36px;
      border-top: none; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .product-share__item {
      padding: 8px 0 8px 25px;
      font-size: 18px;
      line-height: 1.72;
      letter-spacing: 0.54px; } }
  .pdp--wrapper .product-share__item .icon {
    display: none !important; }
    @media (min-width: 1280px) {
      .pdp--wrapper .product-share__item .icon {
        display: block !important;
        margin-right: 10px; } }
    @media (min-width: 1920px) {
      .pdp--wrapper .product-share__item .icon {
        margin-right: 15px;
        width: 16px;
        height: 16px; } }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-share__item .share-link-icon {
      margin-right: 12px; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .product-share__item .share-link-icon {
      margin-right: 15px; } }

.pdp--wrapper .product-share__title {
  display: block;
  font-family: 'Archivo-ExtraLight';
  font-size: 20px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.9;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  padding: 9.5px 0; }
  @media (min-width: 1280px) {
    .pdp--wrapper .product-share__title {
      display: none; } }
  @media (max-width: 1279.98px) {
    .pdp--wrapper .product-share__title .icon {
      float: right;
      padding-top: 3px;
      margin-top: 6px; } }

.pdp--wrapper .product-share__trigger:hover {
  opacity: 1; }

.pdp--wrapper .wishlist-pdp_icon {
  width: 24px;
  height: 24px; }

.product-share__icon {
  width: 24px;
  height: 24px; }

.product-detail ~ .global-footer {
  z-index: 10;
  position: relative; }

@-webkit-keyframes share-slide-in {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@keyframes share-slide-in {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); } }

@-webkit-keyframes share-slide-out {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); } }

@keyframes share-slide-out {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); } }

.promotions .callout {
  font-family: 'Archivo-Light';
  color: #031e2f; }
  .promotions .callout:first-child {
    margin-top: 16px; }
    @media (min-width: 992px) {
      .promotions .callout:first-child {
        margin-top: 12px; } }

.pdp-int .pdp--product__description {
  margin-top: 15px; }

.btn-store-locator {
  padding: 17px 0; }
  @media (min-width: 768px) {
    .btn-store-locator {
      padding: 20px 0; } }
  @media (min-width: 1280px) {
    .btn-store-locator {
      padding: 13px 0; } }
  @media (min-width: 1920px) {
    .btn-store-locator {
      padding: 20px 0; } }
  .btn-store-locator.desktop {
    display: none !important; }
    @media (min-width: 1280px) {
      .btn-store-locator.desktop {
        display: block !important; } }
  .btn-store-locator .icon-shop-store {
    width: 13px;
    height: 21px;
    margin-left: 5px;
    margin-bottom: 2px; }
    @media (min-width: 768px) {
      .btn-store-locator .icon-shop-store {
        width: 10px;
        height: 16px; } }
    @media (min-width: 1280px) {
      .btn-store-locator .icon-shop-store {
        width: 9px;
        height: 14px;
        margin-right: 5px;
        margin-left: 0px; } }
    @media (min-width: 1920px) {
      .btn-store-locator .icon-shop-store {
        width: 13px;
        height: 21px; } }

.pdpCarousel-container .slick-arrow {
  background: url("../images/icons/left-arrow-icon.svg") center center no-repeat;
  background-size: cover;
  width: 15px;
  height: 27px;
  opacity: 1;
  left: 30px;
  font-size: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  @media (min-width: 1920px) {
    .pdpCarousel-container .slick-arrow {
      width: 22px;
      height: 41px; } }
  @media (min-width: 1280px) and (max-width: 1919.98px) {
    .pdpCarousel-container .slick-arrow {
      left: 15px; } }
  .pdpCarousel-container .slick-arrow::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 45px;
    height: 54px;
    left: -5px;
    top: -15px; }

.pdpCarousel-container .slick-next {
  background: url("../images/icons/right-arrow-icon.svg") center center no-repeat;
  background-size: cover;
  right: 30px;
  left: auto; }
  @media (min-width: 1280px) and (max-width: 1919.98px) {
    .pdpCarousel-container .slick-next {
      right: 15px; } }
  .pdpCarousel-container .slick-next::after {
    content: '';
    left: auto;
    right: -5px; }

.pdpCarousel-container {
  position: relative; }
  .pdpCarousel-container .pdp--plus_icon {
    width: 18.4px;
    height: 18.4px;
    position: absolute;
    top: 20px;
    left: auto;
    cursor: pointer; }
    @media (max-width: 1279px) {
      .pdpCarousel-container .pdp--plus_icon {
        right: 40px; } }
    @media (min-width: 1280px) {
      .pdpCarousel-container .pdp--plus_icon {
        display: none !important; } }

.qv-socialIcons {
  position: relative;
  right: 0; }

@media screen and (max-width: 1280px) {
  .hide-on-mb {
    display: none !important; } }

.show-on-mb {
  width: 50%; }
  @media screen and (min-width: 1280px) {
    .show-on-mb {
      display: none !important; } }
  .show-on-mb .notify-button {
    margin: 0 !important;
    letter-spacing: 0.5px;
    word-spacing: 1px;
    padding: 5px;
    line-height: 1; }

.sold-out {
  width: 50%;
  margin: 0 !important;
  letter-spacing: 0.5px;
  word-spacing: 1px;
  padding: 5px;
  line-height: 1; }

.pdp--media .pdp-image__thumbs::-webkit-scrollbar {
  width: 6px; }

.pdp--media .pdp-image__thumbs::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px; }
  .pdp--media .pdp-image__thumbs::-webkit-scrollbar-thumb:hover {
    background-color: #555; }

.product--size__box .container {
  padding-left: 0;
  padding-right: 0; }

.pdp--swatches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0; }
  .pdp--swatches .color {
    position: absolute;
    left: calc(100% + 1.8125rem);
    top: .125rem;
    width: 100%; }
  .pdp--swatches .swatch--anchor-color {
    margin-left: .625rem;
    margin-right: .625rem; }
    .pdp--swatches .swatch--anchor-color:not(:nth-child(-n + 5)) {
      margin-top: 1.25rem; }
  .pdp--swatches .swatch__selected span:last-child {
    pointer-events: none; }
  .pdp--swatches .swatch__not-selected {
    display: none; }

.product--related__swatches .pdp--swatches .swatch--anchor-color {
  margin-bottom: 20px; }
  .product--related__swatches .pdp--swatches .swatch--anchor-color:not(:nth-child(-n + 5)) {
    margin-top: 0; }

.size-anchor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 1.5;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

.size-anchor__value {
  margin-right: 1.5rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: "Archivo";
  letter-spacing: 1.8px;
  padding-bottom: .5rem;
  border-bottom: solid 1px transparent; }
  .size-anchor__value:hover, .size-anchor__value.size-selected {
    border-bottom: solid 1px #979797;
    text-decoration: none; }
  .size-anchor__value.size-unavailable {
    color: #cacaca; }

.size-chart,
.size-anchor__list {
  margin-top: 2rem; }

.pdp--color__available select {
  display: none; }

.swatch-circle {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  border-radius: 0.75rem;
  -webkit-box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.25);
  display: block;
  position: relative;
  -webkit-box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 0 0.0625rem rgba(0, 0, 0, 0.4); }
  .swatch-circle.color-value[data-selected=true]::after {
    color: #000;
    content: '\F058';
    display: table-caption;
    font-family: 'FontAwesome';
    font-size: 1.625em;
    left: 0.295em;
    position: absolute; }
  .swatch-circle.color-value.selected::after {
    background: transparent;
    border-radius: 50%;
    color: #000;
    content: '';
    display: table-caption;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: solid 2px #000;
    -webkit-box-shadow: inset 0 0 0 0.0625rem #ffffff;
            box-shadow: inset 0 0 0 0.0625rem #ffffff; }
  .swatch-circle i.fa-times-circle {
    background: #ffffff;
    border-radius: 50%;
    height: 0.75em;
    line-height: 0.8em;
    width: 0.8em; }
  .swatch-circle.isoutofstock {
    overflow: hidden; }
    .swatch-circle.isoutofstock:before {
      content: '';
      width: 2px;
      height: 100%;
      background: #000;
      position: absolute;
      left: 50%;
      -webkit-transform: rotate(45deg) translateX(-50%);
          -ms-transform: rotate(45deg) translateX(-50%);
              transform: rotate(45deg) translateX(-50%);
      margin: 1px 0 0; }

.swatch--anchor[disabled], .swatch--anchor:not([href]) {
  opacity: 0.35;
  cursor: not-allowed; }

.size-selected {
  cursor: default;
  pointer-events: none; }

.selecteddisplayvalue {
  display: block !important; }

.disable-selected {
  cursor: default;
  pointer-events: none; }

.pdp--wrapper .pdp--swatches .color {
  font-family: 'Archivo-Thin';
  font-size: 16px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: 0.48px;
  text-align: left;
  color: #000; }
  @media (min-width: 1280px) {
    .pdp--wrapper .pdp--swatches .color {
      font-size: 12px;
      line-height: 2.58;
      letter-spacing: 0.36px; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .pdp--swatches .color {
      font-size: 16px;
      line-height: 1.94;
      letter-spacing: 0.48px; } }

.pdp--wrapper .pdp--swatches .swatch-circle {
  width: 24px;
  height: 24px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pdp--wrapper .pdp--swatches .swatch-circle.color-value.selected::after {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    top: 11px; }
    @media (min-width: 1920px) {
      .pdp--wrapper .pdp--swatches .swatch-circle.color-value.selected::after {
        top: 11px; } }
  .pdp--wrapper .pdp--swatches .swatch-circle.isoutofstock {
    overflow: inherit; }
    .pdp--wrapper .pdp--swatches .swatch-circle.isoutofstock:before {
      content: '';
      width: 1px; }

.pdp--wrapper .pdp--swatches .size-anchor__value {
  font-family: 'Archivo-ExtraLight';
  font-size: 16px;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.36px;
  text-align: left;
  color: #212529;
  margin-right: 10px;
  padding-bottom: 0; }
  .pdp--wrapper .pdp--swatches .size-anchor__value:hover {
    border-bottom: none; }
  .pdp--wrapper .pdp--swatches .size-anchor__value.size-selected {
    border-bottom: 1px solid #707070; }
    @media (min-width: 1280px) {
      .pdp--wrapper .pdp--swatches .size-anchor__value.size-selected {
        border-bottom: 1px solid #000; } }
  .pdp--wrapper .pdp--swatches .size-anchor__value.size-unavailable {
    color: #cacaca; }

.pdp--wrapper .size-chart {
  margin-top: 0; }
  @media (min-width: 1280px) {
    .pdp--wrapper .size-chart {
      position: relative;
      top: 0;
      z-index: 1; } }
  @media (min-width: 1920px) {
    .pdp--wrapper .size-chart {
      top: 48px; } }
  @media (min-width: 1280px) {
    .pdp--wrapper .size-chart.size-chart-open {
      z-index: auto; } }
  .pdp--wrapper .size-chart .size-chart-modal-link {
    font-family: 'Archivo-Thin';
    font-size: 16px;
    font-weight: 100;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.94;
    letter-spacing: 0.48px;
    text-align: left;
    color: #000; }
    @media (min-width: 1280px) {
      .pdp--wrapper .size-chart .size-chart-modal-link {
        font-family: 'Archivo-Light';
        font-weight: 300;
        font-size: 14px;
        line-height: 2.21;
        letter-spacing: 0.42px; } }
    @media (min-width: 1920px) {
      .pdp--wrapper .size-chart .size-chart-modal-link {
        font-size: 16px;
        line-height: 1.94;
        letter-spacing: 0.48px; } }
    .pdp--wrapper .size-chart .size-chart-modal-link .size-chart-icon {
      margin-left: 3px; }

@media (min-width: 1280px) {
  .pdp--wrapper .hover-swatch-state {
    position: absolute;
    bottom: 37px;
    left: -40px;
    display: none;
    padding: 0 3px 3px;
    border: solid 0.5px #aaa;
    width: 103px;
    height: 85px;
    border-radius: 3px;
    z-index: 10;
    background-color: #ffffff; } }

@media (min-width: 1920px) {
  .pdp--wrapper .hover-swatch-state {
    width: 133px;
    height: 109px;
    bottom: 52px;
    left: -48px; } }

.pdp--wrapper .hover-swatch-state:after {
  content: '';
  display: block;
  position: absolute;
  left: 45px;
  bottom: -6px;
  width: 11px;
  height: 11px;
  background: #ffffff;
  z-index: -1;
  border-left: 0.5px solid #aaa;
  border-bottom: 0.5px solid #aaa;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
  @media (min-width: 1920px) {
    .pdp--wrapper .hover-swatch-state:after {
      left: 58px;
      bottom: -8px;
      width: 14px;
      height: 14px; } }

.pdp--wrapper .hover-swatch-state.swatch-hover-show {
  display: inline !important; }

.pdp--wrapper .hover-swatch-image {
  width: 97px;
  height: 61.1px;
  border-radius: 3px;
  margin-top: -13px; }
  @media (min-width: 1920px) {
    .pdp--wrapper .hover-swatch-image {
      width: 125px;
      height: 78px;
      margin-top: -7px; } }

.pdp--wrapper .hover-swatch-text {
  font-family: 'Archivo-Thin';
  font-size: 11px;
  font-weight: 100;
  line-height: 2.82;
  letter-spacing: 0.33px;
  text-align: center;
  color: #000;
  position: relative;
  top: -6px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
  display: block; }
  @media (min-width: 1920px) {
    .pdp--wrapper .hover-swatch-text {
      font-size: 12px;
      line-height: 2.58;
      letter-spacing: 0.36px;
      top: -3px; } }

.modal-dialog .modalColor,
.modal-dialog .modalSizes {
  font-family: 'Archivo-Thin';
  font-size: 16px;
  font-weight: 100;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: 0.48px;
  text-align: left;
  color: #000;
  padding-bottom: 0; }

.modalColor img {
  border-radius: 6px; }

.modalColor span {
  display: block;
  width: 24px;
  height: 24px;
  margin: 10px 0 24px; }

.modalColor span:after {
  content: '';
  display: block;
  border-bottom: 1px solid #000;
  margin-top: 10px; }

.product-share {
  position: relative; }

.product-share__alert,
.product-share__list {
  z-index: 5;
  position: absolute;
  top: calc(100% + 1rem);
  left: auto;
  right: 0;
  background-color: #ffffff;
  border: solid 0.0625rem #ccc;
  white-space: nowrap;
  -webkit-transition-property: opacity, visibility;
  -o-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 107ms;
       -o-transition-duration: 107ms;
          transition-duration: 107ms;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .product-share__alert:not(.toggle--active),
  .product-share__list:not(.toggle--active) {
    -webkit-transition-timing-function: ease-in;
         -o-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
    visibility: hidden; }

.product-share__trigger {
  padding-top: 0; }

.product-share__list {
  padding: .5rem; }

.product-share__alert {
  padding: 1rem; }

.product-share__item {
  padding: .5rem; }
  .product-share__item:not(:last-child) {
    margin-right: .5rem; }

.share-textarea {
  position: absolute;
  opacity: 0;
  width: 2rem;
  height: 2rem; }

.product-share__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.pdp--product__information {
  margin-top: 3rem; }
  @media (max-width: 768.98px) {
    .pdp--product__information {
      margin-top: 1rem; } }

.pdp--product--details {
  position: relative; }
  .pdp--product--details:not(:last-child) {
    margin-bottom: 2.75rem; }
  .pdp--product--details.accordion-active .product--details__container {
    max-height: 800px;
    opacity: 1;
    -webkit-perspective: 900;
            perspective: 900;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }
  .pdp--product--details .accordion-opener {
    font-size: 0.75rem;
    letter-spacing: 1.3px;
    font-family: "Archivo";
    color: #031e2f;
    display: block; }
    .pdp--product--details .accordion-opener:hover {
      text-decoration: none; }
  .pdp--product--details .transition {
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
  .pdp--product--details .flipIn {
    -webkit-animation: flipdown 0.5s ease both;
            animation: flipdown 0.5s ease both; }
  .pdp--product--details i {
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 1; }
    .pdp--product--details i:focus {
      outline: 2px solid #ccc; }
  .pdp--product--details input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    top: 8px;
    right: 1px;
    z-index: 2;
    opacity: 0; }
    .pdp--product--details input[type=checkbox]:checked ~ i {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
  .pdp--product--details .product--details__container {
    position: relative;
    padding-bottom: 2.875rem;
    padding-top: 18px;
    z-index: 2;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    .pdp--product--details .product--details__container p:first-child {
      margin-top: 1.125rem; }
  .pdp--product--details p,
  .pdp--product--details .dimension-container .dimension-list {
    font-size: 0.875rem;
    line-height: 1.71;
    letter-spacing: 0.5px;
    color: #505050; }
  .pdp--product--details .dimension-container {
    margin-top: 15px; }
    .pdp--product--details .dimension-container .dimension-list {
      padding-left: 15px;
      margin-bottom: 12px; }
  .pdp--product--details:not(.accordion-active) .product--details__container {
    display: none; }

.product-view-more {
  margin-top: 1rem; }

.promotions {
  margin-left: 1.5rem;
  letter-spacing: 0.5px; }
  .promotions .callout {
    font-size: .625rem; }
    .promotions .callout:not(:last-child) {
      margin-bottom: .25rem; }

.product-availability-col {
  padding-right: 0; }

[data-key="credit-promotion-small"]::part(osm-container) {
  padding: 4px;
  border: 0;
  text-align: center;
  max-width: 100%;
  min-height: 100%; }
  @media (min-width: 992px) {
    [data-key="credit-promotion-small"]::part(osm-container) {
      padding: 13px 9px;
      text-align: left; } }

.pdp--product--details {
  /*.pdp-shipping__guides {
        border-bottom: 0.5px solid #dbdbdb;
        padding-bottom: 10px;
        &:empty {
            border-bottom: none;
            padding-bottom: 0;
        }  
    }*/
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0 !important;
  border: none; }
  .pdp--product--details .dimension-container .dimension-list {
    font-family: 'Archivo-ExtraLight';
    font-size: 16px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: 0.48px;
    text-align: left;
    color: #000;
    padding-left: 0;
    margin-bottom: 0; }
    @media (min-width: 1280px) {
      .pdp--product--details .dimension-container .dimension-list {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.42px; } }
    @media (min-width: 1920px) {
      .pdp--product--details .dimension-container .dimension-list {
        font-size: 16px;
        line-height: 1.56;
        letter-spacing: 0.48px; } }
  .pdp--product--details.accordion-active .product--details__container {
    padding-bottom: 5px; }
    @media (min-width: 768px) {
      .pdp--product--details.accordion-active .product--details__container {
        padding-bottom: 10px; } }
  .pdp--product--details p, .pdp--product--details .pdp-detail-description, .pdp--product--details .oeko-tek-text {
    font-family: 'Archivo-ExtraLight';
    font-size: 16px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: 0.48px;
    text-align: left;
    color: #000; }
    @media (min-width: 1280px) {
      .pdp--product--details p, .pdp--product--details .pdp-detail-description, .pdp--product--details .oeko-tek-text {
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.42px; } }
    @media (min-width: 1920px) {
      .pdp--product--details p, .pdp--product--details .pdp-detail-description, .pdp--product--details .oeko-tek-text {
        font-size: 16px;
        line-height: 1.56;
        letter-spacing: 0.48px; } }
  .pdp--product--details .accordion-opener .accordian-open, .pdp--product--details .accordion-opener .accordian-close {
    float: right; }
  .pdp--product--details .accordion-opener .accordian-open {
    margin-right: -10px; }
  .pdp--product--details .accordion-opener .accordian-open {
    display: inline-block; }
  .pdp--product--details .accordion-opener .accordian-close {
    display: none; }
  .pdp--product--details .accordion-opener.active .accordian-open {
    display: none; }
  .pdp--product--details .accordion-opener.active .accordian-close {
    display: inline-block; }
  .pdp--product--details .accordion-opener, .pdp--product--details .product-dimens, .pdp--product--details .pdp-detail-heading {
    font-family: 'Archivo-Light';
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.94;
    letter-spacing: 0.48px;
    text-align: left;
    color: #000; }
    @media (min-width: 1920px) {
      .pdp--product--details .accordion-opener, .pdp--product--details .product-dimens, .pdp--product--details .pdp-detail-heading {
        font-size: 20px;
        line-height: 1.55;
        letter-spacing: 0.6px; } }
  @supports (-webkit-touch-callout: none) {
    .pdp--product--details .pdp-care__instructions, .pdp--product--details .pdp-info__return, .pdp--product--details .pdp-product__info, .pdp--product--details .pdp-product__dimensions, .pdp--product--details .pdp-oekotek {
      -webkit-box-shadow: 0 0.5px 0 #000;
              box-shadow: 0 0.5px 0 #000; } }
  .pdp--product--details .pdp-care__instructions, .pdp--product--details .pdp-info__return, .pdp--product--details .pdp-product__info, .pdp--product--details .pdp-product__dimensions, .pdp--product--details .pdp-oekotek {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: none;
    -webkit-box-shadow: 0 0.5px 0 #000;
            box-shadow: 0 0.5px 0 #000;
    margin-bottom: 0.5px; }
    @media (min-width: 1280px) {
      .pdp--product--details .pdp-care__instructions, .pdp--product--details .pdp-info__return, .pdp--product--details .pdp-product__info, .pdp--product--details .pdp-product__dimensions, .pdp--product--details .pdp-oekotek {
        padding-bottom: 7.5px;
        padding-top: 7.5px; } }
    @media (min-width: 1920px) {
      .pdp--product--details .pdp-care__instructions, .pdp--product--details .pdp-info__return, .pdp--product--details .pdp-product__info, .pdp--product--details .pdp-product__dimensions, .pdp--product--details .pdp-oekotek {
        padding-top: 19px;
        padding-bottom: 19px; } }
  .pdp--product--details .pdp-info__return .product--details__container span {
    font-family: 'Archivo-ExtraLight' !important;
    font-size: 16px !important; }
    @media (min-width: 1280px) {
      .pdp--product--details .pdp-info__return .product--details__container span {
        font-size: 14px !important; } }
    @media (min-width: 1920px) {
      .pdp--product--details .pdp-info__return .product--details__container span {
        font-size: 16px !important; } }
    .pdp--product--details .pdp-info__return .product--details__container span a {
      text-decoration: underline;
      color: #000 !important; }
  .pdp--product--details i {
    top: 15px; }

.product-klarnaplacement-col {
  padding-left: 0;
  margin-bottom: 10px;
  display: none; }
  @media (min-width: 1280px) {
    .product-klarnaplacement-col {
      display: block;
      width: 100%; } }

.product-klarnaplacement-col-mobile {
  display: block;
  margin: 20px 0;
  width: 100%; }
  @media (min-width: 1280px) {
    .product-klarnaplacement-col-mobile {
      display: none; } }

.attribute {
  margin-top: 0.938em;
  margin-right: 25%;
  padding: 0; }
  .attribute label {
    display: block; }

.swatch a {
  text-decoration: none; }

@media (max-width: 479.98px) {
  .primary-images {
    margin: 0;
    padding: 0; } }

.prices-add-to-cart-actions {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 50;
  padding-right: 0;
  padding-left: 0;
  left: 0; }
  @media (max-width: 479.98px) {
    .prices-add-to-cart-actions {
      background-color: rgba(255, 255, 255, 0.95);
      -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
              box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } }
  @media (min-width: 544px) {
    .prices-add-to-cart-actions {
      position: static;
      padding: 0 0.9375em; } }
  .prices-add-to-cart-actions .price {
    text-align: center; }

.prices {
  padding-bottom: 0.5em;
  padding-top: 0.5em; }

.cart-and-ipay {
  text-align: center; }
  @media (max-width: 479.98px) {
    .cart-and-ipay .btn {
      width: 100%;
      display: block; } }

.simple-quantity {
  margin-top: 1em; }

.main-attributes {
  margin-top: 1em; }

.bundle-item {
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .bundle-item:last-child {
    border-bottom: none; }

.product-option:not(:first-child) {
  margin-top: 1.071em; }

.product-registry .button_text {
  margin-top: 0 !important; }

.collection-set {
  background: #f8f8f8;
  padding: 24px 16px;
  margin: 32px 0; }
  .collection-set .collection-set__toggle {
    position: relative;
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #212529;
    width: 100%;
    text-align: left; }
    .collection-set .collection-set__toggle::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_1257_11095" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%231C1B1F"/></mask><g mask="url(%23mask0_1257_11095)"><path d="M11.9999 15.0542L6.34619 9.40043L7.39994 8.34668L11.9999 12.9467L16.5999 8.34668L17.6537 9.40043L11.9999 15.0542Z" fill="%231C1B1F"/></g></svg>');
      width: 23px;
      height: 25px;
      background-size: contain;
      background-repeat: no-repeat; }
    .collection-set .collection-set__toggle.collection-set__toggle--item {
      position: absolute;
      right: 0;
      top: -2px; }
    .collection-set .collection-set__toggle.collection-set__toggle--open::after {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_1232_4071" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%231C1B1F"/></mask><g mask="url(%23mask0_1232_4071)"><path d="M11.9999 10.4542L7.39994 15.0542L6.34619 14.0004L11.9999 8.34668L17.6537 14.0004L16.5999 15.0542L11.9999 10.4542Z" fill="%231C1B1F"/></g></svg>'); }
  .collection-set .collection-set__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #dbdbdb; }
    .collection-set .collection-set__header .collection-set__total-price {
      color: #5c5c5c;
      font-family: "Archivo";
      font-weight: 600;
      font-size: 14px; }
  .collection-set .collection-set__item-title {
    margin-bottom: 12px;
    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;
    position: relative;
    padding-right: 30px; }
    .collection-set .collection-set__item-title .collection-set__item-price {
      min-width: 100px; }
    .collection-set .collection-set__item-title .collection-set__item-price,
    .collection-set .collection-set__item-title .price .value {
      font-family: "Archivo";
      font-weight: 300;
      font-size: 14px;
      color: #5c5c5c; }
  .collection-set .collection-set__checkbox-wrapper {
    position: relative;
    padding-left: 32px;
    font-family: "Archivo";
    font-size: 14px;
    font-weight: 600; }
  .collection-set .collection-set__checkbox {
    display: none; }
    .collection-set .collection-set__checkbox:checked + .collection-set__checkbox-label::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 2px;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%);
      display: block;
      width: 13px;
      height: 13px;
      background-size: contain;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="24px" height="24px"><g id="Outlined"><polyline id="Done__x2014__Displayed_on_the_left_side_of_a_contextual_action_bar__x28_CAB_x29__to_allow_the_user_to_dismiss_it._4_" style="fill:none;stroke:%23000000;stroke-width:2;stroke-miterlimit:10;" points="21,6 9,18 4,13 "/></g></svg>'); }
  .collection-set .collection-set__checkbox-label {
    margin-bottom: 0;
    padding-right: 12px; }
    .collection-set .collection-set__checkbox-label::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%);
      display: block;
      width: 17px;
      height: 17px;
      background: #ffffff;
      border: 2px solid #1C1B1F;
      border-radius: 2px; }
  .collection-set .collection-set__item {
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 12px;
    padding-left: 15px; }
    .collection-set .collection-set__item .details-URL, .collection-set .collection-set__item .add-to-cart,
    .collection-set .collection-set__item .related-product__name,
    .collection-set .collection-set__item .product--related__price,
    .collection-set .collection-set__item .strike-through, .collection-set .collection-set__item .main-attributes {
      display: none; }
    .collection-set .collection-set__item .related-product {
      padding: 0;
      width: 100%;
      max-width: 100%;
      margin: 0; }
      .collection-set .collection-set__item .related-product .cart-and-ipay {
        display: none; }
    @media screen and (max-width: 1279.98px) {
      .collection-set .collection-set__item .product__related__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .collection-set .collection-set__item .related-product__image-container {
      display: block; }
    .collection-set .collection-set__item .product--related__swatches .pdp--swatches {
      margin: 0; }
    .collection-set .collection-set__item .product--related__swatches .swatch-circle {
      border-radius: 0; }
    .collection-set .collection-set__item .product--related__swatches .selected-swatch-text {
      position: static;
      top: unset;
      left: unset;
      line-height: 1;
      margin-bottom: 12px;
      margin-top: 0; }
      .collection-set .collection-set__item .product--related__swatches .selected-swatch-text::before {
        content: attr(data-selected-swatch-text) ":";
        font-family: "Archivo";
        font-weight: 500;
        color: #71767c;
        font-size: 12px; }
    .collection-set .collection-set__item .product--related__swatches .size-anchor__value {
      font-family: "Archivo";
      font-size: 12px;
      margin-right: 12px; }
    .collection-set .collection-set__item .product--related__swatches [data-attr="size"] .pdp--swatches::before {
      content: attr(aria-label);
      margin-bottom: 8px;
      font-family: "Archivo";
      font-weight: 500;
      color: #71767c;
      font-size: 12px;
      display: block;
      width: 100%; }
    .collection-set .collection-set__item .related-product__qty {
      margin-top: 16px; }
    .collection-set .collection-set__item .quantity-select__container {
      padding: 4px 7px;
      max-width: -webkit-fit-content;
      max-width: -moz-fit-content;
      max-width: fit-content;
      border: 1px solid #71767c; }
      .collection-set .collection-set__item .quantity-select__container::before, .collection-set .collection-set__item .quantity-select__container::after {
        display: none; }
      .collection-set .collection-set__item .quantity-select__container .quantity-hidden {
        font-family: "Archivo";
        font-weight: 500;
        color: #575757; }
      .collection-set .collection-set__item .quantity-select__container .quantity-select__label {
        left: 10px;
        color: #212529; }
  .collection-set .collection-set__item-body .related-product__item {
    overflow: visible; }
  .collection-set .collection-set__item-body .product__related__wrapper {
    gap: 24px; }
    .collection-set .collection-set__item-body .product__related__wrapper .related-product__image-container {
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none;
      width: 20%; }
    .collection-set .collection-set__item-body .product__related__wrapper .related--info {
      margin: 0;
      padding: 0;
      -webkit-box-flex: unset;
          -ms-flex: unset;
              flex: unset; }
  .collection-set .collection-set__buy-all {
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #212529;
    line-height: 48px;
    border-radius: 3px;
    width: 100%;
    margin: 16px 0; }
    .collection-set .collection-set__buy-all[disabled] {
      background: #757575; }
  .collection-set .js-collection-error {
    background: #CC0000;
    padding: 10px;
    border-radius: 3px;
    color: white;
    font-family: "Archivo";
    font-size: 12px; }

.related-products {
  max-width: 78.25rem;
  margin: 3.75rem auto 7.5rem;
  padding-top: 3.75rem;
  border-top: solid 0.0625rem #ccc;
  counter-reset: relatedProductCount; }
  @media (min-width: 769px) {
    .related-products {
      padding-right: 1.625rem;
      padding-left: 1.625rem; } }

@media (min-width: 769px) {
  .related-product {
    max-width: 65rem;
    margin-right: auto;
    margin-left: auto; } }

.related-product:not(:last-child) {
  margin-bottom: 3.75rem; }

@media (max-width: 768.98px) {
  .related-product {
    padding: 0 1rem; } }

@media (min-width: 769px) {
  .related-product--show-count {
    position: relative;
    counter-increment: relatedProductCount; }
    .related-product--show-count:before {
      position: absolute;
      top: 0;
      font-size: 1.75rem;
      font-family: "Butler";
      line-height: .9;
      letter-spacing: .01875rem;
      color: #cacaca;
      content: counter(relatedProductCount, decimal-leading-zero); } }

@media (min-width: 769px) and (max-width: 1199.98px) {
  .related-product--show-count {
    padding-left: 2rem; }
    .related-product--show-count:before {
      left: -.75rem; } }

@media (min-width: 1200px) {
  .related-product--show-count:before {
    right: calc(100% + 1.25rem); } }

.related-product__item {
  position: relative;
  overflow: hidden; }

.related-product__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (min-width: 769px) {
    .related-product__image-container {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 18.25rem;
              flex: 0 1 18.25rem; } }

.related-product__image {
  aspect-ratio: 1;
  width: 100%; }
  @media (max-width: 768.98px) {
    .related-product__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 6.5rem;
              flex: 0 1 6.5rem; } }

.related-product__name {
  font-size: 1.5rem;
  line-height: 1.42;
  letter-spacing: 0.6px;
  color: #031e2f;
  font-family: "Butler"; }
  @media (max-width: 768.98px) {
    .related-product__name {
      font-size: 1.25rem;
      line-height: 1.5;
      letter-spacing: 0.8px; } }
  .related-product__name span {
    display: none; }

.product__related__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media (max-width: 768.98px) {
    .product__related__wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .product__related__wrapper .prices {
    text-align: left; }
  .product__related__wrapper .price {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.6px;
    color: #031e2f; }
  .product__related__wrapper .description--pdp {
    display: none; }
  .product__related__wrapper .pdp-product__share p {
    position: absolute;
    top: 22%;
    right: 16%; }
    @media (max-width: 768.98px) {
      .product__related__wrapper .pdp-product__share p {
        position: inherit; } }
  .product__related__wrapper .pdp-product__share p:first-child {
    display: none; }

@media (min-width: 769px) {
  .related--info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 21.5rem;
            flex: 0 1 21.5rem;
    margin-left: 3.25rem; } }

@media (max-width: 768.98px) {
  .related--info .related-product__name {
    display: none; } }

.related-product__qty {
  margin-top: .5rem; }

.related-product__name .product-id {
  display: none; }

.related--product__cta {
  font-family: "Archivo"; }
  @media (min-width: 992px) {
    .related--product__cta {
      position: absolute;
      top: 0;
      right: 0;
      width: 25.5%; } }
  @media (max-width: 991.98px) {
    .related--product__cta {
      float: left;
      width: 100%;
      margin-top: 1rem; } }

.product--related__price {
  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-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

@media (max-width: 768.98px) {
  .pdp--price__desktop {
    display: none; } }

.related--info--mobile {
  margin-left: 1rem; }

.discover-collection {
  font-family: 'Archivo-ExtraLight';
  font-size: 16px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.94;
  letter-spacing: 2.4px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  position: static;
  padding: 59px 0 43px; }
  @media (min-width: 768px) {
    .discover-collection {
      border-top: 0.5px solid #dbdbdb;
      padding: 48px 0 49px;
      width: calc(100% - 40px); } }
  @media (min-width: 1280px) {
    .discover-collection {
      padding: 57px 0; } }
  @media (min-width: 1920px) {
    .discover-collection {
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: 3px;
      padding: 93px 0 86px; } }
  .discover-collection.container {
    max-width: none; }

.different-part {
  margin: 0 11px 0 10px; }
  @media (min-width: 768px) {
    .different-part {
      margin: 0 20px; } }
  @media (min-width: 1280px) {
    .different-part {
      margin: 0 32px 0 21px; } }
  @media (min-width: 1920px) {
    .different-part {
      margin: 0 39px 0 42px; } }
  .different-part .related-products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: none;
    padding: 0;
    margin-top: 0;
    border-top: none;
    margin-bottom: 0; }
    @media (min-width: 1280px) {
      .different-part .related-products {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    .different-part .related-products .related-product {
      max-width: none;
      width: 50%;
      margin-left: 0;
      padding: 0 5px 0 10px;
      margin-bottom: 40px; }
      @media (min-width: 768px) {
        .different-part .related-products .related-product {
          width: 100%;
          padding: 0;
          margin-bottom: 60px; } }
      @media (min-width: 1280px) {
        .different-part .related-products .related-product {
          width: 47.19%;
          margin-right: 0;
          margin-bottom: 100px; } }
      @media (min-width: 1920px) {
        .different-part .related-products .related-product {
          width: 47.15%;
          margin-bottom: 150px; } }
      .different-part .related-products .related-product .set-item,
      .different-part .related-products .related-product .related-product__item,
      .different-part .related-products .related-product .product__related__wrapper,
      .different-part .related-products .related-product .related--info {
        height: 100%; }
      .different-part .related-products .related-product .related--info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .different-part .related-products .related-product .related--product__cta {
        margin-top: auto !important; }
  .different-part .related-product .related-product__name {
    font-family: 'Butler-Light';
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.58;
    letter-spacing: 0.36px;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 5px; }
    @media (min-width: 768px) {
      .different-part .related-product .related-product__name {
        font-size: 20px;
        line-height: 1.9;
        letter-spacing: normal;
        margin-top: -8px; } }
    @media (min-width: 1280px) {
      .different-part .related-product .related-product__name {
        font-size: 20px;
        line-height: 1.9; } }
    @media (min-width: 1920px) {
      .different-part .related-product .related-product__name {
        font-size: 26px;
        line-height: 1.46;
        margin-bottom: 10px;
        margin-top: -5px; } }
  .different-part .related-product .related-product__image img {
    border-radius: 8px; }
  .different-part .related-product .related--info--mobile {
    display: none !important; }
  .different-part .related-product .related--info .related-product__name {
    display: block; }
  .different-part .related-product .related--info .pdp--price__desktop {
    display: block; }
  .different-part .related-product .description--pdp, .different-part .related-product .related--promotion, .different-part .related-product .details-URL {
    display: none; }
  .different-part .related-product .related--product__cta {
    position: static;
    width: 100%;
    float: none;
    margin-top: 0; }
    @media (min-width: 768px) {
      .different-part .related-product .related--product__cta {
        padding-right: 0; } }
    @media (min-width: 1280px) {
      .different-part .related-product .related--product__cta {
        padding-right: 0; } }
  .different-part .related-product .size-anchor__list {
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .different-part .related-product .pdp--swatches {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .different-part .related-product .pdp--swatches .swatch--anchor-color {
      margin-left: 0;
      margin-right: 13px;
      margin-top: 10px; }
  .different-part .related-product .quantity-select__field {
    width: 20px;
    padding-left: 7px; }
  .different-part .related-product .quantity-decrease {
    margin-left: 40px; }
  .different-part .related-product .quantity-select__container {
    max-width: 8rem; }
    .different-part .related-product .quantity-select__container::before, .different-part .related-product .quantity-select__container::after {
      background-color: #ffffff;
      display: none; }
  .different-part .related-product .product__related__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 768px) {
      .different-part .related-product .product__related__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .different-part .related-product .product--related__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .different-part .related-product .related-product__image-container {
    width: 100%; }
    @media (min-width: 768px) {
      .different-part .related-product .related-product__image-container {
        width: 41.5%;
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto; } }
    @media (min-width: 1280px) {
      .different-part .related-product .related-product__image-container {
        width: 52.16%;
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto; } }
    @media (min-width: 1920px) {
      .different-part .related-product .related-product__image-container {
        width: 52.13%; } }
  .different-part .related-product .related--info {
    width: 100%; }
    @media (min-width: 768px) {
      .different-part .related-product .related--info {
        width: 58.5%;
        padding-left: 29px;
        margin-left: 0;
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
        padding-right: 150px; } }
    @media (min-width: 1280px) {
      .different-part .related-product .related--info {
        width: 47.84%;
        margin-left: 0;
        -webkit-box-flex: 1;
            -ms-flex: auto;
                flex: auto;
        padding-right: 0; } }
    @media (min-width: 1920px) {
      .different-part .related-product .related--info {
        padding-left: 45px;
        width: 47.87%; } }
  .different-part .related-product .prices {
    padding: 0; }
  .different-part .related-product .price {
    font-family: 'Archivo-ExtraLight';
    font-size: 12px;
    font-weight: 200 !important;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.58;
    letter-spacing: 0.36px;
    text-align: left;
    color: #808080; }
    @media (min-width: 768px) {
      .different-part .related-product .price {
        font-family: 'Butler-Light';
        font-size: 18px;
        font-weight: 300 !important;
        font-stretch: normal;
        font-style: normal;
        line-height: 2.11;
        letter-spacing: normal;
        text-align: left;
        color: #000; } }
    @media (min-width: 1920px) {
      .different-part .related-product .price {
        font-size: 22px;
        line-height: 1.73; } }
    .different-part .related-product .price .value {
      margin-right: 10px; }
    .different-part .related-product .price .starting, .different-part .related-product .price .range, .different-part .related-product .price .sales {
      font-weight: 200 !important; }
      @media (min-width: 768px) {
        .different-part .related-product .price .starting, .different-part .related-product .price .range, .different-part .related-product .price .sales {
          font-weight: 300 !important; } }
    .different-part .related-product .price .strike-through {
      display: inline;
      float: right;
      color: #808080; }
      .different-part .related-product .price .strike-through .value {
        opacity: 0.3; }
  .different-part .related-product .swatch-circle {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    -webkit-box-shadow: none;
            box-shadow: none; }
    @media (min-width: 768px) {
      .different-part .related-product .swatch-circle {
        width: 15px;
        height: 15px; } }
    @media (min-width: 1920px) {
      .different-part .related-product .swatch-circle {
        width: 22px;
        height: 22px; } }
    .different-part .related-product .swatch-circle.color-value.selected::after {
      border: none;
      border-bottom: 1px solid #000;
      border-radius: 0;
      -webkit-box-shadow: none;
              box-shadow: none;
      top: 6px; }
      @media (min-width: 1920px) {
        .different-part .related-product .swatch-circle.color-value.selected::after {
          top: 6px; } }
    .different-part .related-product .swatch-circle.isoutofstock {
      overflow: inherit; }
      .different-part .related-product .swatch-circle.isoutofstock:before {
        content: '';
        width: 1px; }
  .different-part .related-product .add-to-cart, .different-part .related-product .btn-store-locator {
    font-family: 'Archivo-Medium';
    font-size: 10px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1.76px;
    text-align: center;
    color: #ffffff;
    width: 100%;
    height: 34px;
    border-radius: 4px;
    background-color: #000 !important;
    border-color: #000;
    padding: 8px; }
    @media (min-width: 768px) {
      .different-part .related-product .add-to-cart, .different-part .related-product .btn-store-locator {
        font-size: 9px;
        line-height: 1.11;
        letter-spacing: 1.58px;
        width: 100%;
        height: 42px;
        border-radius: 8px; } }
    @media (min-width: 1280px) {
      .different-part .related-product .add-to-cart, .different-part .related-product .btn-store-locator {
        font-size: 9px;
        line-height: 0.89;
        letter-spacing: 1.58px;
        height: 43px; } }
    @media (min-width: 1920px) {
      .different-part .related-product .add-to-cart, .different-part .related-product .btn-store-locator {
        font-size: 15px;
        line-height: 1;
        letter-spacing: 2.64px;
        height: 64px; } }
    .different-part .related-product .add-to-cart:disabled, .different-part .related-product .btn-store-locator:disabled {
      background-color: #c7c7c7 !important;
      opacity: 1;
      border-color: #c7c7c7; }
  .different-part .related-product .btn-store-locator {
    margin-top: 10px;
    padding: 8px 0; }
    .different-part .related-product .btn-store-locator .icon-shop-store {
      width: 9px;
      height: 14px;
      margin-bottom: 0;
      margin-left: 0;
      margin-right: 5px; }
      @media (min-width: 1920px) {
        .different-part .related-product .btn-store-locator .icon-shop-store {
          width: 13px;
          height: 17px;
          margin-bottom: 2px; } }
    @media (min-width: 768px) {
      .different-part .related-product .btn-store-locator {
        padding: 13px 0; } }
    @media (min-width: 1920px) {
      .different-part .related-product .btn-store-locator {
        padding: 22px 0; } }
  .different-part .related-product .apple-pay-pdp {
    display: none;
    height: 34px;
    border-radius: 4px; }
    @media (min-width: 768px) {
      .different-part .related-product .apple-pay-pdp {
        height: 42px;
        border-radius: 8px; } }
    @media (min-width: 1280px) {
      .different-part .related-product .apple-pay-pdp {
        height: 43px; } }
    @media (min-width: 1920px) {
      .different-part .related-product .apple-pay-pdp {
        height: 64px; } }
  .different-part .related-product .size-anchor__value {
    font-family: 'Archivo-ExtraLight';
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: 0.36px;
    text-align: left;
    color: #212529;
    margin-right: 10px;
    padding-bottom: 0; }
    .different-part .related-product .size-anchor__value:hover {
      border-bottom: none; }
    .different-part .related-product .size-anchor__value.size-selected {
      border-bottom: 1px solid #000; }
    .different-part .related-product .size-anchor__value.size-unavailable {
      color: #cacaca; }
  .different-part .related-product .pdp--swatches .color {
    display: none !important; }
    @media (min-width: 768px) {
      .different-part .related-product .pdp--swatches .color {
        display: block !important;
        top: 0px;
        right: 0;
        left: auto;
        width: auto;
        font-family: 'Archivo-Thin';
        font-size: 16px;
        font-weight: 100;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.94;
        letter-spacing: 0.48px;
        text-align: left;
        color: #000; } }
    @media (min-width: 1920px) {
      .different-part .related-product .pdp--swatches .color {
        font-size: 20px;
        line-height: 1.55;
        letter-spacing: 0.6px; } }
  .different-part .related-product .pdp-quantity {
    display: block !important;
    padding-left: 40px; }
    .different-part .related-product .pdp-quantity .quantity-select {
      display: none !important; }
    .different-part .related-product .pdp-quantity .quantity-decrease, .different-part .related-product .pdp-quantity .quantity-increase, .different-part .related-product .pdp-quantity .quantity-select {
      margin-left: 5px; }
    .different-part .related-product .pdp-quantity .quantity-hidden {
      margin-left: 5px;
      width: 20px;
      text-align: center; }
    .different-part .related-product .pdp-quantity input::-webkit-outer-spin-button {
      -webkit-appearance: none; }
    .different-part .related-product .pdp-quantity input::-webkit-inner-spin-button {
      -webkit-appearance: none; }
    .different-part .related-product .pdp-quantity .pdp-quantity__value {
      display: none !important; }
      .different-part .related-product .pdp-quantity .pdp-quantity__value.selected {
        display: block !important; }
    .different-part .related-product .pdp-quantity option {
      display: none; }
      .different-part .related-product .pdp-quantity option:checked {
        display: block; }
  .different-part .related-product .quantity-select {
    display: none !important; }
  .different-part .related-product .quantity-select__container, .different-part .related-product .quantity-select__label, .different-part .related-product .quantity-select {
    font-family: 'Archivo-Thin';
    font-size: 12px;
    font-weight: 100;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.58;
    letter-spacing: 0.36px;
    text-transform: capitalize !important; }
    @media (min-width: 768px) {
      .different-part .related-product .quantity-select__container, .different-part .related-product .quantity-select__label, .different-part .related-product .quantity-select {
        font-family: 'Archivo-Thin';
        font-size: 16px;
        font-weight: 100;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.94;
        letter-spacing: 0.48px;
        text-align: left;
        color: #000; } }
    @media (min-width: 1920px) {
      .different-part .related-product .quantity-select__container, .different-part .related-product .quantity-select__label, .different-part .related-product .quantity-select {
        font-size: 20px;
        line-height: 1.55;
        letter-spacing: 0.6px; } }
  .different-part .related-product .related-product__image-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .different-part .related-product .related--product__cta .button_text {
    font-family: 'Archivo-Thin' !important;
    font-size: 12px !important;
    font-weight: 100 !important;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.58 !important;
    letter-spacing: 0.36px !important;
    text-align: left;
    color: #000 !important;
    text-transform: capitalize !important;
    width: auto !important;
    margin-top: 0 !important; }
    @media (min-width: 768px) {
      .different-part .related-product .related--product__cta .button_text {
        font-size: 16px !important;
        line-height: 1.94 !important;
        letter-spacing: 0.48px !important;
        float: right;
        top: -105px; } }
    @media (min-width: 1920px) {
      .different-part .related-product .related--product__cta .button_text {
        font-size: 20px !important;
        line-height: 1.55 !important;
        letter-spacing: 0.6px !important;
        top: -157px; } }
  .different-part .related-product .main-attributes {
    margin-top: 0; }
  .different-part .related-product [data-attr="color"] .attribute {
    margin-top: 0; }
    @media (min-width: 768px) {
      .different-part .related-product [data-attr="color"] .attribute {
        margin-top: 20px; } }
    @media (min-width: 1280px) {
      .different-part .related-product [data-attr="color"] .attribute {
        margin-top: 17px; } }
    @media (min-width: 1920px) {
      .different-part .related-product [data-attr="color"] .attribute {
        margin-top: 40px; } }
  .different-part .related-product [data-attr="color"] .selected-swatch-text {
    max-width: 50%;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .different-part .related-product [data-attr="size"] .attribute {
    margin-top: 15px; }
    @media (min-width: 768px) {
      .different-part .related-product [data-attr="size"] .attribute {
        margin-top: 30px; } }
    @media (min-width: 1280px) {
      .different-part .related-product [data-attr="size"] .attribute {
        margin-top: 27px; } }
    @media (min-width: 1920px) {
      .different-part .related-product [data-attr="size"] .attribute {
        margin-top: 50px; } }
  .different-part .related-product .related-product__qty {
    margin: 0; }
  .different-part .related-product .quantity-select__container {
    padding: 5px 0; }
    @media (min-width: 768px) {
      .different-part .related-product .quantity-select__container {
        padding: 20px 0; } }
    @media (min-width: 1280px) {
      .different-part .related-product .quantity-select__container {
        padding: 22px 0; } }
    @media (min-width: 1920px) {
      .different-part .related-product .quantity-select__container {
        padding: 48px 0; } }
  .different-part .related-product .product-attributes__container {
    margin: 0; }
    @media (min-width: 768px) {
      .different-part .related-product .product-attributes__container {
        margin: 10px 0; } }
    @media (min-width: 1920px) {
      .different-part .related-product .product-attributes__container {
        margin: 50px 0 13px; } }
  @media (min-width: 768px) {
    .different-part .related-product [data-attr="color"] .pdp--swatches {
      max-width: 100%;
      padding-right: 50%; } }
  .different-part .related-product [data-attr="size"] .pdp--swatches {
    max-width: none; }
  .different-part .related-product .long-text .related-product__name {
    line-height: 1.75; }
    @media (min-width: 768px) {
      .different-part .related-product .long-text .related-product__name {
        line-height: 1.1;
        margin-top: 0; } }
    @media (min-width: 1920px) {
      .different-part .related-product .long-text .related-product__name {
        line-height: 1.46; } }
  @media (min-width: 768px) {
    .different-part .related-product .long-text .product-attributes__container {
      margin: 5px 0; } }
  @media (min-width: 1280px) {
    .different-part .related-product .long-text .product-attributes__container {
      margin: 0; } }
  .different-part .related-product .long-text [data-attr="color"] .attribute {
    margin-top: 0; }
    @media (min-width: 768px) {
      .different-part .related-product .long-text [data-attr="color"] .attribute {
        margin-top: 10px; } }
    @media (min-width: 1280px) {
      .different-part .related-product .long-text [data-attr="color"] .attribute {
        margin-top: 12px; } }
    @media (min-width: 1920px) {
      .different-part .related-product .long-text [data-attr="color"] .attribute {
        margin-top: 19px; } }
  @media (max-width: 767.98px) {
    .different-part .related-product .long-text [data-attr="size"] .attribute {
      margin-top: 10px; } }
  @media (min-width: 768px) {
    .different-part .related-product .long-text .button_text {
      top: -100px; } }
  @media (min-width: 1280px) {
    .different-part .related-product .long-text .button_text {
      top: -99px; } }
  @media (min-width: 1920px) {
    .different-part .related-product .long-text .button_text {
      top: -145px; } }
  .different-part .related-product .long-text .price {
    margin-top: -7px; }
    @media (min-width: 768px) {
      .different-part .related-product .long-text .price {
        margin-top: 0; } }

.collection-page .collection-set {
  background-color: transparent; }

.collection-page .collection-set__toggle {
  margin: 0;
  pointer-events: none; }
  .collection-page .collection-set__toggle::after {
    display: none;
    pointer-events: none; }

@media (min-width: 992px) {
  .collection-page .product__related__wrapper {
    padding-bottom: 16px; } }


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