@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: 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: 543.98px) {
  .hidden-xs-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]
 */
.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; } }

@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 {
    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: 2px; }
    @media (min-width: 768px) {
      .different-part .related-product .add-to-cart {
        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 {
        font-size: 9px;
        line-height: 0.89;
        letter-spacing: 1.58px;
        height: 43px; } }
    @media (min-width: 1920px) {
      .different-part .related-product .add-to-cart {
        font-size: 15px;
        line-height: 1;
        letter-spacing: 2.64px;
        height: 64px; } }
    .different-part .related-product .add-to-cart:disabled {
      background-color: #c7c7c7 !important;
      opacity: 1;
      border-color: #c7c7c7; }
  .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 .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: 10px; }
    .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;
    position: relative; }
    @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 {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    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; } }

.pdp-complete-the--look {
  background: #f6f6f6;
  padding-bottom: 4rem;
  padding-top: 3rem; }

.pdp-complete__look .carousel-control-prev,
.pdp-complete__look .carousel-control-next {
  display: none; }

.pdp-look__carousel {
  max-width: 84.875rem;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 769px) {
    .pdp-look__carousel {
      padding-right: 2.5rem;
      padding-left: 2.5rem; } }
  .pdp-look__carousel:not(.slick-initialized) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto; }
    .pdp-look__carousel:not(.slick-initialized) .pdp-carousel__media {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33%;
              flex: 0 0 33.33%; }

.pdp-carousel__media {
  outline: none; }
  @media (min-width: 769px) {
    .pdp-carousel__media {
      margin-right: .75rem;
      margin-left: .75rem; } }
  @media (max-width: 768.98px) {
    .pdp-carousel__media {
      margin-left: 1rem; } }
  .pdp-carousel__media .complete-look-image {
    width: 100%; }
  .pdp-carousel__media a {
    outline: none; }
  .pdp-carousel__media .product-name {
    font-size: .875rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #031e2f;
    font-family: "Archivo";
    margin-top: 1rem; }

.pdp-look__header {
  font-size: 2rem;
  font-family: "Butler";
  line-height: 1.31;
  letter-spacing: 0.5px;
  color: #031e2f;
  margin-bottom: 2rem; }

.pdp-look__header {
  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;
  padding: 43px 0;
  border-top: 0.5px solid #dbdbdb;
  text-transform: uppercase;
  margin-bottom: 0; }
  @media (min-width: 768px) {
    .pdp-look__header {
      padding: 60px 0; } }
  @media (min-width: 1280px) {
    .pdp-look__header {
      padding: 58px 0; } }
  @media (min-width: 1920px) {
    .pdp-look__header {
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: 3px;
      padding: 86px 0; } }

.pdp-complete-the--look {
  background-color: #ffffff;
  padding-top: 0;
  padding-bottom: 70px;
  margin: 0 20px; }
  @media (min-width: 768px) {
    .pdp-complete-the--look {
      padding-bottom: 80px;
      border-bottom: 0.5px solid #dbdbdb; } }
  @media (min-width: 1280px) {
    .pdp-complete-the--look {
      margin: 0 20px;
      padding-bottom: 50px;
      margin: 0 23px; } }
  @media (min-width: 1920px) {
    .pdp-complete-the--look {
      padding-bottom: 60px;
      border-bottom: none;
      margin: 0 42px; } }
  .pdp-complete-the--look .carousel.slide {
    margin: 0 -20px; }
    @media (min-width: 1280px) {
      .pdp-complete-the--look .carousel.slide {
        margin: 0 -23px; } }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .carousel.slide {
        margin: 0 -42px; } }
  .pdp-complete-the--look .pdp-carousel__media {
    margin-left: 0;
    margin-right: 22px; }
    @media (min-width: 768px) {
      .pdp-complete-the--look .pdp-carousel__media {
        margin-right: 26px; } }
    @media (min-width: 1280px) {
      .pdp-complete-the--look .pdp-carousel__media {
        margin: 0 14px; } }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .pdp-carousel__media {
        margin: 0 19px; } }
    .pdp-complete-the--look .pdp-carousel__media .product-name {
      font-family: 'Archivo-Light';
      font-size: 16px;
      font-weight: 300;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.38;
      letter-spacing: 0.64px;
      text-align: left;
      color: #000;
      margin-top: 15px; }
      @media (min-width: 768px) {
        .pdp-complete-the--look .pdp-carousel__media .product-name {
          font-size: 16px;
          line-height: 1.44;
          letter-spacing: 0.64px;
          text-align: center;
          color: #000; } }
      @media (min-width: 1920px) {
        .pdp-complete-the--look .pdp-carousel__media .product-name {
          font-size: 20px;
          line-height: 1.15;
          letter-spacing: 0.8px; } }
    .pdp-complete-the--look .pdp-carousel__media .complete-look-image {
      border-radius: 6px; }
      @media (min-width: 768px) {
        .pdp-complete-the--look .pdp-carousel__media .complete-look-image {
          border-radius: 8px; } }
  .pdp-complete-the--look .slick-list {
    padding: 0 19px 0 0 !important; }
    @media (min-width: 768px) {
      .pdp-complete-the--look .slick-list {
        padding: 0 158px 0 0 !important; } }
    @media (min-width: 1280px) {
      .pdp-complete-the--look .slick-list {
        padding: 0 !important; } }
  .pdp-complete-the--look .slick--outside-arrows-desktop .slick-arrow {
    top: 35%; }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .slick--outside-arrows-desktop .slick-arrow {
        top: 40%; } }
  .pdp-complete-the--look .slick--side-arrows .slick-next {
    right: 1.8%;
    width: 12px;
    height: 22px; }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .slick--side-arrows .slick-next {
        right: 3%;
        width: 22px;
        height: 41px; } }
    .pdp-complete-the--look .slick--side-arrows .slick-next::before {
      content: '';
      background-image: url("../../images/icons/right-arrow.svg");
      opacity: 1;
      position: absolute;
      top: 0px;
      left: 0px;
      width: 12px;
      height: 22px;
      background-size: cover; }
      @media (min-width: 1920px) {
        .pdp-complete-the--look .slick--side-arrows .slick-next::before {
          width: 22px;
          height: 41px; } }
  .pdp-complete-the--look .slick--side-arrows .slick-prev {
    left: 1.8%;
    width: 12px;
    height: 22px; }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .slick--side-arrows .slick-prev {
        left: 3%;
        width: 22px;
        height: 41px; } }
    .pdp-complete-the--look .slick--side-arrows .slick-prev::before {
      content: '';
      background-image: url("../../images/icons/left-arrow.svg");
      opacity: 1;
      position: absolute;
      top: 0px;
      left: 0px;
      width: 12px;
      height: 22px;
      background-size: cover; }
      @media (min-width: 1920px) {
        .pdp-complete-the--look .slick--side-arrows .slick-prev::before {
          width: 22px;
          height: 41px; } }
  @media (min-width: 1280px) {
    .pdp-complete-the--look .complete-look-item {
      position: relative; } }
  .pdp-complete-the--look .shop-now-look {
    display: none; }
    @media (min-width: 1280px) {
      .pdp-complete-the--look .shop-now-look {
        font-family: 'Archivo-Regular';
        font-size: 13px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1;
        letter-spacing: 2.29px;
        text-align: center;
        color: #ffffff;
        text-transform: uppercase;
        height: 69.5px;
        border-radius: 8px;
        border: solid 1px #ffffff;
        background-color: transparent;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        padding: 27px 0;
        display: block;
        cursor: pointer;
        width: 220px;
        opacity: 0;
        visibility: hidden; } }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .shop-now-look {
        width: 260.7px; } }
    .pdp-complete-the--look .shop-now-look:hover {
      text-decoration: none;
      color: #ffffff; }
  @media (min-width: 1280px) {
    .pdp-complete-the--look .complete-look-link {
      position: relative;
      display: inline-block; }
      .pdp-complete-the--look .complete-look-link:hover:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.59);
        border-radius: 8px; } }
  .pdp-complete-the--look .complete-look-item:hover .shop-now-look {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 1280px) {
    .pdp-complete-the--look .complete-look-item .hover-look:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: inline-block;
      background-color: rgba(0, 0, 0, 0.59);
      border-radius: 8px; } }
  .pdp-complete-the--look .pdp-look__carousel {
    max-width: none;
    margin-left: 20px;
    margin-right: 0;
    width: calc(100% - 20px);
    padding: 0; }
    @media (min-width: 1280px) {
      .pdp-complete-the--look .pdp-look__carousel {
        margin: auto;
        width: 100%;
        padding: 0 47px; } }
    @media (min-width: 1920px) {
      .pdp-complete-the--look .pdp-look__carousel {
        padding: 0 127px; } }

