/**
 * Custom Gutters Mixin
 * This will create custom gutters for localized implentation.
 * Usage: Pass in a new gutter value and this will apply those to child grid classnames.
 *
 * - does not loop through breakpoints
 * - intended to be used in an already-defined media query or child structure
 *
 * param: $number new gutter value, already halved
 * param: $context 'container', 'row'. Used to skip the L1 or L2 classname selectors. Pass as an empty string to only apply to columns.
 * param: $colclassname custom classname to use for columns. Defaults to a generic '.col-' selector
 */
/* --------------------------------
Typography - Fonts
-------------------------------- */
.pull-left-xs {
  float: left;
}

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

@media (min-width: 600px) and (max-width: 1023.98px) {
  .pull-left-sm {
    float: left;
  }
  .pull-right-sm {
    float: right;
  }
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .pull-left-md {
    float: left;
  }
  .pull-right-md {
    float: right;
  }
}
@media (min-width: 1440px) and (max-width: 1759.98px) {
  .pull-left-lg {
    float: left;
  }
  .pull-right-lg {
    float: right;
  }
}
@media (min-width: 1760px) {
  .pull-left-xl {
    float: left;
  }
  .pull-right-xl {
    float: right;
  }
}
@media (max-width: 599.98px) {
  .hidden-xs-down {
    display: none !important;
  }
}

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

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

