.c-bf-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
}
.c-bf-buttons__button {
  flex-basis: 50%;
  max-width: 140px;
  margin-bottom: 15px;
  font-size: 12px !important;
}
@media only screen and (min-width: 23.1875em) {
  .c-bf-buttons__button {
    max-width: 165px;
  }
}
@media only screen and (min-width: 25.1875em) {
  .c-bf-buttons__button {
    flex-basis: 33%;
    max-width: unset;
  }
}
@media only screen and (min-width: 64.0625em) {
  .c-bf-buttons__button {
    flex-basis: 16%;
    max-width: 180px;
    font-size: 14px !important;
  }
}
.c-category-toggler {
  display: -webkit-inline-box;
  display: inline-flex;
  cursor: pointer;
  margin-right: 14px;
}
@media only screen and (min-width: 25em) {
  .c-category-toggler--large {
    margin-left: auto;
  }
}
.c-category-toggler__item {
  background: #e0e0e0;
  margin-left: 1px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  height: 15px;
}
.c-category-toggler.is-active .c-category-toggler__item,
.c-category-toggler:hover .c-category-toggler__item {
  background: #6b6b6b;
}
.c-category-toggler--large .c-category-toggler__item {
  width: 9px;
}
@media only screen and (min-width: 64.0625em) {
  .c-category-toggler--large .c-category-toggler__item {
    width: 7px;
  }
}
.c-category-toggler--medium .c-category-toggler__item {
  width: 18px;
}
@media only screen and (min-width: 30.0625em) and (max-width: 64em) {
  .c-category-toggler--medium .c-category-toggler__item {
    width: 9px;
  }
}
@media only screen and (min-width: 64.0625em) {
  .c-category-toggler--medium .c-category-toggler__item {
    width: 7px;
  }
}
@media only screen and (max-width: 30em) {
  .c-category-toggler--large .c-category-toggler__item:nth-of-type(n+3) {
    display: none;
  }
}
@media only screen and (min-width: 30.0625em) and (max-width: 48em) {
  .c-category-toggler--large .c-category-toggler__item {
    display: none;
  }
}
@media only screen and (min-width: 37.5625em) and (max-width: 64em) {
  .c-category-toggler--large .c-category-toggler__item:nth-of-type(n+4) {
    display: none;
  }
}
@media only screen and (max-width: 30em) {
  .c-category-toggler--medium .c-category-toggler__item:nth-of-type(n+2) {
    display: none;
  }
}
@media only screen and (min-width: 30.0625em) and (max-width: 48em) {
  .c-category-toggler--medium .c-category-toggler__item {
    display: none;
  }
}
@media only screen and (min-width: 37.5625em) and (max-width: 64em) {
  .c-category-toggler--medium .c-category-toggler__item:nth-of-type(n+3) {
    display: none;
  }
}
@media only screen and (max-width: 64em) {
  .x-filter-toggler {
    display: none !important;
  }
}
.js-hide-filters {
  display: none;
}
@media only screen and (min-width: 64.0625em) {
  .js-hide-filters {
    display: block;
  }
}
@media only screen and (min-width: 64.0625em) {
  .js-show-filters {
    display: none;
  }
}
@media only screen and (max-width: 64em) {
  .c-filter-price {
    padding-bottom: 90px !important;
  }
  .l-categories__filters {
    position: fixed;
    left: -100%;
    top: 80px;
    width: 100%;
    height: calc(100% - 80px);
    overflow-y: scroll;
    z-index: 150;
    background: #fff;
    padding: 15px;
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
  }
  .l-categories__filters.is-active {
    left: 0;
  }
  .l-categories__filters.is-active .c-filters__footer {
    display: block;
    left: 0;
  }
  .c-filters__footer {
    position: fixed;
    bottom: 0;
    left: -100%;
    width: 100%;
    padding: 15px 0;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
    display: none;
    -webkit-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
  }
  .c-filters__footer .xxx {
    margin-right: 10px;
  }
}
.c-filter {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #e0e0e0;
  padding: 0 15px;
  position: relative;
}
.c-filter:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.c-filter.has-overlay:before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 0;
  height: 40px;
  width: calc(100% - 30px);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(28%, #fff), to(rgba(255,255,255,0)));
  background: linear-gradient(0deg, #fff 28%, rgba(255,255,255,0) 100%);
  z-index: -1;
}
.c-filter.has-overlay .c-filter__inner {
  overflow-y: scroll;
}
.c-filter.is-active .c-filter__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-filter a {
  text-decoration: none;
}
.c-filter input[type='checkbox'] {
  margin-right: 7px;
}
.c-filter label {
  font-size: 13px; /* add PX (or original value) as backup */
  font-size: 0.8125rem;
  cursor: pointer;
  width: 100%;
}
.c-filter__header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: ;
          justify-content: ;
  -webkit-box-align: center;
          align-items: center;
  cursor: pointer;
  width: 100%;
}
.c-filter__header .c-circle--medium {
  margin-left: 10px;
}
.c-filter__header .c-filter__arrow {
  margin-left: auto;
}
.c-filter:not(.has-overlay .c-filter__inner,
.c-filter .c-filter-discount .c-filter__inner,
.c-filter .c-filter-price) .c-filter__inner {
  overflow: auto;
}
.c-filter__inner {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  padding-top: 10px;
  position: relative;
  max-height: 240px;
  margin-bottom: 30px;
}
.c-filter.is-active .c-filter__inner {
  display: block;
}
.c-filter__inner div > a {
  max-width: 100%;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.c-filter__inner div.os-content > div {
  padding: 5px 0;
  margin-right: 30px;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}
.c-filter__inner div.os-content > div label,
.c-filter__inner div.os-content > div a {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.c-filter__inner div.os-content > div label {
  line-height: 1.5;
}
.c-filter__inner div.os-content > div a {
  margin-right: 50px;
  max-width: 100%;
  display: inline-block;
}
.c-filter__inner div.os-content > div:hover {
  color: #000;
}
.c-filter__inner div.os-content > div:hover label,
.c-filter__inner div.os-content > div:hover a {
  font-weight: bold;
  color: #000;
}
.c-filter__inner--selected-ones {
  display: block !important;
  margin-bottom: 60px;
}
.c-filter__inner--selected-ones div.os-content > div > * {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
}
.c-filter__inner--selected-ones div.os-content > div:last-child {
  margin-top: 13px;
}
.c-filter__inner--selected-ones div.os-content > div:last-child .c-filter__removal {
  margin-left: auto;
}
.c-filter__inner--selected-ones .c-filter__cross {
  -webkit-box-align: center;
          align-items: center;
  background: #000;
  display: -webkit-inline-box;
  display: inline-flex;
  height: 15px;
  -webkit-box-pack: center;
          justify-content: center;
  margin-right: 5px;
  width: 15px;
  min-width: 15px;
}
.c-filter__inner--selected-ones svg {
  fill: #fff;
  position: relative;
  z-index: 1;
}
.c-filter__inner--slider {
  margin-bottom: 4px;
}
.c-filter__inner--checkboxes div.os-content > div {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  padding: 5px 0;
}
.c-filter__inner--colors input[checked] + .x-color {
  border-color: #d00000;
}
.c-filter__inner--colors .x-color {
  border: 1px solid #fff;
  display: block;
  height: 40px;
  margin-bottom: 10px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  float: left;
  width: 40px;
  margin-right: 10px;
}
.c-filter__inner--colors .x-color:hover {
  border-color: #d00000;
}
.c-filter__inner--colors .x-color .x-color-wrapper {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  overflow: hidden;
  margin: 6px;
}
.c-filter__inner--colors .x-color .x-color-wrapper > div {
  display: block;
  height: 30px;
  width: 30px;
}
.c-filter__title {
  font-size: 16px; /* add PX (or original value) as backup */
  font-size: 1rem;
  margin: 0;
  padding: 22px 0;
  font-weight: 700;
}
.c-filter .c-slider {
  margin: 10px 0 40px;
}
@media only screen and (min-width: 64.0625em) {
  .c-filter .c-filter {
    min-width: 250px;
  }
  .c-filter .c-filter__header {
    min-width: 220px;
  }
}
.c-filter:not(.has-overlay) .c-filter__inner > div {
  margin-bottom: 15px;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}
.c-filter:not(.has-overlay) .c-filter__inner > div:last:child {
  margin-bottom: 30px;
}
.c-filter.x-split div.os-content > div {
  float: left;
}
.c-filter.x-split div.os-content > div:last-child {
  margin-bottom: 30px;
}
@media only screen and (min-width: 73.1875em) {
  .c-filter.x-split div.os-content > div {
    width: 33%;
    margin-right: 0;
  }
  .c-filter.x-split div.os-content > div:nth-of-type(3n) {
    padding-right: 18px;
  }
}
@media only screen and (max-width: 73.125em) {
  .c-filter.x-split div.os-content > div {
    width: 50%;
    margin-right: 0;
    padding-right: 18px;
  }
}
#hideFilterInner {
  cursor: pointer;
}
@media only screen and (min-width: 64.0625em) {
  .c-filters__footer {
    display: none;
  }
}
.c-infobanner {
  margin: 10px 0 30px;
  overflow: hidden;
  text-align: center;
  max-height: 250px;
}
@media only screen and (min-width: 64.0625em) {
  .c-infobanner {
    height: 140px;
    max-height: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: ;
            justify-content: ;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
  }
}
.c-infobanner a {
  text-decoration: none;
  color: #fff;
}
.c-infobanner__title {
  font-size: 26px; /* add PX (or original value) as backup */
  font-size: 1.625rem;
}
@media only screen and (max-width: 64em) {
  .c-infobanner__subtitle {
    display: none;
  }
}
.c-infobanner__bg--device {
  max-height: 250px;
}
@media only screen and (min-width: 64.0625em) {
  .c-infobanner__bg--device {
    display: none;
  }
}
@media only screen and (max-width: 64em) {
  .c-infobanner__bg--desktop {
    display: none;
  }
}
.c-infobanner__inner {
  padding: 0 25px 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-flex: 1;
          flex: 1;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 64em) {
  .c-infobanner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
@media only screen and (min-width: 64.0625em) {
  .c-infobanner__inner {
    padding: 0 150px;
  }
}
.c-promos {
  position: relative;
}
@media only screen and (max-width: 64em) {
  .c-promos {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 64.0625em) {
  .c-promos {
    max-width: 1920px;
    height: 400px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.c-promos__btns {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 64em) {
  .c-promos__btns {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 220px;
    bottom: 2%;
  }
}
@media only screen and (min-width: 64.0625em) {
  .c-promos__btns {
    bottom: 93px;
  }
}
.c-promos__btns .c-btn {
  text-transform: uppercase;
  font-weight: bold;
  margin: 7px 0;
  min-width: 100px;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
@media only screen and (min-width: 64.0625em) {
  .c-promos__btns .c-btn {
    margin: 0 16px;
  }
}
.c-promos__btns .c-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-promo {
  overflow: hidden;
}
.c-promo__control {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.c-promo__control-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.c-promo__arrow {
  background: none !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}
.c-promo__arrow--left {
  -webkit-box-ordinal-group: 2;
          order: 1;
}
.c-promo__arrow--right {
  -webkit-box-ordinal-group: 4;
          order: 3;
}
.c-promo__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
.c-promo__dots {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
          order: 2;
  padding: 0;
  margin: 0;
}
.c-promo__dots li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 5px;
  position: relative;
}
.c-promo__dots li.slick-active {
  background: #000;
}
.c-promo__dots li button {
  width: 16px;
  height: 16px;
  font-size: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.c-promo__dots li button:focus,
.c-promo__dots li button:active {
  outline: none;
}
.l-categories .c-card__content {
  margin-bottom: 35px;
}
.l-categories .c-card__imager {
  -webkit-transition: height 1s ease, width 1s ease;
  transition: height 1s ease, width 1s ease;
}
.l-categories .c-card__prices {
  max-width: 200px;
}
.l-categories .c-card__heading {
  height: 34px;
  overflow: hidden;
}
.l-categories.is-transition-disabled .c-card__imager {
  -webkit-transition: none;
  transition: none;
}
.l-categories--medium .c-card__imager {
  height: 460px;
}
.l-categories--large .c-card__imager {
  height: 220px;
}
.l-categories--large .c-card__content {
  margin: 10px 0;
}
.l-categories--large .c-card__prices {
  font-size: 12px; /* add PX (or original value) as backup */
  font-size: 0.75rem;
}
@media only screen and (min-width: 30.0625em) and (max-width: 48em) {
  .l-categories--medium .c-card__imager,
  .l-categories--large .c-card__imager {
    height: 300px;
  }
}
@media only screen and (min-width: 37.5625em) {
  .l-categories--medium .c-card__imager {
    height: 360px;
  }
  .l-categories--medium .c-card__prices {
    font-size: 14px; /* add PX (or original value) as backup */
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  .l-categories--large .c-card__imager {
    height: 360px;
  }
  .l-categories--large .c-card__content {
    margin-left: 0;
    margin-right: 0;
  }
  .l-categories--medium .c-card__imager {
    height: 490px;
  }
  .l-filters.is-active + .l-categories--large .c-card__imager {
    height: 266px;
  }
  .l-filters.is-active + .l-categories--medium .c-card__imager {
    height: 360px;
  }
}
.l-categories {
  margin-top: 40px;
}
.l-categories__main-title {
  font-size: 18px; /* add PX (or original value) as backup */
  font-size: 1.125rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1280px) {
  .l-categories__main-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
a.l-categories__show-filter {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
}
.l-categories__appendix strong {
  font-size: 16px; /* add PX (or original value) as backup */
  font-size: 1rem;
  line-height: 1.5;
}
.l-categories__categories > *:last-child {
  margin-bottom: 40px;
}
.l-categories__filter-mobile {
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 15px 15px 25px;
}
@media only screen and (min-width: 64.0625em) {
  .l-categories__filter-mobile {
    display: none;
  }
}
.l-categories__header {
  display: -webkit-box;
  display: flex;
  height: 40px;
  margin: 25px 0;
  -webkit-box-align: center;
          align-items: center;
}
.l-categories .x-filter-toggler {
  color: inherit;
  text-decoration: none;
  display: none;
}
.l-categories__filter-toggle {
  height: 40px;
  margin: 25px 0;
}
.l-categories__select {
  min-width: 150px;
  height: 40px;
  margin-left: 10px;
}
@media only screen and (max-width: 37.5em) {
  .l-categories__select {
    margin-left: auto;
  }
}
.l-categories__select .c-select__item {
  height: 30px;
  padding: 7px 11px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media only screen and (min-width: 64.0625em) {
  .l-categories__filters {
    flex-basis: 0;
    padding-right: 0;
    padding-bottom: 50px;
    overflow: hidden;
    display: none;
  }
  .l-categories__filters.is-active {
    flex-basis: 300px;
    max-width: 300px;
    padding-right: 30px;
    display: block;
  }
  .l-categories__filters.is-active + .l-categories__categories {
    flex-basis: 885px;
  }
  .l-categories__filters + .l-categories__categories {
    flex-basis: 100%;
  }
}
.l-categories__more {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  height: 50px;
  padding-left: 50px;
  padding-right: 50px;
  border: 1px solid #000;
  text-transform: uppercase;
  cursor: pointer;
}
.denim-banner,
.denim-banner-wrapper {
  display: none;
}
@media only screen and (min-width: 64.0625em) {
  .denim-banner-wrapper {
    display: -webkit-box;
    display: flex;
  }
  .denim-banner {
    display: block;
  }
  .denim-banner--men .denim-banner__side {
    background-image: url("/assets/images/denim/header-men.webp");
  }
  .denim-banner--women .denim-banner__side {
    background-image: url("/assets/images/denim/header-women.webp");
  }
  .denim-banner__inner {
    display: -webkit-box;
    display: flex;
  }
  .denim-banner__side {
    width: 100px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
  }
  .denim-banner__content {
    display: -webkit-box;
    display: flex;
    position: relative;
  }
  .denim-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #000;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  .denim-banner__rotated {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: center;
            transform-origin: center;
    font-size: 40px;
    text-align: center;
    white-space: nowrap;
    display: block;
    color: #fff;
    margin-left: -60px;
  }
  .denim-banner__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    position: relative;
  }
  .denim-banner__item:hover .denim-banner__overlay {
    opacity: 0.2;
  }
  .denim-banner__item > strong {
    position: absolute;
    font-size: 30px;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
  }
}
.l-category-list--large .c-card {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
}
.l-category-list--large .c-card::after {
  content: '';
  display: table;
  clear: both;
}
.l-category-list--large .c-card:nth-of-type(n) {
  margin-right: 3%;
  float: left;
  clear: none;
}
.l-category-list--large .c-card:nth-of-type(2n) {
  margin-right: 0%;
  float: right;
}
.l-category-list--large .c-card:nth-of-type(2n + 1) {
  clear: both;
}
@media only screen and (min-width: 30.0625em) and (max-width: 37.5em) {
  .l-category-list--large .c-card,
  .l-category-list--medium .c-card {
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .l-category-list--large .c-card::after,
  .l-category-list--medium .c-card::after {
    content: '';
    display: table;
    clear: both;
  }
  .l-category-list--large .c-card:nth-of-type(n),
  .l-category-list--medium .c-card:nth-of-type(n) {
    margin-right: 3%;
    float: left;
    clear: none;
  }
  .l-category-list--large .c-card:nth-of-type(2n),
  .l-category-list--medium .c-card:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .l-category-list--large .c-card:nth-of-type(2n + 1),
  .l-category-list--medium .c-card:nth-of-type(2n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 37.5625em) and (max-width: 64em) {
  .l-category-list--medium .c-card {
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .l-category-list--medium .c-card::after {
    content: '';
    display: table;
    clear: both;
  }
  .l-category-list--medium .c-card:nth-of-type(n) {
    margin-right: 3%;
    float: left;
    clear: none;
  }
  .l-category-list--medium .c-card:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .l-category-list--medium .c-card:nth-of-type(2n + 1) {
    clear: both;
  }
  .l-category-list--large .c-card {
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333333333333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .l-category-list--large .c-card::after {
    content: '';
    display: table;
    clear: both;
  }
  .l-category-list--large .c-card:nth-of-type(n) {
    margin-right: 3%;
    float: left;
    clear: none;
  }
  .l-category-list--large .c-card:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .l-category-list--large .c-card:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 64.0625em) {
  .l-category-list:last-child {
    margin-bottom: 50px;
  }
  .l-category-list--medium .c-card {
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.66666666666666%;
    margin-left: 0%;
    margin-right: 2.5%;
  }
  .l-category-list--medium .c-card::after {
    content: '';
    display: table;
    clear: both;
  }
  .l-category-list--medium .c-card:nth-of-type(n) {
    margin-right: 2.5%;
    float: left;
    clear: none;
  }
  .l-category-list--medium .c-card:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .l-category-list--medium .c-card:nth-of-type(3n + 1) {
    clear: both;
  }
  .l-category-list--medium .c-card__prices {
    width: 80%;
  }
  .l-category-list--large .c-card {
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.5%;
    margin-left: 0%;
    margin-right: 2%;
  }
  .l-category-list--large .c-card::after {
    content: '';
    display: table;
    clear: both;
  }
  .l-category-list--large .c-card:nth-of-type(n) {
    margin-right: 2%;
    float: left;
    clear: none;
  }
  .l-category-list--large .c-card:nth-of-type(4n) {
    margin-right: 0%;
    float: right;
  }
  .l-category-list--large .c-card:nth-of-type(4n + 1) {
    clear: both;
  }
}
.l-categories__footer {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 37.5em) {
  .l-categories {
    text-align: center;
  }
  .l-categories__footer .x-footer-btn {
    width: 100%;
    display: -webkit-box;
    display: flex;
    margin: 0 auto 40px;
    max-width: none;
  }
  .l-categories__footer .c-pagination {
    margin-top: 20px;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 37.5625em) {
  .l-categories__footer {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .l-categories__footer .x-footer-btn {
    margin-bottom: 0;
  }
  .l-categories__pagination {
    margin-left: auto;
  }
}
.l-detail-content {
  margin: 0;
}
.l-detail-content__caption {
  margin: 20px 0;
}
@media only screen and (min-width: 64.0625em) {
  .l-detail-content__caption {
    text-align: right;
  }
}
.l-detail-content__price-list {
  font-size: 21px !important;
}
.l-detail-content__select {
  margin-bottom: 25px;
  border-width: 2px;
}
.l-detail-content__select .c-select__inner {
  border: 2px solid #e0e0e0;
  border-top: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.l-detail-content__select .c-select__current {
  height: 60px;
  border: 2px solid #e0e0e0;
  padding: 0 11px;
}
.l-detail-content__select .c-select__item {
  line-height: 35px;
  padding: 0 18px;
  font-size: 13px; /* add PX (or original value) as backup */
  font-size: 0.8125rem;
}
.l-detail-content__media {
  height: 35px;
  text-align: left;
  line-height: 1.4;
  margin: 20px 0;
}
.l-detail-content__media .i-ico {
  margin-right: 23px;
}
@media only screen and (min-width: 64.0625em) {
  .l-detail-content {
    position: relative;
    -webkit-box-flex: 1;
            flex: 1;
    max-width: none;
    margin-left: 30px;
    min-height: 720px;
  }
  .l-detail-content__scroll-wrapper {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-detail-content__scroll-wrapper.is-scrolling {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .l-detail-content__brand {
    text-align: left;
  }
  .l-detail-content__select {
    width: 200px;
  }
  .l-detail-content__select .c-select__inner {
    position: absolute;
  }
  .l-detail-content__select.c-select__current {
    height: 40px;
  }
  .l-detail-content__heading {
    line-height: 24px;
    margin: 0 0 20px 0;
    padding-top: 35px;
    font-size: 20px; /* add PX (or original value) as backup */
    font-size: 1.25rem;
    text-align: left;
  }
  .l-detail-content__caption {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
    text-align: left;
  }
  .l-detail-content__discount-list {
    margin-right: 10px;
  }
}
.l-detail__imager {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
}
.l-detail__searching {
  display: none;
  background: #d00000;
  font-size: 10px; /* add PX (or original value) as backup */
  font-size: 0.625rem;
  color: #fff;
  height: 34px;
  padding-left: 14px;
  padding-right: 19px;
  border-radius: 100px;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.l-detail__searching .i-ico {
  margin-right: 17px;
}
.l-detail__searching strong {
  font-size: 12px; /* add PX (or original value) as backup */
  font-size: 0.75rem;
}
.l-detail-imager {
  display: none;
  height: 720px;
  cursor: pointer;
}
.l-detail-imager__inner {
  height: 720px;
  position: relative;
  overflow: hidden;
}
.l-detail-imager__zoom {
  background: #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 15px;
  right: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 15;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.l-detail-imager__zoom:hover {
  background: #cacaca;
}
.l-detail-imager__zoom .i-ico {
  fill: #fff;
}
.l-detail-imager__image {
  max-width: none !important;
  height: 720px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.l-detail-imager__image.is-active {
  opacity: 1;
}
@media only screen and (min-width: 64.0625em) {
  .l-detail-imager {
    display: block;
  }
}
.l-detail-mobile-carousel {
  margin: 0 -15px;
  max-width: 100%;
  width: 100%;
}
.l-detail-mobile-carousel__carousel .slick-slide {
  padding: 0 10px;
}
@media only screen and (min-width: 64.0625em) {
  .l-detail-mobile-carousel {
    display: none;
  }
}
@media only screen and (min-width: 64.0625em) {
  .l-detail-slider {
    overflow: hidden;
    height: 550px;
    position: relative;
  }
  .l-detail-slider__helper-inner {
    height: 550px;
    overflow: hidden;
  }
  .l-detail-slider__helper-inner:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    content: '';
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 1;
  }
  .l-detail-slider__inner {
    overflow: auto;
    padding-right: 30px;
    box-sizing: content-box;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .l-detail-slider__item {
    position: relative;
    height: 94px;
    width: 70px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .l-detail-slider__item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    content: '';
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
  }
  .l-detail-slider__item:last-child {
    margin-bottom: 50px;
  }
  .l-detail-slider__item.is-active:before {
    opacity: 1;
    visibility: visible;
  }
  .l-detail-slider__item:hover img {
    opacity: 0.8;
  }
  .l-detail-slider__item img {
    height: 94px;
    width: 70px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .l-detail-slider .x-show-more {
    cursor: pointer;
    fill: #6b6b6b;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 15px;
    z-index: 10;
    margin: 0 auto;
  }
}
.detail-tabs {
  width: 100%;
  margin-bottom: 35px;
}
@media only screen and (min-width: 64.0625em) {
  .detail-tabs {
    max-width: 625px;
  }
}
.detail-tabs__item {
  border-bottom: 1px solid #e8e8e8;
}
.detail-tabs__item:first-child {
  border-top: 1px solid #e8e8e8;
}
.detail-tabs__item--active .detail-tabs__title {
  border-bottom-color: #e8e8e8;
}
.detail-tabs__item--active .detail-tabs__title:after {
  opacity: 0;
  visibility: hidden;
}
.detail-tabs__title {
  position: relative;
  padding: 15px 0 15px 10px;
  font-weight: 700;
  font-size: 14px; /* add PX (or original value) as backup */
  font-size: 0.875rem;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.detail-tabs__title:before,
.detail-tabs__title:after {
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: #000;
}
.detail-tabs__title:before {
  width: 10px;
  height: 2px;
  right: 15px;
  margin-top: -1px;
}
.detail-tabs__title:after {
  width: 2px;
  height: 10px;
  right: 19px;
  margin-top: -5px;
}
.detail-tabs__inner {
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-detail {
  display: block;
}
.l-detail-slider {
  display: none;
}
.l-detail-fill {
  display: none;
}
.l-detail__description {
  display: none;
}
.l-detail__footer {
  display: none;
}
@media only screen and (min-width: 64.0625em) {
  .l-detail__main {
    display: -webkit-box;
    display: flex;
    position: relative;
  }
  .l-detail__left {
    -webkit-box-flex: 1;
            flex: 1;
  }
  .l-detail__right {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
            flex: 1;
  }
  .l-detail__description {
    display: block;
  }
  .l-detail-slider {
    display: block;
    flex-basis: 85px;
    min-width: 85px;
    width: 100%;
  }
  .l-detail-fill {
    display: block;
    flex-basis: 150px;
    max-width: 150px;
    width: 100%;
  }
  .l-detail-imager {
    flex-basis: 540px;
    min-width: 540px;
    width: 100%;
  }
  .l-detail__products > section {
    margin-bottom: 50px;
  }
}
.l-detail {
  margin: 15px 0 30px;
  position: relative;
  z-index: 1;
}
.l-detail-imager--overlay {
  opacity: 0.5;
}
.l-detail-slider__overlay img {
  opacity: 0.5;
}
.l-detail__description {
  display: none;
}
.l-detail__sizes {
  margin: 25px 0;
}
.l-detail__sizes-heading {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
          align-items: baseline;
  margin-bottom: 20px;
}
.l-detail__sizes-label {
  font-size: 13px; /* add PX (or original value) as backup */
  font-size: 0.8125rem;
  font-weight: 700;
}
.l-detail__sizes-select {
  width: 100%;
}
.l-detail__sizes-link {
  font-size: 12px; /* add PX (or original value) as backup */
  font-size: 0.75rem;
  text-decoration: none;
}
.l-detail__sizes-link:hover {
  text-decoration: underline;
}
.l-detail__cart-btn {
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.l-detail__prices {
  margin: 20px auto;
  font-size: 20px; /* add PX (or original value) as backup */
  font-size: 1.25rem;
  max-width: 250px;
}
.l-detail__to-cart {
  margin: 22px 0 35px;
}
.l-detail__to-cart .i-ico {
  margin-right: 25px;
  fill: #fff;
}
.l-detail__additional {
  margin: 35px 0 45px;
}
.l-detail__additional svg {
  margin-right: 5px;
}
.l-detail__additional svg {
  fill: #000;
}
.l-detail__additional strong {
  color: #000;
}
.l-detail__additional .g-center {
  flex-flow: wrap;
}
@media only screen and (min-width: 64.0625em) {
  .l-detail__to-cart {
    margin-bottom: 22px;
  }
  .l-detail__prices {
    display: block;
    margin: 0;
  }
  .l-detail__prices .c-card__price {
    margin-right: 15px;
  }
  .l-detail__prices--w-countdown {
    flex-basis: 236px;
  }
  .l-detail__prices--w-countdown del {
    display: block;
    margin: 5px 0;
  }
  .l-detail__sizes {
    margin: 25px 0;
  }
  .l-detail__sizes .c-select {
    margin-bottom: 0;
  }
  .l-detail__noexists {
    color: #d00000;
    font-weight: bold;
    text-align: left;
    margin-bottom: 60px;
  }
  .l-detail__additional {
    color: #6b6b6b;
    margin: 25px 0;
  }
  .l-detail__additional svg {
    margin-right: 5px;
  }
  .l-detail__content {
    text-align: left;
  }
  .l-detail__footer {
    color: #6b6b6b;
  }
  .l-detail__footer svg {
    fill: #d00000;
  }
  .l-detail__footer .c-media {
    cursor: pointer;
  }
  .l-detail__footer .c-media span {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .l-detail__footer .c-media__img {
    position: relative;
    width: 40px;
    height: 25px;
  }
  .l-detail__footer .c-media .x-filled,
  .l-detail__footer .c-media .x-regular {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
  }
  .l-detail__footer .c-media .x-filled {
    opacity: 0;
  }
  .l-detail__footer .c-media:hover span {
    color: #d00000;
  }
  .l-detail__footer .c-media:hover .x-filled {
    opacity: 1;
  }
  .l-detail__footer .c-media:hover .x-regular {
    opacity: 0;
  }
  .l-detail__footer svg {
    margin-right: 16px;
  }
  .l-detail__footer svg:hover path {
    fill: #d00000;
  }
}
@media only screen and (max-width: 64em) {
  #sizesTable {
    display: block;
    margin: 20px 0;
  }
}
.l-homepage-section__inner {
  margin-bottom: 50px;
}
.p-detail {
  line-height: 1.5;
}
.p-detail__tab-wrapper:after {
  content: '';
  clear: both;
  display: table;
}
@media only screen and (min-width: 64.0625em) {
  .p-detail__tab-split {
    padding-right: 100px;
    float: left;
    width: 50%;
  }
}
.p-homepage__section {
  margin: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media only screen and (min-width: 64.0625em) {
  .p-homepage__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
  }
  .p-homepage__large-promo {
    -webkit-box-ordinal-group: -1;
            order: -2;
  }
  .p-homepage__brands {
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .homepage.p-main .l-newsletters {
    margin-top: 20px;
  }
}
.p-homepage__large-promo {
  position: relative;
}
.p-homepage__large-promo-control-arrow {
  background: none;
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
}
.p-homepage__large-promo-control-arrow.x-next {
  right: -20px;
  position: absolute;
  left: auto;
  width: 20px;
}
.p-homepage__large-promo-control {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: -20px;
}
.p-homepage__large-promo-control-wrapper {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}
.p-homepage__large-promo-control-wrapper ul {
  margin: 0 20px;
  padding: 0;
  list-style: none;
}
.p-homepage__large-promo-control-wrapper li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
}
.p-homepage__large-promo-control-wrapper li.slick-active {
  background: #000;
}
.p-homepage__large-promo-control-wrapper button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0;
  border: 0;
  background: none;
  width: 16px;
  height: 16px;
}
.p-homepage__large-promo-control-wrapper button:focus {
  outline: none;
}
.p-homepage__large-promo-control-wrapper .c-carousel-primary-promo__dots {
  display: inline-block;
}
.p-homepage__mobile-primary-promo a {
  display: block;
  margin: 10px 0;
  text-align: center;
  overflow: hidden;
}
@media only screen and (min-width: 64.0625em) {
  .p-homepage__mobile-primary-promo {
    display: none;
  }
}

