@charset "UTF-8";
input,
textarea,
select {
  border: none;
  border: 1px solid #8f8f8f;
  padding: 0.5rem 1rem;
}

/*
	Media Query mixin
	See https://github.com/sass-mq/sass-mq/ for original full version.
	@example scss
	 .element {
	   @include mq($from: mobile) {
		 color: red;
	   }
	   @include mq($to: tablet) {
		 color: blue;
	   }
	   @include mq(mobile, tablet) {
		 color: green;
	   }
	   @include mq($from: tablet, $and: '(orientation: landscape)') {
		 color: teal;
	   }
	   @include mq(em(950px)) {
		 color: hotpink;
	   }
	   @include mq(em(950px), $media-feature: height) {
		 color: hotpink;
	   }
	   @include mq(tablet, $media-type: screen) {
		 color: hotpink;
	   }
	   // Advanced use:
	   $custom-breakpoints: (L: 900px, XL: 1200px);
	   @include mq(L, $bp: $custom-breakpoints) {
		 color: hotpink;
	   }
	 }
*/
.-desktop {
  display: block !important;
}
@media (max-width: 48em) {
  .-desktop {
    display: none !important;
  }
}

.-mobile {
  display: none !important;
}
@media (max-width: 48em) {
  .-mobile {
    display: block !important;
  }
}

.-tablet {
  display: none !important;
}
@media (max-width: 64em) {
  .-tablet {
    display: block !important;
  }
}

.green-whatsapp {
  background-color: #4dc247;
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 1;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  display: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.green-whatsapp img {
  width: 35px;
  height: 35px;
}

.owl-pagination {
  position: relative;
  line-height: 30px;
}

/*.owl-buttons {
  display: none;
}*/
.owl-prev,
.owl-next {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  font-size: 21px;
  color: #000;
  border: none;
  border-radius: 3px;
  margin: auto;
  transition: all 200ms ease-out;
  opacity: 1;
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 0px;
}

#instafeed {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#instafeed div {
  margin: 0 0.5rem;
}
#instafeed div:first-child {
  margin-left: 0;
}
#instafeed div:last-child {
  margin-right: 0;
}

@media (max-width: 48em) {
  .marquee {
    width: 100%;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
  }
  .marquee .promotion-banner {
    display: inline-block;
    padding-left: 100%; /* show the marquee just outside the paragraph */
    animation: marquee 15s linear infinite;
  }
  .marquee:hover {
    animation-play-state: paused;
  }
  .marquee:focus {
    animation-play-state: paused;
  }
}

/* Make it move */
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
}

body {
  overflow-x: hidden;
  color: #000;
}

* {
  box-sizing: border-box;
  font-family: "GoBold-Regular";
  letter-spacing: 1px;
}

hr {
  border: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  margin: 1rem 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #333;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:focus {
  color: inherit;
  text-decoration: none;
}

input:hover {
  outline: none;
}
input:focus {
  outline: none;
}

textarea {
  resize: none;
}

*:focus {
  outline: none !important;
}

.hidden {
  display: none;
}

::selection {
  color: #fff;
  background: #000;
}

.toast-top-right {
  top: 56px !important;
  right: 12px;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

.sweet-alert button {
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0.5rem;
  border-radius: 0;
}
.sweet-alert fieldset {
  display: none;
}

.ribbon {
  position: absolute;
  text-align: center;
  /*background-color: transparent;*/
  font-family: "gobold-light";
  z-index: 3;
  top: 1.5%;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 0.4rem 1.8rem;
  text-transform: uppercase;
  border-radius: 0px 30px 30px 0px;
  -webkit-border-radius: 0px 30px 30px 0px;
  -moz-border-radius: 0px 30px 30px 0px;
}
.ribbon span {
  position: relative;
  z-index: 100;
  font-variant-numeric: lining-nums;
}
.ribbon.isNew {
  background: #2153aa;
  color: white;
  width: 7rem;
}
.ribbon.onSale {
  background: red;
  color: white;
  width: 11rem;
}
.ribbon.soldOut {
  background: white;
  color: black;
  width: 11rem;
}

.height-28 {
  height: 28px !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@font-face {
  font-family: "Roboto";
  src: url("/content/fonts/RobotoRegular.eot");
  src: url("/content/fonts/RobotoRegular.eot") format("embedded-opentype"), url("/content/fonts/RobotoRegular.woff2") format("woff2"), url("/content/fonts/RobotoRegular.woff") format("woff"), url("/content/fonts/RobotoRegular.ttf") format("truetype"), url("/content/fonts/RobotoRegular.svg#RobotoRegular") format("svg");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("/content/fonts/RobotoMedium_0.eot");
  src: url("/content/fonts/RobotoMedium_0.eot") format("embedded-opentype"), url("/content/fonts/RobotoMedium_0.woff2") format("woff2"), url("/content/fonts/RobotoMedium_0.woff") format("woff"), url("/content/fonts/RobotoMedium_0.ttf") format("truetype"), url("/content/fonts/RobotoMedium_0.svg#RobotoMedium_0") format("svg");
  font-weight: 500;
}
@font-face {
  font-family: "Bebas";
  /*src: url('/content/fonts/BEBASum_0.eot');
  src: url('/content/fonts/RobotoMedium_0.eot') format('embedded-opentype'),
       url('/content/fonts/RobotoMedium_0.woff2') format('woff2'),
       url('/content/fonts/RobotoMedium_0.woff') format('woff'),*/
  src: url("/content/fonts/BEBAS.ttf") format("truetype");
  /*url('/content/fonts/RobotoMedium_0.svg#RobotoMedium_0') format('svg');*/
  font-weight: 500;
}
@font-face {
  font-family: "Gotham";
  /*src: url('/content/fonts/BEBASum_0.eot');
  src: url('/content/fonts/RobotoMedium_0.eot') format('embedded-opentype'),
       url('/content/fonts/RobotoMedium_0.woff2') format('woff2'),
       url('/content/fonts/RobotoMedium_0.woff') format('woff'),*/
  src: url("/content/fonts/Gotham.ttf") format("truetype");
  /*url('/content/fonts/RobotoMedium_0.svg#RobotoMedium_0') format('svg');*/
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("/content/fonts/RobotoLight.eot");
  src: url("/content/fonts/RobotoLight.eot") format("embedded-opentype"), url("/content/fonts/RobotoLight.woff2") format("woff2"), url("/content/fonts/RobotoLight.woff") format("woff"), url("/content/fonts/RobotoLight.ttf") format("truetype"), url("/content/fonts/RobotoLight.svg#RobotoLight") format("svg");
  font-weight: 200;
}
@font-face {
  font-family: "Roboto";
  src: url("/content/fonts/RobotoBold.eot");
  src: url("/content/fonts/RobotoBold.eot") format("embedded-opentype"), url("/content/fonts/RobotoBold.woff2") format("woff2"), url("/content/fonts/RobotoBold.woff") format("woff"), url("/content/fonts/RobotoBold.ttf") format("truetype"), url("/content/fonts/RobotoBold.svg#RobotoBold") format("svg");
  font-weight: 600;
}
@font-face {
  font-family: "AkzidenzGrotesk";
  src: url("/content/fonts/AkzidenzGroteskLight.eot");
  src: url("/content/fonts/AkzidenzGroteskLight.eot") format("embedded-opentype"), url("/content/fonts/AkzidenzGroteskLight.woff2") format("woff2"), url("/content/fonts/AkzidenzGroteskLight.woff") format("woff"), url("/content/fonts/AkzidenzGroteskLight.ttf") format("truetype"), url("/content/fonts/AkzidenzGroteskLight.svg#AkzidenzGroteskLight") format("svg");
  font-weight: 200;
}
@font-face {
  font-family: "AkzidenzGrotesk";
  src: url("/content/fonts/AkzidenzGroteskRegular.eot");
  src: url("/content/fonts/AkzidenzGroteskRegular.eot") format("embedded-opentype"), url("/content/fonts/AkzidenzGroteskRegular.woff2") format("woff2"), url("/content/fonts/AkzidenzGroteskRegular.woff") format("woff"), url("/content/fonts/AkzidenzGroteskRegular.ttf") format("truetype"), url("/content/fonts/AkzidenzGroteskRegular.svg#AkzidenzGroteskRegular") format("svg");
  font-weight: 300;
}
@font-face {
  font-family: "AkzidenzGrotesk";
  src: url("/content/fonts/AkzidenzGroteskBold.eot");
  src: url("/content/fonts/AkzidenzGroteskBold.eot") format("embedded-opentype"), url("/content/fonts/AkzidenzGroteskBold.woff2") format("woff2"), url("/content/fonts/AkzidenzGroteskBold.woff") format("woff"), url("/content/fonts/AkzidenzGroteskBold.ttf") format("truetype"), url("/content/fonts/AkzidenzGroteskBold.svg#AkzidenzGroteskBold") format("svg");
  font-weight: 600;
}
@font-face {
  font-family: "Tahoma";
  font-weight: normal;
  src: url("/content/fonts/TahomaRegularfont.eot");
  src: url("/content/fonts/TahomaRegularfont.eot") format("embedded-opentype"), url("/content/fonts/TahomaRegularfont.woff2") format("woff2"), url("/content/fonts/TahomaRegularfont.woff") format("woff"), url("/content/fonts/TahomaRegularfont.ttf") format("truetype"), url("/content/fonts/TahomaRegularfont.svg#TahomaRegularfont") format("svg");
}
@font-face {
  font-family: "Tahoma";
  font-weight: bold;
  src: url("/content/fonts/TAHOMAB0.eot");
  src: url("/content/fonts/TAHOMAB0.eot") format("embedded-opentype"), url("/content/fonts/TAHOMAB0.woff2") format("woff2"), url("/content/fonts/TAHOMAB0.woff") format("woff"), url("/content/fonts/TAHOMAB0.ttf") format("truetype"), url("/content/fonts/TAHOMAB0.svg#TAHOMAB0") format("svg");
}
@font-face {
  font-family: "TradeGothic";
  font-weight: normal;
  src: url("/content/fonts/TradeGothicLTStd.eot");
  src: url("/content/fonts/TradeGothicLTStd.eot") format("embedded-opentype"), url("/content/fonts/TradeGothicLTStd.woff2") format("woff2"), url("/content/fonts/TradeGothicLTStd.woff") format("woff"), url("/content/fonts/TradeGothicLTStd.ttf") format("truetype"), url("/content/fonts/TradeGothicLTStd.svg#TradeGothicLTStd") format("svg");
}
@font-face {
  font-family: "TradeGothic";
  font-weight: bold;
  src: url("/content/fonts/TradeGothicLTStdBold.eot");
  src: url("/content/fonts/TradeGothicLTStdBold.eot") format("embedded-opentype"), url("/content/fonts/TradeGothicLTStdBold.woff2") format("woff2"), url("/content/fonts/TradeGothicLTStdBold.woff") format("woff"), url("/content/fonts/TradeGothicLTStdBold.ttf") format("truetype"), url("/content/fonts/TradeGothicLTStdBold.svg#TradeGothicLTStdBold") format("svg");
}
@font-face {
  font-family: "MontserratLight";
  src: url("/content/fonts/Montserrat-Light.otf");
}
@font-face {
  font-family: "MontserratBold";
  src: url("/content/fonts/Montserrat-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "GoBold-Regular";
  src: url("/content/fonts/GOBOLD REGULAR.OTF") format("truetype");
}
@font-face {
  font-family: "GoBold-Bold";
  src: url("/content/fonts/GOBOLD BOLD.OTF") format("truetype");
}
@font-face {
  font-family: "GoBold-Light";
  src: url("/content/fonts/GOBOLD THIN.OTF") format("truetype");
}
body {
  font-size: 1.6rem;
}

h1 {
  font-size: 3.2rem;
  margin: 1.25rem 0;
}

h2 {
  font-size: 2.6rem;
  margin: 1rem 0;
}

h3 {
  font-size: 2.2rem;
  margin: 0.75rem 0;
}

h4 {
  font-size: 1.8rem;
  margin: 0.75rem 0;
}

h5 {
  font-size: 1.6rem;
  margin: 0.75rem 0;
}

h6 {
  font-size: 1.4rem;
  margin: 0.75rem 0;
}

.icon:not(.fa) {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-image: url(/content/icons/sprite.svg);
  width: 25px;
  height: 25px;
}
.icon--clickable {
  cursor: pointer;
}
.icon--rotate {
  transform: rotate(180deg);
}
.icon-toggle {
  background-position: -133px -533px;
}
.icon-user {
  background-position: -368px -124px;
}
.icon-user:hover {
  background-position: -328px -124px;
}
.icon-user:focus {
  background-position: -328px -124px;
}
.icon-bag {
  background-position: -450px -124px;
}
.icon-bag:hover {
  background-position: -410px -124px;
}
.icon-bag:focus {
  background-position: -410px -124px;
}
.icon-search {
  background-position: -248px -124px;
}
.icon-wish {
  background-position: -533px -285px;
}
.icon-wish:hover {
  background-position: -573px -285px;
}
.icon-wish:focus {
  background-position: -573px -285px;
}
.icon-wish-fill {
  background-position: -573px -285px;
}
.icon-arrow-right {
  background-position: -82px -123px;
}
.icon-arrow-return {
  background-position: -615px -82px;
}
.icon-fb-sm {
  background-position: -246px -165px;
}
.icon-gp-sm {
  background-position: -271px -119px;
}
.icon-tw-sm {
  background-position: -286px -165px;
}
.icon-view {
  background-position: -328px -340px;
}
.icon-view:hover {
  background-position: -368px -340px;
}
.icon-view:focus {
  background-position: -368px -340px;
}
.icon-filter {
  background-position: -243px -340px;
}
.icon-filter:hover {
  background-position: -211px -340px;
}
.icon-filter:focus {
  background-position: -211px -340px;
}
.icon-plus {
  background-position: -46px -586px;
}
.icon-minus {
  background-position: -76px -586px;
}
.icon--toggle {
  background-position: -76px -586px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/content/images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/content/fonts/slick.eot");
  src: url("/content/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/content/fonts/slick.woff") format("woff"), url("/content/fonts/slick.ttf") format("truetype"), url("/content/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  background-image: url("/content/images/back.png");
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: 22px 22px;
  background-repeat: no-repeat;
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  background-image: url("/content/images/next.png");
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-size: 22px 22px;
  background-repeat: no-repeat;
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: FontAwesome;
  font-size: 25px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.noUi-target {
  background: #ddd;
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 1px;
}

.noUi-horizontal .noUi-handle {
  width: 10px;
  height: 10px;
  left: 0;
  right: -2px !important;
  top: -5px;
  background: #8f8f8f !important;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: none;
  outline: none;
}

.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
  display: none;
}

.noUi-connect {
  background: #8f8f8f;
}

.nouislider-values {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 1.2rem;
  width: 100%;
}
.nouislider-values .nouislider-value {
  display: flex;
  flex-direction: column;
}

.button {
  transition: all 200ms ease-out;
  display: block;
  font-family: "gobold-regular";
  background: #2153aa;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 1rem 2rem;
  border: 1px solid transparent;
}
.button:hover {
  background: #000;
  color: #fff;
}
.button:focus {
  background: #000;
  color: #fff;
}
.button--large {
  padding: 2rem 2rem;
}
.button--invert {
  background: #fff;
  border-color: #000;
  color: #000;
}
.button--invert:hover {
  background: #000;
  color: #fff;
}
.button--invert:focus {
  background: #000;
  color: #fff;
}

.popout {
  display: none;
  position: fixed;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2.3rem;
  width: calc(100% - 2rem);
  border: 1px solid #8f8f8f;
  z-index: 12;
  max-width: 600px;
}
.popout.--open {
  display: block;
}
.popout--small {
  max-width: 525px;
}
.popout--extrasmall {
  max-width: 400px;
}
.popout-quickview {
  width: 55vw;
  max-width: none;
}
@media (max-width: 48em) {
  .popout-quickview {
    width: 95%;
    padding: 1rem;
  }
}
.popout__content .--raw {
  font-family: "Gotham" !important;
  font-size: 9pt;
}
.popout__content .--raw span, .popout__content .--raw p {
  font-family: "Gotham" !important;
  font-size: 9pt;
}
.popout__close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
  line-height: 20px;
  font-size: 3rem;
  cursor: pointer;
}
.popout .loader {
  display: block;
  margin: 0 auto;
}
.popout .sizeguide-container {
  max-height: 70vh;
  overflow-y: scroll;
}
.popout .breadcrumb {
  display: flex;
  background: #E7E7E7;
}

.filter-popout {
  padding: 0;
  max-width: 500px;
  border-right: 2px solid #0e7fcf;
}
.filter-popout .popout__content .popout__title {
  padding: 1rem;
}
.filter-popout .popout__content .popout__section {
  padding: 1rem 2rem;
}
.filter-popout .popout__content .popout__section .filter__sort {
  padding-top: 8px;
}
.filter-popout .popout__content .popout__section .filter__sort-select {
  height: 28px;
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .filter__pricing {
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.filter-popout .popout__content .popout__section .filter__pricing .filter__input-group {
  position: relative;
  width: 50%;
  margin: 0 0.5rem;
}
.filter-popout .popout__content .popout__section .filter__pricing .filter__input-group:first-child {
  margin-left: 0;
}
.filter-popout .popout__content .popout__section .filter__pricing .filter__input-group:last-child {
  margin-right: 0;
}
.filter-popout .popout__content .popout__section .filter__pricing .filter__input-group .filter__input-help {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
  font-size: 1.4rem;
}
.filter-popout .popout__content .popout__section .filter__pricing .filter__input-group input {
  padding-left: 1.5rem;
  width: 100%;
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .apply-filter {
  width: 100%;
  background-color: #0e7fcf;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  display: inline-block;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .filter__name {
  color: #0e7fcf;
  font-size: 1.3rem;
  font-family: "gobold-regular";
}
.filter-popout .popout__content .popout__section .brand__list {
  margin: 1rem 0;
  max-height: 200px;
  overflow-y: auto;
}
.filter-popout .popout__content .popout__section .brand__list .brand__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  padding-right: 0.5rem;
}
.filter-popout .popout__content .popout__section .brand__list .brand__item .info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.filter-popout .popout__content .popout__section .brand__list .brand__item .info .brand__name {
  color: #333;
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .brand__list .brand__item .info .brand__check {
  width: 17px;
  height: 17px;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #333;
  cursor: pointer;
  margin-right: 0.5rem;
}
.filter-popout .popout__content .popout__section .brand__list .brand__item .info .brand__check-active {
  background-color: #333;
}
.filter-popout .popout__content .popout__section .brand__list .brand__item .brand__product-count {
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .brand__list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fcb131;
}
.filter-popout .popout__content .popout__section .brand__list::-webkit-scrollbar {
  width: 5px;
  background-color: #fcb131;
}
.filter-popout .popout__content .popout__section .brand__list::-webkit-scrollbar-thumb {
  background-color: #fcb131;
  border: 1px solid #fcb131;
}
.filter-popout .popout__content .popout__section .models__list {
  margin: 1rem 0;
  max-height: 200px;
  overflow-y: auto;
}
.filter-popout .popout__content .popout__section .models__list .model__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  padding-right: 0.5rem;
}
.filter-popout .popout__content .popout__section .models__list .model__item .info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.filter-popout .popout__content .popout__section .models__list .model__item .info .model__name {
  color: #333;
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .models__list .model__item .info .model__check {
  width: 17px;
  height: 17px;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #333;
  cursor: pointer;
  margin-right: 0.5rem;
}
.filter-popout .popout__content .popout__section .models__list .model__item .info .model__check-active {
  background-color: #333;
}
.filter-popout .popout__content .popout__section .models__list .model__item .model__product-count {
  font-size: 1.3rem;
}
.filter-popout .popout__content .popout__section .model__list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fcb131;
}
.filter-popout .popout__content .popout__section .model__list::-webkit-scrollbar {
  width: 5px;
  background-color: #fcb131;
}
.filter-popout .popout__content .popout__section .model__list::-webkit-scrollbar-thumb {
  background-color: #fcb131;
  border: 1px solid #fcb131;
}
.filter-popout .popout__content .popout__section .color__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.filter-popout .popout__content .popout__section .color__list .color__item {
  margin: 0 0.1rem;
}
.filter-popout .popout__content .popout__section .color__list .color__item:first-child {
  margin-left: 0;
}
.filter-popout .popout__content .popout__section .color__list .color__item .filter__ball-container {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.filter-popout .popout__content .popout__section .color__list .color__item .filter__ball-container .filter__ball {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  background-size: cover;
}
.filter-popout .popout__content .popout__section .color__list .color__item .filter__ball-container:hover {
  border: 1px solid #000;
}
.filter-popout .popout__content .popout__section .color__list .color__item .filter__ball-container-active {
  border: 1px solid #000;
}
.filter-popout .popout__content .title {
  text-transform: uppercase;
}

.loader {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000 transparent transparent transparent;
}
.loader div:nth-child(1) {
  animation-delay: -0.45s;
}
.loader div:nth-child(2) {
  animation-delay: -0.3s;
}
.loader div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  z-index: 7;
  position: relative;
  width: 100%;
  background: url("/content/images/header.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 64em) {
  .header {
    height: 50px;
  }
}
@media (max-width: 26em) {
  .header {
    background: url("/content/images/header-small.png") no-repeat;
  }
}
.header__logo {
  max-height: 50px;
  padding: 1.25rem 0;
}
.header__menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 48em) {
  .header__actions {
    margin-left: 1rem;
  }
}
.header__info {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #5b5b5f;
  text-transform: uppercase;
}
@media (max-width: 64em) {
  .header__info {
    display: none;
  }
}
.header__hamburguer {
  display: none;
  width: 50px;
  height: 100%;
}
.header__hamburguer .hamburguer__switch {
  position: relative;
  width: 100%;
  height: 100%;
}
.header__hamburguer .hamburguer__bread, .header__hamburguer .hamburguer__patty {
  transition: all 200ms ease-out;
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.header__hamburguer .hamburguer__bread {
  margin-top: -8px;
}
.header__hamburguer .hamburguer__bread ~ .hamburguer__bread {
  margin-top: 8px;
}
#header-menu-switch:checked ~ .header .header__hamburguer .hamburguer__patty {
  display: none;
}
#header-menu-switch:checked ~ .header .header__hamburguer .hamburguer__bread {
  transform: translate(0, 10px) rotate(45deg);
}
#header-menu-switch:checked ~ .header .header__hamburguer .hamburguer__bread ~ .hamburguer__bread {
  transform: translate(0, -6px) rotate(-45deg);
}
@supports (display: grid) {
  .header {
    display: grid;
    grid-template-columns: minmax(150px, auto) 1fr auto;
  }
  .header__actions {
    justify-content: flex-end;
  }
}
@media (max-width: 64em) {
  .header:not(.header--home) {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    padding: 0 1rem;
  }
  .header:not(.header--home) .header__menu {
    display: none;
  }
  .header:not(.header--home) .header .menu {
    display: none;
  }
  .header:not(.header--home) .header__logo-wrap {
    grid-column: 2/3;
    justify-self: center;
  }
  .header:not(.header--home) .header__actions {
    order: 3;
  }
  .header:not(.header--home) .header__search--opened .header__search-input {
    display: block;
  }
  .header:not(.header--home) .header__search--opened .header__search-close {
    display: block;
  }
  .header:not(.header--home) .header__search-input {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    padding: 1.5rem;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #333;
  }
}
@media (max-width: 64em) and (max-width: 64em) {
  .header:not(.header--home) .header__search-input {
    color: #000;
  }
}
@media (max-width: 64em) {
  .header:not(.header--home) .header__hamburguer {
    display: block;
    position: absolute;
    left: 0;
    order: 1;
  }
  .header:not(.header--home) .header__logo-wrap {
    display: block;
    order: 2;
    margin-left: 4rem;
    flex-shrink: 0;
  }
}

.header--home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 0 2.5rem 0 3vw;
  border: none;
  background: transparent;
  height: 55px;
}
.header--home .header__logo {
  max-height: 55px;
  margin-top: 100px;
}
@media (max-width: 48em) {
  .header--home {
    padding: 0 2.5rem 0 5vw;
  }
  .header--home .header__logo {
    margin-top: 0;
  }
}

.header-fixed {
  top: 0;
  position: sticky;
  background: #fff;
  z-index: 5;
}

.site-menu {
  display: flex;
  padding: 0 10rem;
  background: #fff;
  z-index: 6;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  top: 0;
}
@supports (position: sticky) {
  .site-menu {
    position: sticky;
    margin: 0 -5rem;
    width: auto;
  }
}
@media (max-width: 64em) {
  .site-menu {
    display: none;
  }
}

.content {
  min-height: calc(100vh - 301px);
  background: white;
  /*@include md{
      padding:$header-height 0 $content-padding;
  }*/
  /*&--home{
      @include md{
          padding:calc(2.5rem + 50px) 0 $content-padding;
      }
  }*/
}
@media (max-width: 48em) {
  .content {
    min-height: 0;
  }
}
.content__container {
  max-width: 1150px;
  margin: 0 auto;
}
.content__container-cart-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 64em) {
  .content__container-cart-content {
    flex-direction: column;
  }
}
.content .no-gutter {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}
@media (max-width: 64em) {
  .content .no-gutter {
    margin-bottom: 0;
  }
}

.shop {
  padding: 2.5rem;
  font-family: "TradeGothic", sans-serif;
  background: white;
}
@media (max-width: 64em) {
  .shop {
    padding: 0 1rem;
  }
}
@media (max-width: 48em) {
  .shop {
    margin-top: 1rem;
  }
}
.shop .aviso {
  background: #7B00FF;
  padding: 14px 70px;
  margin: 10px 0;
}
.shop .aviso .aviso-text {
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-family: "Roboto";
  font-weight: 300;
  line-height: 20px;
}
.shop .aviso .aviso-text .aviso-color {
  color: #EDFF14;
  font-weight: 500;
}
@media (max-width: 64em) {
  .shop .aviso .aviso-text {
    line-height: 16px;
    font-size: 12px;
  }
}
@media (max-width: 64em) {
  .shop .aviso {
    padding: 14px 10px;
  }
}

.shop-content {
  display: flex;
}

.side-menu {
  position: fixed;
  top: calc(4rem * 2 + 7rem);
  padding-left: 3vw;
  margin-top: 5rem;
  font-size: 2.4rem;
  z-index: 5;
}
.side-menu__item {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  display: block;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.side-menu__item:hover {
  color: #000;
}
.side-menu__item:focus {
  color: #000;
}
.side-menu__item--separate {
  margin-bottom: 3rem;
}
.side-menu__item--outstand {
  color: #000;
}
.side-menu__item--outstand:hover {
  color: #fff;
}
.side-menu__item--outstand:focus {
  color: #fff;
}
.side-menu__toggle-item {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  display: block;
  color: #000;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  cursor: pointer;
}
.side-menu__toggle-item:hover {
  color: #000;
}
.side-menu__toggle-item:focus {
  color: #000;
}
@media (max-width: 48em) {
  .side-menu__toggle-item {
    margin-bottom: 1rem;
  }
}
.side-menu__toggle-section {
  font-size: 1.6rem;
}
.side-menu .toggle-section__item {
  display: block;
  margin-bottom: 0.75rem;
  color: #000;
}
@media (max-width: 48em) {
  .side-menu {
    top: calc(4rem + 3rem);
    margin-top: 2rem;
  }
}

body {
  width: 100%;
  height: 100%;
}

.site-no-transform {
  transform: none !important;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #fff; /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

.slideout {
  display: none;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  z-index: 0;
  display: none;
  background: #000;
}
.slideout-menu-white {
  background-color: white !important;
}
.slideout-menu .dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 20px;
  color: white;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
}
.slideout-menu .dropdown-toggle:hover {
  color: white;
  background-color: transparent !important;
}
.slideout-menu .dropdown-menu {
  position: relative;
  float: none;
  margin: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  width: 100%;
}
.slideout-menu ul li a:not(.dropdown-toggle) {
  display: block;
  padding: 10px 20px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
}

.dropdown-submenu {
  background: #676767;
}
.dropdown-submenu a {
  color: white !important;
}

#category-menu .open > .dropdown-toggle {
  transform: rotate(180deg);
}
#category-menu .dropdown-submenu > a.rotate {
  transform: rotate(180deg);
}