@media (max-width: 1759.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;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-beige {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #f5f5dc; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-beige.disabled {
  opacity: 0.2;
}

.swatch-filter-beige {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #f5f5dc; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #f5f5dc;
  display: block;
  position: relative;
}
.swatch-filter-beige.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-black {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #000; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-black.disabled {
  opacity: 0.2;
}

.swatch-filter-black {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #000; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #000;
  display: block;
  position: relative;
}
.swatch-filter-black.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-blue {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #0070d2; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-blue.disabled {
  opacity: 0.2;
}

.swatch-filter-blue {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #0070d2; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #0070d2;
  display: block;
  position: relative;
}
.swatch-filter-blue.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-brown {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #a52a2a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-brown.disabled {
  opacity: 0.2;
}

.swatch-filter-brown {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #a52a2a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #a52a2a;
  display: block;
  position: relative;
}
.swatch-filter-brown.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-green {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #008827; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-green.disabled {
  opacity: 0.2;
}

.swatch-filter-green {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #008827; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #008827;
  display: block;
  position: relative;
}
.swatch-filter-green.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-grey {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #8f979d; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-grey.disabled {
  opacity: 0.2;
}

.swatch-filter-grey {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #8f979d; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #8f979d;
  display: block;
  position: relative;
}
.swatch-filter-grey.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-navy {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #000080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-navy.disabled {
  opacity: 0.2;
}

.swatch-filter-navy {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #000080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #000080;
  display: block;
  position: relative;
}
.swatch-filter-navy.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-orange {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #ffa500; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-orange.disabled {
  opacity: 0.2;
}

.swatch-filter-orange {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #ffa500; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #ffa500;
  display: block;
  position: relative;
}
.swatch-filter-orange.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-pink {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fe249a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-pink.disabled {
  opacity: 0.2;
}

.swatch-filter-pink {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #fe249a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #fe249a;
  display: block;
  position: relative;
}
.swatch-filter-pink.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-purple {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #800080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-purple.disabled {
  opacity: 0.2;
}

.swatch-filter-purple {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #800080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #800080;
  display: block;
  position: relative;
}
.swatch-filter-purple.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-red {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #f00; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-red.disabled {
  opacity: 0.2;
}

.swatch-filter-red {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #f00; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #f00;
  display: block;
  position: relative;
}
.swatch-filter-red.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-white {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-white.disabled {
  opacity: 0.2;
}

.swatch-filter-white {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #fff;
  display: block;
  position: relative;
}
.swatch-filter-white.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-yellow {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #ff0; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-yellow.disabled {
  opacity: 0.2;
}

.swatch-filter-yellow {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #ff0; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #ff0;
  display: block;
  position: relative;
}
.swatch-filter-yellow.disabled {
  opacity: 0.2;
}

.swatch-circle-miscellaneous {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(130, 30, 145)), color-stop(25%, rgb(130, 30, 145)), color-stop(25%, rgb(237, 209, 52)), color-stop(50%, rgb(255, 255, 0)), color-stop(50%, rgb(237, 209, 52)), color-stop(50%, #59ba00), color-stop(76%, #59ba00), color-stop(76%, #111), to(#111)), -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(14, 92, 209)), color-stop(50%, rgb(14, 92, 209)), color-stop(50%, rgb(226, 11, 11)), to(rgb(226, 11, 11)));
  background: linear-gradient(0deg, rgb(130, 30, 145) 0, rgb(130, 30, 145) 25%, rgb(237, 209, 52) 25%, rgb(255, 255, 0) 50%, rgb(237, 209, 52) 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), linear-gradient(0deg, rgb(14, 92, 209) 0, rgb(14, 92, 209) 50%, rgb(226, 11, 11) 50%, rgb(226, 11, 11) 100%);
  background-repeat: repeat-y, repeat;
  background-size: 50% 100%, 100% 100%;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  border-radius: 1.25em;
  display: block;
  height: 2.5em;
  position: relative;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  width: 2.5em;
}
.swatch-circle-miscellaneous.disabled {
  opacity: 0.2;
}
.swatch-circle-miscellaneous.selected::after {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.product-detail .attributes .swatch-circle {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-right: 0.313em;
  position: relative;
}
.product-detail .attributes .swatch-circle.color-value[data-selected=true]::after {
  color: #000;
  content: "\f058";
  display: table-caption;
  font-family: FontAwesome, sans-serif;
  font-size: 1.625em;
  left: 0.295em;
  position: absolute;
}
.product-detail .attributes .swatch-circle.color-value.selected::after {
  background: #fff;
  border-radius: 50%;
  color: #000;
  content: "\f058";
  display: table-caption;
  font-family: FontAwesome, sans-serif;
  font-size: 1.625em;
  height: 0.75em;
  left: 0.31em;
  line-height: 0.8em;
  position: absolute;
  top: 0.35em;
  width: 0.8em;
}
.product-detail .attributes .swatch-circle i.fa-times-circle {
  background: #fff;
  border-radius: 50%;
  height: 0.75em;
  line-height: 0.8em;
  width: 0.8em;
}

.product-detail [disabled] .swatch-circle,
.product-detail .swatch-circle.unselectable {
  cursor: not-allowed;
}
.product-detail [disabled] .swatch-circle.color-value.selected::after,
.product-detail .swatch-circle.unselectable.color-value.selected::after {
  background-color: #495057;
}

.social-container {
  padding-top: 0.9375em;
  text-align: center;
}
.social-container .social-icons {
  text-decoration: none;
  font-size: 1.875em;
  list-style-type: none;
  padding: 0;
  color: #444;
}
@media (max-width: 1439.98px) {
  .social-container .social-icons {
    font-size: 1.5625em;
  }
}
.social-container .social-icons i,
.social-container .social-icons a {
  color: #444;
  padding-right: 0.2em;
}

label.color ~ a:hover {
  text-decoration: none;
}

.description-and-detail {
  margin-top: 2em;
}
@media (max-width: 599.98px) {
  .description-and-detail {
    margin-top: 0;
  }
  .description-and-detail .title {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-family: Dosis, sans-serif;
  }
  .description-and-detail > div:last-child {
    margin-bottom: 1em;
  }
}
@media (min-width: 600px) {
  .description-and-detail .description {
    margin-bottom: 2em;
  }
}
@media (max-width: 599.98px) {
  .description-and-detail .content {
    margin-top: 1em;
  }
}

label.availability {
  padding-right: 0.3125em;
}

@media (min-width: 600px) {
  .product-number-rating {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 1024px) {
  .product-number-rating {
    border-top: 1px solid #ccc;
  }
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .product-name {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 600px) {
  .product-number-rating .ratings {
    margin-top: 0.625em;
  }
}
@media (max-width: 599.98px) {
  .product-number-rating .ratings {
    background-color: #fff;
    margin-top: -1.875em; /* 30/16 */
    margin-right: -0.9375em; /* 15/16 */
    padding: 0.1875em; /* 3/16 */
  }
}

.product-number {
  color: #ccc;
  font-size: 0.875em;
  padding-bottom: 0.938em;
  padding-top: 0.938em;
}

.promotions {
  font-weight: normal;
  text-align: center;
  height: 85%;
}
.promotions div.collapsible-xl button.callout {
  font-size: 1.25em;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  color: #c00;
}
@media (min-width: 600px) {
  .promotions div.collapsible-xl button.callout {
    font-size: 1.375em;
  }
}
.promotions div.collapsible-xl button.callout::after {
  color: #000;
}

.product-breadcrumb .breadcrumb {
  border-bottom: none;
  margin-left: -1rem;
  margin-bottom: 0;
}
@media (max-width: 1439.98px) {
  .product-breadcrumb .breadcrumb {
    border-top: 1px solid #d0d0d0;
  }
}

.price {
  font-size: 1.5rem;
}

.product-options {
  margin-top: 1.25em;
}

.size-chart .size-chart-collapsible {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
          transition-timing-function: cubic-bezier(0, 1, 0, 1);
}
.size-chart .size-chart-collapsible.active {
  max-height: 100%;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.color-attribute {
  border: none;
  padding: 0;
  background: none;
}

.non-input-label {
  display: block;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .attributes {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (max-width: 599.98px) {
  .product-grid {
    padding-top: 0.938em;
  }
  .product-grid .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.product-videoDescription iframe {
  max-width: 100%;
  width: 100% !important;
  max-height: 9.5625rem;
  border: 0;
}
@media (min-width: 600px) {
  .product-videoDescription iframe {
    max-height: 19.1875rem;
  }
}
@media (min-width: 1024px) {
  .product-videoDescription iframe {
    max-height: 29.1875rem;
  }
}
.product-videoDescription .modal-body {
  padding: 0.1875rem 0.1875rem 0;
  position: relative;
  padding: 0.25rem 0.25rem 0;
}
@media (min-width: 1024px) {
  .product-videoDescription .modal-body {
    padding: 0.5rem 0.5rem 0.25rem;
  }
}
.product-videoDescription .modal-body button.close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 1;
}
.product-videoDescription .modal-body button.close .close-small-filled-white-x {
  width: 1.5rem;
  height: 1.5rem;
}
.product-videoDescription .modal-body button.close:focus {
  outline-color: #fff;
  opacity: 1;
}
.product-videoDescription .modal-content {
  border-radius: 0;
}
.product-videoDescription .modal-footer {
  padding: 0;
}
.product-videoDescription .modal-footer a {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  font-size: 0.75rem;
  line-height: 16px;
}
.product-videoDescription .modal-footer a:focus {
  margin: 0 auto 0.625rem 0.625rem;
  position: static;
  height: auto;
  width: auto;
  color: #000;
  text-decoration: underline;
  border: 3px dotted currentColor;
}
@media (min-width: 600px) {
  .product-videoDescription .modal-footer a {
    font-size: 1rem;
    line-height: 24px;
  }
}
.product-videoDescription .modal-dialog {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
@media (min-width: 600px) {
  .product-videoDescription .modal-dialog {
    max-width: 37rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .product-videoDescription .modal-dialog {
    max-width: 56.625rem;
  }
}

.product-videoDescription.show + .modal-backdrop.show {
  opacity: 0;
}

.product-detail {
  /* .recommendations {
      .product-item {
          .tile-badge {
              z-index: 0;
          }
      }
  } */
  /* PDP Recommendations */
}
@media (max-width: 1024px) and (min-width: 600px) {
  .product-detail .product-details-wrapper {
    padding-left: 0.375rem;
  }
  .product-detail .product-attributes-wrapper {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
}
.product-detail .product-details-wrapper {
  position: relative;
}
@media (max-width: 1023.98px) {
  .product-detail .product-details-wrapper {
    padding: 0 !important;
  }
}
@media (min-width: 1024px) {
  .product-detail .product-details-wrapper {
    margin-left: 0.3125rem;
  }
}
@media (min-width: 1440px) {
  .product-detail .product-details-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 1023.98px) {
  .product-detail .prodDetails {
    padding: 0 4.4375rem 0 1rem;
    width: 20rem;
    margin: 0 auto;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .product-detail .prodDetails {
    padding: 0 18.8125rem 0 4.125rem;
    width: 36.375rem;
    position: relative;
    left: -0.5rem;
  }
}
.product-detail .attributes {
  margin: 0 auto;
  max-width: 17.3125rem;
}
@media (min-width: 600px) {
  .product-detail .attributes {
    margin-top: 0.1875rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .attributes {
    margin: 0;
  }
}
.product-detail .attributes div[data-attr=width] {
  position: relative;
  min-width: 18.0625rem;
}
.product-detail .attributes div[data-attr=color] {
  min-width: 18.0625rem;
}
@media (min-width: 600px) {
  .product-detail .attributes div[data-attr=color] {
    min-width: 19.0625rem;
  }
}
.product-detail .attributes div[data-attr=color] .attribute {
  display: block;
}
.product-detail .attributes div[data-attr=size] {
  min-width: 18.0625rem;
}
@media (min-width: 1024px) {
  .product-detail .product-attributes-wrapper {
    max-width: 18.875rem;
  }
}
@media (min-width: 1440px) {
  .product-detail .product-attributes-wrapper {
    max-width: 24.5625rem;
  }
}
.product-detail .thumbnail-more {
  font-size: 1rem;
  color: #000;
  line-height: 24px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .moreImages {
  background-size: contain !important;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.product-detail .moreImages::before {
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.6;
}
.product-detail .moreImages:focus {
  outline-offset: 0.0625rem;
}
.product-detail .moreImages-number {
  z-index: 0;
  color: #fff;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
  font-weight: 400;
}
.product-detail .width-one-value {
  position: absolute;
  top: 0.25rem;
  left: 2.1875rem;
}
.product-detail .width-one-value.left-value {
  left: 3rem;
}
.product-detail .main-image {
  position: relative;
}
.product-detail .main-image > img {
  width: 100%;
}
@media (min-width: 1024px) {
  .product-detail .main-image > img {
    max-width: 30.3125rem;
    max-height: 30.3125rem;
  }
}
@media (min-width: 1440px) {
  .product-detail .main-image > img {
    max-width: 38.5625rem;
    max-height: 38.5625rem;
  }
}
.product-detail .pdp-badge {
  position: absolute;
  top: 0.25rem;
  margin: 0 auto;
  z-index: 1;
  left: 0;
  right: 0;
  width: 18rem;
}
.modal-open .product-detail .pdp-badge, .minicart-visible .product-detail .pdp-badge {
  z-index: 0;
}
@media (min-width: 1024px) {
  .product-detail .pdp-badge {
    margin: 0;
    left: 0;
    width: 100%;
    top: 0.625rem;
    max-width: 30.3125rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .product-detail .pdp-badge {
    padding-left: 0;
    padding-right: 0.3125rem;
    max-width: 38.5625rem;
  }
}
@media (min-width: 1760px) {
  .product-detail .pdp-badge {
    max-width: 41.6875rem;
  }
}
.product-detail .pdp-badge .badge-sec {
  margin-left: auto;
  display: block;
  -webkit-transform: scale(0.38);
          transform: scale(0.38);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
@media (min-width: 600px) {
  .product-detail .pdp-badge .badge-sec {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.product-detail .attribute {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-detail .attribute button {
  display: block;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.product-detail .attribute button[aria-pressed=true] {
  font-weight: bold;
}
.product-detail .attribute button.color-attribute {
  line-height: 0;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
}
.product-detail .attribute button.color-attribute:focus {
  outline-offset: 0;
}
.product-detail .attribute button.color-attribute.selected {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-detail .attribute button img.swatch-value {
  margin-right: 0;
}
.product-detail .attribute .attribute-name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.product-detail .attribute ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-detail .mobile-images {
  position: relative;
}
.product-detail .mobile-images .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 0.625rem;
}
@media (max-width: 1024px) and (min-width: 600px) {
  .product-detail .mobile-images .slick-dots {
    padding-top: 0.5rem;
    max-width: 93vw;
    margin-bottom: -1.1875rem;
  }
}
.product-detail .mobile-images .slick-dots li {
  background-color: transparent;
  border-top: 0;
  border-bottom: 0;
  margin: 0 0 3%;
  opacity: 1;
}
.product-detail .mobile-images .slick-dots li,
.product-detail .mobile-images .slick-dots li button:not(.video-control-mobile) {
  height: 1.5rem;
  width: 1.5rem;
}
.product-detail .mobile-images .slick-dots li button:not(.video-control-mobile) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 16;
  -webkit-appearance: none; /* stylelint-disable-line property-no-vendor-prefix */
  padding: 0.375rem;
  outline-offset: -0.1875rem;
  font-size: 0%;
}
.product-detail .mobile-images .slick-dots li button:not(.video-control-mobile):focus {
  outline: 0.1875rem dotted currentColor;
}
.product-detail .mobile-images .slick-dots li button:not(.video-control-mobile)::after {
  content: "";
  height: 0.75rem;
  width: 0.75rem;
  background-color: #717171;
  border: 0.125rem solid #717171;
  outline-offset: 0.0625rem;
  display: block;
}
.product-detail .mobile-images .slick-dots li button:not(.video-control-mobile), .product-detail .mobile-images .slick-dots li button:not(.video-control-mobile)::after {
  border-radius: 50%;
}
.product-detail .mobile-images .slick-dots li button:not(.video-control-mobile) [aria-hidden=true] {
  display: none;
}
.product-detail .mobile-images .slick-dots li.slick-active button:not(.video-control-mobile)::after {
  background-color: #fff;
  border: 0.125rem solid #717171;
}
.product-detail .mobile-images .slick-dots li.video-item {
  margin-left: 0.5rem;
  background-color: transparent;
  opacity: 1;
  min-width: 3.75rem;
}
.product-detail .mobile-images .slick-dots li.video-item img {
  font-size: 0.625rem;
  width: 1rem;
  margin-top: -0.1875rem;
}
.product-detail .mobile-images .slick-dots li.video-item button {
  height: 1.125rem;
}
.product-detail .mobile-images .slick-dots li .video-text {
  font-size: 0.75rem;
}
.product-detail .mobile-images .slick-dots button {
  font-size: 0;
  height: 100%;
}
.product-detail .mobile-images .slick-dots button:focus {
  outline-offset: 0.0625rem;
  outline-color: #000;
}
.product-detail .mobile-images .slick-slide {
  padding: 0 0.625rem;
}
@media (min-width: 600px) and (max-width: 1024px) {
  .product-detail .mobile-images .carousel-item .img-fluid {
    max-width: 25rem;
    max-height: 25rem;
  }
}
.product-detail .mobile-images .carousel-inner-wrapper {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .product-detail .mobile-images .primary-images {
    padding: 0;
  }
}
.product-detail .pdp-thumbnail {
  max-height: 33.75rem;
  max-width: 6.75rem;
}
.product-detail .pdp-thumbnail button {
  padding: 0;
}
.product-detail .pdp-thumbnail-inner {
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1.75rem;
}
.product-detail .pdp-thumbnail-inner.active {
  border: 1px solid #717171;
}
.product-detail .pdp-thumbnail-inner:focus {
  outline-offset: 0.0625rem;
}
.product-detail .pdp-thumbnail-inner .img-fluid {
  max-height: 100%;
}
.product-detail .pdp-thumbnail-inner .video {
  width: 1.75rem;
}
.product-detail .product-number {
  font-size: 0.875rem;
  color: #717171;
  line-height: 20px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .availibility-container {
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
}
@media (min-width: 600px) {
  .product-detail .availibility-container {
    margin-top: 0.0625rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .availibility-container {
    margin: -0.125rem 0 0 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .pdp-attributes {
    padding-left: 1.8125rem !important;
  }
}
@media (min-width: 1440px) {
  .product-detail .pdp-attributes {
    padding-left: 6.4375rem !important;
    margin-top: 0.3125rem;
  }
}
.product-detail .pdp-selected-color,
.product-detail .attribute-name,
.product-detail .width-one-value {
  font-weight: 700;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .color-name {
  display: block;
  margin-top: -0.0625rem;
}
.product-detail .pdp-selected-color {
  margin-bottom: 0.5rem;
}
.product-detail .color-attribute .swatch-value {
  border-radius: unset;
  background-repeat: no-repeat;
  background-size: cover;
  width: 2.5rem;
  height: 2.5rem;
  border-color: #f5f5f5;
}
@media (min-width: 1024px) {
  .product-detail .color-attribute .swatch-value {
    width: 3rem;
    height: 3rem;
  }
}
.product-detail .color-attribute .swatch-value.color-value {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.product-detail .color-attribute .swatch-value.color-value.selected {
  border: 3px solid #000;
  margin-top: -0.125rem;
}
.product-detail .color-attribute .swatch-value.color-value.selected::after {
  content: none;
}
.product-detail .color-attribute .swatch-value.color-value.unselectable {
  opacity: 0.5;
}
.product-detail .color-attribute.unselectable {
  pointer-events: none;
}
.product-detail .size-attribute,
.product-detail .width-attribute,
.product-detail .accessorySize-attribute {
  height: 2.25rem;
  width: 2.25rem;
  max-width: 2.25rem;
  position: relative;
  z-index: 1;
  padding: 0;
}
.modal-open .product-detail .size-attribute, .minicart-visible .product-detail .size-attribute,
.modal-open .product-detail .width-attribute,
.minicart-visible .product-detail .width-attribute,
.modal-open .product-detail .accessorySize-attribute,
.minicart-visible .product-detail .accessorySize-attribute {
  z-index: 0;
}
.product-detail .size-attribute.unselectable[disabled],
.product-detail .width-attribute.unselectable[disabled],
.product-detail .accessorySize-attribute.unselectable[disabled] {
  pointer-events: none;
  opacity: 1;
}
.product-detail .size-attribute.unselectable[disabled] .swatch-line1,
.product-detail .width-attribute.unselectable[disabled] .swatch-line1,
.product-detail .accessorySize-attribute.unselectable[disabled] .swatch-line1 {
  background: linear-gradient(to top right, transparent calc(50% - 1px), #000, transparent calc(50% + 1px));
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -0.0625rem;
  right: -0.0625rem;
  z-index: 1;
}
.product-detail .size-attribute.unselectable[disabled] .swatch-line2,
.product-detail .width-attribute.unselectable[disabled] .swatch-line2,
.product-detail .accessorySize-attribute.unselectable[disabled] .swatch-line2 {
  background: linear-gradient(to top left, transparent calc(50% - 1px), #000 50%, transparent calc(50% + 1px));
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -0.0625rem;
  right: -0.0625rem;
  z-index: 1;
}
.product-detail .size-attribute.unselectable[disabled] .swatch-text,
.product-detail .width-attribute.unselectable[disabled] .swatch-text,
.product-detail .accessorySize-attribute.unselectable[disabled] .swatch-text {
  background: inherit;
  display: block;
  z-index: 2;
  position: relative;
  line-height: 1rem;
}
.product-detail .size-attribute.unselectable.selected[disabled],
.product-detail .width-attribute.unselectable.selected[disabled],
.product-detail .accessorySize-attribute.unselectable.selected[disabled] {
  background-color: #717171;
  color: #fff;
  border-color: #717171;
}
.product-detail .size-attribute.unselectable.selected[disabled] .swatch-line1,
.product-detail .width-attribute.unselectable.selected[disabled] .swatch-line1,
.product-detail .accessorySize-attribute.unselectable.selected[disabled] .swatch-line1 {
  background: linear-gradient(to top right, transparent calc(50% - 1px), #fff, transparent calc(50% + 1px));
}
.product-detail .size-attribute.unselectable.selected[disabled] .swatch-line2,
.product-detail .width-attribute.unselectable.selected[disabled] .swatch-line2,
.product-detail .accessorySize-attribute.unselectable.selected[disabled] .swatch-line2 {
  background: linear-gradient(to top left, transparent calc(50% - 1px), #fff 50%, transparent calc(50% + 1px));
}
.product-detail .attribute-name {
  text-transform: uppercase;
}
.product-detail .quantity {
  display: none;
}
.product-detail .product-name {
  word-break: break-word;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
@media (min-width: 1024px) {
  .product-detail .product-name {
    font-size: 1.75rem;
    line-height: 36px;
  }
}
.product-detail .product-attributes-wrapper .regular-price,
.product-detail .product-attributes-wrapper .sale-price,
.product-detail .product-attributes-wrapper .range,
.product-detail .product-attributes-wrapper .range .sale-price {
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .product-detail .product-attributes-wrapper .regular-price,
  .product-detail .product-attributes-wrapper .sale-price,
  .product-detail .product-attributes-wrapper .range,
  .product-detail .product-attributes-wrapper .range .sale-price {
    font-size: 1.5rem;
    line-height: 32px;
  }
}
.product-detail .product-attributes-wrapper .sale-price {
  font-weight: bold;
  display: inline-block;
  color: #c20f2f;
  font-size: 1.25rem;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .product-detail .product-attributes-wrapper .sale-price {
    font-size: 1.5rem;
    line-height: 32px;
  }
}
.product-detail .product-attributes-wrapper .price {
  line-height: 1;
}
.product-detail .product-attributes-wrapper .sales {
  display: inline-block;
  line-height: 1;
}
.product-detail .product-attributes-wrapper .sale-price-group {
  display: inline-block;
  line-height: 1;
}
.product-detail .product-attributes-wrapper .strike-through-container {
  display: inline-block;
  line-height: 1;
}
.product-detail .product-attributes-wrapper .strike-through {
  color: #717171;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .product-detail .product-attributes-wrapper .strike-through {
    font-size: 1.25rem;
    line-height: 28px;
  }
}
.product-detail .product-attributes-wrapper .regular-price,
.product-detail .product-attributes-wrapper .range {
  color: #000;
}
.product-detail .product-attributes-wrapper .range .sale-price {
  color: #c20f2f;
}
.product-detail .product-attributes-wrapper .color-name {
  font-size: 1rem;
  color: #717171;
  line-height: 24px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
}
.product-detail .ruler {
  width: 1rem;
  height: 1rem;
  fill: #000;
  margin-left: -1.625rem;
}
@media (min-width: 600px) {
  .product-detail .ruler {
    margin-left: -1rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .ruler {
    margin-left: -0.8125rem;
  }
}
.product-detail .size-chart {
  max-width: 18.125rem;
  padding-right: 0;
  margin-top: 0.5rem;
  line-height: 0;
  margin-bottom: 0.1875rem;
  margin-left: 0.6875rem;
}
@media (min-width: 600px) {
  .product-detail .size-chart {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .size-chart {
    margin-bottom: -0.3125rem;
    margin-left: 0;
  }
}
.product-detail .size-chart #widthschart td,
.product-detail .size-chart #sizeschart td {
  text-align: left;
  padding: 0.5rem 1rem;
  font-weight: 300;
  font-size: 1rem;
  color: #000;
  line-height: 24px;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
.product-detail .size-chart #widthschart td strong,
.product-detail .size-chart #sizeschart td strong {
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
}
.product-detail .size-chart ul.sizechart__list {
  padding: 1.5rem 0 1.5rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  text-align: left;
}
.product-detail .size-chart ul.sizechart__list li {
  margin-bottom: 1rem;
}
.product-detail .size-chart ul.sizechart__list li:last-child {
  margin-bottom: 0;
}
.product-detail .size-chart ul.sizechart__list a {
  color: #c20f2f;
  text-decoration: underline;
}
.product-detail .size-chart .size-chart-button {
  display: inline-block;
  text-decoration: underline;
  text-transform: uppercase;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  font-weight: 400;
  font-size: 0.75rem;
  color: #000;
  line-height: 16px;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
}
.product-detail .size-chart .guide-header {
  background-color: #f5f5f5;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-detail .size-chart .close {
  fill: #000;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}
.product-detail .size-chart .close-guide {
  padding-right: 0.75rem;
}
.product-detail .size-chart .sizecharttable {
  margin-bottom: 0;
}
.product-detail .size-chart .size-chart-collapsible {
  display: none;
}
.product-detail .size-chart .size-chart-collapsible.active {
  display: block;
}
.product-detail .range .sale-price {
  font-size: 1.5rem;
  color: #717171;
  line-height: 32px;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
}
.product-detail .prices-add-to-cart-actions {
  position: unset;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 1.4375rem 0 0 -0.0625rem;
}
@media (min-width: 600px) {
  .product-detail .prices-add-to-cart-actions {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .product-detail .prices-add-to-cart-actions {
    margin-top: 2rem;
  }
}
.product-detail .find-retailer {
  line-height: 1;
  width: 100%;
}
.product-detail .add-to-cart {
  margin-right: 0.0625rem;
}
@media (min-width: 1024px) {
  .product-detail .add-to-cart {
    width: 17.25rem;
  }
}
.product-detail .add-to-cart {
  width: 13.5625rem;
  padding-left: 0;
  padding-right: 0;
}
.product-detail .add-to-cart:disabled {
  color: #717171;
  border-color: #717171;
  opacity: 1;
}
@media (min-width: 1024px) {
  .product-detail .add-to-cart {
    min-width: 13.5625rem;
  }
}
.product-detail .add-to-wish-list {
  width: 3.625rem;
  height: 3rem;
}
.product-detail .message-and-availibility-wrapper {
  margin: -0.375rem 0 0 0.25rem;
}
@media (min-width: 1024px) {
  .product-detail .message-and-availibility-wrapper {
    margin: -0.1875rem 0 0 0.0625rem;
  }
}
.product-detail .social-container {
  padding-top: 1rem;
  margin-right: -0.8125rem;
}
@media (min-width: 600px) {
  .product-detail .social-container {
    padding-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .social-container {
    margin-right: -1rem;
  }
}
.product-detail .social-container li {
  line-height: 0;
}
.product-detail .social-container li a {
  display: inline-block;
  line-height: 0;
  padding-right: 0;
}
.product-detail .wishlist-message {
  line-height: 0;
}
.product-detail .wishlist-message span {
  display: inline-block;
  margin-top: 0.375rem;
}
.product-detail .wishlist-message span::before {
  content: "";
  position: absolute;
  left: -1.0625rem;
  width: 0.875rem;
  top: 0.125rem;
  bottom: 0;
}
.product-detail .wishlist-message span::first-letter {
  text-transform: uppercase;
}
.product-detail .wishlist-message.wishlist-success, .product-detail .wishlist-message.wishlist-error {
  margin-bottom: 0.125rem;
  font-size: 0.875rem;
  line-height: 18px;
}
.product-detail .wishlist-message.wishlist-success {
  color: #417505;
}
.product-detail .wishlist-message.wishlist-success span::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23417505' fill-rule='evenodd'%3E%3Cpath d='m12 0c6.627417 0 12 5.372583 12 12s-5.372583 12-12 12-12-5.372583-12-12 5.372583-12 12-12zm0 2c-5.5228475 0-10 4.4771525-10 10s4.4771525 10 10 10 10-4.4771525 10-10-4.4771525-10-10-10zm7.0156098 4.57017667 1.4142135 1.41421356-9.4298233 9.42982337-1.41421356-1.4142136-4-4 1.41421356-1.4142136 3.999 3.9992136z'%3E%3C/path%3E%3C/svg%3E") top/contain no-repeat;
}
.product-detail .wishlist-message.wishlist-error {
  color: #d0021b;
}
.product-detail .wishlist-message.wishlist-error span::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23d0021b' fill-rule='evenodd'%3E%3Cpath d='m12 0c6.627417 0 12 5.372583 12 12s-5.372583 12-12 12-12-5.372583-12-12 5.372583-12 12-12zm0 2c-5.5228475 0-10 4.4771525-10 10s4.4771525 10 10 10 10-4.4771525 10-10-4.4771525-10-10-10zm4.8994949 3.58578644 1.4142136 1.41421356-4.9497085 4.95 4.9497085 4.9494949-1.4142136 1.4142136-4.9504949-4.9497085-4.949 4.9497085-1.41421356-1.4142136 4.94921356-4.9504949-4.94921356-4.949 1.41421356-1.41421356 4.949 4.94921356z'%3E%3C/path%3E%3C/svg%3E") top/contain no-repeat;
}
.product-detail .wishlist-inactive-no-border {
  fill: currentColor;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: -0.125rem;
  margin-top: -0.0625rem;
}
.product-detail .wishlist-active-no-border {
  fill: currentColor;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: -0.125rem;
  margin-top: -0.0625rem;
}
.product-detail .width-errorMessage,
.product-detail .size-errorMessage {
  color: #d0021b;
  display: block;
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  line-height: 20px;
}
.product-detail .width-errorMessage.errorMessage-added,
.product-detail .size-errorMessage.errorMessage-added {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-right: 0.75rem;
  min-width: 18.125rem;
  margin: -0.125rem 0 1.875rem 0;
}
.product-detail .width-errorMessage.errorMessage-added::before,
.product-detail .size-errorMessage.errorMessage-added::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23d0021b' fill-rule='evenodd'%3E%3Cpath d='m12 0c6.627417 0 12 5.372583 12 12s-5.372583 12-12 12-12-5.372583-12-12 5.372583-12 12-12zm0 2c-5.5228475 0-10 4.4771525-10 10s4.4771525 10 10 10 10-4.4771525 10-10-4.4771525-10-10-10zm4.8994949 3.58578644 1.4142136 1.41421356-4.9497085 4.95 4.9497085 4.9494949-1.4142136 1.4142136-4.9504949-4.9497085-4.949 4.9497085-1.41421356-1.4142136 4.94921356-4.9504949-4.94921356-4.949 1.41421356-1.41421356 4.949 4.94921356z'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  left: 0;
  width: 0.9375rem;
  top: 0.1875rem;
  bottom: 0;
  background-position: top;
}
.product-detail .width-errorMessage:focus,
.product-detail .size-errorMessage:focus {
  outline-style: dotted !important;
  outline-width: 0.1875rem !important;
}
.product-detail .promotion-message,
.product-detail .final_sale {
  font-weight: 700;
  font-size: 1.125rem;
  color: #c20f2f;
  line-height: 24px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .promotions .promotion-message {
  margin: 1.5rem 0 0 0;
}
.product-detail .promotions .content a {
  text-decoration: underline;
}
.product-detail .promotions .content a, .product-detail .promotions .content a:focus, .product-detail .promotions .content a:hover {
  color: unset;
}
.product-detail .promotions .collapsible-xl .title {
  padding: 0;
  margin: -0.0625rem 0 0 0;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  text-transform: capitalize;
}
.product-detail .promotions .collapsible-xl .title::after {
  content: "";
}
.product-detail .promotions .collapsible-xl .title:hover {
  text-decoration: underline;
}
.product-detail .promotions .collapsible-xl .title:focus {
  outline: 0.1875rem dotted #000;
}
.product-detail .promotions .collapsible-xl .value {
  display: none;
}
.product-detail .promotions .collapsible-xl.active .title::after {
  content: "";
}
.product-detail .promotions .collapsible-xl.active .title::before {
  content: "Close";
}
.product-detail .promotions .collapsible-xl.active .value {
  display: block;
  margin: 0.3125rem 0 0 0;
  padding: 0 1rem;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
}
.product-detail .sizinginformation {
  border: 0.0625rem solid #717171;
}
.product-detail .sizinginformation td {
  border-top: 0;
  color: #000;
  font-weight: 300;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
  padding: 0.0125rem;
  font-size: 0.875rem;
  line-height: 26px;
}
.product-detail .sizinginformation .table-striped tbody tr:nth-of-type(odd) {
  background-color: #f5f5f5;
}
.product-detail .sizinginformation tr:first-child th {
  padding: 0.75rem;
  border-top: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  line-height: 24px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .sizinginformation .nav-tabs {
  padding: 1.25rem 1rem 0.125rem 1rem;
}
.product-detail .sizinginformation .nav-tabs .nav-item {
  width: 50%;
}
.product-detail .sizinginformation .nav-link {
  text-decoration: none;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  line-height: 24px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .sizinginformation .nav-link.active span {
  border-bottom: 4px solid #c20f2f;
  padding-inline: 0.1875rem;
  font-weight: 700;
}
.product-detail .sizinginformation .sizechart {
  overflow-x: auto;
}
.product-detail .sizing-title {
  font-weight: 700;
  padding: 0.75rem 0rem 0.75rem 1rem;
  position: relative;
  text-align: left;
  margin-bottom: 0;
  font-size: 1.125rem;
  color: #000;
  line-height: 24px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .description-and-detail {
  background-color: #f5f5f5;
}
.product-detail .description-and-detail .collapsible-sm {
  border-top: 1px solid #4a4a4a;
}
.product-detail .description-and-detail .collapsible-sm .content {
  display: none;
}
.product-detail .description-and-detail .collapsible-sm.active .content {
  display: block;
}
.product-detail .description-and-detail .collapsible-sm .title {
  position: relative;
  padding: 0.875rem 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
@media (min-width: 600px) {
  .product-detail .description-and-detail .collapsible-sm .title {
    padding: 0.6875rem 1rem 1rem 1.6875rem;
  }
}
.product-detail .description-and-detail .collapsible-sm .title::after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23575757' fill-rule='evenodd'%3E%3Cpath d='m12.2727273 4c.4016616 0 .7272727.32561109.7272727.72727273v6.27272727h6.2727273c.4016616 0 .7272727.3256111.7272727.7272727v.5454546c0 .4016616-.3256111.7272727-.7272727.7272727h-6.2737273l.001 6.2727273c0 .4016616-.3256111.7272727-.7272727.7272727h-.5454546c-.4016616 0-.7272727-.3256111-.7272727-.7272727l-.001-6.2727273h-6.27172727c-.40166164 0-.72727273-.3256111-.72727273-.7272727v-.5454546c0-.4016616.32561109-.7272727.72727273-.7272727h6.27272727v-6.27272727c0-.40166164.3256111-.72727273.7272727-.72727273z'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  right: 1rem;
  width: 1.5rem;
  top: 0;
  bottom: 0;
}
.product-detail .description-and-detail .collapsible-sm .value {
  font-size: 1rem;
  color: #000;
  line-height: 24px;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
}
.product-detail .description-and-detail .collapsible-sm .value strong {
  font-weight: 700;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .description-and-detail .collapsible-sm .content {
  margin-top: 1.5rem;
}
.product-detail .description-and-detail .collapsible-sm.active {
  padding-bottom: 2.5rem;
}
.product-detail .description-and-detail .collapsible-sm.active .title::after {
  background: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' fill='%23575757' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect height='2' rx='1' width='17' x='4' y='11'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (min-width: 600px) {
  .product-detail .description-and-detail .collapsible-sm.active {
    padding-bottom: 2.0625rem;
  }
}
.product-detail .description-and-detail .nav-link.active .title {
  border-bottom: 4px solid #c20f2f;
}
.product-detail .description-and-detail .nav-link .title {
  font-size: 1.5rem;
  color: #000;
  line-height: 32px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
}
.product-detail .description-and-detail .nav-link:hover, .product-detail .description-and-detail .nav-link:focus {
  background-color: transparent;
}
.product-detail .description-and-detail .tab-content {
  padding-top: 3.25rem;
}
.product-detail .description-and-detail .tab-content .tab-pane {
  scroll-margin-top: 4rem;
}
.product-detail .description-and-detail .tab-content .value {
  font-size: 1.125rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT", "TradeGothicLT-fallback", sans-serif;
}
.product-detail .description-and-detail .tab-content .value strong {
  font-weight: 700;
}
.product-detail .description-and-detail .tab-content .features-content {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
.product-detail .description-and-detail .tab-content .features-content strong {
  font-weight: 700;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
@media (min-width: 1440px) {
  .product-detail .description-and-detail .tab-content {
    padding-top: 3.0625rem;
  }
}
.product-detail .description-and-detail ol {
  list-style-position: inside;
}
.product-detail .description-and-detail .tabs-container {
  max-width: 56.75rem;
  margin: 0 auto;
  padding-bottom: 0.3125rem;
}
.product-detail .description-and-detail .features-content {
  overflow: hidden;
}
.product-detail .description-and-detail .features-content .pdp-features-icon svg {
  height: 3.125rem;
  width: 3.125rem;
  fill: #000;
}
.product-detail .description-and-detail .features-content .row {
  margin-bottom: 2.25rem;
}
@media (min-width: 1024px) {
  .product-detail .description-and-detail .features-content .row {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .description-and-detail {
    padding-bottom: 5.875rem !important;
  }
}
.product-detail .pinterest,
.product-detail .facebook,
.product-detail .twitter,
.product-detail .share-link {
  fill: #000;
  margin-right: 0.375rem;
  margin-left: 0.375rem;
}
.product-detail .pinterest {
  height: 1.60875rem;
  width: 1.613125rem;
}
.product-detail .facebook {
  height: 1.546875rem;
  width: 1.55125rem;
}
.product-detail .twitter {
  height: 1.546875rem;
  width: 1.55125rem;
}
.product-detail .share-link {
  height: 1.546875rem;
  width: 1.55125rem;
}
.product-detail .product-images {
  max-width: 100%;
}
@media (max-width: 1439.98px) {
  .product-detail .star-filled,
  .product-detail .star-half,
  .product-detail .star-empty {
    width: 1.25rem;
    height: 1.25rem;
  }
  .product-detail .product-number-rating {
    margin-bottom: 1.5rem;
  }
}
.product-detail #nav-shoeCare .value {
  max-width: 55.625rem;
}
@media (min-width: 1024px) {
  .product-detail #nav-shoeCare .value {
    padding-top: 0.1875rem;
  }
  .product-detail #nav-shoeCare .value .shoe-care-content {
    margin-top: 3.5625rem !important;
  }
  .product-detail #nav-shoeCare .value .mt-3.mt-sm-7 {
    margin-top: 3.75rem !important;
  }
}
.product-detail .shoe-care-wrapper {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
.product-detail .shoe-care-wrapper img {
  max-width: 6rem;
}
.product-detail .shoe-care-wrapper .video-container {
  margin-bottom: 2.125rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
@media (min-width: 600px) {
  .product-detail .shoe-care-wrapper .video-container {
    margin-bottom: 3.0625rem;
  }
}
.product-detail .shoe-care-wrapper iframe,
.product-detail .shoe-care-wrapper video {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}
.product-detail .shoe-care-wrapper a.video__audioDesc {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.product-detail .shoe-care-wrapper a.video__audioDesc:focus {
  margin: 0;
  position: static;
  height: auto;
  width: auto;
}
.product-detail .shoe-care-wrapper .shoe-care-list-heading {
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .product-detail .shoe-care-wrapper .shoe-care-list-heading {
    margin-bottom: -0.3125rem;
  }
}
.product-detail .shoe-care-wrapper .shoe-care-list + p {
  margin: 1.5rem 0 0 0;
}
.product-detail .shoe-care-wrapper .shoe-care-list strong {
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
.product-detail .shoe-care-wrapper .bootCare__link {
  line-height: 1.5;
  margin: 2.5625rem auto -0.9375rem auto;
  max-width: 46.4rem;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
}
.product-detail .shoe-care-wrapper .bootCare__link a {
  color: #000;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .product-detail .shoe-care-wrapper .bootCare__link {
    margin-left: 9.6875rem;
    max-width: 65.5rem;
  }
}
@media (max-width: 1023.98px) {
  .product-detail .shoe-care-wrapper .row {
    margin-bottom: 2.4375rem;
  }
  .product-detail .shoe-care-wrapper .row:last-child {
    margin-bottom: 0;
  }
}
.product-detail .product-description,
.product-detail .product-details {
  display: inline-block;
}
@media (min-width: 1024px) {
  .product-detail .product-details {
    padding-left: 1.125rem;
  }
}
@media (min-width: 1440px) {
  .product-detail .product-details {
    padding-left: 3.875rem;
  }
}
.product-detail .product-description .pdp-description-short {
  margin-bottom: 0.375rem;
  font-size: 1.25rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  font-weight: 700;
}
@media (min-width: 1440px) {
  .product-detail .product-description .pdp-description-short {
    margin-top: -0.3125rem;
    font-size: 1.5rem;
    line-height: 32px;
  }
}
.product-detail .product-description .pdp-description-long {
  font-size: 1.125rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
@media (max-width: 1023.98px) {
  .product-detail .product-description .pdp-description-long {
    margin-bottom: 0;
  }
}
.product-detail .details {
  margin-right: 0;
  margin-left: 0;
}
.product-detail .product-details .pdp-details-heading {
  font-size: 1.25rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
  margin-top: -0.125rem;
  font-weight: 700;
  display: block;
}
@media (min-width: 1440px) {
  .product-detail .product-details .pdp-details-heading {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    margin-top: -0.3125rem;
  }
}
.product-detail .product-details ul {
  margin-top: 1.6875rem;
  margin-left: 1.25rem;
}
.product-detail .product-details ul li {
  list-style-type: disc;
  list-style-position: outside;
  padding-bottom: 0.5rem;
  font-size: 1.125rem;
  color: #000;
  line-height: 28px;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
@media (min-width: 600px) {
  .product-detail .product-details ul {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .product-detail .product-details ul {
    margin-top: 0.375rem;
  }
}
.product-detail .recommendations {
  /* .tile-badge {
      @include media-breakpoint-down(md) {
          max-width: rem(80px);
      }
  } */
  /* .image-container {
      padding: 0 rem(42px);
      // z-index: -1;

      @include media-breakpoint-down(md) {
          padding: 0 rem(18px);
      }

      @include media-breakpoint-down(sm) {
          padding: 0 rem(8px);
          z-index: -1;
      }

      .profileimg {
          // padding: 0;
      }
  } */
}
.product-detail .recommendations .recommendations-title {
  margin-bottom: 1.875rem;
  margin-top: 2.625rem !important;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  line-height: 32px;
  font-family: "TradeGothicLT-BoldTwo", "TradeGothicLT-BoldTwo-fallback", sans-serif;
}
@media (min-width: 1024px) {
  .product-detail .recommendations .recommendations-title {
    margin-top: 3.9375rem !important;
    margin-bottom: 2.6875rem;
  }
}
.product-detail .recommendations ul + .recommendations-title {
  margin-top: -0.1875rem !important;
}
@media (min-width: 600px) {
  .product-detail .recommendations ul + .recommendations-title {
    margin-top: 3.8125rem !important;
  }
}
@media (min-width: 1024px) {
  .product-detail .recommendations ul + .recommendations-title {
    margin-top: 4.0625rem !important;
  }
}
@media (min-width: 600px) {
  .product-detail .recommendations .homepage-product-listing {
    padding: 0 0.625rem 0.625rem;
  }
}
@media (max-width: 1023.98px) {
  .product-detail .recommendations .homepage-product-listing {
    padding: 0 2.125rem 0.625rem;
  }
}
@media (max-width: 599.98px) {
  .product-detail .recommendations .homepage-product-listing {
    padding: 0 0.375rem 1.875rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.product-detail .recommendations .homepage-product-listing .product-item {
  /* .product-title {

      @include media-breakpoint-down(sm) {
          @include fontSizeColor(18px, $primary-color, 24px, $font_2_reg);
      }
  } */
  /* .price {

      @include media-breakpoint-down(sm) {
          @include fontSizeColor(16px, $dark, 24px, $font_1_alt);
      }
  } */
  /*
  .color-name {
      margin-top: calculaterem(3px);

      @include media-breakpoint-down(sm) {
          @include fontSizeColor(12px, $darkest, 16px, $font_1_alt);
      }
  }

  .tile-footer {
      @include media-breakpoint-down(sm) {
          display: none;
      }

      .extended-tile-icons {
          div {
              i {
                  @media (min-width: $media-sm) and (max-width: $media-md) {
                      zoom: 0.7;
                      -moz-transform: scale(0.7);
                      -moz-transform-origin: 0 0;
                  }
              }
          }

          .extra-info-box {
              @include media-breakpoint-up(md) {
                  padding-top: 0;

                  .featureIcon {
                      font-size: rem(12px);
                      line-height: rem(44px);
                  }
              }
          }

          .tile-tool-icons {
              @include media-breakpoint-down(md) {
                  padding-right: rem(8px);
              }
          }
      }
  } */
}
@media (min-width: 600px) {
  .product-detail .recommendations .homepage-product-listing .product-item {
    padding: 0;
  }
}
@media (max-width: 1023.98px) {
  .product-detail .recommendations .homepage-product-listing .product-item {
    padding: 0 0.875rem;
  }
}
@media (max-width: 599.98px) {
  .product-detail .recommendations .homepage-product-listing .product-item {
    padding: 0 0.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: 45%;
  }
}
.product-detail .recommendations .homepage-product-listing .product-item .final_sale,
.product-detail .recommendations .homepage-product-listing .product-item .promo-message {
  display: none;
}

:lang(es) .product-detail .promotions .collapsible-xl.active .title::before {
  content: "Cerrar";
}

.breadcrumb-wrapper {
  padding-top: 1.125rem;
  padding-bottom: 0.8125rem !important;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .breadcrumb-wrapper {
    width: 20rem !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .breadcrumb-wrapper {
    width: 36.375rem !important;
    max-width: 36.375rem;
    position: relative;
    left: -0.5rem;
  }
}
@media (min-width: 1024px) {
  .breadcrumb-wrapper {
    padding-top: 2.1875rem;
    padding-bottom: 1.8125rem !important;
  }
}
@media (min-width: 1440px) {
  .breadcrumb-wrapper {
    padding-bottom: 2rem !important;
  }
}
.breadcrumb-wrapper .back-container {
  white-space: nowrap;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  padding-left: 0;
  padding-right: 0.3125rem;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  text-decoration: underline;
  font-weight: 300;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
.breadcrumb-wrapper .back-container button {
  height: 1.25rem;
}
.breadcrumb-wrapper .back-link {
  display: inline-block;
  text-decoration: underline !important;
  padding-left: 0;
  padding-right: 0;
  font-weight: 300;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  font-family: "TradeGothicLT-Light", "TradeGothicLT-Light-fallback", Arial, sans-serif;
}
@media (min-width: 1440px) {
  .breadcrumb-wrapper .back-link {
    padding-left: 0.125rem;
  }
}
.breadcrumb-wrapper .breadcrumb-separator {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 20px;
}
.breadcrumb-wrapper .product-breadcrumb .breadcrumb {
  margin-left: 0rem;
}
.breadcrumb-wrapper .product-breadcrumb .breadcrumb-item::before {
  font-size: 0.875rem;
  line-height: 20px;
}