.window-modal.modal3d .window-modal__content {
  height: auto;
  width: 100%;
  max-width: 100%; }
  @media (max-width: 1279px) {
    .window-modal.modal3d .window-modal__content {
      margin: unset; } }
  @media (min-width: 1280px) {
    .window-modal.modal3d .window-modal__content {
      max-height: 90vh;
      height: 100%;
      width: auto; } }

.window-modal.modal3d #viewer {
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-height: 90vh;
  aspect-ratio: 1 / 1; }

.window-modal.modal3d .threed-image-label {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 35px;
  font-weight: 600; }

.threed-content-link {
  position: absolute;
  left: 30px;
  margin-top: 10px;
  padding: 5px;
  background-color: #000;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  top: 0; }
  @media (min-width: 1280px) {
    .threed-content-link {
      left: unset;
      right: 10px;
      top: unset; } }
  .threed-content-link .pseudo-icon {
    border-radius: 50%;
    border: 1px solid #ffffff;
    padding: 4px;
    width: 16px;
    height: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: var(--pseudo-icon-bg, transparent);
    --icon-rotation: 90deg;
    margin-left: 5px; }
    .threed-content-link .pseudo-icon::before, .threed-content-link .pseudo-icon::after {
      content: '';
      display: block;
      width: 8px;
      height: 1px;
      background-color: var(--pseudo-icon-color, #ffffff);
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .threed-content-link .pseudo-icon::after {
      -webkit-transform: translate(-50%, -50%) rotate(var(--icon-rotation, 0));
          -ms-transform: translate(-50%, -50%) rotate(var(--icon-rotation, 0));
              transform: translate(-50%, -50%) rotate(var(--icon-rotation, 0)); }
    .inspiration_show-more .threed-content-link .pseudo-icon {
      --icon-rotation: 90deg; }

.packagin-image-modal .window-modal__content {
  height: auto;
  width: 100%;
  max-width: 100%; }
  @media (max-width: 1279px) {
    .packagin-image-modal .window-modal__content {
      margin: unset; } }
  @media (min-width: 1280px) {
    .packagin-image-modal .window-modal__content {
      max-height: 90vh;
      height: 100%;
      width: auto;
      max-width: 90vw;
      aspect-ratio: 1 / 1; } }

.pdp-packaging-link {
  text-decoration: underline; }

@media (min-width: 769px) {
  .pdp-zoom__thumbs {
    padding-left: .625rem;
    padding-right: .625rem; } }

@media (min-width: 769px) and (max-width: 991.98px) {
  .pdp-zoom__thumbs {
    padding-left: 1.5rem;
    padding-right: 1.5rem; } }

.pdp-zoom__thumbs-item {
  position: relative; }
  .pdp-zoom__thumbs-item:not(:last-child) {
    margin-bottom: 1.25rem; }
  .pdp-zoom__thumbs-item:not(.slick-nav--active) {
    opacity: .25; }
  .pdp-zoom__thumbs-item .play-icon {
    position: absolute;
    width: 49px;
    text-align: center;
    color: #fff;
    font-size: 26px;
    top: 32%;
    left: 25%;
    z-index: 1; }

.pdp-zoom__main {
  padding-left: 1.625rem;
  padding-right: 1.625rem;
  height: 100%;
  overflow: hidden;
  overflow-y: auto; }

.pdp-zoom__main-item .pinchToZoom {
  display: none; }

.pdp-zoom__main-item.zoom {
  display: inline-block;
  position: relative;
  cursor: crosshair; }
  @media (max-width: 991.98px) {
    .pdp-zoom__main-item.zoom {
      width: 100%; } }

@media (max-width: 767px) {
  .pdp-zoom__main-item .leaflet-control-container {
    display: none; } }

@media (max-width: 767px) {
  .pdp-zoom__main-item img {
    max-height: none; } }

@media (max-width: 767px) {
  .pdp-zoom__main-item .pinchToZoom {
    position: absolute;
    top: 50%;
    left: 30%;
    background: #031e2f;
    display: block;
    z-index: 401;
    opacity: 0.9;
    padding: 5px 15px; }
  .pdp-zoom__main-item span {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px; } }

.pdp-zoom__main-item video {
  width: 100%;
  max-width: 100%; }

.grecaptcha-badge {
  visibility: hidden; }

.leaflet-container {
  display: none; }

@media (max-width: 1279.98px) {
  .modal--pdp-zoom .window-modal__content {
    padding-bottom: 0; } }

@media (min-width: 1280px) {
  .modal--pdp-zoom .slick-list {
    padding: 0 !important; } }

.modal--pdp-zoom .container {
  padding: 0; }
  @media (min-width: 1280px) {
    .modal--pdp-zoom .container {
      max-width: 794px; } }
  @media (min-width: 1920px) {
    .modal--pdp-zoom .container {
      max-width: 1112px; } }

.modal--pdp-zoom .row {
  margin: 0; }
  @media (min-width: 1280px) {
    .modal--pdp-zoom .row {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }

.modal--pdp-zoom .image-carousel {
  padding: 0; }

.modal--pdp-zoom .pdp-zoom__thumbs {
  padding: 0; }

.modal--pdp-zoom .pdp-zoom__thumbs-item {
  margin-bottom: 10px; }
  @media (min-width: 1280px) {
    .modal--pdp-zoom .pdp-zoom__thumbs-item {
      margin-bottom: 13px; } }
  @media (min-width: 1920px) {
    .modal--pdp-zoom .pdp-zoom__thumbs-item {
      margin-bottom: 18px; } }
  @media (max-width: 1279.98px) {
    .modal--pdp-zoom .pdp-zoom__thumbs-item {
      opacity: 1; } }

.modal--pdp-zoom .image-carousel {
  width: 100%;
  display: none; }
  @media (min-width: 1280px) {
    .modal--pdp-zoom .image-carousel {
      display: block;
      width: 15.975%;
      padding-right: 32px; } }
  @media (min-width: 1920px) {
    .modal--pdp-zoom .image-carousel {
      width: 16.084%;
      padding-right: 46px; } }

@media (min-width: 1280px) {
  .modal--pdp-zoom .zoomed-image {
    display: block;
    padding: 0;
    width: 84.025%; } }

@media (min-width: 1920px) {
  .modal--pdp-zoom .zoomed-image {
    width: 83.916%; } }

.modal--pdp-zoom .pdp-zoom__main {
  padding: 0; }

@media (min-width: 1280px) {
  .modal--pdp-zoom .pdp-zoom__main-item {
    padding: 0 2px; } }

@media (min-width: 1280px) {
  .modal--pdp-zoom .pdp-zoom__main-item {
    padding: 0 2px; } }

.modal--pdp-zoom .pinchToZoom {
  display: none; }

@media (min-width: 1280px) {
  .modal--pdp-zoom .pdp-zoom__thumbs-item img {
    opacity: 0.3; }
  .modal--pdp-zoom .pdp-zoom__thumbs-item.slick-nav--active img {
    opacity: 1; } }

.modal--pdp-zoom .window-modal__close {
  top: 20px;
  right: 20px;
  height: 20px;
  width: 13px; }
  @media (min-width: 768px) {
    .modal--pdp-zoom .window-modal__close {
      height: 20px;
      width: 15px;
      right: 40px;
      top: 40px; } }
  @media (min-width: 1280px) {
    .modal--pdp-zoom .window-modal__close {
      top: 30px;
      right: 30px; } }
  @media (min-width: 1920px) {
    .modal--pdp-zoom .window-modal__close {
      top: 32px;
      right: 32px;
      width: 23px;
      height: 23px; } }
  .modal--pdp-zoom .window-modal__close::after {
    content: '';
    background-image: url("../../images/icons/close-modal.svg");
    width: 13px;
    height: 13px;
    background-repeat: no-repeat;
    background-size: contain; }
    @media (min-width: 768px) {
      .modal--pdp-zoom .window-modal__close::after {
        width: 15px;
        height: 15px; } }
    @media (min-width: 1920px) {
      .modal--pdp-zoom .window-modal__close::after {
        width: 23px;
        height: 23px; } }
  .modal--pdp-zoom .window-modal__close:hover {
    opacity: 1; }

.recommend--looks {
  background: #fff; }
  @media (max-width: 768.98px) {
    .recommend--looks {
      width: 100%; } }

.pdp-recommendation-products {
  margin: 0 11px 20px 20px;
  padding-top: 0; }
  @media (min-width: 768px) {
    .pdp-recommendation-products {
      margin: 0 0 0 20px;
      padding-top: 0;
      border-top: none; } }
  @media (min-width: 1280px) {
    .pdp-recommendation-products {
      margin: 0 5px 0 21px; } }
  @media (min-width: 1920px) {
    .pdp-recommendation-products {
      margin: 0 18px 50px 42px; } }

.pdp-recommendation__title {
  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;
  margin-bottom: 43px;
  margin-right: 9px;
  padding-top: 58px;
  border-top: 0.5px solid #dbdbdb; }
  @media (min-width: 768px) {
    .pdp-recommendation__title {
      margin-bottom: 74px;
      padding-top: 25px;
      border-top: none; } }
  @media (min-width: 1280px) {
    .pdp-recommendation__title {
      margin-bottom: 58px;
      margin-right: 0;
      padding-top: 30px; } }
  @media (min-width: 1920px) {
    .pdp-recommendation__title {
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: 3px;
      margin-bottom: 86px;
      padding-top: 94px;
      margin-right: 27px;
      border-top: 0.5px solid #dbdbdb; } }

.pdp-recommendation__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.pdp-recommendation-grid__item {
  width: 50%;
  padding-right: 10px;
  margin-bottom: 33px; }
  @media (min-width: 768px) {
    .pdp-recommendation-grid__item {
      padding-right: 20px;
      margin-bottom: 32px; } }
  @media (min-width: 1280px) {
    .pdp-recommendation-grid__item {
      padding-right: 17px;
      width: 25%; } }
  @media (min-width: 1920px) {
    .pdp-recommendation-grid__item {
      padding-right: 25px;
      margin-bottom: 33px; } }

.pdp-recommendation-grid__image {
  border-radius: 8px; }

.pdp-recommendation-grid__item-name {
  font-family: 'Archivo-Light';
  font-size: 12px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.58;
  letter-spacing: 0.36px;
  text-align: center;
  color: #000;
  margin-top: 8px; }
  @media (min-width: 768px) {
    .pdp-recommendation-grid__item-name {
      margin-top: 12px; } }
  @media (min-width: 1280px) {
    .pdp-recommendation-grid__item-name {
      margin-top: 12px; } }
  @media (min-width: 1920px) {
    .pdp-recommendation-grid__item-name {
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: 0.6px;
      margin-top: 23px; } }

.pdp-recommendation-grid__item-price {
  font-family: 'Archivo-ExtraLight';
  font-size: 12px;
  font-weight: 200;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.58;
  letter-spacing: 0.36px;
  text-align: center;
  color: #808080;
  margin-top: -8px; }
  @media (min-width: 1280px) {
    .pdp-recommendation-grid__item-price {
      margin-top: -10px; } }
  @media (min-width: 1920px) {
    .pdp-recommendation-grid__item-price {
      font-size: 16px;
      line-height: 1.94;
      letter-spacing: 0.48px;
      margin-top: 0px; } }

.tabs-pdp-bottom {
  margin: 0 20px 20px;
  border-top: 0.5px solid #dbdbdb; }
  @media (min-width: 1280px) {
    .tabs-pdp-bottom {
      margin: 0 20px 31px; } }
  @media (min-width: 1920px) {
    .tabs-pdp-bottom {
      margin: 0 41px 41px; } }
  .tabs-pdp-bottom .desktop-img {
    display: none; }
    @media (min-width: 1280px) {
      .tabs-pdp-bottom .desktop-img {
        display: block; } }
  .tabs-pdp-bottom .tablet-img {
    display: none; }
    @media (min-width: 768px) and (max-width: 1279.98px) {
      .tabs-pdp-bottom .tablet-img {
        display: block; } }
  .tabs-pdp-bottom .mobile-img {
    display: none; }
    @media (max-width: 767.98px) {
      .tabs-pdp-bottom .mobile-img {
        display: block; } }
  .tabs-pdp-bottom .nav-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
    border-bottom: none;
    padding: 20px 0; }
    .tabs-pdp-bottom .nav-tabs .nav-link {
      margin-right: 22px; }
      .tabs-pdp-bottom .nav-tabs .nav-link.active {
        border-bottom: none; }
      @media (min-width: 768px) {
        .tabs-pdp-bottom .nav-tabs .nav-link {
          margin-right: 25px; } }
      @media (min-width: 1280px) {
        .tabs-pdp-bottom .nav-tabs .nav-link {
          margin-right: 63px; } }
      @media (min-width: 1920px) {
        .tabs-pdp-bottom .nav-tabs .nav-link {
          margin-right: 40px; } }
    @media (min-width: 768px) {
      .tabs-pdp-bottom .nav-tabs {
        margin-bottom: 0;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    @media (min-width: 1280px) {
      .tabs-pdp-bottom .nav-tabs {
        margin-bottom: 0;
        padding: 33px 0; } }
    @media (min-width: 1920px) {
      .tabs-pdp-bottom .nav-tabs {
        padding: 46px 0; } }
    @media (max-width: 767.98px) {
      .tabs-pdp-bottom .nav-tabs {
        margin: 0 -20px 0 0;
        white-space: nowrap; } }
    .tabs-pdp-bottom .nav-tabs .slick-list {
      padding: 0 52px 0 0 !important; }

.pdp-tab-subtitle {
  font-family: 'Archivo-Regular';
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 2.11px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  width: 175px;
  margin: auto; }
  @media (min-width: 1280px) {
    .pdp-tab-subtitle {
      font-size: 8px;
      font-weight: 600;
      line-height: 1.5;
      letter-spacing: 1.41px;
      width: auto; } }
  @media (min-width: 1920px) {
    .pdp-tab-subtitle {
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 2.11px; } }

.pdp-tab-title {
  font-family: 'Butler-Light';
  font-size: 35px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.86;
  letter-spacing: -1.05px;
  text-align: center;
  color: #f0f0f0;
  text-transform: uppercase;
  width: 295px;
  margin: 19px auto 0; }
  @media (min-width: 1280px) {
    .pdp-tab-title {
      font-size: 46px;
      line-height: 0.83;
      letter-spacing: -1.38px;
      width: 380px;
      margin-top: 6px; } }
  @media (min-width: 1920px) {
    .pdp-tab-title {
      font-size: 71px;
      line-height: 0.82;
      letter-spacing: -2.13px;
      margin-top: 27px;
      width: 600px; } }

.pdp-tab-cta {
  font-family: 'Archivo-Medium';
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 2.11px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  margin: auto;
  width: 248px;
  height: 60px;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 24px 0;
  position: absolute;
  bottom: 31px;
  left: 0;
  right: 0; }
  @media (min-width: 1280px) {
    .pdp-tab-cta {
      opacity: 1;
      font-size: 9px;
      line-height: 0.56;
      letter-spacing: 1.58px;
      width: 119px;
      height: 37px;
      border-radius: 6px;
      padding: 17px 0;
      bottom: 20px;
      right: 20px;
      left: auto; } }
  @media (min-width: 1920px) {
    .pdp-tab-cta {
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 2.11px;
      width: 225px;
      height: 60px;
      border-radius: 8px;
      padding: 24px 0;
      bottom: 32px;
      right: 32px; } }
  .pdp-tab-cta:hover {
    text-decoration: none; }
  .pdp-tab-cta.mobile {
    display: block; }
    @media (min-width: 1280px) {
      .pdp-tab-cta.mobile {
        display: none; } }
  .pdp-tab-cta.desktop {
    display: none; }
    @media (min-width: 1280px) {
      .pdp-tab-cta.desktop {
        display: block; } }

.pdp-tab-1-image, .pdp-tab-2-image, .pdp-tab-3-image {
  position: relative; }

.pdp-tab-image:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.61;
  border-radius: 8px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(11%, rgba(0, 0, 0, 0.22)), to(rgba(0, 0, 0, 0.71)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22) 11%, rgba(0, 0, 0, 0.71));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22) 11%, rgba(0, 0, 0, 0.71));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22) 11%, rgba(0, 0, 0, 0.71)); }
  @media (min-width: 1280px) {
    .pdp-tab-image:after {
      border-radius: 10px; } }

.tabs-pdp-bottom .nav-item {
  font-family: 'Butler-Light';
  font-size: 22px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.73;
  letter-spacing: normal;
  text-align: left;
  color: #000 !important;
  opacity: 0.3;
  text-transform: uppercase; }
  @media (min-width: 1280px) {
    .tabs-pdp-bottom .nav-item {
      font-size: 26px;
      line-height: 1.46; } }
  @media (min-width: 1920px) {
    .tabs-pdp-bottom .nav-item {
      font-size: 30px;
      line-height: 1.27; } }
  .tabs-pdp-bottom .nav-item.active {
    opacity: 1; }

.tabs-pdp-bottom .tab-content .tab-pane {
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }

.pdp-tab-1-content, .pdp-tab-2-content, .pdp-tab-3-content {
  position: relative; }

.pdp-tab-1-text, .pdp-tab-2-text, .pdp-tab-3-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 38.3%; }
  @media (min-width: 1920px) {
    .pdp-tab-1-text, .pdp-tab-2-text, .pdp-tab-3-text {
      top: 36.5%; } }

@media (max-width: 767.98px) {
  .tabs-pdp-bottom nav {
    overflow-x: scroll;
    margin-right: -20px; }
    .tabs-pdp-bottom nav::-webkit-scrollbar {
      height: 0px; }
  .tabs-pdp-bottom .nav-tabs {
    display: block; }
  .tabs-pdp-bottom .nav-item {
    display: inline-block; } }

.pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
  margin: 0 20px;
  border-top: 0.5px solid #dbdbdb;
  padding-top: 43px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
      padding-top: 57px;
      border-top: 0.4px solid #dbdbdb; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
      margin: 0 23px;
      padding-top: 85px;
      border-top: 0.5px solid #dbdbdb; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
      margin: 0 41px;
      padding-top: 86px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__content.fabric-selected {
    display: none !important; }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-image {
    width: 127px;
    height: auto;
    margin: auto; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-image {
        width: 188px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-image {
        width: 204px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-image {
    width: 84px;
    height: auto;
    margin: auto;
    margin-top: 24px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-image {
        width: 120px;
        margin-top: 29px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-image {
        margin-top: 34px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-image {
        width: 131px;
        margin-top: 37px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-image {
    width: 108px;
    height: auto;
    margin: auto;
    margin-top: 12px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-image {
        width: 154px;
        margin-top: 13px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-image {
        margin-top: 17px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-image {
        width: 167px;
        margin-top: 19px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__title {
    font-family: 'Archivo-Regular';
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 2.11px;
    text-align: center;
    color: #000;
    margin-bottom: 16px;
    text-transform: uppercase; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__title {
        font-family: 'Archivo-Medium';
        font-size: 8px;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 1.41px;
        margin-bottom: 12px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__title {
        margin-bottom: 14px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__title {
        font-size: 12px;
        line-height: 1;
        letter-spacing: 2.11px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title {
    margin-top: -20px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title {
        margin-top: -39px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title {
        margin-top: -35px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title {
        margin-top: -37px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
    margin-top: -11px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
        margin-top: -17px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
        margin-top: -19px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc1 {
    font-family: 'Butler-Light';
    font-size: 45px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.84;
    letter-spacing: -1.35px;
    color: #000;
    margin-bottom: 26px;
    text-transform: uppercase; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc1 {
        font-size: 28px;
        line-height: normal;
        letter-spacing: -0.56px;
        margin-bottom: 20px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc1 {
        font-size: 40px;
        letter-spacing: -0.8px;
        margin-bottom: 20px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc1 {
        font-size: 60px;
        letter-spacing: -1.2px;
        margin-bottom: 30px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc2 {
    font-family: 'Archivo-ExtraLight';
    font-size: 14px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 0.42px;
    text-align: center;
    color: #000;
    width: 286px;
    margin: auto;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc2 {
        font-size: 12px;
        line-height: 1.58;
        letter-spacing: 0.36px;
        margin-bottom: 0px;
        width: 302px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc2 {
        font-size: 16px;
        line-height: 1.63;
        letter-spacing: 0.48px;
        margin-bottom: 22px;
        width: 398px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__desc2 {
        font-size: 20px;
        line-height: 1.55;
        letter-spacing: 0.6px;
        margin-bottom: 0;
        width: 504px;
        margin-bottom: 0; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
    font-family: 'Archivo-Regular';
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.64;
    letter-spacing: 0.56px;
    text-align: center;
    color: #000;
    margin-bottom: 37px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
        font-family: 'Archivo-Light';
        font-size: 14px;
        font-weight: 300;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.29;
        letter-spacing: 0.56px;
        margin-bottom: 42px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
        font-family: 'Archivo-Regular';
        font-size: 18px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.72;
        letter-spacing: 0.54px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-title, .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish-title {
        font-family: 'Archivo-Regular';
        font-size: 20px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.55;
        letter-spacing: 0.6px;
        margin-bottom: 46px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference {
    font-family: 'Archivo-Light';
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.92;
    letter-spacing: 0.48px;
    text-align: center;
    color: #000;
    width: 93px;
    height: 28px;
    border-radius: 100px;
    background-color: #f0f0f0;
    margin-bottom: 23px;
    padding: 3px 0; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference {
        line-height: 1.5;
        letter-spacing: 0.48px;
        width: 192px;
        height: 47px;
        border-radius: 100px;
        background-color: #f0f0f0;
        margin-bottom: 34px;
        padding: 14px 0; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference {
        font-size: 14px;
        line-height: 1.64;
        letter-spacing: 0.56px;
        width: 240px;
        height: 55px;
        border-radius: 100px;
        background-color: #f0f0f0;
        margin-bottom: 40px;
        padding: 15px 0; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference {
        font-size: 16px;
        line-height: 1.44;
        letter-spacing: 0.64px;
        width: 262px;
        height: 60px;
        border-radius: 100px;
        background-color: #f0f0f0;
        margin-bottom: 43px;
        padding: 18px 0; } }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference.preference-selected {
      background-color: #031d30;
      color: #ffffff; }
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference.preference-selected:hover {
        background-color: #031d30;
        color: #ffffff; }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference.disabled {
      cursor: not-allowed;
      background-color: #c7c7c7 !important;
      pointer-events: none; }
  @media (max-width: 767.98px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature .fabric-finder__preference {
      margin-right: auto;
      margin-left: auto; } }
  @media (max-width: 767.98px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel {
      padding: 0 24px 0 7px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-group {
    padding: 0; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-group {
        padding: 0 38px;
        border-left: 0.5px solid #E6E6E6;
        border-right: 0.5px solid #E6E6E6; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-group {
        padding: 0 65px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__feel-group {
        padding: 0 90px; } }
  @media (min-width: 768px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature {
      margin-right: 38px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature {
      margin-right: 65px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__temparature {
      margin-right: 90px; } }
  @media (min-width: 768px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish {
      margin-left: 38px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish {
      margin-left: 65px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__finish {
      margin-left: 90px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__selected-text {
    display: none; }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml {
    margin: 36px auto 47px; }
    @media (max-width: 767.98px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml {
        width: 340px; } }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml {
        margin: 30px 0 55px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml {
        margin: 30px 0 90px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml {
        margin: 47px 0 105px; } }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml a {
      font-family: 'Archivo-Medium';
      font-size: 10px;
      font-weight: 500;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.2;
      letter-spacing: 1.48px;
      text-align: left;
      color: #7c7c7c;
      text-decoration: none;
      border-bottom: none; }
      @media (min-width: 768px) {
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml a {
          font-size: 14px;
          font-weight: 500;
          font-stretch: normal;
          font-style: normal;
          line-height: 1;
          letter-spacing: 1.76px; } }
      @media (min-width: 1920px) {
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml a {
          font-size: 18px;
          line-height: 1;
          letter-spacing: 2.11px; } }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml .view-prod {
      margin-left: 2px; }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml .view-products-arrow {
      width: 12px;
      height: auto;
      margin-bottom: 2px;
      margin-left: 2px; }
      @media (min-width: 1280px) {
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml .view-products-arrow {
          margin-bottom: 3px; } }
      @media (min-width: 1920px) {
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml .view-products-arrow {
          width: 14px;
          margin-bottom: 4px; } }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml.fabric-selected {
      display: none; }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml.disable-click {
      pointer-events: none; }
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml.disable-click .view-prod {
        display: none; }
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml.enable-click {
      width: 100%; }
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml.enable-click a {
        border-bottom: 1px solid #132c3d;
        color: #031d30; }
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .discover-products-isml.enable-click .view-prod {
        display: inline-block; }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference {
      position: relative; }
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference:hover {
        cursor: pointer;
        background-color: #c7c7c7; }
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__preference:hover .fabric-finder__tooltip {
          -webkit-transition-delay: 1s;
               -o-transition-delay: 1s;
                  transition-delay: 1s;
          opacity: 1;
          visibility: visible; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__value:active {
    color: #ffffff;
    text-decoration: none; }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__value:hover {
    text-decoration: none; }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip {
    opacity: 0;
    visibility: hidden; }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip {
        width: 432px;
        padding: 18px;
        border-radius: 8px;
        border: solid 0.5px #aaa;
        bottom: 73px;
        left: -97px;
        background-color: #ffffff;
        z-index: 10; }
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip:after {
          /*content: '';
                        display: block;
                        width: 0;
                        height: 0;
                        position: absolute;
                        border-top: 15px solid black;
                        border-left: 15px solid transparent;
                        border-right: 15px solid transparent;
                        left: -8px;
                        top: 7px;*/
          content: '';
          display: block;
          position: absolute;
          left: 210px;
          bottom: -11px;
          width: 20px;
          height: 20px;
          background: #FFFFFF;
          border-left: 1px solid #aaa;
          border-bottom: 1px solid #aaa;
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg); } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip {
        width: 510px;
        padding: 20px;
        bottom: 80px;
        left: -120px; }
        .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip:after {
          left: 250px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-image {
      float: left;
      width: 140px;
      border-radius: 8px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-image {
      width: 179px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-content {
      float: left;
      width: 238px;
      margin-left: 13px;
      margin-top: -8px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-content {
      width: 272px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-title {
      font-family: 'Archivo-Regular';
      font-size: 16px;
      font-weight: normal;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.94;
      letter-spacing: 0.48px;
      text-align: left;
      color: #000;
      margin-bottom: 6px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-title {
      font-size: 20px;
      font-weight: normal;
      line-height: 1.55;
      letter-spacing: 0.6px;
      margin-bottom: 10px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-description {
      font-family: 'Archivo-Light';
      font-size: 14px;
      font-weight: 300;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.71;
      letter-spacing: 0.42px;
      text-align: left;
      color: #000; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__tooltip-description {
      font-size: 16px;
      line-height: 1.94;
      letter-spacing: 0.48px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__selected-fabric {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__selected-text {
    font-family: 'Archivo-ExtraLight';
    font-size: 14px;
    font-weight: 200;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: 0.42px;
    text-align: center;
    color: #000;
    width: 309px;
    margin: auto;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__selected-text {
        font-size: 12px;
        line-height: 1.58;
        letter-spacing: 0.36px;
        width: 322px;
        margin: auto;
        margin-bottom: 22px; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__selected-text {
        font-size: 16px;
        line-height: 1.63;
        letter-spacing: 0.48px;
        width: 436px;
        margin: auto;
        margin-bottom: 28px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .fabric-finder__selected-text {
        font-size: 20px;
        line-height: 1.55;
        letter-spacing: 0.6px;
        width: 861px;
        margin-bottom: 41px; } }
  .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .selected-fabric {
    font-family: 'Archivo-Regular';
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.92;
    letter-spacing: 0.48px;
    text-align: center;
    color: #ffffff;
    min-width: 90px;
    height: 28px;
    border-radius: 100px;
    background-color: #031d30;
    margin: 0 4.5px;
    padding: 4px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp .selected-fabric {
        font-family: 'Archivo-Regular';
        font-size: 12px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.92;
        letter-spacing: 0.48px;
        text-align: center;
        color: #ffffff;
        width: 101px;
        height: 32px;
        border-radius: 100px;
        background-color: #031d30;
        margin: 0 4.5px;
        padding: 4px 0; } }

.pdp-fabric-section .clp-grid-carousel .product-items {
  display: none; }

.pdp-fabric-section .clp-grid-carousel .clp-container__list-item-fabric-finder {
  display: none; }

.pdp-fabric-section .show-all-prod .clp-grid-carousel .sub-category-list {
  display: none; }

.pdp-fabric-section .show-all-prod .clp-grid-carousel .product-items {
  display: block !important; }

.pdp-fabric-section .product-items-fabric-finder {
  display: none; }

.pdp-fabric-section .new-products-added {
  display: none; }
  .pdp-fabric-section .new-products-added .clp-grid-carousel .sub-category-list {
    display: none; }
  .pdp-fabric-section .new-products-added .clp-grid-carousel .product-items {
    display: block !important; }
  .pdp-fabric-section .new-products-added .clp-grid-carousel .clp-container__list-item-fabric-finder {
    display: block !important; }

.pdp-fabric-section .fabric-finder-products {
  display: none; }

.pdp-fabric-section .new-products-added-final .clp-grid-carousel .sub-category-list {
  display: none; }

.pdp-fabric-section .new-products-added-final .clp-grid-carousel .category-name-link {
  display: none !important; }

.pdp-fabric-section .new-products-added-final .clp-grid-carousel .product-items {
  display: block !important; }

.pdp-fabric-section .new-products-added-final .product-items-fabric-finder {
  display: block !important; }

.pdp-fabric-section .new-products-added-final .fabric-finder-products {
  display: block !important; }

.pdp-fabric-section .new-products-added-final .fabric-finder-products {
  margin-top: 33px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .new-products-added-final .fabric-finder-products {
      margin-top: 113px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .new-products-added-final .fabric-finder-products {
      margin-top: 43px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .new-products-added-final .fabric-finder-products {
      margin-top: 53px; } }

.pdp-fabric-section .new-products-added-final .clp-grid-carousel {
  display: none !important; }

.pdp-fabric-section .new-products-added-final .clp-container {
  width: 100%; }

.pdp-fabric-section .new-products-added-final .clp-container__list-item-fabric-finder {
  width: 25%; }

.pdp-fabric-section .new-products-added-final .clp-container__list-products {
  width: 50%; }
  @media (min-width: 768px) {
    .pdp-fabric-section .new-products-added-final .clp-container__list-products {
      width: 25%; } }

.pdp-fabric-section .new-products-added-final .container--large-gutter.clp-page {
  padding: 0; }
  .pdp-fabric-section .new-products-added-final .container--large-gutter.clp-page .row {
    margin: 0; }
  .pdp-fabric-section .new-products-added-final .container--large-gutter.clp-page .tab-content {
    padding: 0; }

.pdp-fabric-section .new-products-added-final .clp-container__list-products {
  padding-right: 22px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .new-products-added-final .clp-container__list-products {
      padding-right: 25px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .new-products-added-final .clp-container__list-products {
      padding-right: 27px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .new-products-added-final .clp-container__list-products {
      padding-right: 38px; } }

.pdp-fabric-section .new-products-added-final .fabric-finder-products {
  margin-right: -19px; }
  @media (min-width: 1280px) {
    .pdp-fabric-section .new-products-added-final .fabric-finder-products {
      margin-right: -27px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .new-products-added-final .fabric-finder-products {
      margin-right: -38px; } }
  .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-list {
    padding: 0 19px 0 0 !important; }
    @media (min-width: 768px) {
      .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-list {
        padding: 0 158px 0 0 !important; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-list {
        padding: 0 !important; } }
  .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-next {
    right: -3px;
    top: 29%;
    width: 12px;
    height: 22px; }
    @media (min-width: 1920px) {
      .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-next {
        right: -47px;
        width: 22px;
        height: 41px; } }
    .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-next::before {
      content: '';
      background-image: url("../../images/icons/right-arrow-fabric@2x.png");
      width: 12px;
      height: 22px;
      opacity: 1;
      position: absolute;
      background-size: contain; }
      @media (min-width: 1920px) {
        .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-next::before {
          width: 22px;
          height: 41px; } }
  .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-prev {
    left: -40px;
    top: 29%;
    width: 12px;
    height: 22px; }
    @media (min-width: 1920px) {
      .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-prev {
        left: -104px;
        width: 22px;
        height: 41px; } }
    .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-prev::before {
      content: '';
      background-image: url("../../images/icons/left-arrow-fabric@2x.png");
      width: 12px;
      height: 22px;
      opacity: 1;
      position: absolute;
      background-size: contain; }
      @media (min-width: 1920px) {
        .pdp-fabric-section .new-products-added-final .fabric-finder-products .slick-prev::before {
          width: 22px;
          height: 41px; } }

.pdp-fabric-section .new-products-added-final .category-name-link {
  display: none; }

.pdp-fabric-section .new-products-added-final .product-tile .tile-body {
  margin-top: 33px;
  margin-bottom: 73px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .new-products-added-final .product-tile .tile-body {
      margin-top: 15px;
      margin-bottom: 81px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .new-products-added-final .product-tile .tile-body {
      margin-top: 14px;
      margin-bottom: 36px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .new-products-added-final .product-tile .tile-body {
      margin-top: 28px;
      margin-bottom: 55px; } }
  .pdp-fabric-section .new-products-added-final .product-tile .tile-body .color-swatches {
    min-height: auto; }
  @media (min-width: 768px) and (max-width: 1919.98px) {
    .pdp-fabric-section .new-products-added-final .product-tile .tile-body .product-tile__name-link {
      font-size: 16px;
      line-height: 1.44;
      letter-spacing: 0.64px; } }
  @media (min-width: 768px) and (max-width: 1919.98px) {
    .pdp-fabric-section .new-products-added-final .product-tile .tile-body .price, .pdp-fabric-section .new-products-added-final .product-tile .tile-body .value, .pdp-fabric-section .new-products-added-final .product-tile .tile-body .range {
      font-size: 12px !important;
      line-height: 1.92 !important;
      letter-spacing: 0.36px !important; } }
  .pdp-fabric-section .new-products-added-final .product-tile .tile-body .pdp-link {
    margin-top: 6px; }
    @media (min-width: 768px) {
      .pdp-fabric-section .new-products-added-final .product-tile .tile-body .pdp-link {
        margin-top: 5px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .new-products-added-final .product-tile .tile-body .pdp-link {
        margin-top: 10px; } }
  .pdp-fabric-section .new-products-added-final .product-tile .tile-body .prices {
    padding-top: 5px;
    padding-bottom: 0;
    margin-top: 0; }
    @media (min-width: 768px) {
      .pdp-fabric-section .new-products-added-final .product-tile .tile-body .prices {
        padding-top: 4px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .new-products-added-final .product-tile .tile-body .prices {
        padding-top: 10px; } }

.pdp-fabric-section .new-products-added-final .product-tile .swatch--anchor-tile {
  margin-right: 7px;
  margin-left: 0; }
  @media (min-width: 768px) {
    .pdp-fabric-section .new-products-added-final .product-tile .swatch--anchor-tile {
      margin: 0 2px; } }

@media (max-width: 767.98px) {
  .pdp-fabric-section .new-products-added-final .product-tile .color-swatches, .pdp-fabric-section .new-products-added-final .product-tile .pdp-link, .pdp-fabric-section .new-products-added-final .product-tile .prices {
    text-align: left; } }

@media (min-width: 1280px) {
  .pdp-fabric-section .new-products-added-final .clp-product-grid-carousel {
    margin: 0 36px 0 40px; } }

@media (min-width: 1920px) {
  .pdp-fabric-section .new-products-added-final .clp-product-grid-carousel {
    margin: 0 107px 0 104px; } }

.pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
  padding-top: 58px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
      padding-top: 35px;
      border-top: none; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
      padding-top: 80px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .fabric-finder-clp {
      padding-top: 85px;
      border-top: 0.5px solid #dbdbdb; } }

.pdp-fabric-section .plp-fabric-finder .discover-products-isml {
  margin: 36px auto 58px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .plp-fabric-finder .discover-products-isml {
      margin: 30px 0 65px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .plp-fabric-finder .discover-products-isml {
      margin: 30px 0 90px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .plp-fabric-finder .discover-products-isml {
      margin: 47px 0 140px; } }

.pdp-fabric-section .fabric-finder-products-plp {
  display: none; }

.pdp-fabric-section .fabric-finder-products-plp {
  margin-top: 33px;
  margin-right: -19px;
  margin-bottom: -20px; }
  @media (min-width: 768px) {
    .pdp-fabric-section .fabric-finder-products-plp {
      margin-top: 113px;
      margin-bottom: -30px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .fabric-finder-products-plp {
      margin-top: 43px;
      margin-right: -27px;
      margin-bottom: 0; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .fabric-finder-products-plp {
      margin-top: 53px;
      margin-right: -38px; } }
  .pdp-fabric-section .fabric-finder-products-plp .product-grid-tile {
    padding-right: 22px;
    padding-left: 0;
    width: 50%; }
    @media (min-width: 768px) {
      .pdp-fabric-section .fabric-finder-products-plp .product-grid-tile {
        padding-right: 25px;
        width: 25%; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .fabric-finder-products-plp .product-grid-tile {
        padding-right: 27px; } }
    @media (min-width: 1920px) {
      .pdp-fabric-section .fabric-finder-products-plp .product-grid-tile {
        padding-right: 38px; } }
  .pdp-fabric-section .fabric-finder-products-plp .slick-list {
    padding: 0 19px 0 0 !important; }
    @media (min-width: 768px) {
      .pdp-fabric-section .fabric-finder-products-plp .slick-list {
        padding: 0 158px 0 0 !important; } }
    @media (min-width: 1280px) {
      .pdp-fabric-section .fabric-finder-products-plp .slick-list {
        padding: 0 !important; } }
  .pdp-fabric-section .fabric-finder-products-plp .slick-next {
    right: -3px !important;
    top: 29%;
    width: 12px;
    height: 22px; }
    @media (min-width: 1920px) {
      .pdp-fabric-section .fabric-finder-products-plp .slick-next {
        right: -47px !important;
        width: 22px;
        height: 41px; } }
    .pdp-fabric-section .fabric-finder-products-plp .slick-next::before {
      content: '';
      background-image: url("../../images/icons/right-arrow-fabric@2x.png");
      width: 12px;
      height: 22px;
      opacity: 1;
      position: absolute;
      background-size: contain; }
      @media (min-width: 1920px) {
        .pdp-fabric-section .fabric-finder-products-plp .slick-next::before {
          width: 22px;
          height: 41px; } }
  .pdp-fabric-section .fabric-finder-products-plp .slick-prev {
    left: -40px !important;
    top: 29%;
    width: 12px;
    height: 22px; }
    @media (min-width: 1920px) {
      .pdp-fabric-section .fabric-finder-products-plp .slick-prev {
        left: -104px !important;
        width: 22px;
        height: 41px; } }
    .pdp-fabric-section .fabric-finder-products-plp .slick-prev::before {
      content: '';
      background-image: url("../../images/icons/left-arrow-fabric@2x.png");
      width: 12px;
      height: 22px;
      opacity: 1;
      position: absolute;
      background-size: contain; }
      @media (min-width: 1920px) {
        .pdp-fabric-section .fabric-finder-products-plp .slick-prev::before {
          width: 22px;
          height: 41px; } }
  @media (min-width: 1280px) {
    .pdp-fabric-section .fabric-finder-products-plp .product-grid-fabric-finder-plp, .pdp-fabric-section .fabric-finder-products-plp .product-grid-fabric-finder-plp-no-carousel {
      margin: 0 36px 0 40px; } }
  @media (min-width: 1920px) {
    .pdp-fabric-section .fabric-finder-products-plp .product-grid-fabric-finder-plp, .pdp-fabric-section .fabric-finder-products-plp .product-grid-fabric-finder-plp-no-carousel {
      margin: 0 107px 0 104px; } }
  .pdp-fabric-section .fabric-finder-products-plp .desktop-show {
    display: none; }
    @media (min-width: 1280px) {
      .pdp-fabric-section .fabric-finder-products-plp .desktop-show {
        display: block; } }
  .pdp-fabric-section .fabric-finder-products-plp .mobile-show {
    display: block; }
    @media (min-width: 1280px) {
      .pdp-fabric-section .fabric-finder-products-plp .mobile-show {
        display: none; } }

.pdp-fabric-section .new-products-added-final .plp-page .filters-main, .pdp-fabric-section .new-products-added-final .plp-page #refinement-selections, .pdp-fabric-section .new-products-added-final .plp-page .filter-bar, .pdp-fabric-section .new-products-added-final .plp-page .clear-all, .pdp-fabric-section .new-products-added-final .plp-page .filter-sort-view {
  display: none !important; }

.pdp-fabric-section .new-products-added-final .plp-page .product-list__grid {
  margin-left: 0;
  width: 100%; }

.pdp-fabric-section .new-products-added-final .pagination-plp-clp, .pdp-fabric-section .new-products-added-final .plp__pagination {
  display: none !important; }

.pdp-fabric-section .new-products-added-final .fabric-finder-products-plp {
  display: block; }

.pdp-fabric-section .new-products-added-final .product-grid {
  display: none !important; }

.preference-disabled {
  pointer-events: none; }

.fabric-finder__preference.disable {
  background-color: #505050 !important;
  pointer-events: none; }

.clear-selections {
  display: none;
  margin: 30px 0 10px;
  text-transform: uppercase;
  font-family: 'Archivo-Medium';
  font-size: 12px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 1.48px;
  color: #7c7c7c;
  text-decoration: underline;
  cursor: pointer; }

.product-set__header {
  max-width: 81.5rem;
  margin: 0 auto;
  overflow: hidden; }
  @media (min-width: 769px) {
    .product-set__header {
      padding: 0 1.625rem; } }

@media (max-width: 768.98px) {
  .product-set__header-content {
    margin-top: 2.75rem;
    padding: 0 1rem; } }

@media (min-width: 769px) {
  .product-set__header-content,
  .product-set__header-primary-media {
    padding-top: 4rem; } }

@media (min-width: 769px) {
  .product-set__header-title {
    margin-bottom: .25em; } }

@media (max-width: 768.98px) {
  .product-set__header-title {
    margin-bottom: .5em; } }

@media (min-width: 769px) {
  .product-set__header-description {
    max-width: 23rem; } }

@media (min-width: 769px) {
  .product-set__header-third-media {
    margin-top: 1.875rem;
    padding-left: 1.25rem; } }

.product-set__header-links {
  margin-top: 2.25rem; }

.product-set__header-link:not(:last-child) {
  margin-bottom: 2rem; }

/* 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
\*------------------------------------*/
.carousel-plp-wrapper {
  padding-top: 4.25rem;
  padding-bottom: 5rem;
  background: #F6F6F6;
  color: #031e2f;
  position: relative;
  z-index: 1; }
  .pdp-recommendation .carousel-plp-wrapper {
    background-color: transparent; }

.plp-grid-carousel__title {
  font-size: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 22px;
  text-transform: capitalize; }
  @media (min-width: 769px) {
    .plp-grid-carousel__title {
      font-size: 28px;
      letter-spacing: 1px; } }

.plp-grid-carousel {
  max-width: 85.75rem;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 769px) {
  .plp-grid-carousel__item {
    margin-left: .875rem;
    margin-right: .875rem; } }

@media (max-width: 768.98px) {
  .plp-grid-carousel__item {
    margin-left: 1rem; } }

.plp-grid-carousel__item-name {
  font-size: .875rem;
  line-height: 1.71;
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: 1rem; }
  @media (min-width: 1200px) {
    .plp-grid-carousel__item-name {
      font-size: 1.25rem; } }
  @media (min-width: 769px) and (max-width: 991.98px) {
    .plp-grid-carousel__item-name {
      font-size: 1rem; } }

.home__2up--b {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 1024px) {
    .home__2up--b {
      width: 100%; } }
  @media (max-width: 543.98px) {
    .home__2up--b .featured-hotel__paragraph {
      display: none; } }
  .home__2up--b .main-2up--b {
    margin-bottom: 6rem; }
    @media (max-width: 768.98px) {
      .home__2up--b .main-2up--b {
        margin-bottom: 2rem; } }
    .home__2up--b .main-2up--b .wrapper__2up--b {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (max-width: 768.98px) {
        .home__2up--b .main-2up--b .wrapper__2up--b {
          display: block;
          height: 100%; } }
    .home__2up--b .main-2up--b .left {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
    .home__2up--b .main-2up--b .right {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
  .home__2up--b img {
    height: auto; }
    @media (max-width: 543.98px) {
      .home__2up--b img {
        max-height: 345px;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem; } }

.content--img {
  width: 50%; }
  @media (max-width: 768.98px) {
    .content--img {
      width: 100%;
      max-width: 680px;
      margin: 0 auto; } }
  .content--img .mobile {
    display: none; }
  @media (max-width: 543.98px) {
    .content--img .mobile {
      display: block; }
    .content--img .desktop {
      display: none; } }

.content--info {
  width: 50%;
  position: relative; }
  @media (min-width: 992px) {
    .content--info {
      padding-left: 9.375rem;
      padding-right: 9.375rem; } }
  @media (min-width: 769px) and (max-width: 991.98px) {
    .content--info {
      padding-left: 4.25rem;
      padding-right: 4.25rem; } }
  @media (max-width: 768.98px) {
    .content--info {
      position: static;
      width: 100%;
      padding-left: 1rem;
      padding-right: 1rem;
      margin-bottom: 3.75rem; } }
  .content--info p {
    color: #757575; }

@media (max-width: 768.98px) {
  .content--alignment {
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 1.75rem 0 2rem 0; } }

.featured-hotel__img-grid-heading {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: block; }

.featured-hotel__paragraph {
  margin-bottom: 1.5rem; }

.hotel-partner__no-line .line-animation {
  display: none; }

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

.collection-set .collection-set__item .quantity-select__container .quantity-select__label {
  top: 0;
  left: 5px;
  color: #212529; }


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