.subsubmenu {
  background: #bdbcbc;
}

.links {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 20px;
}
.links a {
  color: #b4d3d5;
  font-size: 24px;
  margin-right: 10px;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  z-index: 1;
  min-height: 100vh;
  background: white;
}

.slideout-open {
  overflow: hidden;
}
.slideout-open body {
  overflow: hidden;
}
.slideout-open .slideout-panel {
  overflow: hidden;
}
.slideout-open .slideout-menu {
  display: block;
}

.slideout-border {
  border-bottom: 1px solid #eee;
}

.navbar-toggle {
  padding: 0;
  margin: 0;
}

.dropdown-toggle:focus {
  color: white;
  background-color: transparent !important;
}

.fa-angle-down:before {
  content: "\f107";
  font-size: 26px;
  background: transparent;
}

.dropdown-menu > li > a:hover {
  background: inherit !important;
}
.dropdown-menu > li > a:focus {
  background: inherit !important;
}

.m--top-banner .top-banner {
  display: block;
}
.m--top-banner .content {
  /*@include md{
      padding: calc(50px - 30px) 0 0;
  }*/
  /*&--home{
      @include md{
          padding: calc(2.5rem + 50px - 30px) 0 0;
      }
  }*/
}
.m--color-invert .header {
  filter: invert(100%);
}
.m--color-invert .side-menu {
  filter: invert(100%);
}

.m--menu-fixed {
  /*.content{
      padding-top:calc(2.5rem + 50px);
  }*/
}
.m--menu-fixed .header {
  position: fixed;
  top: 0;
}
.m--menu-fixed .header__icon-action--cart {
  position: fixed;
  right: 2rem;
  animation: fadeIn 1s;
  padding: 0;
  top: 13px;
  z-index: 7;
}
.m--menu-fixed .header-option .fix {
  position: fixed;
  right: 5rem;
  animation: fadeIn 1s;
  padding: 0;
  top: 16px;
  z-index: 7;
}
.m--menu-fixed .shop-breadcrumb {
  position: fixed;
  top: 50px;
  margin-top: 0;
  width: 100%;
}
.m--menu-fixed .site-menu {
  position: fixed;
  /*.header__icon-action--cart{
      padding: 0;
  }*/
}
@supports (position: sticky) {
  .m--menu-fixed .site-menu {
    position: sticky;
    /*.header__icon-action--cart{
        padding:inherit;
    }*/
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.m--popout {
  overflow-y: hidden;
}
.m--popout #site::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 11;
}

.m--popup-banner {
  overflow-y: hidden;
}
.m--popup-banner #site::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 11;
}
.m--popup-banner .popup-banner {
  display: block;
}

.m--raw ul {
  list-style-type: initial;
  padding-inline-start: 4rem;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
}

.m--filters .shop-filter {
  display: block !important;
  visibility: visible !important;
}
@media (max-width: 64em) {
  .m--filters .shop-filter__close {
    display: block;
  }
}

.site__nav .menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.site__nav .menu .logo-wrapper {
  flex-shrink: 0;
}
.site__nav .menu .logo-left {
  position: absolute;
  left: 0;
}
.site__nav .menu .shop-li .shop-submenu {
  display: none;
}
.site__nav .menu .shop-li:hover .shop-submenu {
  display: flex;
  align-items: flex-end;
}
.site__nav .menu .shop-li:hover .menu__parent {
  position: relative;
}
.site__nav .menu .shop-li:hover .menu__parent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: black;
}
.site__nav .menu li {
  /*height: $header-height;*/
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}
.site__nav .menu li .menu__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: white;
  font-size: 1.4rem;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "gobold-light";
  font-weight: bold;
}
.site__nav .menu li .menu__item--image {
  opacity: 1;
}
.site__nav .menu li .menu__item:hover {
  text-decoration: none;
  opacity: 1;
}
.site__nav .menu li .menu__item:hover--outstand {
  color: #000;
  font-weight: bold;
}
.site__nav .menu li .menu__item:focus {
  text-decoration: none;
  opacity: 1;
}
.site__nav .menu li .menu__item:focus--outstand {
  color: #000;
  font-weight: bold;
}
.site__nav .menu li .menu__item--active {
  opacity: 1;
  border-color: #000;
}
.site__nav .menu li .menu__item--outstand {
  color: #000;
}
.site__nav .menu__dropdown {
  position: relative;
}
.site__nav .menu__dropdown:hover .menu-dropdown__list {
  display: block;
}
.site__nav .menu__dropdown:focus .menu-dropdown__list {
  display: block;
}
.site__nav .menu .menu-dropdown__list {
  display: none;
  position: absolute;
  top: 0;
  min-width: 100px;
  background: black;
  color: white;
  padding: 0;
  border-top: 1px solid #e5e5e5;
  z-index: 5;
}
.site__nav .menu .menu-dropdown__list.lookbook {
  left: calc(50% - 3.5rem);
}
.site__nav .menu .menu-dropdown__list.shop {
  left: 100%;
}
.site__nav .menu .menu-dropdown__columns {
  display: flex;
  flex-direction: column;
}
.site__nav .menu .menu-dropdown__item {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  opacity: 0.7;
  white-space: nowrap;
  width: 100%;
  display: block;
  padding: 0.5rem;
}
.site__nav .menu .menu-dropdown__item:hover {
  opacity: 1;
}
.site__nav .menu .menu-dropdown__item:focus {
  opacity: 1;
}
.site__nav .menu .menu-dropdown__column:not(:last-child) {
  margin-right: 1.5rem;
}
.site__nav .menu .menu-dropdown__column .category {
  height: fit-content;
  padding: 0 0.5rem;
}
.site__nav .menu .menu-dropdown__column .category a {
  font-size: 1.1rem;
  color: #000;
  font-family: "Gotham";
}

.modal-cart {
  position: absolute;
  z-index: 100000000000000000000;
  top: 45px;
  right: -10px;
  margin-top: 4px;
  display: none;
}
.modal-cart.show {
  display: block;
}
@media (max-width: 64em) {
  .modal-cart {
    width: 100vw;
    top: 83px;
    right: -324%;
  }
  .modal-cart .triangle {
    margin-left: 40px;
    display: none;
  }
}
.modal-cart .triangle {
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  right: 20px;
  margin: 0 0px 0 15px;
  background: white;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  background: black;
  z-index: -1;
}
.modal-cart .modal-cart-body {
  padding: 1.5rem 2.5rem;
  min-width: 350px;
  min-height: 200px;
  background: rgb(250, 250, 248);
  border: 1px solid #969696;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.modal-cart .modal-cart-body.flex-start {
  justify-content: flex-start;
  align-items: flex-start;
}
.modal-cart .modal-cart-body .quantity {
  font-weight: bold;
  font-size: 1.3rem;
  width: 100%;
}
.modal-cart .modal-cart-body .quantity strong {
  font-family: "MontserratBold";
}
.modal-cart .modal-cart-body .summary {
  border-top: 1px solid #ababab;
  padding: 1.2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.modal-cart .modal-cart-body .summary.hidden {
  display: none;
}
.modal-cart .modal-cart-body .summary__item {
  margin: 0.7rem 0;
  width: 100%;
  display: flex;
  flex-direction: normal;
  justify-content: space-between;
  align-items: center;
}
.modal-cart .modal-cart-body .summary__item:first-child {
  margin: 0 0 0.7rem 0;
}
.modal-cart .modal-cart-body .summary__item:last-child {
  margin: 0.7rem 0 0 0;
}
.modal-cart .modal-cart-body .summary__item span {
  font-size: 1.2rem;
  color: #ababab;
}
.modal-cart .modal-cart-body .summary__item span.total {
  color: black;
  font-weight: bold;
}
.modal-cart .modal-cart-body .summary__item .button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: white;
  background: black;
  text-transform: capitalize;
}
.modal-cart .modal-cart-body .modal-cart-products {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 330px;
  overflow-y: scroll;
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 0;
  margin: 1.3rem 0;
}
@media (max-width: 64em) {
  .modal-cart .modal-cart-body .modal-cart-products {
    max-height: 95vh;
  }
}
.modal-cart .modal-cart-body .modal-cart-products::-webkit-scrollbar {
  width: 6px;
}
.modal-cart .modal-cart-body .modal-cart-products::-webkit-scrollbar-thumb {
  background-color: #969696;
  outline: 1px solid slategrey;
}
.modal-cart .modal-cart-body .modal-cart-products__empty {
  padding: 2rem 0;
  width: 100%;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  flex-direction: normal;
  justify-content: flex-start;
  align-items: center;
}
.modal-cart .modal-cart-body .modal-cart-products__empty img {
  height: 20px;
  margin-right: 0.5rem;
}
.modal-cart .modal-cart-body .modal-cart-products__product {
  margin: 5px 0 5px 0;
  width: 100%;
  height: fit-content;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: normal;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-cart .modal-cart-body .modal-cart-products__product:last-child {
  margin: 0.5rem 0 0 0;
}
.modal-cart .modal-cart-body .modal-cart-products__product:first-child {
  margin: 0 0 0.5rem 0;
}
.modal-cart .modal-cart-body .modal-cart-products__product .image {
  flex-shrink: 0;
  margin-right: 1rem;
  display: flex;
  flex-direction: normal;
  justify-content: flex-start;
  align-items: center;
  height: fit-content;
}
.modal-cart .modal-cart-body .modal-cart-products__product .image img {
  height: 90px;
}
.modal-cart .modal-cart-body .modal-cart-products__product .detail {
  margin-left: 1rem;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-between;
}
.modal-cart .modal-cart-body .modal-cart-products__product .detail__title {
  display: flex;
  flex-direction: normal;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: black;
  font-size: 1.2rem;
  height: fit-content;
  margin-bottom: 0.5rem;
}
.modal-cart .modal-cart-body .modal-cart-products__product .detail__color, .modal-cart .modal-cart-body .modal-cart-products__product .detail__size, .modal-cart .modal-cart-body .modal-cart-products__product .detail__quantity {
  font-size: 1.2rem;
  color: #ababab;
  margin: 0.3rem 0;
  height: fit-content;
}
.modal-cart .modal-cart-body .modal-cart-products__product .detail__delete {
  display: flex;
  flex-direction: normal;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
}
.modal-cart .modal-cart-body .modal-cart-products__product .detail__delete .trash-button {
  padding: 1rem 0 1rem 1rem;
  cursor: pointer;
}

.header__search {
  position: relative;
}
@media (max-width: 48em) {
  .header__search {
    border-right: none;
    padding-right: 0;
    display: flex;
  }
}
.header__search-close {
  cursor: pointer;
  position: absolute;
  right: 4px;
  top: 4px;
  display: none;
  font-weight: 300;
  font-size: 1.4rem;
}
.header__search-close.open {
  display: block;
}
.header .open {
  display: block;
}
.header .open + .header__search-close {
  display: block;
}
.header__search-input {
  border: none;
  border-bottom: 1px solid transparent;
  border-right: 1px solid black;
  padding: 0 1rem 0 0;
  width: 60px;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}
.header__search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1; /* Firefox */
  font-size: 1.2rem;
}
.header__search-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: black;
  font-size: 1.2rem;
}
.header__search-input::-ms-input-placeholder { /* Microsoft Edge */
  color: black;
  font-size: 1.2rem;
}
@media (max-width: 64em) {
  .header__search-input {
    border-right: none;
  }
}
.header__search-input.open {
  transition: all 0.2s ease-in-out;
  width: 200px;
  border-color: black;
  border-right: 1px solid transparent;
}
.header__search-input.placeholder {
  color: black;
}
.header__search-input:-moz-placeholder {
  color: black;
}
.header__search-input::-moz-placeholder {
  color: black;
}
.header__search-input:-ms-input-placeholder {
  color: black;
}
.header__search-input::-webkit-input-placeholder {
  color: black;
}
@media (max-width: 48em) {
  .header__search-input {
    width: 90px;
  }
}
.header__search-icon {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  height: 20px;
}
.header__search-icon.open {
  transition: all 0.2s ease-in-out;
  width: 200px;
  border-color: black;
  border-right: 1px solid transparent;
}
.header__search-icon.active {
  max-width: 22px;
}
.header__user-actions {
  display: flex;
  height: 100%;
  margin-left: 0.5rem;
}
.header__icon-action {
  /*@supports (position: sticky){*/
  /*}*/
  display: block;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  padding-left: 0.7rem;
}
.header__icon-action > img {
  height: 23px;
  vertical-align: bottom;
}
.header__icon-action .item-count {
  position: absolute;
  top: 0px;
  right: 0px;
  color: white;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 10rem;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 2rem;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header__icon-action .wishlist-count {
  position: absolute;
  top: 25px;
  right: 10px;
  color: #000;
  background-color: white;
  border: 1px solid #000;
  border-radius: 10rem;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header__dropdown {
  position: relative;
}
.header__dropdown .dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  background: white;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  z-index: 9;
  cursor: initial;
}
.header__dropdown .dropdown__register-text {
  font-size: 1.3rem;
  margin-top: 1rem;
  display: block;
}
.header__dropdown .dropdown__link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 2rem;
}
.header__dropdown .dropdown__logged-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px dashed #e5e5e5;
  padding: 1.5rem 1.5rem 0;
  margin-top: 1rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}
.header__dropdown .dropdown__logged-text a {
  margin-top: 1.5rem;
}
.header__dropdown:hover .dropdown__menu {
  display: block;
}
.header__dropdown:focus .dropdown__menu {
  display: block;
}

.cart-hover:hover .modal-cart {
  display: block;
}
.cart-hover:hover .modal-cart.hidden {
  display: none;
}

.suggested-search {
  position: absolute;
  z-index: 100000000000000000000;
  top: 32px;
  right: 82%;
  margin-top: 4px;
}
@media (min-width: 1500px) {
  .suggested-search {
    top: 11%;
    margin-top: 1px;
  }
}
@media (max-width: 64em) {
  .suggested-search {
    width: 100vw;
    top: 88px;
    right: -356%;
  }
  .suggested-search .triangle {
    margin-left: 40px;
    display: none;
  }
}
.suggested-search .triangle {
  /*width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0px 8px;
  border-color: #fafaf8 transparent transparent transparent;
  margin-left: 20px;
  transform: rotate(180deg);*/
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  right: 20px;
  margin: 0 0px 0 15px;
  background: white;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  background: black;
  z-index: -1;
}
.suggested-search .suggested-products {
  padding: 10px 18px;
  min-width: 295px;
  min-height: 100px;
  max-height: 187px;
  overflow-y: scroll;
  background: rgb(250, 250, 248);
  border: 1px solid #969696;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 64em) {
  .suggested-search .suggested-products {
    max-height: 95vh;
  }
}
.suggested-search .suggested-products::-webkit-scrollbar {
  width: 6px;
}
.suggested-search .suggested-products::-webkit-scrollbar-thumb {
  background-color: #969696;
  outline: 1px solid slategrey;
}
.suggested-search .suggested-products.flex-start {
  justify-content: flex-start;
  align-items: flex-start;
}
.suggested-search .suggested-products__product {
  margin: 5px 0 5px 0;
  width: 100%;
}
.suggested-search .suggested-products__product a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.suggested-search .suggested-products__product:first-child {
  margin: 5px 0 5px 0;
}
.suggested-search .suggested-products__product:hover {
  opacity: 0.4;
}
.suggested-search .suggested-products__product__wrapper {
  display: flex;
  flex-direction: normal;
  justify-content: center;
  align-items: center;
}
.suggested-search .suggested-products__product__wrapper .product-image {
  max-height: 75px;
  margin-right: 20px;
}
.suggested-search .suggested-products__product__wrapper .product-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.suggested-search .suggested-products__product__wrapper .product-title {
  font-weight: bold;
  font-size: 14px;
  color: black;
  text-transform: capitalize;
}
.suggested-search .suggested-products__product__wrapper .product-code {
  font-size: 12px;
  color: #868686;
  text-transform: none;
  margin-top: 0.5rem;
}

.load {
  display: inline-block !important;
  margin: 0 auto;
}

@media (max-width: 64em) {
  .home {
    margin-bottom: 0;
  }
}
.home-banner {
  margin: 0.5rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home-banner .item {
  margin: 0px;
}
.home-banner .item:first-child {
  margin-left: 0;
}
.home-banner .item:last-child {
  margin-right: 0;
}
.home-banner-desktop {
  width: 100%;
}
.home-banner-desktop .item {
  margin-bottom: 0.5rem;
}
@media (max-width: 48em) {
  .home-banner-sm {
    display: flex !important;
    flex-wrap: wrap;
  }
}
.home-banner-sm .item {
  margin-bottom: 0.5rem;
}
.home-banner img {
  width: 100%;
}
.home-video {
  margin-bottom: 1rem;
}
.home-lookbook-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /*max-height: 600px;*/
  margin-bottom: 1rem;
}
.home-lookbook-items .lookbook-items-container {
  max-width: 74%;
  flex-basis: 74%;
}
.home-lookbook-items .lookbook-items-container .lookbook-items {
  width: 100%;
}
.home-lookbook-items .get-the-items {
  flex-basis: 25%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home-lookbook-items .get-the-items img {
  max-height: 424px;
}
.home-bottom-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home-bottom-images .item {
  margin: 0 0.5rem;
}
.home-bottom-images .item:first-child {
  margin-left: 0;
}
.home-bottom-images .item:last-child {
  margin-right: 0;
}
.home__categories {
  width: 100%;
  display: flex;
  margin: 1% 0;
}
.home__medium-banners {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.home__medium-banners__item {
  display: flex;
  margin: 1% 0;
}
.home__medium-banners__item:first-child {
  margin-right: 1%;
}
.home__medium-banners__item:last-child {
  margin-left: 1%;
}
@media (max-width: 48em) {
  .home__medium-banners {
    flex-direction: column;
  }
}
.home__sale {
  margin: 2rem 0 3rem;
}
.home__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #000;
  margin-top: 2rem;
}
.home__social .social__title {
  font-weight: bold;
  font-size: 2.2rem;
  margin: 0;
  margin-bottom: 1rem;
}
.home__social .social__subtitle {
  font-size: 1.4rem;
}
.home__social .social__title, .home__social .social__subtitle {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.home__social .social__links {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.home__social .social__links img {
  width: 50px;
  margin: 0 1rem;
}
.home__social .social__links a {
  color: #000;
  font-size: 2.4rem;
  margin: 0 3rem;
}
@media (max-width: 64em) {
  .home__social .social__links {
    flex-direction: column;
  }
  .home__social .social__links a {
    margin: 1rem 3rem;
  }
}
.home__social .social__images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0.5rem;
}
.home__social .social__images img {
  margin: 1rem 1rem;
  width: 25%;
}
@media (max-width: 64em) {
  .home__social .social__images {
    display: none;
  }
}
@media (max-width: 48em) {
  .home__social {
    margin-top: 1rem;
  }
  .home__social .social__links img {
    width: 35px;
  }
}
.home .saler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}
.home .saler-title a {
  color: #00ACA0;
  padding: 1rem;
  text-transform: uppercase;
  border: 1px solid #00ACA0;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 48em) {
  .home .saler-title a {
    font-size: 1.8rem;
  }
}
.home .saler-content {
  max-width: 60%;
  margin: 2rem 0;
  text-align: center;
  line-height: 3rem;
}
@media (max-width: 48em) {
  .home .saler-content {
    max-width: none;
    padding: 0 1rem;
  }
}
.home .saler-register {
  background-color: #00ACA0;
  padding: 1.5rem 4rem;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.home .saler-register a {
  color: white;
}
.home .catalog {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
.home .catalog-content {
  max-width: 60%;
}
.home .catalog-content .heading {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home .catalog-content .heading .bar {
  position: absolute;
  border-top: 2px solid #ccc;
  top: 50%;
  height: 2px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home .catalog-content .heading .title {
  text-align: center;
  z-index: 2;
  background-color: white;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 2rem;
}
.home .catalog-content .images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home .catalog-content .images a {
  cursor: pointer;
  margin-right: 5rem;
}
.home .catalog-content .images a:last-child {
  margin-right: 0;
}
@media (max-width: 64em) {
  .home .catalog-content .images a {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 48em) {
  .home .catalog-content {
    max-width: none;
    width: 100%;
  }
  .home .catalog-content .heading {
    margin: 0 1rem;
  }
  .home .catalog-content .heading .title {
    font-size: 1.5rem;
  }
  .home .catalog-content .images {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
  }
  .home .catalog-content .images img {
    margin: 0;
    width: 100%;
  }
  .home .catalog-content .images img:first-child {
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .home .catalog {
    margin-bottom: 1.5rem;
  }
}

.contact-bar {
  position: relative;
  border-bottom: 1px solid #333;
}
.contact-bar .greeting {
  position: absolute;
  top: 1.1rem;
  left: 2.5rem;
  font-size: 1.3rem;
  color: #494949;
}
@media (max-width: 64em) {
  .contact-bar .greeting {
    display: none;
  }
}
.contact-bar .contact-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: black;
}
.contact-bar .contact-numbers .contact-number-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  padding: 0 1rem;
  font-size: 1.3rem;
  color: white;
}
.contact-bar .contact-numbers .contact-number-item i.green {
  color: #00d400;
  font-size: 1.6rem;
  margin-right: 0.5rem;
}
.contact-bar .contact-numbers .contact-number-item:not(:last-child) {
  border-right: 1px solid #000;
}
@media (max-width: 48em) {
  .contact-bar .contact-numbers .contact-number-item {
    display: flex !important;
  }
}
@media (max-width: 48em) {
  .contact-bar .contact-numbers {
    flex-wrap: wrap;
  }
  .contact-bar .contact-numbers .contact-number-item:nth-child(2) {
    border: none;
  }
}

.type-store {
  background-color: #ddd;
  text-transform: uppercase;
  padding: 0.5rem;
  font-size: 1.3rem;
}
.type-store--sm {
  left: 0;
  width: fit-content;
}

#header-menu-switch {
  display: none;
}

.nav-menu {
  display: none;
}
@media (max-width: 64em) {
  #header-menu-switch:checked ~ .nav-menu {
    display: block;
    background: white;
    width: 100%;
    z-index: 7;
    position: fixed;
    top: 50px;
  }
  #header-menu-switch:checked ~ .nav-menu::before, #header-menu-switch:checked ~ .nav-menu::after {
    left: calc(1.5rem + 2px);
    z-index: 12;
  }
  #header-menu-switch:checked ~ .nav-menu::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    margin-bottom: -3px;
    top: -8px;
  }
  #header-menu-switch:checked ~ .nav-menu::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    margin-bottom: -3px;
    top: -6px;
  }
}
.nav-menu__section {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.nav-menu__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem 2rem 1rem 8rem;
  text-transform: capitalize;
}
.nav-menu__item .icon {
  position: absolute;
  left: 4rem;
  font-size: 1.8rem;
  text-align: center;
  margin-right: 1rem;
  min-width: 30px;
}
.nav-menu__item--outstand {
  color: #000;
}
.nav-menu__item-icon {
  position: absolute;
  left: 4rem;
  width: 25px;
}
.nav-menu__item-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #333;
}

.newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12rem 0 10rem;
}
.newsletter__title {
  margin: 0;
  margin-bottom: 5rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-transform: lowercase;
  text-align: center;
}
.newsletter__input {
  border: none;
  border-bottom: 1px solid #000;
  max-width: 400px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 1rem 1rem;
  margin-bottom: 5rem;
}
.newsletter__input.placeholder {
  color: #000;
  text-transform: uppercase;
}
.newsletter__input:-moz-placeholder {
  color: #000;
  text-transform: uppercase;
}
.newsletter__input::-moz-placeholder {
  color: #000;
  text-transform: uppercase;
}
.newsletter__input:-ms-input-placeholder {
  color: #000;
  text-transform: uppercase;
}
.newsletter__input::-webkit-input-placeholder {
  color: #000;
  text-transform: uppercase;
}
.newsletter__links {
  display: flex;
  margin-top: 2rem;
}
.newsletter__link-item {
  display: block;
  margin: 0 2rem;
}
.newsletter__link-item > img {
  height: 20px;
}
@media (max-width: 26em) {
  .newsletter {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.top-banner {
  background: #000;
  border-bottom: 1px solid #e0e0e0;
  /*padding:.5rem 0;*/
  color: white;
  text-align: center;
  width: 100%;
  z-index: 12;
  font-family: "TradeGothic", sans-serif;
  /*@include sm{
      padding:.5rem 0;
  }*/
}
.top-banner__item {
  font-size: 1.2rem;
  white-space: nowrap;
}
@media (max-width: 64em) {
  .top-banner__item-desktop {
    display: none;
  }
}
@media (max-width: 48em) {
  .top-banner__item {
    margin: 0 0.5rem;
    font-size: 1.2rem;
    white-space: normal;
  }
}
@media (max-width: 26em) {
  .top-banner__item {
    font-size: 1rem;
  }
}

.top-banner.hider {
  display: none;
}

.close-top-banner {
  display: inline;
  float: right;
  margin-right: 10px;
  cursor: pointer;
}

.popup-banner {
  display: none;
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  padding: 1rem;
  max-width: 500px;
  width: 100%;
}
.popup-banner__close {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 4rem;
  line-height: 20px;
  padding: 2rem;
  cursor: pointer;
}
.popup-banner__link {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 3rem;
  color: white;
  background-color: #000;
  text-transform: uppercase;
  font-size: 1.5rem;
  border: 1px solid white;
}
.popup-banner__link:hover {
  color: white;
}
.popup-banner__link:focus {
  color: white;
}

.institutional {
  padding-top: 5rem;
}
@media (max-width: 26em) {
  .institutional {
    padding-top: 2rem;
  }
}
.institutional .faqs {
  padding: 3rem 10rem;
}
@media (max-width: 26em) {
  .institutional .faqs {
    padding: 3rem 2rem;
  }
}
.institutional .faqs .flex-faqs .faq-section {
  border-top: none;
  padding: 9px 0;
  border-bottom: 2px solid;
}
.institutional .faqs .flex-faqs .faq-section .step-title h2 {
  font-family: "gobold-regular";
  font-size: 1.5rem;
  line-height: 2rem;
}
.institutional .faqs .flex-faqs .faq-section .text-light {
  margin-bottom: 22px;
  font-size: 1.4rem;
  font-family: "gobold-light";
  line-height: 2rem;
}
.institutional .title {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 0;
  color: #000;
  font-weight: bold;
}
.institutional p {
  font-size: 1.4rem;
}
.institutional.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 60%;
}
@media (max-width: 48em) {
  .institutional.container {
    max-width: 100%;
  }
}
.institutional.container span, .institutional.container p {
  font-family: "Gotham" !important;
  font-size: 9pt;
}

.banner {
  position: relative;
}

.company-text {
  background: #e5e5e5;
  padding: 3rem 4rem;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 700px;
}
.company-text .outstand {
  color: #000;
}
@media (max-width: 64em) {
  .company-text {
    position: static;
    max-width: 100%;
    transform: none;
  }
}

.top-bar {
  background-color: black;
  padding: 0.8rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.top-bar .header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  position: relative;
  width: 33%;
  /*&.first-header{
      @include sm(){
          grid-template-rows: 2fr;
      }
  }*/
}
.top-bar .header-container.action-container .header-option {
  padding: 0 0.7rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: invert(1);
}
.top-bar .header-container.action-container .header-option ul li a {
  font-size: 1.3rem;
}
.top-bar .header-container.action-container .header-option .cart-hover {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.top-bar .header-container .search-wrapper {
  width: 16rem;
  text-align: right;
}
.top-bar .header-container .search-wrapper .search_input {
  width: 10rem;
  min-width: 1.8rem;
  box-sizing: border-box;
  border: none;
  font-size: 1.3rem;
  font-weight: normal;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  color: #000;
  text-align: left;
  background-color: transparent;
  background-image: url(/content/assets/images/searchicon.png);
  background-position: center left !important;
  background-repeat: no-repeat;
  background-size: 1.4rem;
  padding-left: 2rem;
}
.top-bar .header-container .search-wrapper .search_input::-webkit-input-placeholder {
  text-align: right;
  color: #000;
}
.top-bar .header-container .search-wrapper .search_input:hover {
  border-bottom: 0.1rem solid #000;
}
.top-bar .header-container .search-wrapper .search_input:focus {
  border-bottom: 0.1rem solid #000;
}
.top-bar .header-container .logo {
  display: flex;
}
.top-bar .header-container .logo a {
  flex-shrink: 0;
}
.top-bar .header-container .logo a img {
  height: 8rem;
}
@media (max-width: 48em) {
  .top-bar .header-container .logo a img {
    height: 4rem;
    margin-left: 0.5rem;
  }
}
.top-bar .header-container .actions {
  display: flex;
  align-items: center;
}
.top-bar .header-container .actions .basket {
  display: flex;
}
.top-bar .header-container .actions .basket .basket-item-count {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.top-bar .header-container .actions .basket .basket-item-count .count {
  position: absolute;
  color: #1dcaca;
  top: 14px;
  right: -6px;
  border-radius: 100px;
  width: 15px;
  height: 15px;
  line-height: 13px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #1dcaca;
  font-family: Helvetica;
}
@media (max-width: 48em) {
  .top-bar .header-container .actions .basket {
    margin-left: 0.5rem;
  }
}
.top-bar .fix {
  list-style: none;
  display: flex;
  flex-direction: center;
  justify-content: left;
}
.top-bar .fix li.menu-item {
  text-transform: uppercase;
  padding: 0 1rem;
}
.top-bar .fix li a {
  color: #494949;
  font-size: 1.4rem;
  line-height: 15px;
  white-space: nowrap;
}
.top-bar .fix li.border-left {
  padding-left: 0.7rem;
  border-left: 1px solid black;
}
.top-bar .fix li.border-right {
  padding-right: 0.7rem;
  border-right: 1px solid black;
}
.top-bar .menu-logo {
  width: 33%;
}
.top-bar .menu-logo img {
  height: 5rem;
  filter: invert(1);
}
.top-bar ul {
  list-style: none;
  display: block;
}
.top-bar ul li.menu-item {
  text-transform: uppercase;
  padding: 0 1rem;
}
.top-bar ul li a {
  color: #494949;
  font-size: 1.4rem;
  line-height: 15px;
  white-space: nowrap;
}
.top-bar ul li.border-left {
  padding-left: 0.7rem;
  border-left: 1px solid black;
}
.top-bar .navbar-toggle .icon-bar {
  background-color: #2b3c4e;
}
@media (max-width: 48em) {
  .top-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
}

.shop-submenu {
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 160px;
}
.shop-submenu .submenu {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-flow: column;
  padding-top: 1.6rem;
  background: black;
}
.shop-submenu .submenu i {
  color: white;
}
.shop-submenu .submenu .menu_category {
  padding: 0;
  font-size: 1.3rem;
  border: 1px solid #d1caca;
}
.shop-submenu .submenu .menu_category .menu__item {
  font-family: "gobold-light";
  cursor: pointer;
  display: block;
  padding: 1rem 1.6rem;
  width: 100%;
  font-weight: 300;
}
.shop-submenu .submenu .menu_category .menu__item:nth-child(n+2) {
  margin-top: -1px;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 12px;
  color: #fff;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
}
.dropdown-toggle:after {
  content: "\f107";
  font-family: fontawesome;
  color: white;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  vertical-align: sub;
  margin: 8px 0 0 0;
}

.dropdown-menu {
  position: absolute;
  top: 92%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 16rem;
  padding: 1rem;
  margin: 0.2rem 0 0;
  list-style: none;
  background-color: #999;
  background-clip: padding-box;
  /* left: -21rem; */
  min-width: unset;
  width: 20rem;
  border-radius: 0;
  box-shadow: 0 0;
}

.search-mobile {
  display: flex;
  justify-content: center;
  width: 100%;
}

.mobile-search {
  position: fixed;
  height: 36px;
  top: 0px;
  left: 0px;
  padding: 0px 15px;
  z-index: 9999999;
  width: 100%;
  background-color: rgb(243, 243, 243);
  display: flex;
  align-items: center;
}
.mobile-search .busqueda {
  width: calc(88vw - 25px);
  border: 0;
  border-bottom: 1px solid #888;
  background-color: rgb(243, 243, 243);
  font-size: 15px;
  color: Black;
}

body {
  width: 100%;
  height: 100%;
}

.special_category {
  background-color: #0399ce;
  padding: 0.5rem 0.5rem !important;
  color: #fff !important;
}

.shop-bar {
  display: none !important;
  font-size: 1.4rem;
  padding: 0 0 2.5rem;
}
@supports (display: grid) {
  .shop-bar {
    display: grid;
    grid-template-columns: 25rem repeat(3, 1fr);
  }
  .shop-bar__sort {
    justify-self: center;
  }
  .shop-bar__row-size {
    justify-self: flex-end;
  }
}
.shop-bar .toggle-filter {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
  font-weight: bold;
}
.shop-bar .toggle-filter .icon {
  margin-left: 0.5rem;
}
.shop-bar .toggle-filter--popup {
  display: none;
}
.shop-bar__breadcrumb .breadcrumb__item {
  color: #5b5b5f;
}
.shop-bar__breadcrumb .breadcrumb__item:hover {
  border-bottom: 1px solid #5b5b5f;
}
.shop-bar__breadcrumb .breadcrumb__item:focus {
  border-bottom: 1px solid #5b5b5f;
}
.shop-bar__sort {
  color: #5b5b5f;
}
.shop-bar__sort .sort__control {
  margin-left: 1rem;
  font-weight: bold;
}
.shop-bar__sort .sort__control option {
  font-size: 1.2rem;
}
.shop-bar__row-size {
  color: #5b5b5f;
}
.shop-bar__row-size .sort__item {
  cursor: pointer;
  margin-left: 0.5rem;
  padding: 0.25rem;
}
.shop-bar__row-size .sort__item--active {
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #333;
}
.shop-bar__row-size .sort__item:hover {
  border-bottom: 1px solid #5b5b5f;
}
.shop-bar__row-size .sort__item:focus {
  border-bottom: 1px solid #5b5b5f;
}
@media (max-width: 48em) {
  .shop-bar__row-size {
    display: none;
  }
}
@media (max-width: 64em) {
  .shop-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: flex !important;
  }
  .shop-bar .toggle-filter {
    display: none;
  }
  .shop-bar .toggle-filter--popup {
    display: block;
  }
  .shop-bar__breadcrumb, .shop-bar__sort, .shop-bar__row-size {
    display: none;
  }
}
@media (max-width: 48em) {
  .shop-bar {
    flex-wrap: wrap;
  }
  .shop-bar__breadcrumb {
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
  }
  .shop-bar__filtering {
    order: 2;
  }
  .shop-bar__sort {
    order: 3;
  }
}
@media (max-width: 26em) {
  .shop-bar {
    font-size: 80%;
  }
}

.shop-breadcrumb {
  background: white;
  margin: -2.5rem 0 1rem;
  display: flex;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  padding: 1rem 2.5rem;
  z-index: 1;
  font-size: 1.4rem;
  justify-content: space-between;
  border-top: 1px solid;
  border-bottom: 1px solid;
  font-family: "gobold-regular";
}
.shop-breadcrumb-crumb {
  display: flex;
  flex-direction: row-reverse;
}
.shop-breadcrumb__item, .shop-breadcrumb__separator {
  text-transform: uppercase;
  padding: 0 0.3rem;
}
@media (max-width: 64em) {
  .shop-breadcrumb {
    margin-top: -1rem;
    font-size: 70%;
  }
}
.shop-breadcrumb-filter-selector {
  display: flex;
  cursor: pointer;
  flex-direction: row-reverse;
  color: #000;
  font-weight: 700;
}

.shop-filter {
  width: 25rem;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.shop-filter__close {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 4rem;
  padding: 2rem;
  line-height: 2rem;
}
.shop-filter .filter__section {
  padding-bottom: 1rem;
  margin-right: 8rem;
}
@media (max-width: 64em) {
  .shop-filter .filter__section {
    margin-right: 0;
  }
}
.shop-filter .filter__section--fill {
  background: #ededed;
  padding: 1rem;
}
.shop-filter .filter__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.shop-filter .filter__list {
  display: flex;
  flex-wrap: wrap;
}
.shop-filter .filter__list--vertical {
  flex-direction: column;
}
.shop-filter .filter__list--vertical .filter__list-item {
  padding: 0.5rem 0;
  font-family: "Gotham";
}
.shop-filter .filter__list--vertical .filter__list-item:hover {
  opacity: 1;
}
.shop-filter .filter__list--vertical .filter__list-item:focus {
  opacity: 1;
}
.shop-filter .filter__list--full li {
  width: 100%;
}
.shop-filter .filter__has-sublist {
  position: relative;
}
.shop-filter .filter__sublist {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  display: none;
}
.shop-filter .filter__sublist-toggle {
  position: absolute;
  right: 0;
  top: 5px;
}
.shop-filter .filter__sublist .filter__list-item {
  padding-left: 1.5rem;
}
.shop-filter .filter__list-subitem-check {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.shop-filter .filter__list-subitem-check:checked ~ .filter__sublist {
  display: block;
}
.shop-filter .filter__list-subitem-check:checked ~ .filter__sublist-toggle .icon {
  background-position: -76px -586px;
}
.shop-filter .filter__list-item {
  display: block;
  font-size: 1.4rem;
  padding: 0.75rem 1rem 0.75rem 0;
  color: #000;
  text-transform: uppercase;
  width: fit-content;
}
.shop-filter .filter__list-item--active {
  font-weight: bold;
  border-bottom: 1px solid #000;
}
.shop-filter .filter__list-item--outstand {
  color: #000;
  text-transform: uppercase;
}
.shop-filter .filter__list-item--size {
  padding: 0;
  margin: -1px;
  background: white;
  padding: 0.5rem 1rem;
  border: 1px solid #8f8f8f;
  cursor: pointer;
  font-size: 1.2rem;
  color: #5b5b5f;
}
.shop-filter .filter__list-item--size:hover {
  background: #5b5b5f;
  color: white;
}
.shop-filter .filter__list-item--size:focus {
  background: #5b5b5f;
  color: white;
}
.shop-filter .filter__list-item--size.active {
  background: #5b5b5f;
  color: white;
}
.shop-filter .filter__list-item--bordered {
  border-bottom: 1px solid #8f8f8f;
}
.shop-filter .filter__ball {
  border-radius: 50%;
  background-size: cover;
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.shop-filter .filter__ball--active {
  box-shadow: 0px 0px 0px 2px #333;
}
.shop-filter .filter__ball:hover {
  box-shadow: 0px 0px 0px 2px #333;
}
.shop-filter .filter__ball:focus {
  box-shadow: 0px 0px 0px 2px #333;
}
.shop-filter .custom-checkbox input[type=radio] {
  display: none;
}
.shop-filter .custom-checkbox__selector {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #5b5b5f;
  margin-right: 1rem;
}
.shop-filter .custom-checkbox__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #5b5b5f;
}
.shop-filter .custom-checkbox input[type=radio]:checked ~ .custom-checkbox__item .custom-checkbox__selector {
  box-shadow: inset 0px 0px 0px 3px #ededed;
  background: #5b5b5f;
}
@media (max-width: 64em) {
  .shop-filter {
    display: none;
    width: 85vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
  }
  .shop-filter .filter__list--vertical {
    padding-right: 0;
  }
}

.shop-list {
  /*flex-grow:1;*/
  width: 100%;
}
.shop-list__products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.shop-list__button {
  margin: 0 auto;
}
.shop-list .loader {
  display: block;
  margin: 0 auto;
}

.shop-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.lookbook-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.lookbook-list .lookbook-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lookbook-list .lookbook-item-1 {
  width: calc(33.3333333333% - 2rem) !important;
}
.lookbook-list .lookbook-item-2 {
  width: calc(66.6666666667% - 2rem) !important;
}
.lookbook-list .lookbook-item-3 {
  width: calc(100% - 2rem) !important;
}
.lookbook-list .lookbook-item__title {
  margin-top: 1.5rem;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #000;
}
.lookbook-list .lookbook-item .lookbook-products {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 0;
  opacity: 0;
  transition: opacity 1s;
}
.lookbook-list .lookbook-item .lookbook-products span {
  margin: 0.5rem 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-family: "Gotham";
  letter-spacing: 1px;
}
.lookbook-list .lookbook-item .lookbook-products span a {
  color: #000;
  font-family: "Gotham";
}
.lookbook-list .lookbook-item:hover .lookbook-products {
  opacity: 1;
  display: flex;
}
.lookbook-list .lookbook-item:focus .lookbook-products {
  opacity: 1;
  display: flex;
}

.lookbook-list:not(.lookbook-items) .lookbook-item {
  width: calc(33.3333333333% - 2rem);
  margin: 1rem;
}

.shop-list {
  overflow: hidden;
}
.shop-list--1 {
  margin: -1rem -2rem 0;
}
.shop-list--1 .product-item {
  max-width: calc(100% / 1 - 4rem);
  flex-basis: calc(100% / 1 - 4rem);
  margin: 1rem 2rem 0;
  font-size: 1.6rem;
  position: relative;
}
.shop-list--1 .product-item--1 {
  max-width: calc((100% / 1 - 4rem) * 1);
  flex-basis: calc((100% / 1 - 4rem) * 1);
}
.shop-list--1 .product-item--2 {
  max-width: calc((100% / 1 - 4rem) * 2);
  flex-basis: calc((100% / 1 - 4rem) * 2);
}
.shop-list--1 .product-item--3 {
  max-width: calc((100% / 1 - 4rem) * 3);
  flex-basis: calc((100% / 1 - 4rem) * 3);
}
.shop-list--1 .product-item--4 {
  max-width: calc((100% / 1 - 4rem) * 4);
  flex-basis: calc((100% / 1 - 4rem) * 4);
}
.shop-list--1 .product-item--5 {
  max-width: calc((100% / 1 - 4rem) * 5);
  flex-basis: calc((100% / 1 - 4rem) * 5);
}
.shop-list--1 .product-item--6 {
  max-width: calc((100% / 1 - 4rem) * 6);
  flex-basis: calc((100% / 1 - 4rem) * 6);
}
.shop-list--1 .product-item--7 {
  max-width: calc((100% / 1 - 4rem) * 7);
  flex-basis: calc((100% / 1 - 4rem) * 7);
}
.shop-list--1 .product-item--8 {
  max-width: calc((100% / 1 - 4rem) * 8);
  flex-basis: calc((100% / 1 - 4rem) * 8);
}
.shop-list--1 .product-item--9 {
  max-width: calc((100% / 1 - 4rem) * 9);
  flex-basis: calc((100% / 1 - 4rem) * 9);
}
.shop-list--1 .product-item--10 {
  max-width: calc((100% / 1 - 4rem) * 10);
  flex-basis: calc((100% / 1 - 4rem) * 10);
}
.shop-list--2 {
  margin: -1rem -1rem 0;
}
.shop-list--2 .product-item {
  max-width: calc(100% / 2 - 2rem);
  flex-basis: calc(100% / 2 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.4rem;
  position: relative;
}
.shop-list--2 .product-item--1 {
  max-width: calc((100% / 2 - 2rem) * 1);
  flex-basis: calc((100% / 2 - 2rem) * 1);
}
.shop-list--2 .product-item--2 {
  max-width: calc((100% / 2 - 2rem) * 2);
  flex-basis: calc((100% / 2 - 2rem) * 2);
}
.shop-list--2 .product-item--3 {
  max-width: calc((100% / 2 - 2rem) * 3);
  flex-basis: calc((100% / 2 - 2rem) * 3);
}
.shop-list--2 .product-item--4 {
  max-width: calc((100% / 2 - 2rem) * 4);
  flex-basis: calc((100% / 2 - 2rem) * 4);
}
.shop-list--2 .product-item--5 {
  max-width: calc((100% / 2 - 2rem) * 5);
  flex-basis: calc((100% / 2 - 2rem) * 5);
}
.shop-list--2 .product-item--6 {
  max-width: calc((100% / 2 - 2rem) * 6);
  flex-basis: calc((100% / 2 - 2rem) * 6);
}
.shop-list--2 .product-item--7 {
  max-width: calc((100% / 2 - 2rem) * 7);
  flex-basis: calc((100% / 2 - 2rem) * 7);
}
.shop-list--2 .product-item--8 {
  max-width: calc((100% / 2 - 2rem) * 8);
  flex-basis: calc((100% / 2 - 2rem) * 8);
}
.shop-list--2 .product-item--9 {
  max-width: calc((100% / 2 - 2rem) * 9);
  flex-basis: calc((100% / 2 - 2rem) * 9);
}
.shop-list--2 .product-item--10 {
  max-width: calc((100% / 2 - 2rem) * 10);
  flex-basis: calc((100% / 2 - 2rem) * 10);
}
.shop-list--3 {
  margin: -1rem -1rem 0;
}
.shop-list--3 .product-item {
  max-width: calc(100% / 3 - 2rem);
  flex-basis: calc(100% / 3 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.4rem;
  position: relative;
}
.shop-list--3 .product-item--1 {
  max-width: calc((100% / 3 - 2rem) * 1);
  flex-basis: calc((100% / 3 - 2rem) * 1);
}
.shop-list--3 .product-item--2 {
  max-width: calc((100% / 3 - 2rem) * 2);
  flex-basis: calc((100% / 3 - 2rem) * 2);
}
.shop-list--3 .product-item--3 {
  max-width: calc((100% / 3 - 2rem) * 3);
  flex-basis: calc((100% / 3 - 2rem) * 3);
}
.shop-list--3 .product-item--4 {
  max-width: calc((100% / 3 - 2rem) * 4);
  flex-basis: calc((100% / 3 - 2rem) * 4);
}
.shop-list--3 .product-item--5 {
  max-width: calc((100% / 3 - 2rem) * 5);
  flex-basis: calc((100% / 3 - 2rem) * 5);
}
.shop-list--3 .product-item--6 {
  max-width: calc((100% / 3 - 2rem) * 6);
  flex-basis: calc((100% / 3 - 2rem) * 6);
}
.shop-list--3 .product-item--7 {
  max-width: calc((100% / 3 - 2rem) * 7);
  flex-basis: calc((100% / 3 - 2rem) * 7);
}
.shop-list--3 .product-item--8 {
  max-width: calc((100% / 3 - 2rem) * 8);
  flex-basis: calc((100% / 3 - 2rem) * 8);
}
.shop-list--3 .product-item--9 {
  max-width: calc((100% / 3 - 2rem) * 9);
  flex-basis: calc((100% / 3 - 2rem) * 9);
}
.shop-list--3 .product-item--10 {
  max-width: calc((100% / 3 - 2rem) * 10);
  flex-basis: calc((100% / 3 - 2rem) * 10);
}
.shop-list--4 {
  margin: -1rem -1rem 0;
}
.shop-list--4 .product-item {
  max-width: calc(100% / 4 - 2rem);
  flex-basis: calc(100% / 4 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.3rem;
  position: relative;
}
.shop-list--4 .product-item--1 {
  max-width: calc((100% / 4 - 2rem) * 1);
  flex-basis: calc((100% / 4 - 2rem) * 1);
}
.shop-list--4 .product-item--2 {
  max-width: calc((100% / 4 - 2rem) * 2);
  flex-basis: calc((100% / 4 - 2rem) * 2);
}
.shop-list--4 .product-item--3 {
  max-width: calc((100% / 4 - 2rem) * 3);
  flex-basis: calc((100% / 4 - 2rem) * 3);
}
.shop-list--4 .product-item--4 {
  max-width: calc((100% / 4 - 2rem) * 4);
  flex-basis: calc((100% / 4 - 2rem) * 4);
}
.shop-list--4 .product-item--5 {
  max-width: calc((100% / 4 - 2rem) * 5);
  flex-basis: calc((100% / 4 - 2rem) * 5);
}
.shop-list--4 .product-item--6 {
  max-width: calc((100% / 4 - 2rem) * 6);
  flex-basis: calc((100% / 4 - 2rem) * 6);
}
.shop-list--4 .product-item--7 {
  max-width: calc((100% / 4 - 2rem) * 7);
  flex-basis: calc((100% / 4 - 2rem) * 7);
}
.shop-list--4 .product-item--8 {
  max-width: calc((100% / 4 - 2rem) * 8);
  flex-basis: calc((100% / 4 - 2rem) * 8);
}
.shop-list--4 .product-item--9 {
  max-width: calc((100% / 4 - 2rem) * 9);
  flex-basis: calc((100% / 4 - 2rem) * 9);
}
.shop-list--4 .product-item--10 {
  max-width: calc((100% / 4 - 2rem) * 10);
  flex-basis: calc((100% / 4 - 2rem) * 10);
}
.shop-list--5 {
  margin: -1rem -1rem 0;
}
.shop-list--5 .product-item {
  max-width: calc(100% / 5 - 2rem);
  flex-basis: calc(100% / 5 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
.shop-list--5 .product-item--1 {
  max-width: calc((100% / 5 - 2rem) * 1);
  flex-basis: calc((100% / 5 - 2rem) * 1);
}
.shop-list--5 .product-item--2 {
  max-width: calc((100% / 5 - 2rem) * 2);
  flex-basis: calc((100% / 5 - 2rem) * 2);
}
.shop-list--5 .product-item--3 {
  max-width: calc((100% / 5 - 2rem) * 3);
  flex-basis: calc((100% / 5 - 2rem) * 3);
}
.shop-list--5 .product-item--4 {
  max-width: calc((100% / 5 - 2rem) * 4);
  flex-basis: calc((100% / 5 - 2rem) * 4);
}
.shop-list--5 .product-item--5 {
  max-width: calc((100% / 5 - 2rem) * 5);
  flex-basis: calc((100% / 5 - 2rem) * 5);
}
.shop-list--5 .product-item--6 {
  max-width: calc((100% / 5 - 2rem) * 6);
  flex-basis: calc((100% / 5 - 2rem) * 6);
}
.shop-list--5 .product-item--7 {
  max-width: calc((100% / 5 - 2rem) * 7);
  flex-basis: calc((100% / 5 - 2rem) * 7);
}
.shop-list--5 .product-item--8 {
  max-width: calc((100% / 5 - 2rem) * 8);
  flex-basis: calc((100% / 5 - 2rem) * 8);
}
.shop-list--5 .product-item--9 {
  max-width: calc((100% / 5 - 2rem) * 9);
  flex-basis: calc((100% / 5 - 2rem) * 9);
}
.shop-list--5 .product-item--10 {
  max-width: calc((100% / 5 - 2rem) * 10);
  flex-basis: calc((100% / 5 - 2rem) * 10);
}
.shop-list--6 {
  margin: -1rem -1rem 0;
}
.shop-list--6 .product-item {
  max-width: calc(100% / 6 - 2rem);
  flex-basis: calc(100% / 6 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
.shop-list--6 .product-item--1 {
  max-width: calc((100% / 6 - 2rem) * 1);
  flex-basis: calc((100% / 6 - 2rem) * 1);
}
.shop-list--6 .product-item--2 {
  max-width: calc((100% / 6 - 2rem) * 2);
  flex-basis: calc((100% / 6 - 2rem) * 2);
}
.shop-list--6 .product-item--3 {
  max-width: calc((100% / 6 - 2rem) * 3);
  flex-basis: calc((100% / 6 - 2rem) * 3);
}
.shop-list--6 .product-item--4 {
  max-width: calc((100% / 6 - 2rem) * 4);
  flex-basis: calc((100% / 6 - 2rem) * 4);
}
.shop-list--6 .product-item--5 {
  max-width: calc((100% / 6 - 2rem) * 5);
  flex-basis: calc((100% / 6 - 2rem) * 5);
}
.shop-list--6 .product-item--6 {
  max-width: calc((100% / 6 - 2rem) * 6);
  flex-basis: calc((100% / 6 - 2rem) * 6);
}
.shop-list--6 .product-item--7 {
  max-width: calc((100% / 6 - 2rem) * 7);
  flex-basis: calc((100% / 6 - 2rem) * 7);
}
.shop-list--6 .product-item--8 {
  max-width: calc((100% / 6 - 2rem) * 8);
  flex-basis: calc((100% / 6 - 2rem) * 8);
}
.shop-list--6 .product-item--9 {
  max-width: calc((100% / 6 - 2rem) * 9);
  flex-basis: calc((100% / 6 - 2rem) * 9);
}
.shop-list--6 .product-item--10 {
  max-width: calc((100% / 6 - 2rem) * 10);
  flex-basis: calc((100% / 6 - 2rem) * 10);
}
.shop-list--7 {
  margin: -1rem -1rem 0;
}
.shop-list--7 .product-item {
  max-width: calc(100% / 7 - 2rem);
  flex-basis: calc(100% / 7 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
.shop-list--7 .product-item--1 {
  max-width: calc((100% / 7 - 2rem) * 1);
  flex-basis: calc((100% / 7 - 2rem) * 1);
}
.shop-list--7 .product-item--2 {
  max-width: calc((100% / 7 - 2rem) * 2);
  flex-basis: calc((100% / 7 - 2rem) * 2);
}
.shop-list--7 .product-item--3 {
  max-width: calc((100% / 7 - 2rem) * 3);
  flex-basis: calc((100% / 7 - 2rem) * 3);
}
.shop-list--7 .product-item--4 {
  max-width: calc((100% / 7 - 2rem) * 4);
  flex-basis: calc((100% / 7 - 2rem) * 4);
}
.shop-list--7 .product-item--5 {
  max-width: calc((100% / 7 - 2rem) * 5);
  flex-basis: calc((100% / 7 - 2rem) * 5);
}
.shop-list--7 .product-item--6 {
  max-width: calc((100% / 7 - 2rem) * 6);
  flex-basis: calc((100% / 7 - 2rem) * 6);
}
.shop-list--7 .product-item--7 {
  max-width: calc((100% / 7 - 2rem) * 7);
  flex-basis: calc((100% / 7 - 2rem) * 7);
}
.shop-list--7 .product-item--8 {
  max-width: calc((100% / 7 - 2rem) * 8);
  flex-basis: calc((100% / 7 - 2rem) * 8);
}
.shop-list--7 .product-item--9 {
  max-width: calc((100% / 7 - 2rem) * 9);
  flex-basis: calc((100% / 7 - 2rem) * 9);
}
.shop-list--7 .product-item--10 {
  max-width: calc((100% / 7 - 2rem) * 10);
  flex-basis: calc((100% / 7 - 2rem) * 10);
}
.shop-list--8 {
  margin: -1rem -1rem 0;
}
.shop-list--8 .product-item {
  max-width: calc(100% / 8 - 2rem);
  flex-basis: calc(100% / 8 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
.shop-list--8 .product-item--1 {
  max-width: calc((100% / 8 - 2rem) * 1);
  flex-basis: calc((100% / 8 - 2rem) * 1);
}
.shop-list--8 .product-item--2 {
  max-width: calc((100% / 8 - 2rem) * 2);
  flex-basis: calc((100% / 8 - 2rem) * 2);
}
.shop-list--8 .product-item--3 {
  max-width: calc((100% / 8 - 2rem) * 3);
  flex-basis: calc((100% / 8 - 2rem) * 3);
}
.shop-list--8 .product-item--4 {
  max-width: calc((100% / 8 - 2rem) * 4);
  flex-basis: calc((100% / 8 - 2rem) * 4);
}
.shop-list--8 .product-item--5 {
  max-width: calc((100% / 8 - 2rem) * 5);
  flex-basis: calc((100% / 8 - 2rem) * 5);
}
.shop-list--8 .product-item--6 {
  max-width: calc((100% / 8 - 2rem) * 6);
  flex-basis: calc((100% / 8 - 2rem) * 6);
}
.shop-list--8 .product-item--7 {
  max-width: calc((100% / 8 - 2rem) * 7);
  flex-basis: calc((100% / 8 - 2rem) * 7);
}
.shop-list--8 .product-item--8 {
  max-width: calc((100% / 8 - 2rem) * 8);
  flex-basis: calc((100% / 8 - 2rem) * 8);
}
.shop-list--8 .product-item--9 {
  max-width: calc((100% / 8 - 2rem) * 9);
  flex-basis: calc((100% / 8 - 2rem) * 9);
}
.shop-list--8 .product-item--10 {
  max-width: calc((100% / 8 - 2rem) * 10);
  flex-basis: calc((100% / 8 - 2rem) * 10);
}
.shop-list--9 {
  margin: -1rem -1rem 0;
}
.shop-list--9 .product-item {
  max-width: calc(100% / 9 - 2rem);
  flex-basis: calc(100% / 9 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
.shop-list--9 .product-item--1 {
  max-width: calc((100% / 9 - 2rem) * 1);
  flex-basis: calc((100% / 9 - 2rem) * 1);
}
.shop-list--9 .product-item--2 {
  max-width: calc((100% / 9 - 2rem) * 2);
  flex-basis: calc((100% / 9 - 2rem) * 2);
}
.shop-list--9 .product-item--3 {
  max-width: calc((100% / 9 - 2rem) * 3);
  flex-basis: calc((100% / 9 - 2rem) * 3);
}
.shop-list--9 .product-item--4 {
  max-width: calc((100% / 9 - 2rem) * 4);
  flex-basis: calc((100% / 9 - 2rem) * 4);
}
.shop-list--9 .product-item--5 {
  max-width: calc((100% / 9 - 2rem) * 5);
  flex-basis: calc((100% / 9 - 2rem) * 5);
}
.shop-list--9 .product-item--6 {
  max-width: calc((100% / 9 - 2rem) * 6);
  flex-basis: calc((100% / 9 - 2rem) * 6);
}
.shop-list--9 .product-item--7 {
  max-width: calc((100% / 9 - 2rem) * 7);
  flex-basis: calc((100% / 9 - 2rem) * 7);
}
.shop-list--9 .product-item--8 {
  max-width: calc((100% / 9 - 2rem) * 8);
  flex-basis: calc((100% / 9 - 2rem) * 8);
}
.shop-list--9 .product-item--9 {
  max-width: calc((100% / 9 - 2rem) * 9);
  flex-basis: calc((100% / 9 - 2rem) * 9);
}
.shop-list--9 .product-item--10 {
  max-width: calc((100% / 9 - 2rem) * 10);
  flex-basis: calc((100% / 9 - 2rem) * 10);
}
.shop-list--10 {
  margin: -1rem -1rem 0;
}
.shop-list--10 .product-item {
  max-width: calc(100% / 10 - 2rem);
  flex-basis: calc(100% / 10 - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
.shop-list--10 .product-item--1 {
  max-width: calc((100% / 10 - 2rem) * 1);
  flex-basis: calc((100% / 10 - 2rem) * 1);
}
.shop-list--10 .product-item--2 {
  max-width: calc((100% / 10 - 2rem) * 2);
  flex-basis: calc((100% / 10 - 2rem) * 2);
}
.shop-list--10 .product-item--3 {
  max-width: calc((100% / 10 - 2rem) * 3);
  flex-basis: calc((100% / 10 - 2rem) * 3);
}
.shop-list--10 .product-item--4 {
  max-width: calc((100% / 10 - 2rem) * 4);
  flex-basis: calc((100% / 10 - 2rem) * 4);
}
.shop-list--10 .product-item--5 {
  max-width: calc((100% / 10 - 2rem) * 5);
  flex-basis: calc((100% / 10 - 2rem) * 5);
}
.shop-list--10 .product-item--6 {
  max-width: calc((100% / 10 - 2rem) * 6);
  flex-basis: calc((100% / 10 - 2rem) * 6);
}
.shop-list--10 .product-item--7 {
  max-width: calc((100% / 10 - 2rem) * 7);
  flex-basis: calc((100% / 10 - 2rem) * 7);
}
.shop-list--10 .product-item--8 {
  max-width: calc((100% / 10 - 2rem) * 8);
  flex-basis: calc((100% / 10 - 2rem) * 8);
}
.shop-list--10 .product-item--9 {
  max-width: calc((100% / 10 - 2rem) * 9);
  flex-basis: calc((100% / 10 - 2rem) * 9);
}
.shop-list--10 .product-item--10 {
  max-width: calc((100% / 10 - 2rem) * 10);
  flex-basis: calc((100% / 10 - 2rem) * 10);
}
.shop-list .product-item {
  overflow: hidden;
  /*width:100%;*/
  padding-bottom: 1rem;
}
@media (max-width: 48em) {
  .shop-list .product-item {
    margin: 1rem 1rem 0;
    max-width: calc(50% - 2rem);
    flex-basis: calc(50% - 2rem);
    font-size: 70%;
  }
  .shop-list .product-item.product-item--1 {
    max-width: calc(50% * 1 - 2rem);
    flex-basis: calc(50% * 1 - 2rem);
  }
  .shop-list .product-item.product-item--2 {
    max-width: calc(50% * 2 - 2rem);
    flex-basis: calc(50% * 2 - 2rem);
  }
  .shop-list .product-item.product-item--3 {
    max-width: calc(50% * 3 - 2rem);
    flex-basis: calc(50% * 3 - 2rem);
  }
  .shop-list .product-item.product-item--4 {
    max-width: calc(50% * 4 - 2rem);
    flex-basis: calc(50% * 4 - 2rem);
  }
  .shop-list .product-item.product-item--5 {
    max-width: calc(50% * 5 - 2rem);
    flex-basis: calc(50% * 5 - 2rem);
  }
  .shop-list .product-item.product-item--6 {
    max-width: calc(50% * 6 - 2rem);
    flex-basis: calc(50% * 6 - 2rem);
  }
  .shop-list .product-item.product-item--7 {
    max-width: calc(50% * 7 - 2rem);
    flex-basis: calc(50% * 7 - 2rem);
  }
  .shop-list .product-item.product-item--8 {
    max-width: calc(50% * 8 - 2rem);
    flex-basis: calc(50% * 8 - 2rem);
  }
  .shop-list .product-item.product-item--9 {
    max-width: calc(50% * 9 - 2rem);
    flex-basis: calc(50% * 9 - 2rem);
  }
  .shop-list .product-item.product-item--10 {
    max-width: calc(50% * 10 - 2rem);
    flex-basis: calc(50% * 10 - 2rem);
  }
}
.shop-list .product-item .slick-slide img {
  width: 100%;
}

.product-item {
  position: relative;
  width: calc(25% - 1rem);
  margin: 1rem 0.5rem;
}
.product-item__image-wrapper {
  position: relative;
}
.product-item__image-wrapper:hover .add-to-cart {
  display: block;
  font-size: 1.5rem;
  color: #1f1f1f;
  font-family: "gobold-regular";
}
.product-item__image-wrapper .add-to-cart {
  background-color: rgba(235, 235, 235, 0.8);
  transition: opacity 1s;
  display: none;
  padding: 0.5rem 0;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.product-item__image-wrapper .add-to-cart span {
  display: flex;
  flex-direction: normal;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin: 2rem 0;
  color: #1f1f1f;
}
.product-item__image-wrapper .add-to-cart span.add {
  cursor: pointer;
}
.product-item__image-wrapper .add-to-cart span.add:hover {
  font-weight: bold;
}
.product-item__image-wrapper .add-to-cart span.title {
  margin: 1rem 0 0 0;
}
.product-item__image-wrapper .add-to-cart span.success {
  font-weight: bold;
}
.product-item__image-wrapper .add-to-cart__elems {
  display: flex;
  flex-direction: normal;
  justify-content: center;
  align-items: center;
}
.product-item__image-wrapper .add-to-cart__elems__elem {
  font-size: 1.4rem;
  cursor: pointer;
  color: #1f1f1f;
}
.product-item__image-wrapper .add-to-cart__elems__elem.--color {
  margin: 1rem 0.5rem;
}
.product-item__image-wrapper .add-to-cart__elems__elem.--color img {
  border-radius: 50%;
  display: inline-block;
  background-size: cover;
  width: 20px;
  height: 20px;
}
.product-item__image-wrapper .add-to-cart__elems__elem.--color:hover img {
  border: 1px solid #4c4c4c;
  padding: 2px;
}
.product-item__image-wrapper .add-to-cart__elems__elem.--size {
  padding: 0.5rem;
  margin: 1rem;
}
.product-item__image-wrapper .add-to-cart__elems__elem.--size:hover {
  background-color: rgba(160, 160, 160, 0.6);
}
.product-item__hover-area {
  display: none;
}
.product-item:hover .product-item__hover-area {
  display: block;
}
.product-item:focus .product-item__hover-area {
  display: block;
}
@media (max-width: 64em) {
  .product-item__hover-area {
    display: block;
  }
}
.product-item .hover-area__wishlist {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem;
}
.product-item .hover-area__wishlist--active .icon {
  background-position: -573px -285px;
}
.product-item .hover-area__actions {
  display: flex;
  position: absolute;
  bottom: 2px;
  width: 100%;
  background: rgba(229, 229, 229, 0.4);
}
.product-item .hover-area__action-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 1rem;
  text-transform: uppercase;
  color: #5b5b5f;
  cursor: pointer;
}
.product-item .hover-area__action-item ~ .hover-area__action-item {
  border-left: 1px solid #8f8f8f;
}
@media (max-width: 48em) {
  .product-item .hover-area__action-item ~ .hover-area__action-item {
    border-left: none;
  }
}
@media (max-width: 48em) {
  .product-item .hover-area__action-item--desktop {
    display: none !important;
  }
}
.product-item .discount-ribbon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 15px;
  z-index: 1;
  right: 0;
  background-image: url("/content/images/descuento.png");
  background-size: 100% 100%;
}
@media (max-width: 48em) {
  .product-item .discount-ribbon {
    width: 45px;
    height: 45px;
    font-size: 10px;
  }
}

.product-item .slick-prev,
.product-item .slick-next {
  display: none !important;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.product-item .slick-prev::before,
.product-item .slick-next::before {
  font-size: 22px;
}
.product-item .slick-prev {
  left: 5px;
}
.product-item .slick-next {
  right: 5px;
}
.product-item:hover .slick-prev,
.product-item:hover .slick-next {
  display: inline-block !important;
}
.product-item:focus .slick-prev,
.product-item:focus .slick-next {
  display: inline-block !important;
}
@media (max-width: 64em) {
  .product-item .slick-prev,
  .product-item .slick-next {
    display: inline-block !important;
  }
}

.product-item__image {
  display: block;
  max-width: 100%;
}
.product-item__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 48em) {
  .product-item__top {
    flex-wrap: wrap;
  }
}
.product-item__body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "gobold-light";
  text-transform: uppercase;
}
.product-item__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #000;
  font-size: 1.5rem;
}
@media (max-width: 48em) {
  .product-item__title {
    white-space: pre-wrap;
    overflow: visible;
    font-size: 100%;
    text-align: center;
  }
}
.product-item__code {
  display: block;
  color: #428bca;
  font-size: 1.3rem;
  padding-top: 0.6rem;
}
.product-item__pricing {
  margin: 0.8rem 0;
  font-size: 1.4rem;
  font-family: "gobold-regular";
  display: flex;
  flex-direction: normal;
  justify-content: center;
}
@media (max-width: 48em) {
  .product-item__pricing {
    flex-direction: column;
    margin-top: 0.65em;
    margin-left: 0;
    font-size: 100%;
  }
}
.product-item__pricing .grid-prices {
  display: flex;
  flex-direction: normal;
  justify-content: center;
  align-items: center;
}
.product-item__pricing .grid-discount {
  display: flex;
  flex-direction: normal;
  justify-content: center;
}
@media (max-width: 48em) {
  .product-item__pricing .grid-discount {
    margin-top: 1rem;
  }
}
.product-item__pricing .grid-discount .discount {
  background: #2153aa;
  color: #fff;
  display: inline-block;
  margin-left: 0.8rem;
  font-size: 1.1rem;
  padding: 0.3rem 0.5rem;
  font-weight: bold;
}
.product-item__price {
  display: inline-block;
  font-weight: bold;
}
.product-item__price--old {
  color: #5b5b5f;
  text-decoration: line-through;
  margin-right: 0.5em;
}
.product-item__colors {
  margin: 0.65em 0;
  min-height: 16px;
}
.product-item__color-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.product-item__color-item:hover .product-item__color-name {
  display: inline-block;
}
.product-item__color-item:focus .product-item__color-name {
  display: inline-block;
}
.product-item__color-name {
  position: absolute;
  font-size: 0.9em;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: none;
}
.product-item__color-image {
  display: inline-block;
  margin: 0 0.5rem;
  background-size: cover;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.product-detail {
  margin: 0 2rem;
}
@media (max-width: 64em) {
  .product-detail {
    margin: 0rem 0.4rem 2rem 0.4rem !important;
  }
}
.product-detail__top {
  display: flex;
  margin-bottom: 2rem;
}
.product-detail__top .product-top__action {
  font-size: 1.4rem;
}
.product-detail__top .product-top__button {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: #e5e5e5;
  text-align: center;
  font-size: 2.4rem;
  width: 40px;
  padding: 4rem 0;
}
.product-detail__top .product-top__button .button__text {
  display: none;
}
.product-detail__top .product-top__button--back {
  left: 0;
}
.product-detail__top .product-top__button--next {
  right: 0;
}
@media (max-width: 64em) {
  .product-detail__top .product-top__action {
    margin-right: 2.5rem;
  }
  .product-detail__top .product-top__button {
    position: static;
    display: block;
    background: transparent;
    font-size: 1.4rem;
    text-align: left;
    width: auto;
    transform: none;
    padding: 0;
  }
  .product-detail__top .product-top__button .fa {
    display: none;
  }
  .product-detail__top .product-top__button .button__text {
    display: initial;
  }
}
@media (max-width: 48em) {
  .product-detail__top {
    margin: 0;
  }
  .product-detail__top .product-top__action {
    display: block;
    flex-grow: 1;
    padding: 1rem 2rem;
    border-right: 1px solid #8f8f8f;
    white-space: nowrap;
    text-align: center;
    margin: 0;
  }
  .product-detail__top .product-top__action:last-child {
    border: none;
  }
}
@media (max-width: 26em) {
  .product-detail__top {
    flex-direction: column;
  }
  .product-detail__top .product-top__action {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #8f8f8f;
    font-size: 1.2rem;
  }
}

.product-detail__content {
  display: flex;
  justify-content: space-between;
}
.product-detail__content-images {
  width: 60%;
  display: flex;
}
@media (max-width: 48em) {
  .product-detail__content-images {
    width: 100%;
    display: block;
    margin: 0 0;
    padding-left: 0;
  }
}
.product-detail__content-information {
  width: 40%;
  margin: 0 1%;
}
@media (max-width: 48em) {
  .product-detail__content-information {
    width: 100%;
    margin: 0 0;
  }
}
.product-detail__image-thumbs {
  min-width: 9.5rem;
  max-height: 800px;
  overflow-y: auto;
}
.product-detail__image {
  /*&:after {
      content: '';
      display: block;
      width: 33px;
      height: 33px;
      position: absolute;
      top: 0;
      right: 0;
      background: url(https://raw.github.com/jackmoore/zoom/master/icon.png);

      @include sm() {
          display: none;
      }
  }*/
  width: 100%;
  /*min-width: 70%;*/
  position: relative;
}
.product-detail__image .slick-slider .slick-prev,
.product-detail__image .slick-slider .slick-next {
  width: 30px;
  height: 30px;
  z-index: 1;
}
.product-detail__image .slick-slider .slick-prev::before,
.product-detail__image .slick-slider .slick-next::before {
  font-size: 30px;
}
.product-detail__image .slick-slider .slick-prev {
  left: 10px;
}
.product-detail__image .slick-slider .slick-next {
  right: 10px;
}
.product-detail__image__offer-label {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 0;
  background: #e33e3e;
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.product-detail__image__pay_x_get_y-label {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 15px;
  background-image: url(/content/images/descuento.png);
  background-size: 100% 100%;
}
.product-detail__image__ribbon {
  position: absolute;
  text-align: center;
  /*background-color: transparent;*/
  font-family: "gobold-light";
  z-index: 3;
  top: 1.5%;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 0.4rem 1.8rem;
  text-transform: uppercase;
  border-radius: 0px 30px 30px 0px;
  -webkit-border-radius: 0px 30px 30px 0px;
  -moz-border-radius: 0px 30px 30px 0px;
}
.product-detail__image__ribbon span {
  position: relative;
  z-index: 100;
  font-variant-numeric: lining-nums;
}
.product-detail__image__ribbon.isNew {
  background: #2153aa;
  color: white;
  width: 7rem;
}
.product-detail__image__ribbon.onSale {
  background: red;
  color: white;
  width: 11rem;
}
.product-detail__image__ribbon.soldOut {
  background: white;
  color: black;
  width: 11rem;
}
.product-detail .product-image__thumb {
  margin-bottom: 2rem;
  border: 1px solid;
  border-color: transparent;
  cursor: pointer;
}
.product-detail .product-image__thumb img {
  min-width: 100% !important;
  max-width: none;
  width: 7.5rem;
}
@media (max-width: 26em) {
  .product-detail .product-image__thumb img {
    width: 7rem;
  }
}
.product-detail .product-image__thumb-image {
  background-size: cover;
  height: 120px;
  margin-right: 5px;
  background-position: center center;
}
.product-detail .product-image__slide div {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*height: 700px;*/
}

.product-detail__breadcrumb {
  display: flex;
}
.product-detail__product {
  flex-grow: 1;
  padding: 1rem 0 0 4rem;
}
.product-detail__header {
  border-bottom: 2px solid;
}
.product-detail__title {
  display: flex;
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-detail__code {
  margin: 0;
  margin-bottom: 1rem;
  color: #5b5b5f;
  font-size: 1.3rem;
}
.product-detail__table {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  width: 47rem;
}
@media (max-width: 48em) {
  .product-detail__table {
    width: 100%;
  }
}
.product-detail__table-row {
  display: flex;
  min-height: 5rem;
}
.product-detail__table-row:last-child .product-detail__table-title {
  border-bottom: 1px solid #C7C7C7;
}
.product-detail__table-row:last-child .product-detail__table-description {
  border-bottom: 1px solid #C7C7C7;
}
.product-detail__table-title {
  display: flex;
  border-top: 1px solid #C7C7C7;
  min-width: 100px;
  padding: 1.7rem 0px;
  font-size: 1.4rem;
  font-weight: 600;
}
.product-detail__table-description {
  display: flex;
  border-top: 1px solid #C7C7C7;
  padding: 10px 0px;
  width: 100%;
  margin-left: 0.5rem;
}
.product-detail__table-description__1 {
  display: flex;
  border-top: 1px solid #C7C7C7;
  padding: 10px 0px;
  width: 46%;
  margin-left: 0.5rem;
  border-bottom: 1px solid #C7C7C7;
}
.product-detail__table-description__2 {
  display: flex;
  border-top: 1px solid #C7C7C7;
  padding: 10px 0px;
  width: 100%;
  margin-left: 0.5rem;
  border-bottom: 1px solid #C7C7C7;
}
.product-detail__table-description__2-mayorista {
  display: flex;
  border-top: 1px solid #C7C7C7;
  padding: 10px 0px;
  width: 100%;
}
.product-detail__info-section {
  margin-top: 7rem;
}
.product-detail .totalPrice {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin: 2% 0;
}
.product-detail .curva {
  margin: 3% 0;
  display: flex;
  align-items: center;
  width: 100%;
  background: #ebe9e9;
  padding: 1rem 1rem;
  border: 1px solid #c8c8c8;
  width: 100%;
}
.product-detail .curva p {
  font-size: 1.2rem;
  margin: 0 1%;
  font-family: "gobold-light";
}
.product-detail__description-product {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  /*width: 47rem;*/
}
.product-detail__description-product-title {
  font-family: "gobold-light";
}
.product-detail__description-product #open-size-guide {
  font-family: "gobold-light";
  font-size: 1.4rem;
  padding-bottom: 10px;
  color: black;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.product-detail__description-product #open-size-guide span {
  position: relative;
}
.product-detail__description-product #open-size-guide span::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 10%;
  width: 90%;
  border-bottom: 1px solid black;
}
.product-detail__description-product i {
  cursor: pointer;
  margin-left: 3%;
  font-size: 1.2rem;
}
.product-detail__description-product-content {
  display: flex;
  padding: 10px 0px;
  width: 100%;
}
.product-detail__description-product-content__text {
  font-size: 1.4rem;
  white-space: pre-wrap;
  line-height: 2rem;
}
.product-detail__description {
  display: flex;
  align-items: center;
  color: #5b5b5f;
  font-size: 1.3rem;
}
.product-detail__description .discount-porcentaje {
  background: #ff6e9f;
  color: white;
  padding: 7px 10px;
  width: max-content;
  font-size: 15px;
  text-transform: uppercase;
  margin-right: 10px;
}
.product-detail__description__text {
  margin-top: 10px;
  font-size: 1.3rem;
}
.product-detail__separator {
  display: block;
  width: 100%;
  background: #8f8f8f;
  height: 1px;
  margin: 1.5rem 0;
}
.product-detail__pricing {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  margin-top: 2rem;
}
.product-detail__pricing .discount-porcentaje {
  padding: 0.5rem 1rem;
  background: #2153aa;
  color: white;
  margin-right: 1%;
}
.product-detail__price {
  white-space: nowrap;
  color: black;
}
.product-detail__price--old {
  text-decoration: line-through;
  padding-right: 0px !important;
  font-family: "gobold-light";
  margin-right: 1%;
}

.product-detail__color {
  margin-top: 3rem;
}
.product-detail .current-color-name {
  color: #000;
  white-space: nowrap;
  display: inline-block !important;
  margin: 8px 0px 0px 15px;
}
.product-detail .color__name {
  font-size: 1.4rem;
}
.product-detail .color__current-name {
  font-weight: bold;
}
.product-detail .color__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.product-detail .color__item {
  display: block;
  font-size: 1.3rem;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.product-detail .color__item--selected {
  border: 1px solid #000;
}
.product-detail .color__item--mayorista {
  color: grey;
  font-size: 1.3rem;
  width: 125px;
  height: 40px;
  list-style: none;
  padding-right: 3px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.product-detail .color__ball {
  background-size: cover;
  display: block;
  cursor: pointer;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #000;
  /*&--selected{
      box-shadow: 0px 0px 0px 2px $black;
  }

  @include state{
      box-shadow: 0px 0px 0px 2px $black;
  }*/
}
.product-detail .color__ball--mayorista {
  background-size: cover;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #000;
  margin-right: 5px;
}

.product-detail__size {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.product-detail__size-guide {
  margin-top: 3rem;
}
.product-detail__size-guide a {
  color: #9c9595;
  text-decoration: underline;
}
.product-detail__guia-de-talles {
  margin-top: 1rem;
  cursor: pointer;
  font-family: "ProximaNova", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
  color: black;
  letter-spacing: 3px;
}
.product-detail__institutional {
  margin-top: 3rem;
}
.product-detail__institutional-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #000;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
  font-size: 1.3rem;
  cursor: pointer;
}
.product-detail__button-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
}
.product-detail__button-section .product-detail__button {
  padding: 1.4rem 4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}
.product-detail__button-section .share {
  margin-left: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-detail__button-section .share .compartir {
  overflow: hidden;
}
.product-detail__button-section .share .compartir ul {
  margin-top: 0.25rem;
  border: 1px solid #000;
  padding: 0.25rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.product-detail__button-section .share .compartir ul li {
  margin: 0 0.25rem;
}
.product-detail__button-section .share-icon {
  display: flex;
}
.product-detail .size__name {
  font-size: 1.4rem;
}
.product-detail .size__list {
  display: flex;
  margin-top: 1.5rem;
}
.product-detail .size__item {
  display: flex;
  justify-content: center;
  align-items: center;
  /*min-width:$product-size-box-size;
  height:$product-size-box-size;*/
  min-width: 24px;
  height: 24px;
  font-size: 1.4rem;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 0.5rem;
  /*&:not(:first-child){
      border-left-color:transparent;
  }*/
  /*@include state{
      border-left:1px solid;
      border-color:$black;
  }*/
}
.product-detail .size__item span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 16px;
}
.product-detail .size__item--selected {
  /*border-left:1px solid;
  border-color:$black;*/
  background-color: #000;
  color: white;
}

.product-detail__quantity {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.product-detail .quantity__text {
  display: block;
  font-size: 1.4rem;
}
.product-detail .quantity__select {
  margin-top: 0.5rem;
  margin: -0.5rem 0.5rem 0rem 0.5rem;
  width: 100%;
  min-width: 80px;
}

.product-detail__button {
  width: 100%;
  /*margin-top:$product-option-separation;

  margin-bottom:1rem;*/
}
.product-detail__socials {
  margin-top: 3rem;
}

@media (max-width: 48em) {
  .product-detail__content {
    flex-direction: column;
  }
  .product-detail__image-thumbs {
    display: none;
  }
  .product-detail__image {
    width: 100%;
    padding: 0;
  }
  .product-detail__product {
    padding: 2rem 1rem 0;
  }
}

.margin-width {
  margin-right: 0;
}

.total-price-table {
  text-align: right;
  border-top: 1px solid;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.table-responsive::-webkit-scrollbar-track {
  background: transparent;
}
.table-responsive::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 20px;
  border: 2px solid transparent;
}

.product-detail__related-products {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid #8f8f8f;
}
.product-detail__related-products .related-products__title {
  font-size: 1.6rem;
  font-weight: 300;
}
.product-detail__related-products .related-products__products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 2rem auto;
}
.product-detail__related-products .product-item {
  width: calc(25% - 2rem);
  margin: 1rem 1rem 0;
  font-size: 1.2rem;
  position: relative;
}
@media (max-width: 64em) {
  .product-detail__related-products .product-item {
    width: calc(50% - 2rem);
  }
}

.slider-related-products .product-item {
  width: 100%;
  max-width: 100% !important;
}
@media (max-width: 48em) {
  .slider-related-products .product-item {
    margin-left: 3px;
  }
}
.slider-related-products .image {
  position: relative;
}
.slider-related-products .image:hover .body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.slider-related-products .image .body {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: rgba(255, 255, 255, 0.8);
  font-family: "poppins-regular";
  letter-spacing: 1px;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: none;
}
@media (max-width: 48em) {
  .slider-related-products .image .body {
    display: flex;
  }
}
.slider-related-products .image .body .title {
  width: 100%;
  display: flex;
  justify-content: center;
}
.slider-related-products .image .body .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}
.slider-related-products .image .body .price .price-prev {
  text-decoration: line-through;
  color: black;
}
.slider-related-products .image .body .price .price-current {
  font-family: "poppins-medium";
}

.quickview {
  display: flex;
}
.quickview__image {
  max-width: 300px;
}
.quickview__imagelist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 1.5rem 0 0;
  overflow: hidden;
  overflow-y: scroll;
  max-height: 450px;
}
.quickview__imagelist::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #e5e5e5;
  background-color: #fff;
}
.quickview__imagelist::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}
.quickview__imagelist::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e5e5e5;
  border: 2px solid #333;
}
.quickview__imagelist-item {
  margin: 0.5rem 0;
  cursor: pointer;
}
.quickview__imagelist-item img {
  max-height: 125px;
}
.quickview__detail {
  flex: 1;
  padding-left: 2rem;
}
@media (max-width: 48em) {
  .quickview__detail {
    padding-left: 0rem;
  }
}

.quickview__code {
  font-size: 1.3rem;
  color: #5b5b5f;
  margin-bottom: 1.5rem;
}
.quickview__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.quickview__price {
  color: #000;
}
.quickview__price--old {
  color: #5b5b5f;
  text-decoration: line-through;
  opacity: 0.7;
}
.quickview__description {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 2rem 0;
}
.quickview__guia-de-talles {
  cursor: pointer;
  font-family: "ProximaNova", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
  color: black;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}
.quickview__size {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.quickview__size-item-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  background-color: white;
  color: #000;
  margin: 0 0.25rem;
  font-size: 1.3rem;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.quickview__size-item-container--selected {
  /*box-shadow:0px 0px 0px 2px $black;*/
  background-color: #000;
  color: white;
}
.quickview__size-item-container:first-child {
  margin-left: 0;
}
.quickview__property {
  margin: 3rem 0;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.quickview__property > span {
  font-weight: bold;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
.quickview__property > select {
  min-width: 100px;
  font-weight: 300;
}
.quickview__color-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.quickview .color-ball-container {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.quickview .color-ball-container .quickview__color-ball {
  width: 16px;
  height: 16px;
  /*border-radius: 50%;*/
  background-size: cover;
  display: inline-block;
  cursor: pointer;
  margin: 0 0.25rem;
  /*@include state{
      box-shadow:0px 0px 0px 2px $black;
  }

  &--selected{
      box-shadow:0px 0px 0px 2px $black;
  }*/
}
.quickview .color-ball-container--selected {
  /*box-shadow:0px 0px 0px 2px $black;*/
  border: 1px solid #000;
}
.quickview__button-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}
.quickview__button-section .quickview__button {
  padding: 1.4rem 4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.quickview__button-section .share {
  margin-left: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quickview__button-section .share .compartir {
  overflow: hidden;
}
.quickview__button-section .share .compartir ul {
  margin-top: 0.25rem;
  border: 1px solid #000;
  padding: 0.25rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.quickview__button-section .share .compartir ul li {
  margin: 0 0.25rem;
}
@media (max-width: 26em) {
  .quickview .quickview__property {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
  }
  .quickview .quickview__property > span {
    margin-bottom: 0.5rem;
  }
  .quickview .quickview__button {
    margin-top: 2rem;
  }
}

.checkout__header {
  padding: 2.5rem 1.5rem 0;
  border-bottom: 2px solid #000;
  position: relative;
}
.checkout__header-action {
  position: absolute;
  left: 1.5rem;
  bottom: 0;
  font-size: 3rem;
}
.checkout__header-action-text {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.checkout__header-title {
  margin: 0;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
}
.checkout__body {
  padding: 2.5rem 1rem;
}
@media (max-width: 48em) {
  .checkout__header-title {
    text-align: center;
  }
  .checkout__header-action ~ .checkout__header-title {
    text-align: right;
  }
}
.checkout--summary .checkout__header-action {
  left: unset;
  right: 1.5rem;
}
@media (max-width: 48em) {
  .checkout--summary .checkout__header-title {
    text-align: left;
  }
}

.shopping-cart .cart-table {
  width: 70%;
  font-size: 1.3rem;
  /*&__action-text{
      //border-bottom:1px solid $black-abs;
      border: 1px solid #e9e9e9;
      border-radius: 50%;
      border-spacing: 5px 5px;
  }*/
}
@media (max-width: 64em) {
  .shopping-cart .cart-table {
    width: 100%;
  }
}
.shopping-cart .cart-table__header {
  font-weight: bold;
}
.shopping-cart .cart-table__header, .shopping-cart .cart-table__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #8f8f8f;
  padding: 1.5rem 0;
  font-family: "gobold-light" !important;
}
.shopping-cart .cart-table__header div.summary__subtotal, .shopping-cart .cart-table__row div.summary__subtotal {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
}
.shopping-cart .cart-table__header div.summary__discount, .shopping-cart .cart-table__row div.summary__discount {
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
}
.shopping-cart .cart-table__header div.summary__total, .shopping-cart .cart-table__row div.summary__total {
  width: 100%;
}
.shopping-cart .cart-table__header-noflex, .shopping-cart .cart-table__row-noflex {
  display: block;
}
.shopping-cart .cart-table__quantity--unavailable {
  border-color: #dc3545;
  outline: 1px solid #dc3545;
}
.shopping-cart .cart-table__quantity-help {
  position: absolute;
  left: 50%;
  top: 150%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 48em) {
  .shopping-cart .cart-table__quantity-help {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
}
.shopping-cart .cart-table__cell:nth-child(1) {
  width: 110px;
  text-align: left;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 110px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(2) {
  width: 250px;
  text-align: left;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 250px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(3) {
  width: 125px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 125px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(4) {
  width: 125px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 125px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(5) {
  width: 125px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 125px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(6) {
  width: 125px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 125px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(7) {
  width: 150px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 150px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell:nth-child(8) {
  width: 100px;
  text-align: left;
  position: relative;
  text-transform: uppercase;
}
.shopping-cart .cart-table__cell:nth-child(1) {
  min-width: 100px;
}
.shopping-cart .cart-table__cell-fit {
  width: fit-content !important;
  font-size: 1.3rem;
  font-weight: bold;
}
.shopping-cart .cart-table__cell--image {
  flex-shrink: 0;
}
.shopping-cart .cart-table__cell--product {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.shopping-cart .cart-table__cell-info {
  margin-bottom: 1rem;
}
.shopping-cart .cart-table__cell-info.--mobile {
  font-weight: normal;
}
.shopping-cart .cart-table__cell input[type=number] {
  width: 4.6rem;
  text-align: center;
}
.shopping-cart .cart-table__cell .message {
  border: 1px solid #c7c7c7;
  background: #c7c7c7;
  color: #000;
  display: inline-block;
  margin-left: 0.8rem;
  font-size: 1.1rem;
  padding: 0.3rem 0.5rem;
  font-weight: bold;
}
.shopping-cart .cart-table__header {
  padding-top: 0;
}
.shopping-cart .cart-table__product-image {
  max-width: 100px;
  width: 100%;
}
.shopping-cart .cart-table__action {
  display: block;
  padding: 0px 0.5rem;
  font-weight: normal;
  cursor: pointer;
}
.shopping-cart .cart-table__action-circle {
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.shopping-cart .cart-table__action-text {
  font-size: 1.3rem;
}
@media (max-width: 48em) {
  .shopping-cart .cart-table__action-text {
    text-decoration: underline;
  }
}
.shopping-cart .cart-table__price {
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
}
.shopping-cart .cart-table__price.--mobile {
  margin-bottom: 1.5rem;
}
@media (max-width: 64em) {
  .shopping-cart__body {
    padding: 0;
  }
  .shopping-cart .cart-table__header, .shopping-cart .cart-table__row {
    padding: 1.5rem;
  }
  .shopping-cart .cart-table__header {
    display: none;
  }
  .shopping-cart .cart-table__product-image {
    padding-right: 1rem;
  }
}
@media (max-width: 48em) {
  .shopping-cart .cart-table__row {
    align-items: flex-start;
  }
  .shopping-cart .cart-table__cell {
    width: auto;
  }
  .shopping-cart .cart-table__cell--product {
    flex-grow: 1;
  }
  .shopping-cart .cart-table__cell:nth-child(5) {
    text-align: left;
  }
}
.shopping-cart--summary {
  width: 28%;
}
@media (max-width: 48em) {
  .shopping-cart--summary {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.shopping-cart--summary .cart-table__body .cart-table__row {
  border-bottom: 1px solid #e9e9e9;
}
.shopping-cart--summary .cart-table__body .cart-table__row .summary-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #e9e9e9;
  padding: 0.5rem;
}
.shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__title {
  display: block;
  margin-bottom: 2.5rem;
}
.shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__group label {
  display: block;
  margin-bottom: 1rem;
}
.shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__group input {
  flex-grow: 1;
  display: inline-block;
  font-size: 1.2rem;
  height: 26px;
  margin-right: 1rem;
}
.shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__group button {
  display: inline-block;
  width: 150px;
}
@media (max-width: 48em) {
  .shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__group button {
    width: 125px;
  }
}
.shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__input-group {
  display: flex;
}
.shopping-cart--summary .cart-table__body .cart-table__row .checkout-code__input-group .summary-button {
  background-color: #e9e9e9;
  color: #000;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
}

.shopping-cart__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: white;
  width: 100%;
  margin-top: 1.5rem;
}
.shopping-cart__bottom .shopping-cart__action {
  margin-right: 2rem;
}
.shopping-cart__bottom .flex {
  display: flex;
  flex-direction: row;
  justify-content: normal;
  align-items: center;
  cursor: pointer;
}
.shopping-cart__bottom .flex .margin-right-1 {
  margin-right: 1rem;
}
@media (max-width: 48em) {
  .shopping-cart__bottom .flex {
    margin: 0.5rem 0;
  }
}
.shopping-cart__summary {
  max-width: 350px;
  width: 100%;
  margin-top: 2rem;
}
.shopping-cart__summary .cart-summary__item {
  display: flex;
  padding: 1.5rem 0;
  font-weight: bold;
}
.shopping-cart__summary .cart-summary__name {
  flex-grow: 1;
  text-transform: uppercase;
}
.shopping-cart__button {
  display: block;
}
@media (max-width: 64em) {
  .shopping-cart__bottom {
    padding: 0 1.5rem;
  }
}
@media (max-width: 48em) {
  .shopping-cart__bottom {
    bottom: 0;
    width: 100%;
    border-top: 1px solid #8f8f8f;
  }
  .shopping-cart__summary {
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 1.5rem;
  }
  .shopping-cart .cart-summary__item {
    justify-content: flex-end;
    padding: 0;
  }
  .shopping-cart .cart-summary__name {
    flex-grow: 0;
    margin-right: 2rem;
  }
  .shopping-cart__button {
    margin-top: 0.5rem;
  }
}
@media (max-width: 48em) and (max-width: 48em) {
  .shopping-cart__button {
    margin-top: 1.5rem;
  }
}

.checkout__container {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 64em) {
  .checkout__container {
    padding: 0 1.5rem;
    padding-bottom: 3rem;
  }
}
.checkout-line {
  margin: 0.5rem 0;
  border: 1px solid #ececec;
}
.checkout__steps-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.checkout__summary {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin-left: 6rem;
  background: white;
  position: sticky;
  top: calc(2.5rem + 50px);
}
@media (max-width: 64em) {
  .checkout__summary {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow: auto;
    margin: 0;
    padding: 1.5rem;
    z-index: 10;
  }
  .checkout__summary--open {
    display: block;
  }
  .checkout__summary .checkout-summary__button {
    display: none;
  }
  .checkout__summary .cart-summary__header {
    align-items: center;
  }
  .checkout__summary .cart-summary__header:not(.cart-summary__header--mobile) {
    display: none;
  }
  .checkout__summary .cart-summary__header--mobile {
    display: flex;
    justify-content: space-between;
  }
  .checkout__summary .cart-summary__header--mobile .icon {
    font-size: 3rem;
  }
  .checkout__summary .cart-summary__summary-toggle {
    font-size: 3rem;
  }
}
.checkout__finish {
  display: none;
}
@media (max-width: 64em) {
  .checkout__finish {
    display: block;
    background: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: right;
    border-top: 1px solid #8f8f8f;
    z-index: 1;
  }
  .checkout__finish .order-pricing__item.js-shipping-cost {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 2px;
  }
  .checkout__finish .checkout__button {
    width: 100%;
  }
  .checkout__finish .checkout__total {
    display: block;
    margin-bottom: 0.5rem;
  }
}

.checkout {
  /*&__steps-container{

  }*/
}
.checkout__step {
  border-bottom: 1px solid #ececec;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: normal;
  justify-content: normal;
  align-items: flex-start;
}
.checkout__step .checkout-step__content {
  width: 100%;
}
.checkout__step .checkout-step__content .border-bottom {
  width: 100%;
  background: #000;
  height: 1px;
  margin-bottom: 1rem;
}
.checkout__step--filled .checkout-step__options .step-option__radio:not(:checked) ~ .step-option {
  opacity: 0.5;
}
.checkout__step:last-child {
  border-bottom: 0;
}
.checkout .checkout-step__title {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.checkout .checkout-step__options .step-option {
  width: 100%;
  font-size: 1.4rem;
  padding: 1rem;
  margin: 0.5rem 0;
  background: #ececec;
  cursor: pointer;
  font-family: "gobold-light";
}
.checkout .checkout-step__options .step-option__radio {
  display: none;
}
.checkout .checkout-step__options .step-option__name {
  font-weight: bold;
}
.checkout .checkout-step__options .step-option__description {
  margin-top: 0.5rem;
  font-weight: 300;
  line-height: 2rem;
}
.checkout .checkout-step__options .step-option__delivery {
  margin-top: 0.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.checkout .checkout-step__options .step-option__delivery i {
  color: #00d400;
  font-size: 1.6rem;
  margin-right: 0.1rem;
}
.checkout .checkout-step__options .step-option a {
  color: #0297ce;
}

.checkout .checkout-step__form {
  font-size: 1.4rem;
  padding: 1rem 0;
}
.checkout .checkout-step__form .step-form__input-group {
  margin-bottom: 1.5rem;
}
.checkout .checkout-step__form .step-form__input-group-container {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: normal;
  justify-content: space-between;
}
.checkout .checkout-step__form .step-form__input-group-container .step-form__input-group {
  width: 100%;
  margin: 0 1rem;
}
.checkout .checkout-step__form .step-form__input-group-container .step-form__input-group:first-child {
  margin-left: 0;
}
.checkout .checkout-step__form .step-form__input-group-container .step-form__input-group:last-child {
  margin-right: 0;
}
.checkout .checkout-step__form .step-form__group-name {
  display: block;
  margin-bottom: 1rem;
  /*font-weight: bold;*/
}
.checkout .checkout-step__form .step-form__group-input {
  width: 100%;
  font-family: "gobold-light";
  font-weight: 100;
}
.checkout .checkout-step__form .step-form__group-input--small {
  width: auto;
}
.checkout .checkout-step__form .step-form__group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.modal-qr {
  width: 349px;
  display: flex;
  justify-content: center;
  align-content: center;
}

.modal-title {
  font-weight: bold;
}

.modal-footer {
  margin-top: 0px;
}

.modal-header .close {
  margin-top: -20px;
}

.modal-banks-info p {
  padding: 1.5rem;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

@media (max-width: 48em) {
  .datos-tarjeta {
    flex-direction: column !important;
    align-items: initial !important;
  }
  .datos-tarjeta .input-group-smfull {
    margin: 5px 0;
  }
}
.checkout__summary .checkout-summary__cart {
  border-bottom: 1px solid #ececec;
}
.checkout__summary .checkout-summary__button {
  margin-top: 1rem;
  width: 100%;
}

.checkout-summary__code {
  padding: 2.5rem 0;
  border-bottom: 1px solid #8f8f8f;
  font-size: 1.4rem;
}
.checkout-summary__code .checkout-code__title {
  display: block;
  margin-bottom: 2.5rem;
}
.checkout-summary__code .checkout-code__group label {
  display: block;
  margin-bottom: 1rem;
}
.checkout-summary__code .checkout-code__group input {
  flex-grow: 1;
  display: inline-block;
  font-size: 1.2rem;
  height: 36px;
  margin-right: 1rem;
}
.checkout-summary__code .checkout-code__group button {
  display: inline-block;
  width: 150px;
}
.checkout-summary__code .checkout-code__input-group {
  display: flex;
}

.cart-summary__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  cursor: pointer;
}
.cart-summary__header--mobile {
  display: none;
}
.cart-summary__body {
  padding: 0 0 1.5rem;
  display: none;
}
.cart-summary__body--shown {
  display: block;
}
@media (max-width: 64em) {
  .cart-summary__body {
    display: block;
  }
}
.cart-summary__item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  padding: 1rem 0;
}
.cart-summary__product-image {
  max-width: 100px;
  width: 100%;
  margin-right: 1.5rem;
}
.cart-summary__product {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-grow: 1;
}
.cart-summary__product-info {
  display: flex;
  flex-direction: column;
}
.cart-summary__product-title {
  font-weight: bold;
  margin-bottom: 2rem;
}
.cart-summary__product-attribute {
  margin-bottom: 0.5rem;
}
.cart-summary__price {
  white-space: nowrap;
}

.checkout-summary__pricing {
  padding: 2.5rem 0;
  font-size: 1.4rem;
}
.checkout-summary__pricing .order-pricing__item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-weight: 100;
  font-family: "gobold-light";
}
.checkout-summary__pricing .order-pricing__item--outstand {
  margin-top: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.empty-cart {
  /*margin-top: 2.5rem;*/
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
}
.empty-cart .text-center.margin-top-10 {
  margin-top: 1rem;
}
.empty-cart .text-center.margin-top-10 .padding-bottom-20 {
  padding-bottom: 2rem;
}
.empty-cart .text-center.margin-top-10 .padding-bottom-20 img {
  display: initial;
}

#cart-page .container .text-center .padding-bottom-15 img {
  display: initial;
}

.wishlist__button {
  margin-top: 2rem;
}
.wishlist .cart-table {
  width: 100%;
  padding: 0 10rem;
}
@media (max-width: 48em) {
  .wishlist .cart-table {
    padding: 0;
  }
}
.wishlist .cart-table__cell:nth-child(1) {
  width: 100%;
  max-width: calc(110px / 0.7);
}
.wishlist .cart-table__cell:nth-child(2) {
  width: 100%;
  max-width: calc(250px / 0.7);
}
.wishlist .cart-table__cell:nth-child(3) {
  width: 100%;
  max-width: calc(125px / 0.7);
}
.wishlist .cart-table__cell:nth-child(4) {
  width: 100%;
  max-width: calc(125px / 0.7);
}
.wishlist .cart-table__cell:nth-child(5) {
  width: 100%;
  max-width: calc(125px / 0.7);
}
.wishlist .cart-table__cell:nth-child(6) {
  width: 100%;
  max-width: calc(125px / 0.7);
}
.wishlist .cart-table__cell:nth-child(7) {
  width: 100%;
  max-width: calc(150px / 0.7);
}
.wishlist .cart-table__cell:nth-child(8) {
  width: 100%;
  max-width: calc(100px / 0.7);
}
.wishlist .cart-table__cell:nth-child(1) {
  max-width: 100px;
  position: relative;
}
.wishlist .cart-table__cell:nth-child(2) {
  padding-left: 2rem;
}
.wishlist .cart-table .button {
  background: #e5e5e5;
  padding: 0.5rem 3rem;
  color: #333;
}
.wishlist .sold-out {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-align: center;
}

.institutional-section {
  /*border-top: 1px solid;*/
  padding: 5rem 0;
}
@media (max-width: 26em) {
  .institutional-section {
    padding: 2rem;
  }
}
.institutional-section .titles {
  color: black;
  text-align: center;
  /*margin-top: 2rem;
  */
}
.institutional-section .titles h1 {
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0 0 2rem 0;
}
@media (max-width: 48em) {
  .institutional-section .titles h1 {
    font-size: 2.2rem;
  }
}
.institutional-section .titles h2 {
  color: #5b5b5f;
  font-weight: 400 !important;
  margin-top: 2rem;
  font-size: 1.6rem;
}
.institutional-section .steps {
  display: flex;
  flex-flow: row wrap;
  margin-top: 3rem;
}
@media (max-width: 48em) {
  .institutional-section .steps {
    flex-flow: column;
    margin-top: 3rem;
    margin-bottom: 4rem;
  }
}
.institutional-section .steps .step {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem;
  flex-basis: 20%;
  position: relative;
}
@media (max-width: 48em) {
  .institutional-section .steps .step {
    flex-flow: row;
  }
}
.institutional-section .steps .step img {
  max-width: 90px;
  margin-bottom: 2rem;
}
@media (max-width: 48em) {
  .institutional-section .steps .step img {
    margin-right: 2rem;
  }
}
.institutional-section .steps .step .step-number {
  background: #5b5b5f;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.6rem;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
}
.institutional-section .steps .step h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
}
.institutional-section .steps .step p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2rem;
  font-family: "gobold-light";
}
@media (max-width: 26em) {
  .institutional-section .steps .step p {
    text-align: left;
  }
}
.institutional-section .button-container {
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}
.institutional-section .button-container .action-button {
  color: white;
  background-color: #0e7fcf;
  padding: 15px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  letter-spacing: 1.5px;
}

.login-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1.5rem 0;
}
.login-content .__login-column-centered {
  width: 100%;
  max-width: 450px;
  margin: 0 1.5rem;
}
@media (max-width: 64em) {
  .login-content .__login-column-centered {
    margin: 1.5rem;
  }
}
.login-content .__login-column-centered .__register-card {
  border: 0.1rem solid #333;
  padding: 2rem;
  letter-spacing: 1px;
}
.login-content .__login-column-centered .__register-card .__title {
  color: #333;
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-transform: uppercase;
}
.login-content .__login-column-centered .__register-card .__field-row {
  margin-bottom: 1.5rem;
}
.login-content .__login-column-centered .__register-card .__field-row label {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  font-family: "gobold-light";
  margin-bottom: 0.5rem;
}
.login-content .__login-column-centered .__register-card .__field-row label.content-color {
  color: #333;
}
.login-content .__login-column-centered .__register-card .__field-row .__form-input {
  border: 1px solid #333;
  width: 100%;
  padding: 1rem;
  font-size: 1.4rem;
}
.login-content .__login-column-centered .__register-card .__field-row .__form-checkbox {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.login-content .__login-column-centered .__register-card .__field-row .content-color {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  font-size: 1.2rem;
}
.login-content .__login-column-centered .__register-card .button {
  width: 100%;
}
.login-content .__login-column-centered .__register-card .__login-button {
  width: 100%;
  background-color: #333;
  color: white;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  line-height: 1.6rem;
  text-transform: uppercase !important;
  font-weight: normal !important;
  display: inline-block;
  border: none;
  text-align: center;
  transition: all 0.3s ease;
}
.login-content .__login-column-centered .__register-card .__login-button:hover {
  background-color: #000;
}
.login-content .__login-column-centered .__register-card .__login-button:focus {
  background-color: #000;
}
.login-content .__login-column-centered .__register-card .bottom-section {
  padding: 0.5rem 0;
  margin-top: 1.5rem;
  border-top: 0.1rem solid #8f8f8f;
}
.login-content .__login-column-centered .__register-card .bottom-section .__title {
  font-size: 1.2rem;
  margin: 1rem 0 1.5rem;
}
.login-content .__login-column-centered .social-auth-buttons {
  padding: 1.5rem 0 2.5rem 0;
}
.login-content .__login-column-centered .social-auth-buttons .btn-facebook {
  background-color: #3d5c98;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  border-radius: 0;
}

.register-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4rem 0;
}
.register-content .user-info {
  width: 100%;
  max-width: 450px;
  margin: 1rem;
  padding: 1rem 2.5rem;
  border: 1px solid #333;
}
.register-content .user-info h2 {
  font-size: 2.6rem;
  color: #333;
}
.register-content .user-info .register-form {
  padding: 1rem 0;
}
.register-content .user-info .field-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
@media (max-width: 48em) {
  .register-content .user-info .field-row {
    flex-direction: column;
  }
}
.register-content .user-info .field-row .__register-input {
  width: 100%;
  padding: 0 1rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 48em) {
  .register-content .user-info .field-row .__register-input {
    width: 100%;
  }
}
.register-content .user-info .field-row .__register-input.full {
  width: 100%;
}
.register-content .user-info .field-row .__register-input .checkbox label {
  font-size: 1.2rem;
}
.register-content .user-info .field-row .__register-input-flex {
  display: flex;
}
.register-content .user-info .field-row .__register-input-flex .radio-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 1rem 0;
}
.register-content .user-info .field-row .__register-input-flex .radio-container input[type=radio], .register-content .user-info .field-row .__register-input-flex .radio-container input[type=checkbox] {
  margin: 0 0.5rem 0 0;
}
.register-content .user-info .field-row .__register-input-flex .radio-container span {
  margin-right: 1rem;
  font-size: 1.2rem;
}
.register-content .user-info .field-row .__register-input-flex__item:first-child {
  width: 25%;
}
.register-content .user-info .field-row .__register-input-flex__item:last-child {
  width: 75%;
}
.register-content .user-info .field-row .__form-input {
  border: 0.1rem solid #000;
  background-color: white;
  width: 100%;
  padding: 0.5rem;
  /*&-radio{
      width: 25px;
      height: 25px;
      border: 1px solid $black-abs;
      background-color: $white;
      border-radius: 0;
  }*/
}
.register-content .user-info .field-row .__form-input--invalid {
  border-color: #dc3545;
}
.register-content .user-info .field-row label {
  color: #333;
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300 !important;
  font-family: "gobold-light";
}
.register-content .user-info .__register-button {
  background-color: #333;
  color: white;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  line-height: 1.6rem;
  text-transform: uppercase !important;
  font-weight: normal !important;
  display: inline-block;
  border: none;
  text-align: center;
  transition: all 0.3s ease;
}
.register-content .user-info .__register-button:hover {
  background-color: #000;
}
.register-content .user-info .__register-button:focus {
  background-color: #000;
}
@media (max-width: 48em) {
  .register-content .user-info {
    /*padding: 0;*/
  }
}
.register-content .button-register {
  width: 100%;
}
.register-content .social-auth-buttons {
  padding: 1.5rem 0 2.5rem 0;
  margin-top: 1rem;
}
.register-content .social-auth-buttons .btn-facebook {
  background-color: #3d5c98;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  border-radius: 0;
}

.dropdown-menu {
  position: absolute;
  top: 139%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 16rem;
  padding: 1rem;
  margin: 0.2rem 0 0;
  list-style: none;
  background-color: #fff;
  border: 0.1rem solid #ccc;
  border: 0.1rem solid rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  min-width: unset;
  width: 25rem;
  border-radius: 0;
  box-shadow: 0 0;
}
.dropdown-menu li {
  font-size: 1.2rem;
}
.dropdown-menu li .dropdown__button {
  width: 100%;
  background-color: #000;
  color: white;
  border: 0;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.dropdown-menu li .dropdown__button:hover {
  background-color: #000;
  color: white;
}
.dropdown-menu li .dropdown__button:focus {
  background-color: #000;
  color: white;
}
.dropdown-menu li .inline-register {
  display: inline;
  padding: 0 0.2rem;
  color: #000;
  font-weight: bold;
}
.dropdown-menu li .inline-register:hover {
  background-color: white;
}
.dropdown-menu li .inline-register:focus {
  background-color: white;
}

.center-block {
  float: none;
}

.margin-top-40 {
  margin-top: 4rem;
}
@media (max-width: 48em) {
  .margin-top-40.m10 {
    margin-top: 1rem;
  }
}

.flex-contact {
  display: flex;
}
@media (max-width: 48em) {
  .flex-contact {
    flex-wrap: wrap;
  }
}
.flex-contact .contact-step-item {
  margin-right: 4rem;
}
.flex-contact .contact-step-item img {
  margin-top: 0.5rem;
  height: 40px;
}
@media (max-width: 48em) {
  .flex-contact .contact-step-item {
    margin-right: 0;
  }
}
.flex-contact .maps {
  width: 65%;
}
@media (max-width: 48em) {
  .flex-contact .maps {
    width: 100%;
    margin: 2rem;
  }
}
.flex-contact .contact-section {
  width: 30%;
  margin-right: 5rem;
  background: white;
  box-shadow: 16px 5px 23px -4px rgba(0, 0, 0, 0.66);
}
@media (max-width: 48em) {
  .flex-contact .contact-section {
    width: 100%;
    margin: 2rem 2rem;
  }
}
.flex-contact .contact-section #frmContact {
  margin: 2rem;
}
.flex-contact .contact-section .step-title {
  display: flex;
  flex-direction: normal;
  justify-content: space-between;
  align-items: center;
  margin: 2rem;
}
.flex-contact .contact-section .step-title h2 {
  font-size: 3.5rem;
}
.flex-contact .contact-section .step-title .js-plus {
  margin-top: 0.5rem;
  cursor: pointer;
}
.flex-contact .contact-section .border-bottom {
  width: 100%;
  background: #000;
  height: 1px;
  margin-bottom: 1rem;
}
.flex-contact .contact-section .no-padding {
  padding: 0;
}
.flex-contact .contact-section .text-light {
  color: #5b5b5f;
  font-size: 1.4rem;
  transition: all 0.7s ease;
  display: none;
  line-height: 2rem;
}

.cf-style-1 .field-row {
  margin-bottom: 25px;
  display: flex;
}
.cf-style-1 .field-row .form-div {
  width: 50%;
  float: left;
  display: flex;
  flex-direction: column;
}
.cf-style-1 .field-row .form-div:not(:first-child) {
  padding-left: 1.5rem;
}
.cf-style-1 .field-row .form-div:not(:last-child) {
  padding-right: 1.5rem;
}
@media (max-width: 48em) {
  .cf-style-1 .field-row .form-div {
    width: 100%;
  }
}
.cf-style-1 .field-row .form-div-full {
  width: 100%;
}
.cf-style-1 .field-row label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
}
.cf-style-1 .field-row .le-input {
  border-bottom: 1px solid !important;
  border: 0px;
  background-color: #fff;
  width: 100%;
  padding: 0.5rem;
}
.cf-style-1 .field-row .le-input::placeholder {
  font-size: 1.2rem;
}
.cf-style-1 .field-row .required {
  border: 1px solid red;
}
.cf-style-1 .buttons-holder button {
  padding: 15px 30px;
  font-size: 14px;
  text-transform: uppercase !important;
  font-weight: normal !important;
  display: inline-block;
  line-height: 16px;
  border: none;
  color: white;
  background-color: #2153aa;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.inner-top-xs {
  padding-top: 20px;
}

.our-store {
  line-height: 28px;
  color: #747474;
}

.stores {
  margin: 20px 0;
  padding-left: 0;
}
.stores__information {
  border-bottom: 1px solid #999;
  display: flex;
  align-items: center;
}
.stores__information h3.title {
  color: #000;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: bold !important;
}
.stores__information label {
  margin-left: 1rem;
}
.stores .locales {
  color: #000;
  height: 360px;
  overflow-y: scroll;
}
@media (max-width: 48em) {
  .stores .locales {
    height: fit-content;
  }
}
.stores .locales ul {
  margin: 0;
  padding: 0;
}
.stores .locales ul li.store {
  padding: 3px 10px;
  cursor: pointer;
  font-size: 12px;
}
.stores .locales ul li.store.active {
  text-decoration: underline;
}
.stores .locales h4 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 10px;
}

#map {
  width: 100%;
}

.story {
  margin: -2.5rem 0;
}
@media (max-width: 64em) {
  .story {
    margin: 0;
  }
}
.story__image {
  margin: 0 auto;
}

.footer {
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
  background: white;
}
.footer .footer-content {
  display: flex;
  flex-direction: normal;
  justify-content: space-between;
  background: white;
  width: max-content;
  padding: 1rem 0 3rem;
}
@media (max-width: 64em) {
  .footer .footer-content {
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: none;
    width: 100%;
  }
}
.footer .footer-content .social-items {
  border-right: none !important;
}
.footer .footer-content .social-items .title {
  margin-bottom: 1.5rem;
}
.footer .footer-content .social-items p {
  line-height: normal;
  font-size: 11px;
}
.footer .footer-content .item {
  display: flex;
  flex-direction: column;
  justify-content: normal;
  align-items: flex-start;
  font-size: 1rem;
  min-width: 250px;
  width: 100%;
  padding: 30px;
}
@media (max-width: 64em) {
  .footer .footer-content .item {
    margin-bottom: 1rem;
    order: 2;
    border: none;
    padding: 1rem;
  }
  .footer .footer-content .item.social-items {
    display: none;
  }
}
@media (max-width: 64em) {
  .footer .footer-content .item:not(.item--newsletter) {
    border-bottom: 1px solid #ababab;
    padding-bottom: 1rem;
  }
}
@media (max-width: 64em) {
  .footer .footer-content .item.open:not(.item--newsletter) {
    padding-bottom: 0;
  }
}
.footer .footer-content .item .title {
  color: black;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-content .item .title img {
  margin-right: 1rem;
  max-height: 2rem;
}
@media (max-width: 64em) {
  .footer .footer-content .item .title img {
    display: none;
  }
}
.footer .footer-content .item .title .toggle-icon {
  display: none;
}
@media (max-width: 64em) {
  .footer .footer-content .item .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer .footer-content .item .title .toggle-icon {
    cursor: pointer;
    font-size: 24px;
    font-family: "MontserratLight";
    display: block;
  }
}
.footer .footer-content .item .title .toggle-icon::after {
  content: "+";
}
.footer .footer-content .item ul {
  margin: 1.5rem 0;
}
.footer .footer-content .item ul.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 64em) {
  .footer .footer-content .item ul {
    display: none;
  }
}
.footer .footer-content .item ul li {
  color: #5b5b5f;
  padding: 0.7rem 0;
}
.footer .footer-content .item ul li a {
  font-size: 1.1rem;
  color: #212121;
  text-transform: uppercase;
}
.footer .footer-content .item ul li.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer .footer-content .item ul li.social-icons .social-icon img {
  height: 48px;
  padding: 5px;
}
.footer .footer-content .item ul li b {
  font-size: 1.2rem;
  font-family: "Brandon_bld";
  color: #585858;
  font-weight: bolder;
  text-transform: capitalize;
}
.footer .footer-content .item ul li b.social-icon {
  margin: 0 0.5rem;
}
.footer .footer-content .item ul li b.social-icon img {
  max-height: 15px;
}
.footer .footer-content .item ul li b.social-icon:first-child {
  margin: 0 0.5rem 0 0;
}
.footer .footer-content .item ul li b.social-icon:last-child {
  margin: 0 0 0 0.5rem;
}
.footer .footer-content .item ul li p {
  font-size: 1.3rem;
  color: #4b4b4b;
  text-transform: capitalize;
  padding-top: 4px;
}
.footer .footer-content .item .afip-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footer .footer-content .item .afip-container .afip-anchor img {
  width: 50px;
}
.footer .footer-content .item .afip-container .ml-img {
  width: 70px;
  height: 40px;
  margin-left: 2em;
}
.footer .footer-content .item.open .title .toggle-icon::after {
  content: "-";
}
.footer .footer-content .item--newsletter {
  max-width: 350px;
}
.footer .footer-content .item--newsletter li {
  position: relative;
  text-transform: none;
  width: 100%;
}
.footer .footer-content .item--newsletter ul {
  width: 100%;
}
@media (max-width: 64em) {
  .footer .footer-content .item--newsletter ul {
    display: block;
  }
}
.footer .footer-content .item--newsletter form {
  width: 100%;
}
.footer .footer-content .item--newsletter .newsletter-input {
  width: 100%;
  border: none;
  border: 1px solid #8f8f8f;
  color: #5b5b5f;
  background: transparent;
  line-height: 1.24;
  width: 62%;
}
@media (max-width: 64em) {
  .footer .footer-content .item--newsletter .newsletter-input {
    min-width: 100%;
  }
}
.footer .footer-content .item--newsletter .newsletter-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0.75rem 0;
  font-size: 1.14rem;
  width: 38%;
  color: white;
  background: #424244;
  text-transform: uppercase;
}
@media (max-width: 64em) {
  .footer .footer-content .item--newsletter {
    max-width: none;
    order: 1;
  }
}
.footer .copyright {
  border-top: 1px solid #ababab;
  display: flex;
  background: #f7f7f7;
  padding: 1.5rem 1rem;
  padding-right: 1rem;
  width: 100%;
  font-size: 1.1rem;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-family: "Montserrat";
}
.footer .copyright a {
  margin-left: 0.4rem;
  font-weight: bold;
  font-family: "Brandon_bld";
}
.footer .copyright a img {
  margin-top: -5px;
  height: 23px;
}
.footer .copyright span {
  display: inline;
}
.footer .copyright span img {
  display: inline;
  vertical-align: middle;
  padding-right: 0.5rem;
}
@media (max-width: 64em) {
  .footer .copyright {
    display: flex;
    flex-direction: center;
    justify-content: center;
    padding-top: 0;
    border-top: none;
  }
  .footer .copyright span {
    margin: 0.5rem 0;
    white-space: nowrap;
    font-size: 0.9rem;
  }
}

.newsletter-home {
  position: relative;
}
.newsletter-home #NewsletterForm {
  position: absolute;
  top: 45px;
  right: 135px;
  display: flex;
}
@media (max-width: 64em) {
  .newsletter-home #NewsletterForm {
    top: 31px;
    right: 53px;
  }
}
@media (max-width: 48em) {
  .newsletter-home #NewsletterForm {
    top: 24px;
    right: 40px;
  }
}
.newsletter-home #NewsletterForm input[type=email] {
  width: 360px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  height: 40px;
  border: none;
  color: #7f299b;
  font-family: "Brandon_Grotesque_Light";
  font-weight: 600;
  opacity: 1; /* Firefox */
  letter-spacing: 1.2px;
}
.newsletter-home #NewsletterForm input[type=email]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #7f299b;
  font-family: "Brandon_bld";
  opacity: 1; /* Firefox */
  letter-spacing: 1.2px;
}
.newsletter-home #NewsletterForm input[type=email]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #7f299b;
  letter-spacing: 1.2px;
}
.newsletter-home #NewsletterForm input[type=email]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #7f299b;
  letter-spacing: 1.2px;
}
@media (max-width: 64em) {
  .newsletter-home #NewsletterForm input[type=email] {
    width: 313px;
    height: 35px;
  }
}
@media (max-width: 48em) {
  .newsletter-home #NewsletterForm input[type=email] {
    width: 267px;
    height: 30px;
  }
}
.newsletter-home #NewsletterForm input[type=submit] {
  background: #cccccc;
  width: 200px;
  height: 40px;
  border: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #7f299b;
  font-family: "Brandon_bld";
  letter-spacing: 1.2px;
}
@media (max-width: 64em) {
  .newsletter-home #NewsletterForm input[type=submit] {
    width: 171px;
    height: 35px;
    font-size: 0.8em;
  }
}
@media (max-width: 48em) {
  .newsletter-home #NewsletterForm input[type=submit] {
    width: 100px;
    height: 30px;
    font-size: 0.6em;
  }
}

.newsletter-home-mobile {
  position: relative;
  justify-content: center;
}
.newsletter-home-mobile #NewsletterFormMobile {
  position: absolute;
  top: 55%;
  display: flex;
  justify-content: center;
}
.newsletter-home-mobile #NewsletterFormMobile input[type=email] {
  width: 195px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  height: 30px;
  border: none;
  color: #7f299b;
  font-family: "Brandon_Grotesque_Light";
  font-weight: 600;
  font-size: 0.7em;
  opacity: 1; /* Firefox */
  letter-spacing: 1.2px;
}
.newsletter-home-mobile #NewsletterFormMobile input[type=email]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #7f299b;
  font-family: "Brandon_bld";
  opacity: 1; /* Firefox */
  letter-spacing: 1.2px;
}
.newsletter-home-mobile #NewsletterFormMobile input[type=email]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #7f299b;
  letter-spacing: 1.2px;
}
.newsletter-home-mobile #NewsletterFormMobile input[type=email]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #7f299b;
  letter-spacing: 1.2px;
}
.newsletter-home-mobile #NewsletterFormMobile input[type=submit] {
  background: #cccccc;
  width: 95px;
  height: 30px;
  font-size: 0.6em;
  border: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #7f299b;
  font-family: "Brandon_bld";
  letter-spacing: 1.2px;
}

.footer-menu {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media (max-width: 48em) {
  .footer-menu {
    position: sticky;
  }
}

@media (max-width: 64em) {
  .mayoristas {
    margin-top: 0;
  }
}

.mayorista-title {
  color: #000;
  background-color: #fff;
  display: inline-block;
  padding: 5px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.mayorista-additional {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 20px;
}

.mayorista-data {
  display: flex;
  justify-content: center;
  background-color: #000;
  padding: 15px 0;
  text-transform: uppercase;
  color: white;
  font-size: 14px;
  margin-bottom: 15px;
}
@media (max-width: 64em) {
  .mayorista-data {
    flex-direction: column;
    align-items: center;
  }
  .mayorista-data .mayorista-data-items {
    flex-direction: column;
  }
  .mayorista-data .mayorista-data-items:before, .mayorista-data .mayorista-data-items:after {
    content: "";
    margin: 0;
  }
  .mayorista-data .mayorista-data-item:first-child:after {
    content: "";
    margin: 0;
  }
  .mayorista-data .mobile-align-mayorista {
    margin: 1rem 0;
  }
  .mayorista-data .mayorista-data-item {
    margin: 1rem 0;
    text-align: center;
  }
  .mayorista-data .mayorista-data-item:first-child {
    margin-top: 0;
  }
  .mayorista-data .mayorista-data-item:last-child {
    margin-bottom: 0rem;
  }
}

.mayorista-data-items {
  display: flex;
  justify-content: center;
}

.mayorista-data-items:before {
  content: "|";
  margin: 0 15px;
}

.mayorista-data-items:after {
  content: "|";
  margin: 0 15px;
}

.mayorista-data-item:first-child:after {
  content: "|";
  margin: 0 15px;
}

.compra-mayorista {
  background-color: #2253aa;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 2rem;
  width: 100%;
}

.compra-mayorista a {
  color: #fff;
  font-weight: normal;
  font-size: 1.5rem;
}

.mayoristas-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  color: white;
  padding: 10px;
}
.mayoristas-carousel .mayorista-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}
.mayoristas-carousel .mayorista-item:first-child {
  padding-right: 1rem;
  margin-right: 0;
  border-right: 1px solid #FFF;
}
.mayoristas-carousel .mayorista-item a, .mayoristas-carousel .mayorista-item span {
  color: white;
  /*font-family: Montserrat;*/
  text-transform: uppercase;
  font-size: 13px;
}
@media (max-width: 48em) {
  .mayoristas-carousel .mayorista-item a, .mayoristas-carousel .mayorista-item span {
    font-size: 11px;
  }
}

.section-banner .register-mayorista {
  padding: 0.8rem 2.5rem;
  background-color: white;
  color: #000;
  text-transform: uppercase;
  position: absolute;
  top: 60%;
  left: 75%;
}
@media (max-width: 48em) {
  .section-banner .register-mayorista {
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 400px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
@media (max-width: 48em) {
  .modal.left .modal-dialog,
  .modal.right .modal-dialog {
    width: 100% !important;
  }
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow: hidden;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Left*/
.modal.left.fade .modal-dialog {
  left: -320px;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
  left: 0;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -320px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #EEEEEE;
  background-color: #FAFAFA;
}

.oldQuantity {
  width: 55px;
  height: 27px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 9px;
  background: #f6f6f6;
  color: #494949;
  border: none;
  -moz-appearance: unset !important;
  border-bottom: 1px solid;
}

.cart-slideout {
  /* New cart slideout */
  border-left: 1px solid #e5e5e5;
  /*
  &:has(.modal-cart-products__empty) {
      .cart-slideout__bottom {
          display: none;
      }
  }
  */
  /* End */
}
.cart-slideout__content {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.cart-slideout__title {
  display: inline-flex;
  flex-flow: row nowrap;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 3px solid #0e7fcf;
  width: 100%;
  background-color: #f2f2f2;
}
.cart-slideout__close {
  cursor: pointer;
  font-size: 2.5rem;
  color: #004c59;
  position: absolute;
  left: 90%;
}
.cart-slideout__text {
  font-family: "gobold-regular";
  font-weight: bold;
  font-size: 1.1em;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  margin-left: 0.25em;
}
.cart-slideout__title {
  background: white;
  position: sticky;
  z-index: 999;
  padding: 1.25rem;
}
.cart-slideout__bottom {
  background: white;
  position: sticky;
  z-index: 999;
  padding: 1.25em;
}
.cart-slideout__bottom {
  background: #fff;
  bottom: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 10px 0px;
}
.cart-slideout__product-list {
  font-family: "gobold-light";
  font-size: 1em;
  overflow-y: scroll;
  /*
  &:has(.modal-cart-products__empty) {
      height: 100% !important;
  }
  */
  height: calc(100% - 10.5em);
  /*padding-top: 1em;*/
}
.cart-slideout__button .min-price-text {
  font-family: "gobold-regular";
  color: #a94442;
  font-size: 1.2rem;
}
.cart-slideout__button .min-price-text span {
  font-family: "gobold-medium";
  font-size: 1.2rem;
}
.cart-slideout__button a {
  display: inline-flex;
  justify-content: center;
  padding: 0.5em;
  width: 100%;
  background-color: #262626;
  color: #fff;
  font-family: "gobold-regular";
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  transition: all 250ms cubic-bezier(0.4, 0, 1, 1) 0s;
}
.cart-slideout__button a:hover {
  background-color: #3d3d3d;
}
.cart-slideout__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "gobold-regular";
  font-size: 1.4rem;
  color: #262626;
  line-height: 1.7;
}
.cart-slideout__total-price {
  margin-left: 1em;
}
.cart-slideout .modal-cart-products__empty {
  display: flex;
  flex-flow: column wrap;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.cart-slideout .modal-cart-products__empty span {
  font-family: "gobold-light";
  font-weight: bold;
  font-size: 1em;
  letter-spacing: 1px;
  line-height: 2;
  border-bottom: 3px solid #f2f2f2;
}
.cart-slideout .modal-cart-products__product {
  display: flex;
  flex-flow: column wrap;
  flex-direction: column;
  flex-wrap: wrap;
  background: #f6f6f6;
  /*margin: 0 1em;*/
}
.cart-slideout .modal-cart-products__product:not(:last-child) .detail {
  border-bottom: 1px solid #e4e4e4;
}
.cart-slideout .modal-cart-products__product .detail {
  padding: 1em 0;
}
.cart-slideout .modal-cart-products__product .detail__container {
  display: flex;
  flex-flow: row nowrap;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
}
.cart-slideout .modal-cart-products__product .detail__container-title {
  display: inline-flex;
  flex-flow: row nowrap;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cart-slideout .modal-cart-products__product .detail__container-title span {
  font-family: "gobold-regular";
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 1px;
}
.cart-slideout .modal-cart-products__product .detail__container-color span, .cart-slideout .modal-cart-products__product .detail__container-pricing span, .cart-slideout .modal-cart-products__product .detail__container-size span {
  margin: 3% 0;
  font-family: "gobold-light";
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 1px;
}
.cart-slideout .modal-cart-products__product .detail__container-delete {
  cursor: pointer;
  font-size: 1.5em;
  color: #cbcbcb;
  transition: all 250ms cubic-bezier(0.4, 0, 1, 1) 0s;
  margin-right: 10px;
}
.cart-slideout .modal-cart-products__product .detail__container-delete:hover {
  color: #9b9b9b;
}
.cart-slideout .modal-cart-products__product .detail__container-image {
  width: 25%;
  margin: 0 2%;
}
.cart-slideout .modal-cart-products__product .detail__container-box {
  width: 75%;
  padding-left: 1em;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity {
  float: right;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .minus-button button {
  background: #f2f2f2 none repeat scroll 0% 0%;
  border: none;
  border-radius: 0px;
  transition: all 250ms cubic-bezier(0.4, 0, 1, 1) 0s;
  padding: 0.75em 1.5em;
  margin-right: 0px;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .minus-button button .fa {
  color: #5d5d5d;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .minus-button button:hover {
  background: #ebeaea;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .input-number {
  background: #fff;
  border: none;
  box-shadow: none;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 1em;
  color: #000;
  text-align: center;
  pointer-events: none;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .plus-button button {
  background-color: #9b9b9b;
  border: none;
  border-radius: 0px;
  transition: all 250ms cubic-bezier(0.4, 0, 1, 1) 0s;
  padding: 0.75em 1.5em;
  margin-left: 0px;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .plus-button button .fa {
  color: #fff;
}
.cart-slideout .modal-cart-products__product .detail__container-quantity .plus-button button:hover {
  background: #5d5d5d;
}
.cart-slideout__product {
  display: flex;
  padding: 1rem;
  font-size: 1.4rem;
}
.cart-slideout__product .slideout-product__image {
  width: 30%;
  min-width: 100px;
}
.cart-slideout__product .slideout-product__data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding-left: 1.5rem;
}
.cart-slideout__product .slideout-product__title, .cart-slideout__product .slideout-product__color, .cart-slideout__product .slideout-product__size, .cart-slideout__product .slideout-product__quantity {
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.cart-slideout__product .slideout-product__title {
  font-weight: 700;
}
.cart-slideout__product .slideout-product__bottom {
  display: flex;
  justify-content: space-between;
}
.cart-slideout .loader {
  display: block;
  margin: 3rem auto;
}
.cart-slideout .modal-cart-products__titles {
  display: flex;
  padding: 0.9rem 1rem;
  margin: 0 1em;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 0.87em;
  border-bottom: 1px solid #e4e4e4;
}
.cart-slideout .modal-cart-products__titles .texts {
  width: 50%;
}
.cart-slideout .modal-cart-products__titles .texts:first-child {
  border-right: 1px solid black;
}
.cart-slideout .modal-cart-products__titles .texts:last-child {
  text-align: end;
}
.cart-slideout .modal-cart-products__subtotal {
  padding: 8px 0px;
  font-weight: bold;
  text-align: end;
  font-size: 1.4rem;
  border-bottom: 1px solid #d0cdcd;
}
.cart-slideout .modal-cart-products__envios {
  border-bottom: 1px solid black;
  padding: 1.4rem 0;
}
.cart-slideout .modal-cart-products__envios .envios-text {
  font-size: 14px;
}
.cart-slideout .modal-cart-products__envios .envios-input {
  margin: 8px 0px;
}
.cart-slideout .modal-cart-products__envios .envios-input input {
  width: 70%;
}
.cart-slideout .modal-cart-products__envios .envios-input button {
  width: 30%;
  background: black;
  border: none;
  color: white;
  height: 30px;
}
.cart-slideout .modal-cart-products__envios .envios-subtext .remember {
  font-size: 1.3rem;
  text-decoration: underline;
}