/* 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;
  vertical-align: baseline; }

/* 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,
q:before,
q:after {
  content: "";
  content: none; }

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

/* colors */
/* colors with transparency */
/* media sizes */
/* fonts */
/* weights */
.clearfix:after {
  content: "";
  display: table;
  clear: both; }

/* =========
   FLEX GRID
   ========= */
/*  =========

    USAGE:

    <div class="grid">
        <div class="cell lg-3">3 / 12</div>
        <div class="cell lg-9">9 / 12</div>
    </div>

    To align items with align-items
        .top: To top
        .middle: To middle
        .bottom: To bottom
        .stretch: Stretch items
        .baseline: To baseline

    To layout contents with justify-content
        .left: To left
        .center: To center
        .right: To right
        .between: Add spaces between items
        .around: Add spaces around items

        =========  */
.container-fluid {
  width: 100%; }

.container {
  margin-right: 100px;
  margin-left: 100px; }
  .container:after {
    content: "";
    display: table;
    clear: both; }

.container-vw {
  padding-right: 100px;
  padding-left: 100px;
  width: calc(100vw - 200px); }

.grid {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.grid.padded {
  margin-left: -6px;
  margin-right: -6px; }

.grid.top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start; }

.grid.middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center; }

.grid.bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end; }

.grid.stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch; }

.grid.baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  -ms-grid-row-align: baseline;
  align-items: baseline; }

.grid.left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.grid.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.grid.right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.grid.between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.grid.around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.grid.reverse-row {
  flex-flow: row-reverse; }

.grid.reverse-column {
  flex-flow: column-reverse; }

.grid.column {
  flex-flow: column; }

/* ==============
   FLEX GRID CELL
   ============== */
.cell {
  box-sizing: border-box;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  float: left; }

.cell.padded {
  padding-left: 6px;
  padding-right: 6px; }

.cell.fill {
  width: 0;
  min-width: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.cell.xlg-1 {
  width: calc(100% * 1 / 12); }

.cell.xlg-2 {
  width: calc(100% * 2 / 12); }

.cell.xlg-3 {
  width: calc(100% * 3 / 12); }

.cell.xlg-4 {
  width: calc(100% * 4 / 12); }

.cell.xlg-5 {
  width: calc(100% * 5 / 12); }

.cell.xlg-6 {
  width: calc(100% * 6 / 12); }

.cell.xlg-7 {
  width: calc(100% * 7 / 12); }

.cell.xlg-8 {
  width: calc(100% * 8 / 12); }

.cell.xlg-9 {
  width: calc(100% * 9 / 12); }

.cell.xlg-10 {
  width: calc(100% * 10 / 12); }

.cell.xlg-11 {
  width: calc(100% * 11 / 12); }

.cell.xlg-12 {
  width: 100%; }

@media only screen and (max-width: 1399px) {
  .cell.lg-1 {
    width: calc(100% * 1 / 12); }
  .cell.lg-2 {
    width: calc(100% * 2 / 12); }
  .cell.lg-3 {
    width: calc(100% * 3 / 12); }
  .cell.lg-4 {
    width: calc(100% * 4 / 12); }
  .cell.lg-5 {
    width: calc(100% * 5 / 12); }
  .cell.lg-6 {
    width: calc(100% * 6 / 12); }
  .cell.lg-7 {
    width: calc(100% * 7 / 12); }
  .cell.lg-8 {
    width: calc(100% * 8 / 12); }
  .cell.lg-9 {
    width: calc(100% * 9 / 12); }
  .cell.lg-10 {
    width: calc(100% * 10 / 12); }
  .cell.lg-11 {
    width: calc(100% * 11 / 12); }
  .cell.lg-12 {
    width: 100%; } }

@media only screen and (max-width: 1199px) {
  .container {
    margin-right: 50px;
    margin-left: 50px; }
  .container-vw {
    padding-right: 50px;
    padding-left: 50px;
    width: calc(100vw - 100px); }
  .cell.md-1 {
    width: calc(100% * 1 / 12); }
  .cell.md-2 {
    width: calc(100% * 2 / 12); }
  .cell.md-3 {
    width: calc(100% * 3 / 12); }
  .cell.md-4 {
    width: calc(100% * 4 / 12); }
  .cell.md-5 {
    width: calc(100% * 5 / 12); }
  .cell.md-6 {
    width: calc(100% * 6 / 12); }
  .cell.md-7 {
    width: calc(100% * 7 / 12); }
  .cell.md-8 {
    width: calc(100% * 8 / 12); }
  .cell.md-9 {
    width: calc(100% * 9 / 12); }
  .cell.md-10 {
    width: calc(100% * 10 / 12); }
  .cell.md-11 {
    width: calc(100% * 11 / 12); }
  .cell.md-12 {
    width: 100%; } }

@media only screen and (max-width: 991px) {
  .container {
    margin-right: 24px;
    margin-left: 24px; }
  .container-vw {
    padding-right: 24px;
    padding-left: 24px;
    width: calc(100vw - 48px); }
  .cell.sm-1 {
    width: calc(100% * 1 / 12); }
  .cell.sm-2 {
    width: calc(100% * 2 / 12); }
  .cell.sm-3 {
    width: calc(100% * 3 / 12); }
  .cell.sm-4 {
    width: calc(100% * 4 / 12); }
  .cell.sm-5 {
    width: calc(100% * 5 / 12); }
  .cell.sm-6 {
    width: calc(100% * 6 / 12); }
  .cell.sm-7 {
    width: calc(100% * 7 / 12); }
  .cell.sm-8 {
    width: calc(100% * 8 / 12); }
  .cell.sm-9 {
    width: calc(100% * 9 / 12); }
  .cell.sm-10 {
    width: calc(100% * 10 / 12); }
  .cell.sm-11 {
    width: calc(100% * 11 / 12); }
  .cell.sm-12 {
    width: 100%; } }

@media only screen and (max-width: 767px) {
  .container {
    margin-right: 12px;
    margin-left: 12px; }
  .container-vw {
    padding-right: 12px;
    padding-left: 12px;
    width: calc(100vw - 24px); }
  .cell.xs-1 {
    width: calc(100% * 1 / 12); }
  .cell.xs-2 {
    width: calc(100% * 2 / 12); }
  .cell.xs-3 {
    width: calc(100% * 3 / 12); }
  .cell.xs-4 {
    width: calc(100% * 4 / 12); }
  .cell.xs-5 {
    width: calc(100% * 5 / 12); }
  .cell.xs-6 {
    width: calc(100% * 6 / 12); }
  .cell.xs-7 {
    width: calc(100% * 7 / 12); }
  .cell.xs-8 {
    width: calc(100% * 8 / 12); }
  .cell.xs-9 {
    width: calc(100% * 9 / 12); }
  .cell.xs-10 {
    width: calc(100% * 10 / 12); }
  .cell.xs-11 {
    width: calc(100% * 11 / 12); }
  .cell.xs-12 {
    width: 100%; } }

@media only screen and (max-width: 575px) {
  .container {
    margin-right: 12px;
    margin-left: 12px; }
  .container-vw {
    padding-right: 12px;
    padding-left: 12px;
    width: calc(100vw - 24px); }
  .cell.xxs-1 {
    width: calc(100% * 1 / 12); }
  .cell.xxs-2 {
    width: calc(100% * 2 / 12); }
  .cell.xxs-3 {
    width: calc(100% * 3 / 12); }
  .cell.xxs-4 {
    width: calc(100% * 4 / 12); }
  .cell.xxs-5 {
    width: calc(100% * 5 / 12); }
  .cell.xxs-6 {
    width: calc(100% * 6 / 12); }
  .cell.xxs-7 {
    width: calc(100% * 7 / 12); }
  .cell.xxs-8 {
    width: calc(100% * 8 / 12); }
  .cell.xxs-9 {
    width: calc(100% * 9 / 12); }
  .cell.xxs-10 {
    width: calc(100% * 10 / 12); }
  .cell.xxs-11 {
    width: calc(100% * 11 / 12); }
  .cell.xxs-12 {
    width: 100%; } }

@keyframes tooltip {
  to {
    opacity: 0.9;
    transform: translate(-70%, 0); } }

[data-tooltip] {
  position: relative; }

[data-tooltip]::before,
[data-tooltip]::after {
  display: none;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-transform: none;
  user-select: none; }

[data-tooltip]::before {
  border: 5px solid transparent;
  border-bottom-width: 2px;
  border-top-color: #201e1e;
  bottom: 100%;
  content: "";
  left: 10px;
  transform: translate(-70%, -0.5em);
  z-index: 1001; }

[data-tooltip]::after {
  background: #201e1e;
  bottom: calc(100% + 7px);
  color: #fff;
  content: attr(data-tooltip);
  font-family: "Roboto", sans-serif;
  /*font-weight: $medium;*/
  left: -70%;
  overflow: hidden;
  padding: 6px 7px;
  text-align: center;
  text-overflow: ellipsis;
  transform: translate(-70%, -0.5em);
  white-space: nowrap;
  z-index: 1000; }

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  animation: tooltip 180ms ease-out forwards;
  display: block; }

@keyframes tooltip-center {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0); } }

[data-tooltip].center {
  position: relative; }

[data-tooltip].center::before,
[data-tooltip].center::after {
  display: none;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-transform: none;
  user-select: none; }

[data-tooltip].center::before {
  border: 5px solid transparent;
  border-bottom-width: 2px;
  border-top-color: #201e1e;
  bottom: 100%;
  content: "";
  left: 50%;
  transform: translate(-50%, -0.5em);
  z-index: 1001; }

[data-tooltip].center::after {
  background: #201e1e;
  bottom: calc(100% + 7px);
  color: #fff;
  content: attr(data-tooltip);
  font-family: "Roboto", sans-serif;
  /*font-weight: $medium;*/
  left: 50%;
  overflow: hidden;
  padding: 6px 7px;
  text-align: center;
  text-overflow: ellipsis;
  transform: translate(-50%, -0.5em);
  white-space: nowrap;
  z-index: 1000; }

[data-tooltip].center:hover::before,
[data-tooltip].center:hover::after {
  animation: tooltip-center 180ms ease-out forwards;
  display: block; }

@font-face {
  font-family: "octin_college_regular";
  src: url("/../../static/fonts/octincollegerg-regular-webfont.woff2") format("woff2"), url("/../../static/fonts/octincollegerg-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "octin_college_bold";
  src: url("/../../static/fonts/octincollegerg-bold-webfont.woff2") format("woff2"), url("/../../static/fonts/octincollegerg-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "fpf-2020";
  src: url("/../../static/fonts/fpf-20.woff2") format("woff2"), url("/../../static/fonts/fpf-20.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "fpf-2022";
  src: url("/../../static/fonts/fpf-22.woff2") format("woff2"), url("/../../static/fonts/fpf-22.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "fpf-2024";
  src: url("/../../static/fonts/fpf-24.woff2") format("woff2"), url("/../../static/fonts/fpf-24.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "fpf-2024-numbers";
  src: url("/../../static/fonts/fpf-24-numbers.woff2") format("woff2"), url("/../../static/fonts/fpf-24-numbers.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "fpf-2025";
  src: url("/../../static/fonts/fpf-2025-Regular.woff2") format("woff2"), url("/../../static/fonts/fpf-2025-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "fpf-2026";
  src: url("/../../static/fonts/fpf-2026.woff2") format("woff2"), url("/../../static/fonts/fpf-2026.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

.button {
  cursor: pointer;
  position: relative;
  display: inline-block;
  /*&:not(.btn100):not(.w180):not(.w250){
      width: auto;
   }*/ }
  .button.inactive, .button:disabled, .button.loading {
    cursor: default; }
  .button.link-w100 a {
    width: 100%;
    justify-content: center; }
  .button a {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "octin_college_bold", sans-serif;
    letter-spacing: 2px;
    white-space: nowrap; }
  .button span {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    font-family: "octin_college_bold", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-sizing: border-box; }
  .button.xbig {
    height: 50px; }
    .button.xbig.has-icon span,
    .button.xbig.has-icon a {
      padding-left: 28px; }
    .button.xbig span,
    .button.xbig a {
      height: 100%;
      line-height: 46px;
      font-size: 16px; }
    .button.xbig.w250 {
      width: 250px; }
  .button.big {
    font-size: 12px;
    height: 40px;
    line-height: 38px; }
    .button.big.has-icon span,
    .button.big.has-icon a {
      padding-left: 20px;
      align-items: center; }
    .button.big span,
    .button.big a {
      height: 100%;
      line-height: 38px;
      align-self: center; }
    .button.big i {
      line-height: 38px;
      height: 36px;
      align-self: center;
      font-size: 16px; }
    .button.big.w250 {
      width: 250px; }
  .button.small {
    line-height: 30px; }
    .button.small.has-icon span,
    .button.small.has-icon a {
      padding-left: 12px; }
    .button.small span {
      font-size: 12px; }
    .button.small i {
      font-size: 12px; }
  .button.red {
    color: #fff;
    background-color: rgba(234, 57, 59, 0.6); }
    .button.red.inactive i {
      cursor: default; }
    .button.red:before {
      background: rgba(234, 57, 59, 0.9); }
  .button.black {
    color: #fff;
    background-color: #201e1e; }
    .button.black.inactive {
      color: rgba(255, 255, 255, 0.5); }
    .button.black:before {
      background: rgba(32, 30, 30, 0.9); }
  .button.green {
    color: #201e1e;
    background-color: rgba(55, 248, 153, 0.6); }
    .button.green:before {
      background: rgba(55, 248, 153, 0.9); }
  .button.white {
    color: #ea393b;
    background-color: #fff; }
    .button.white:before {
      background: #fff; }
  .button.green-border {
    color: #201e1e;
    background-color: #fff;
    border: 2px solid #37f899;
    box-sizing: border-box; }
  .button.red-border {
    color: #201e1e;
    background-color: #fff;
    border: 2px solid #ea393b;
    box-sizing: border-box; }
  .button.btn100 {
    width: 100%;
    justify-content: center;
    display: flex; }
    .button.btn100.big span,
    .button.btn100.big a,
    .button.btn100.xbig span,
    .button.btn100.xbig a,
    .button.btn100.small span,
    .button.btn100.small a {
      margin-left: 0; }
  .button:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%; }

input,
button {
  position: relative; }
  input.button,
  button.button {
    position: relative;
    font-family: "octin_college_bold", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none; }
    input.button.xbig,
    button.button.xbig {
      line-height: 50px;
      font-size: 16px; }
    input.button.big,
    button.button.big {
      font-size: 12px;
      line-height: 40px; }
    input.button.small,
    button.button.small {
      line-height: 30px;
      font-size: 12px; }
    input.button.red,
    button.button.red {
      color: #fff;
      background-color: rgba(234, 57, 59, 0.6); }
      input.button.red:before,
      button.button.red:before {
        background: rgba(234, 57, 59, 0.9); }
    input.button.black,
    button.button.black {
      color: #fff;
      background-color: rgba(32, 30, 30, 0.6); }
      input.button.black.inactive,
      button.button.black.inactive {
        color: rgba(255, 255, 255, 0.5); }
      input.button.black:before,
      button.button.black:before {
        background: rgba(32, 30, 30, 0.9); }
    input.button.black-grey,
    button.button.black-grey {
      color: #37f899;
      background-color: rgba(32, 30, 30, 0.6); }
      input.button.black-grey:before,
      button.button.black-grey:before {
        background: rgba(238, 238, 238, 0.9); }
    input.button.green,
    button.button.green {
      color: #201e1e;
      background-color: rgba(55, 248, 153, 0.6); }
      input.button.green:before,
      button.button.green:before {
        background: rgba(55, 248, 153, 0.9); }
    input.button:focus,
    button.button:focus {
      outline: none; }

@media only screen and (max-width: 991px) {
  .button.mobile-md-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; }
    .button.mobile-md-fixed span {
      display: flex;
      flex-flow: row;
      justify-content: center;
      width: 100%;
      margin: 0; }
    .button.mobile-md-fixed.red {
      background-color: #f48d8b; }
    .button.mobile-md-fixed.add-to-cart {
      padding-left: 20px; }
  .button.mob-xbig {
    height: 50px; }
    .button.mob-xbig a,
    .button.mob-xbig span {
      line-height: 50px; }
    .button.mob-xbig .icon-bag-white-mobile:before {
      top: 16px; }
  .button.mobile-fixed-50 {
    position: fixed;
    bottom: 0;
    width: 50%;
    transition: 0.6s width ease-in-out; }
    .button.mobile-fixed-50.left {
      left: 0;
      z-index: 3; }
    .button.mobile-fixed-50.right {
      left: 50%;
      z-index: 2; }
    .button.mobile-fixed-50.open {
      width: 100%;
      transition: 0.6s width ease-in-out; }
    .button.mobile-fixed-50.black {
      background-color: #201e1e; }
    .button.mobile-fixed-50.red {
      background-color: #f48d8b; } }

@media only screen and (max-width: 767px) {
  .button.mobile-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; }
    .button.mobile-fixed span {
      display: flex;
      flex-flow: row;
      justify-content: center;
      width: 100%;
      margin: 0; }
  .button.mob-xbig {
    height: 50px; }
    .button.mob-xbig a,
    .button.mob-xbig span {
      line-height: 50px; }
    .button.mob-xbig .icon-bag-white-mobile:before {
      top: 16px; }
  .button.mobile-w-100 {
    width: 100%; }
    .button.mobile-w-100 span,
    .button.mobile-w-100 a {
      margin-left: 0;
      justify-content: center; }
    .button.mobile-w-100.w250 {
      width: 100%; } }

.m0 {
  margin: 0; }

.mt05 {
  margin-top: 10px; }

.mr05 {
  margin-right: 10px; }

.ml05 {
  margin-left: 10px; }

.mt1 {
  margin-top: 20px; }

.mt2 {
  margin-top: 40px; }

.mt3 {
  margin-top: 60px; }

.mb05 {
  margin-bottom: 10px; }

.mb1 {
  margin-bottom: 20px; }

.mb2 {
  margin-bottom: 40px; }

.mb3 {
  margin-bottom: 60px; }

.mb6 {
  margin-bottom: 120px; }

.mr1 {
  margin-right: 20px; }

.pt1 {
  padding-top: 20px; }

.pt2 {
  padding-top: 40px; }

.pt3 {
  padding-top: 60px; }

.pb1 {
  padding-bottom: 20px; }

.pb2 {
  padding-bottom: 40px; }

.pb3 {
  padding-bottom: 60px; }

.push-right {
  float: right; }

.push-left {
  float: left; }

.hide {
  display: none; }

.hide-scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: -120px;
  padding-right: 120px; }

.fixed {
  position: fixed; }

.z-0 {
  z-index: 0; }

.z-1 {
  z-index: 1; }

.z-2 {
  z-index: 2; }

.z-3 {
  z-index: 3; }

.z-4 {
  z-index: 4; }

.z-5 {
  z-index: 5; }

.z-5-i {
  z-index: 5 !important; }

.z-6 {
  z-index: 6; }

.z-6-i {
  z-index: 6 !important; }

.m-b-100 {
  margin-bottom: 100px; }

.flex-inline {
  display: inline-flex; }

.align-center {
  align-items: center; }

.pushdown {
  padding-top: 110px; }

.relative {
  position: relative; }

.shadow {
  box-shadow: 0 10px 20px 0 rgba(32, 30, 30, 0.1); }

.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.w100 {
  width: 100%; }

.w180 {
  width: 180px; }

.h100 {
  height: 100px; }

.mt60 {
  margin-top: 36px; }

.mt36 {
  margin-top: 36px; }

.pt12 {
  padding-top: 12px; }

.center {
  text-align: center; }

@media only screen and (min-width: 768px) {
  .mobile,
  .mobile-md {
    display: none !important; } }

.desktop,
.desktop-md {
  display: inherit; }

.hidden {
  display: none !important; }

.flex-column {
  display: flex;
  flex-flow: column; }

.flex {
  display: flex; }

.page-top {
  margin-top: 170px; }

.flex-center {
  display: flex;
  justify-content: center; }

.flex-between {
  display: flex;
  justify-content: space-between; }

.flex-around {
  display: flex;
  justify-content: space-around; }

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

@media only screen and (max-width: 991px) {
  .mobile {
    display: inherit; }
  .desktop {
    display: none !important; } }

@media only screen and (max-width: 767px) {
  .mobile-md {
    display: inherit; }
  .desktop-md {
    display: none !important; }
  .page-top {
    margin-top: 100px; }
  .hidden-mobile-md {
    display: none; } }

header .store-menu-container .desktop-md {
  padding-left: 50px;
  padding-right: 80px; }

@media only screen and (max-width: 1199px) {
  header .store-menu-container .desktop-md {
    padding: 0 70px;
    padding-right: 40px; } }

/*** TITLE 1 ***/
.title-container {
  font-family: "octin_college_bold", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
  height: 60px;
  overflow: hidden;
  margin: 66px 0 56px; }
  .title-container span {
    color: rgba(32, 30, 30, 0.03);
    font-family: "octin_college_regular", sans-serif;
    font-size: 60px;
    letter-spacing: 29px;
    line-height: 60px;
    text-align: center; }
  .title-container .title {
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%; }
    .title-container .title:before {
      content: "[";
      color: #37f899;
      margin-right: 20px; }
    .title-container .title:after {
      content: "]";
      color: #37f899;
      margin-left: 20px; }
    .title-container .title.title--disabled {
      opacity: 0.5;
      color: rgba(0, 0, 0, 0.5); }
      .title-container .title.title--disabled:before {
        content: ""; }
      .title-container .title.title--disabled:after {
        content: ""; }

/*** TITLE 2 ***/
.red-title {
  color: #ea393b;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 36px;
  letter-spacing: 1px; }
  .red-title.f16 {
    font-size: 16px; }
  .red-title.mb24 {
    margin-bottom: 24px; }

.go-back {
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(32, 30, 30, 0.5);
  font-size: 12px;
  line-height: 14px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 1px; }
  .go-back i {
    margin-right: 6px; }
  .go-back:hover, .go-back:focus {
    cursor: pointer; }

.price {
  font-family: "octin_college_bold", sans-serif;
  position: relative;
  z-index: 1; }
  .price .promo :first-child {
    color: rgba(32, 30, 30, 0.5);
    text-decoration: line-through;
    padding-right: 12px; }
  .price .promo :last-child {
    color: #ea393b;
    margin-left: 8px; }
  .price .old-price {
    color: rgba(32, 30, 30, 0.5);
    font-size: small; }

.swatches {
  width: 100%;
  position: absolute;
  display: flex;
  position: relative;
  padding-top: 11px;
  padding-bottom: 24px;
  margin: 0 -3px; }
  .swatches li {
    height: 20px;
    width: 20px;
    margin: 0 3px; }
    .swatches li.active {
      height: 22px;
      width: 22px;
      box-sizing: border-box; }
    .swatches li:hover {
      cursor: pointer; }

.sizes .size-container {
  display: flex;
  justify-content: flex-start;
  padding-top: 13px;
  padding-bottom: 24px;
  margin: 0 -3px;
  flex-wrap: wrap; }
  @media only screen and (max-width: 1199px) {
    .sizes .size-container {
      margin-top: 8px; } }
  .sizes .size-container li {
    height: 26px;
    min-width: 24px;
    line-height: 26px;
    background-color: rgba(32, 30, 30, 0.05);
    color: #201e1e;
    font-family: "octin_college_regular", sans-serif;
    font-size: 12px;
    text-align: center;
    margin: 3px;
    white-space: nowrap;
    display: inline-block;
    padding: 0px 7px; }
    @media only screen and (max-width: 1199px) {
      .sizes .size-container li {
        font-size: 12px;
        height: 32px;
        line-height: 32px;
        margin: 6px; } }
    .sizes .size-container li.active {
      background-color: rgba(32, 30, 30, 0.02); }
    .sizes .size-container li.outOfStock {
      height: 26px;
      width: 34px;
      line-height: 26px;
      color: rgba(32, 30, 30, 0.2);
      background: #fff; }
    .sizes .size-container li:hover, .sizes .size-container li:focus {
      cursor: pointer; }

.attributes .dropdown {
  position: relative;
  height: 80px; }
  .attributes .dropdown .attribute {
    width: 100%;
    position: relative;
    height: 40px;
    line-height: 40px;
    color: #201e1e;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: 1px; }
    .attributes .dropdown .attribute.open {
      position: absolute; }
      .attributes .dropdown .attribute.open div.default {
        height: 0; }
      .attributes .dropdown .attribute.open div.selected {
        width: calc(100% - 12px);
        font-weight: 600; }
      .attributes .dropdown .attribute.open div.unavailable {
        color: rgba(32, 30, 30, 0.2); }
    .attributes .dropdown .attribute i {
      font-size: 12px;
      position: absolute;
      top: 0;
      right: 12px; }
    .attributes .dropdown .attribute div {
      padding-left: 12px;
      background: #f3f3f3; }
      .attributes .dropdown .attribute div.selected {
        background: #f3f3f3;
        font-weight: 400; }

.icon.is-button {
  cursor: pointer; }

.icon-instagram:before {
  content: "";
  background: url("/../static/images/icon/instagram.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 18px;
  top: 2px; }

.icon-instagram:hover::before, .icon-instagram:focus::before {
  background: url("/../static/images/icon/instagram_red.svg"); }

/* CART */
.icon-bag-grey:before {
  content: "";
  background: url("/../static/images/icon/icon_cart_grey.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  height: 50px;
  width: 50px; }

.icon-bag {
  background-image: url("/../static/images/icon/icon_cart.svg"); }

.icon-bag-white {
  background-image: url("/../static/images/icon/icon_cart_white.svg"); }

.icon-bag-empty {
  background-image: url("/../static/images/icon/icon_cart_line.svg"); }

.icon-bag-empty-white {
  background-image: url("/../static/images/icon/icon_cart_line_white.svg");
  background-position: center; }

.icon-bag,
.icon-bag-white,
.icon-bag-empty,
.icon-bag-empty-white {
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 14px;
  width: 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 1px; }
  .icon-bag:hover, .icon-bag:focus,
  .icon-bag-white:hover,
  .icon-bag-white:focus,
  .icon-bag-empty:hover,
  .icon-bag-empty:focus,
  .icon-bag-empty-white:hover,
  .icon-bag-empty-white:focus {
    cursor: pointer; }

/* CART */
.icon-google:before {
  content: "";
  background: url("/../static/images/icon/google.svg");
  background-repeat: no-repeat;
  background-position: center;
  top: 10px;
  right: 10px;
  position: absolute;
  height: 35px;
  width: 15px; }

.icon-eye:before {
  content: "";
  background: url("/../static/images/icon/password_hidden.svg");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
  position: absolute;
  height: 20px;
  width: 20px; }

.icon-eye:hover:before {
  background: url("/../static/images/icon/password_hidden_hover.svg"); }

.icon-eye-open:before {
  content: "";
  background: url("/../static/images/icon/password_show.svg");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;
  position: absolute;
  height: 20px;
  width: 20px; }

.icon-eye-open:hover:before {
  background: url("/../static/images/icon/password_show_hover.svg"); }

/* icon menu */
.icon-menu:before,
.icon-menu-white:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px; }

.icon-menu:before {
  background: url("/../static/images/icon/menu_black.svg"); }

.icon-menu-white:before {
  background: url("/../static/images/icon/menu_white.svg"); }

/* icon menu */
.icon-session {
  background: url("/../static/images/icon/account.svg");
  height: 15px;
  width: 12px; }

.icon-session-white {
  background: url("/../static/images/icon/account_white.svg");
  height: 15px;
  width: 12px; }

/* PLUS AND MINUS SPRITE */
.plusMinus {
  background-image: url("/../static/images/icon/plus_minus_sprite_60fps.svg"); }

/* PLUS AND MINUS SPRITE end*/
@media only screen and (max-width: 991px) {
  .icon-bag-white-mobile:before {
    content: "";
    background: url("/../static/images/icon/icon_cart_line_white.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 12px;
    height: 15px;
    width: 15px; } }

@font-face {
  font-family: "fpf-icons";
  src: url("/../../static/fonts/fpf-icons.eot?nyl0zm");
  src: url("/../../static/fonts/fpf-icons.eot?nyl0zm#iefix") format("embedded-opentype"), url("/../../static/fonts/fpf-icons.ttf?nyl0zm") format("truetype"), url("/../../static/fonts/fpf-icons.woff?nyl0zm") format("woff"), url("/../../static/fonts/fpf-icons.svg?nyl0zm#fpf-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="fpf-icons-"],
[class*=" fpf-icons-"] {
  font-family: "fpf-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.fpf-icons-search:before {
  content: "\e900"; }

.fpf-icons-add:before {
  content: "\e901"; }

.fpf-icons-alert:before {
  content: "\e902"; }

.fpf-icons-checkmark:before {
  content: "\e903"; }

.fpf-icons-chevron-down:before {
  content: "\e904"; }

.fpf-icons-close-circle:before {
  content: "\e905"; }

.fpf-icons-color-wand:before {
  content: "\e906"; }

.fpf-icons-eye-off:before {
  content: "\e907"; }

.fpf-icons-eye:before {
  content: "\e908"; }

.fpf-icons-lock:before {
  content: "\e909"; }

.fpf-icons-logo-facebook:before {
  content: "\e90a"; }

.fpf-icons-logo-twitter:before {
  content: "\e90b"; }

.fpf-icons-logo-whatsapp:before {
  content: "\e90c"; }

.fpf-icons-mail:before {
  content: "\e90d"; }

.fpf-icons-remove:before {
  content: "\e90e"; }

.fpf-icons-sad:before {
  content: "\e90f"; }

.fpf-icons-sync:before {
  content: "\e910"; }

.fpf-icons-close:before {
  content: "\e911"; }

.fpf-icons-chevron-back:before {
  content: "\e912"; }

.fpf-icons-chevron-forward:before {
  content: "\e913"; }

.fpf-icons-chevron-up:before {
  content: "\e914"; }

.fpf-icons-arrow-back:before {
  content: "\e915"; }

.fpf-icons-arrow-forward:before {
  content: "\e916"; }

.input-field {
  position: relative;
  font-family: "Barlow Condensed", sans-serif; }
  .input-field.has-validation input:not([type="submit"]),
  .input-field.has-validation textarea:not([type="submit"]) {
    padding-right: 40px;
    width: calc(100% - 55px); }
  .input-field input,
  .input-field textarea {
    width: auto;
    padding-left: 12px;
    -webkit-appearance: none;
    border-radius: 0; }
    .input-field input.button,
    .input-field textarea.button {
      position: absolute;
      bottom: 74px;
      width: calc(100% - 150px);
      font-family: "octin_college_bold", sans-serif;
      font-size: 12px;
      letter-spacing: 2px; }
    .input-field input:not([type="submit"]),
    .input-field textarea:not([type="submit"]) {
      width: calc(100% - 15px);
      height: 45px;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 16px;
      letter-spacing: 1px;
      line-height: 19px;
      caret-color: #ea393b;
      text-overflow: ellipsis; }
      .input-field input:not([type="submit"])::selection,
      .input-field textarea:not([type="submit"])::selection {
        background: #ea393b;
        color: #fff; }
    .input-field input:focus,
    .input-field textarea:focus {
      outline: none; }
  .input-field textarea {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 19px;
    caret-color: #ea393b;
    resize: none; }
    .input-field textarea::selection {
      background: #ea393b;
      color: #fff; }
    .input-field textarea:focus {
      outline: none; }
  .input-field .dropdown-field {
    white-space: nowrap; }
  .input-field .dropdown {
    position: relative;
    height: 50px;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .input-field .dropdown {
        z-index: 1; } }
    .input-field .dropdown label {
      bottom: 55px;
      left: 0;
      color: rgba(32, 30, 30, 0.5);
      font-size: 12px;
      line-height: 14px; }
    .input-field .dropdown .attribute {
      width: calc(100% - 2px);
      position: relative;
      height: 48px;
      line-height: 50px;
      color: #201e1e;
      font-family: "Barlow Condensed", sans-serif;
      text-transform: uppercase;
      cursor: pointer;
      font-size: 16px;
      letter-spacing: 1px;
      font-weight: 400;
      height: auto;
      z-index: 0; }
      @media only screen and (max-width: 767px) {
        .input-field .dropdown .attribute {
          text-align: left; } }
      .input-field .dropdown .attribute.open {
        position: absolute;
        max-height: 300px;
        overflow-y: scroll;
        overflow-x: hidden;
        z-index: 10; }
        .input-field .dropdown .attribute.open div {
          width: 100%;
          height: 100%; }
          .input-field .dropdown .attribute.open div.selected {
            width: 100%;
            font-weight: 600;
            border: 0; }
      .input-field .dropdown .attribute i {
        font-size: 12px;
        position: absolute;
        top: 0;
        right: 12px; }
      .input-field .dropdown .attribute div {
        padding-left: 12px;
        background: #fff; }
        .input-field .dropdown .attribute div.selected {
          background: #fff;
          font-weight: 400;
          border: 1px solid rgba(32, 30, 30, 0.1);
          color: #201e1e; }
        .input-field .dropdown .attribute div.default {
          color: rgba(32, 30, 30, 0.2); }
  .input-field select {
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding-left: 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 19px;
    text-transform: uppercase; }
    .input-field select:focus {
      outline: none; }
  .input-field label {
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    pointer-events: none; }
    .input-field label.static {
      position: static;
      margin-bottom: 5px; }
  .input-field i {
    position: absolute;
    bottom: 15px;
    right: 18px;
    font-size: 20px; }
  .input-field.error i {
    color: #ea393b; }
  .input-field.error input:not([type="submit"]),
  .input-field.error textarea {
    border: 1px solid #ea393b; }
  .input-field.error.input-dropdown .css-bg1rzq-control {
    border: 1px solid #ea393b !important;
    color: #ea393b !important; }
  .input-field.success i {
    color: #37f899; }

.form-info.error {
  color: #ea393b;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  position: absolute;
  bottom: 140px;
  width: calc(100% - 150px); }
  @media only screen and (max-width: 767px) {
    .form-info.error {
      bottom: 120px;
      left: 0;
      width: 100%; } }

.input-password i {
  color: #cdcdcd; }

.input-password.error i {
  color: #cdcdcd; }

.input-password.success i {
  color: #cdcdcd; }

.input-password:hover, .input-password:focus {
  cursor: pointer; }
  .input-password:hover i, .input-password:focus i {
    color: #37f899; }

.input-readonly i {
  top: 12px;
  font-size: 25px;
  color: #cdcdcd; }

.input-readonly > input {
  color: rgba(32, 30, 30, 0.5); }
  .input-readonly > input:hover, .input-readonly > input:focus {
    transition: none;
    border: 0; }

.input-readonly .dropdown > .attribute > .dropdown-item.selected {
  color: rgba(32, 30, 30, 0.5); }

.input-checkbox {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative; }
  .input-checkbox input {
    display: none; }
  .input-checkbox .checkbox-square {
    background-color: #fff;
    border: 1px solid rgba(32, 30, 30, 0.5);
    transform: translate3d(0, 0, 0); }
    .input-checkbox .checkbox-square.checked {
      background-color: #201e1e; }
      .input-checkbox .checkbox-square.checked i {
        display: flex;
        padding: 0;
        height: 100%;
        justify-content: center;
        font-size: 20px; }
  .input-checkbox .checkbox-label {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    line-height: 24px; }
    .input-checkbox .checkbox-label a {
      font-weight: 700;
      color: #201e1e;
      font-size: 14px;
      text-transform: uppercase; }
      .input-checkbox .checkbox-label a:hover, .input-checkbox .checkbox-label a:focus {
        text-decoration: none; }
  .input-checkbox .checkbox-square {
    transition: background-color 0.4s;
    border: 1px solid rgba(32, 30, 30, 0.2);
    background-color: #fff; }
  .input-checkbox i {
    display: none;
    color: #37f899;
    padding: 0px 6px; }
  .input-checkbox input,
  .input-checkbox .checkbox-square {
    position: absolute;
    top: 0;
    height: 21px;
    width: 21px;
    cursor: pointer; }
  .input-checkbox.error .checkbox-square {
    border: 1px solid #ea393b; }
  .input-checkbox.success .checkbox-square {
    border: 1px solid #37f899; }

.checkbox-label {
  text-transform: none;
  padding-left: 38px;
  padding-top: 0px; }

.input-dropdown div {
  line-height: 20px; }

.input-dropdown select {
  border: 1px solid rgba(32, 30, 30, 0.1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-overflow: "";
  text-indent: 0.01px;
  text-overflow: ""; }

.input-dropdown select::-ms-expand {
  display: none; }

.input-dropdown.error .dropdown .attribute .selected,
.input-dropdown.error select {
  border: 1px solid #ea393b; }

/* INPUT RADIO */
.input-fields.radio {
  line-height: 22px; }

.input-radio {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .input-radio i {
      line-height: 22px; } }
  .input-radio input {
    display: none; }
  .input-radio label {
    margin-left: 14px;
    font-size: 16px;
    line-height: 20px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400; }
  .input-radio .radio-circle {
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-flow: row;
    justify-content: center;
    height: 22px;
    width: 22px;
    min-height: 22px;
    min-width: 22px;
    border: 1px solid #201e1e;
    transform: translate3d(0, 0, 0); }
    .input-radio .radio-circle .radio-circle-inner {
      border-radius: 50%;
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: transparent;
      left: 5px;
      top: 5px; }
    .input-radio .radio-circle.checked .radio-circle-inner {
      border-radius: 50%;
      background-color: #ea393b; }
  .input-radio.error .radio-circle {
    border: 1px solid #ea393b; }

.input-date input[type="date"]::-webkit-clear-button {
  display: none; }

.input-date input[type="date"]::-webkit-inner-spin-button {
  display: none; }

.input-date input[type="date"]::-webkit-calendar-picker-indicator {
  display: none; }

/* INPUT RADIO */
input {
  box-shadow: inset 0px 0px 0px 0px; }

@media only screen and (max-width: 767px) {
  select {
    /*Removes default chrome and safari style*/
    -webkit-appearance: none;
    /* Removes Default Firefox style*/
    -moz-appearance: none;
    /* Removes default arrow from firefox*/
    text-indent: 0.01px;
    /*Removes default arrow from firefox*/
    text-overflow: ""; }
  .subscribe input {
    transform: translate3d(0, 0, 0);
    -webkit-appearance: none;
    border-radius: 0; }
  .bpiInput .input-field label {
    bottom: 7px; } }

.overlay {
  height: 100vh;
  width: 100vw;
  overflow: hidden; }
  .overlay .scroll-container > div {
    overflow-x: hidden !important; }

.grey-overlay {
  position: fixed;
  background: rgba(238, 238, 238, 0.8);
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1; }
  .grey-overlay.dark {
    background: rgba(0, 0, 0, 0.3); }
  .grey-overlay.light {
    background: transparent; }
  .grey-overlay.visible {
    z-index: 4; }
    .grey-overlay.visible.z-0 {
      z-index: 0; }
    .grey-overlay.visible.z-6 {
      /* Modal over Modal */
      z-index: 6; }
    .grey-overlay.visible.z-9 {
      z-index: 9; }
  .grey-overlay:hover {
    cursor: pointer; }

.modal-language-switch {
  display: none; }

.main-container .menu-open {
  display: inline; }

.main-container.overlay .menu-open {
  display: none; }

.main-container.overlay .widgets .bottom .search {
  display: none; }

.modal .head {
  position: fixed;
  z-index: 1;
  background: #fff;
  width: calc(60vw - 48px);
  font-size: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  padding: 24px; }
  @media only screen and (max-width: 1199px) {
    .modal .head {
      width: calc(70vw - 48px); } }
  @media only screen and (max-width: 991px) {
    .modal .head {
      width: calc(80vw - 48px); } }
  @media only screen and (max-width: 767px) {
    .modal .head {
      position: absolute;
      width: calc(100vw - 48px); }
      .modal .head .head__text {
        font-size: 16px; } }

.modal.open {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .modal.open #content-modal {
    background: #fff;
    position: absolute;
    z-index: 5;
    display: flex;
    flex-flow: row;
    height: auto;
    width: 60vw; }
    @media only screen and (max-width: 1199px) {
      .modal.open #content-modal {
        width: 70vw; } }
    @media only screen and (max-width: 991px) {
      .modal.open #content-modal {
        width: 80vw; } }
    .modal.open #content-modal .close-modal i:hover, .modal.open #content-modal .close-modal i:focus {
      cursor: pointer; }

/* mobile version */
@media only screen and (max-width: 991px) {
  /* ONLY MOBILE */
  .modal-language-switch {
    box-sizing: border-box;
    display: inline;
    background: #fff;
    position: fixed;
    padding: 36px 30px;
    width: 100vw;
    left: 0;
    z-index: 7; }
    .modal-language-switch .title {
      text-align: center;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 16px; }
    .modal-language-switch li:not(.title) {
      font-family: "Barlow Condensed", sans-serif;
      text-transform: uppercase;
      font-size: 16px;
      letter-spacing: 1px;
      line-height: 42px; }
      .modal-language-switch li:not(.title).current {
        font-weight: 600; }
      .modal-language-switch li:not(.title):hover, .modal-language-switch li:not(.title):focus {
        cursor: pointer; }
  .modal.open #content-modal {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0; } }

.language-picker {
  position: relative;
  cursor: pointer;
  white-space: nowrap; }

.language-picker-toggle {
  display: flex;
  align-items: baseline; }
  .language-picker-toggle i {
    margin-left: 5px; }

.language-picker ul.language-picker-list {
  display: none;
  position: absolute;
  top: 35px;
  left: -65px;
  text-align: left;
  color: #cdcdcd;
  background-color: #fff;
  z-index: 2; }
  .language-picker ul.language-picker-list:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 4px;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff; }
  .language-picker ul.language-picker-list li {
    height: 100%;
    width: auto;
    padding: 10px 32px 10px 10px;
    cursor: pointer; }
  .language-picker ul.language-picker-list.active {
    display: block; }
  .language-picker ul.language-picker-list .current {
    color: #000;
    font-weight: 600; }

@media only screen and (max-width: 991px) {
  .language-picker {
    display: none; } }

.p {
  font-size: 16px; }

.h1 {
  font-size: 36px; }

.h2 {
  font-size: 28px; }

.h3 {
  font-size: 20px; }

.h4 {
  font-size: 16px; }

.h5 {
  font-size: 14px; }

.h6 {
  font-size: 12px; }

.t-small {
  font-size: 12px; }

.t-base {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.3px; }

.t-label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 1px; }

.t-regular {
  font-weight: 400; }

.t-bold {
  font-weight: 700; }

.t-bold-extra {
  font-family: "octin_college_bold", sans-serif; }

.t-light {
  font-weight: 300; }

.t-primary {
  font-family: "Roboto", sans-serif; }

.t-secondary {
  font-family: "Barlow Condensed", sans-serif; }

.t-uppercase {
  text-transform: uppercase; }

.t-underline {
  text-transform: uppercase; }

.t-red {
  color: #ea393b; }

.t-green {
  color: #37f899; }

.t-grey {
  color: rgba(32, 30, 30, 0.5); }

.error-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  color: #ea393b;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 19px; }

.sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: baseline;
  top: 0;
  width: 324px; }
  @media only screen and (max-width: 1199px) {
    .sidebar {
      width: 274px; } }
  @media only screen and (max-width: 767px) {
    .sidebar {
      width: 100%; } }
  .sidebar.right:before {
    right: -100px;
    padding: 0 100px 0 50px; }
    @media only screen and (max-width: 1199px) {
      .sidebar.right:before {
        right: -50px;
        padding: 0 24px 0 50px; } }
    @media only screen and (max-width: 767px) {
      .sidebar.right:before {
        top: 110px;
        width: calc(100% + 12px);
        height: calc(100% - 100px);
        padding: 0 12px; } }
  .sidebar.left:before {
    left: -100px;
    width: 400px; }
    @media only screen and (max-width: 1199px) {
      .sidebar.left:before {
        left: -50px;
        padding: 0;
        width: 300px; } }
    @media only screen and (max-width: 767px) {
      .sidebar.left:before {
        top: 110px;
        left: -12px;
        width: calc(100% + 12px);
        height: calc(100% - 100px);
        padding: 0 12px; } }
  @media only screen and (max-width: 991px) {
    .sidebar.left.fixed {
      left: 12px; } }
  .sidebar:before {
    content: "";
    background: #fff;
    position: absolute;
    top: -170px;
    height: calc(100% + 270px);
    /* 170 padding-top + 100 padding footer*/
    width: 400px;
    z-index: -1; }
  .sidebar .content {
    width: 250px; }
    @media only screen and (max-width: 1199px) {
      .sidebar .content {
        width: 200px; } }
    @media only screen and (max-width: 991px) {
      .sidebar .content {
        width: 224px; } }
    @media only screen and (max-width: 767px) {
      .sidebar .content {
        width: 100%; } }
    .sidebar .content:not(.fixed) {
      height: 100%;
      display: flex;
      flex-flow: column;
      justify-content: flex-end;
      left: 0;
      top: 0; }
    .sidebar .content.fixed {
      position: fixed; }
  .sidebar .sidebar-title {
    font-family: "octin_college_bold", sans-serif; }
  .sidebar .sidebar-subtitle {
    font-family: "octin_college_regular", sans-serif; }
  .sidebar .sidebar-title,
  .sidebar .sidebar-subtitle {
    font-size: 36px;
    line-height: 48px;
    text-shadow: 14px 10px 13px rgba(0, 0, 0, 0.07); }
  .sidebar .tip-text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px; }
  .sidebar .menu {
    margin: 66px 0 80px;
    font-family: "octin_college_regular", sans-serif;
    font-size: 16px;
    line-height: 46px; }
    @media only screen and (max-width: 767px) {
      .sidebar .menu {
        position: relative;
        margin: 36px 0 50px; } }
    @media only screen and (max-width: 767px) {
      .sidebar .menu > li {
        height: 60px;
        line-height: 60px;
        position: relative;
        display: flex;
        justify-content: space-between; }
        .sidebar .menu > li:before {
          content: "";
          position: absolute;
          top: 0;
          right: -12px;
          width: 90vw;
          height: 1px;
          background: rgba(32, 30, 30, 0.05); }
        .sidebar .menu > li i {
          font-size: 26px; }
          .sidebar .menu > li i:before {
            line-height: 60px; }
        .sidebar .menu > li h3 {
          line-height: 36px;
          padding: 12px;
          font-family: "Barlow Condensed", sans-serif;
          font-size: 24px;
          font-weight: 600;
          text-transform: uppercase; } }
    .sidebar .menu > li.active h3 {
      font-weight: 600; }
      .sidebar .menu > li.active h3:before {
        content: "[";
        color: #37f899;
        margin-right: 15px; }
        @media only screen and (max-width: 767px) {
          .sidebar .menu > li.active h3:before {
            content: none; } }
      .sidebar .menu > li.active h3:after {
        content: "]";
        color: #37f899;
        margin-left: 15px; }
        @media only screen and (max-width: 767px) {
          .sidebar .menu > li.active h3:after {
            content: none; } }
    .sidebar .menu a {
      display: flex;
      flex-flow: row;
      justify-content: space-between;
      width: 100%;
      color: inherit;
      text-decoration: none; }
    .sidebar .menu li:not(.active) h3 {
      position: relative;
      display: flex;
      flex-flow: column;
      justify-content: center; }
      .sidebar .menu li:not(.active) h3:before {
        content: "";
        position: absolute;
        height: 2px;
        left: -5px;
        background: #37f899;
        width: 0;
        transition: width 0.4s ease-in; }
      .sidebar .menu li:not(.active) h3:hover:before, .sidebar .menu li:not(.active) h3:focus:before {
        width: calc(100% + 10px);
        transition: width 0.4s ease-in; }
      .sidebar .menu li:not(.active) h3 span {
        position: relative;
        z-index: 1; }
  .sidebar .button {
    width: 100%;
    display: flex; }
    @media only screen and (max-width: 767px) {
      .sidebar .button {
        width: calc(100% + 24px);
        margin-left: -12px;
        height: 50px; } }
    .sidebar .button > span,
    .sidebar .button a {
      width: 100%;
      justify-content: center; }
      .sidebar .button > span span,
      .sidebar .button a span {
        margin-left: 0; }
        @media only screen and (max-width: 767px) {
          .sidebar .button > span span,
          .sidebar .button a span {
            line-height: 50px; } }

.page-content {
  width: calc(100% - 324px); }
  @media only screen and (max-width: 1199px) {
    .page-content {
      width: calc(100% - 370px); } }
  @media only screen and (max-width: 767px) {
    .page-content {
      width: 100%; } }

@media only screen and (max-width: 991px) {
  .checkout .page-content {
    width: 100%; } }

@media only screen and (max-width: 767px) {
  .sidebar .sidebar-subtitle,
  .sidebar .sidebar-title,
  .sidebar .tip-text {
    text-align: center; }
  .faqs-container .sidebar,
  .profile-container .sidebar {
    display: none; }
    .faqs-container .sidebar.show-mobile,
    .profile-container .sidebar.show-mobile {
      display: flex; }
    .faqs-container .sidebar:before,
    .profile-container .sidebar:before {
      content: none; }
    .faqs-container .sidebar .mobile-bg,
    .profile-container .sidebar .mobile-bg {
      position: relative; }
      .faqs-container .sidebar .mobile-bg.mobile-bg:before,
      .profile-container .sidebar .mobile-bg.mobile-bg:before {
        content: "";
        position: absolute;
        height: 100%;
        width: calc(100% + 24px);
        left: -12px;
        top: 0;
        background: #fff;
        z-index: -1; } }

.static-container {
  margin-top: 170px; }
  .static-container strong {
    font-weight: 400; }
  .static-container h1.title,
  .static-container h2,
  .static-container .content {
    text-align: left; }
  .static-container .title,
  .static-container .content {
    color: #201e1e;
    font-family: "octin_college_bold", sans-serif;
    font-size: 36px;
    line-height: 48px; }
  .static-container .title {
    text-shadow: 14px 10px 13px rgba(0, 0, 0, 0.07); }
    .static-container .title.h2 {
      margin-top: 72px; }
  .static-container .title-2 {
    margin-top: 74px; }
  .static-container .content {
    margin-top: 72px;
    padding: 24px 24px 0;
    background: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px; }
    .static-container .content p {
      color: rgba(32, 30, 30, 0.8);
      font-weight: 300;
      padding-bottom: 36px; }
    .static-container .content a {
      color: inherit;
      font-weight: 600; }

@media only screen and (max-width: 767px) {
  .static-container {
    padding-top: 100px;
    margin: 0;
    background: #fff; }
    .static-container h1.title,
    .static-container h2 {
      text-align: center; }
    .static-container h2.title {
      margin-top: 24px; }
    .static-container .content {
      margin-top: 36px;
      padding: 0; } }

.side-bar.notify {
  position: fixed; }
  .side-bar.notify .notify-container .body {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    overflow: scroll;
    height: 100%;
    margin-bottom: 50px;
    margin-top: 60px; }
    .side-bar.notify .notify-container .body .go-back {
      margin-bottom: 26px; }
    .side-bar.notify .notify-container .body h2 {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 24px; }
    .side-bar.notify .notify-container .body p {
      line-height: 24px;
      margin: 12px 0 24px; }
    .side-bar.notify .notify-container .body .error p {
      margin-bottom: 5px; }
    .side-bar.notify .notify-container .body button {
      margin-top: 0; }
  .side-bar.notify.open {
    right: 0;
    transition: right 0.6s ease-out; }
  .side-bar.notify input[type="checkbox"] {
    display: none; }
  .side-bar.notify .form-checkbox {
    margin-top: 24px;
    display: flex;
    flex-flow: row;
    justify-content: space-between; }
    .side-bar.notify .form-checkbox .checkbox {
      width: 21px;
      height: 21px;
      border: 1px solid rgba(32, 30, 30, 0.1);
      text-align: center;
      line-height: 20px; }
      .side-bar.notify .form-checkbox .checkbox.selected, .side-bar.notify .form-checkbox .checkbox.selected.error {
        background: #201e1e;
        border: 1px solid rgba(32, 30, 30, 0.1); }
        .side-bar.notify .form-checkbox .checkbox.selected i, .side-bar.notify .form-checkbox .checkbox.selected.error i {
          color: #37f899; }
      .side-bar.notify .form-checkbox .checkbox.error {
        border: 1px solid #ea393b; }
      .side-bar.notify .form-checkbox .checkbox:not(.selected) i {
        display: none; }
    .side-bar.notify .form-checkbox .label {
      width: calc(100% - 35px);
      font-size: 12px;
      line-height: 20px;
      text-align: left; }
      .side-bar.notify .form-checkbox .label a {
        text-transform: uppercase;
        color: inherit;
        font-weight: 600; }
  .side-bar.notify form {
    z-index: 0; }
  .side-bar.notify form > .error {
    margin: 5px 0 12px;
    color: #ea393b;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px; }
    .side-bar.notify form > .error p {
      margin-bottom: 5px; }
    .side-bar.notify form > .error:first-of-type {
      margin-top: 22px; }

@media only screen and (max-width: 1199px) {
  .side-bar.open.notify {
    right: -50px; } }

@media only screen and (max-width: 991px) {
  .bg-temporary {
    height: 100vh;
    width: 100vw;
    background: white;
    left: 0;
    top: 0;
    display: none; }
    .bg-temporary.open {
      position: fixed;
      display: flex;
      z-index: 1; }
  .side-bar.notify:not(.open) {
    right: -100vw; }
  .side-bar.notify.open {
    right: 0;
    top: 40px;
    z-index: 6; }
    .side-bar.notify.open:before {
      content: "";
      background: white;
      height: 100vh;
      width: 100vw;
      position: fixed;
      top: -100px;
      left: 0; }
    .side-bar.notify.open .notify-container {
      height: calc(100vh + 200px); }
      .side-bar.notify.open .notify-container .body {
        transform: translate3d(0, 0, 0);
        margin-bottom: 60px;
        margin-right: 0;
        margin-top: 0;
        padding-right: 0;
        position: relative;
        width: calc(100vw - 24px);
        left: 0; }
        .side-bar.notify.open .notify-container .body .button {
          position: relative;
          margin-bottom: 300px; }
        .side-bar.notify.open .notify-container .body .go-back {
          left: 35px;
          display: flex;
          position: fixed;
          top: -15px;
          line-height: 50px;
          height: 50px;
          width: 100vw;
          background: #fff;
          color: #201e1e;
          font-family: "octin_college_bold", sans-serif;
          font-size: 16px;
          z-index: 3; }
          .side-bar.notify.open .notify-container .body .go-back i {
            padding-left: 12px;
            border-left: 1px solid #cdcdcd;
            line-height: 26px;
            margin: 12px 6px 12px 0; }
    .side-bar.notify.open .input-field {
      margin: 0; }
    .side-bar.notify.open form > div.error:not(.input-field) {
      margin: 0;
      padding: 12px 0; } }

.form .input-field {
  margin-bottom: 40px; }

.form .grid .cell:not(.right) .input-field {
  margin-right: 6px; }

.form .grid .right .input-field {
  margin-left: 6px; }

.form .button {
  margin-top: 30px; }

.form .error-message {
  font-family: "Barlow Condensed", sans-serif; }

.form .text {
  color: #201e1e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px; }
  .form .text.t-red {
    color: #ea393b; }

.form .input-fields.radio {
  display: flex; }
  .form .input-fields.radio .input-radio {
    display: flex;
    margin-right: 40px; }
  .form .input-fields.radio:hover, .form .input-fields.radio:focus {
    cursor: pointer; }

.checkout .sideDetails {
  height: calc(100% + 270px);
  top: -170px;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
  right: -100px; }
  @media only screen and (max-width: 1199px) {
    .checkout .sideDetails {
      right: -50px; } }
  @media only screen and (max-width: 991px) {
    .checkout .sideDetails {
      position: fixed;
      right: 0;
      display: flex;
      top: auto;
      height: 100vh;
      background: #fff;
      z-index: 1; }
      .checkout .sideDetails.open {
        z-index: 2; } }
  @media only screen and (max-width: 991px) {
    .checkout .sideDetails .sideContent {
      padding: 0 24px;
      padding-right: 24px;
      box-sizing: border-box; } }
  .checkout .sideDetails .sideContent > div > div {
    width: 100%; }
    @media only screen and (max-width: 1199px) {
      .checkout .sideDetails .sideContent > div > div {
        width: 300px; } }
    @media only screen and (max-width: 991px) {
      .checkout .sideDetails .sideContent > div > div {
        width: 100vw; } }
  @media only screen and (max-width: 767px) {
    .checkout .sideDetails .sideContent {
      padding: 0 12px;
      padding-right: 12px; } }
  .checkout .sideDetails .sideContent > div {
    height: 100vh;
    display: flex;
    justify-content: flex-end; }
    .checkout .sideDetails .sideContent > div .sidebar-close i {
      padding-left: 20px; }
      .checkout .sideDetails .sideContent > div .sidebar-close i:hover, .checkout .sideDetails .sideContent > div .sidebar-close i:focus {
        cursor: pointer; }
  .checkout .sideDetails.fixed .sideContent {
    right: 0; }
    .checkout .sideDetails.fixed .sideContent > div,
    .checkout .sideDetails.fixed .sideContent > div > div {
      height: 100%; }
  .checkout .sideDetails.fixed .sideContent,
  .checkout .sideDetails .sideContent {
    overflow-y: unset; }

.checkout .head {
  display: flex;
  justify-content: space-between;
  line-height: 50px;
  color: #201e1e; }
  .checkout .head .sidebar-extra-title {
    font-family: "octin_college_regular", sans-serif;
    line-height: 19px;
    margin-right: 12px; }
  .checkout .head .sidebar-title {
    font-family: "octin_college_regular", sans-serif;
    line-height: 19px;
    position: relative;
    font-size: 16px; }
    .checkout .head .sidebar-title:not(.no-green):after {
      content: "";
      background: #37f899;
      width: 100%;
      height: 4px;
      position: absolute;
      bottom: -8px;
      left: 0; }
    .checkout .head .sidebar-title.bold {
      font-family: "octin_college_bold", sans-serif;
      font-size: 20px; }

.checkout .cart {
  height: calc(100% - 50px);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  overflow: hidden; }
  .checkout .cart .products {
    margin: 24px 0;
    overflow: auto;
    overflow-x: hidden;
    height: 100%; }
    @media only screen and (max-width: 991px) {
      .checkout .cart .products {
        margin: 0 0 24px; } }
    .checkout .cart .products ul.is-fetching li {
      opacity: 0.5;
      pointer-events: none; }
    .checkout .cart .products li {
      transition: opacity 0.2s;
      margin: 24px 0;
      position: relative; }
      .checkout .cart .products li.no-stock .thumbnail {
        opacity: 0.5; }
    .checkout .cart .products .thumbnail {
      width: 34.4%; }
      @media only screen and (max-width: 991px) {
        .checkout .cart .products .thumbnail {
          width: auto; } }
      .checkout .cart .products .thumbnail img {
        width: 100%; }
        @media only screen and (max-width: 991px) {
          .checkout .cart .products .thumbnail img {
            width: 86px; } }
    .checkout .cart .products .details {
      position: relative;
      width: 65.6%;
      padding: 0 12px;
      display: flex;
      flex-flow: column;
      justify-content: space-between; }
      @media only screen and (max-width: 991px) {
        .checkout .cart .products .details {
          text-align: left;
          width: 100%; } }
      .checkout .cart .products .details .name {
        color: #201e1e;
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        line-height: 18px; }
      .checkout .cart .products .details .attributes {
        color: rgba(32, 30, 30, 0.5);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 14px;
        bottom: auto;
        width: auto;
        height: auto;
        background: transparent;
        position: relative;
        padding: 0;
        text-transform: uppercase; }
      .checkout .cart .products .details .customize-price {
        color: #201e1e;
        font-family: "octin_college_bold", sans-serif;
        font-size: 12px;
        line-height: 20px; }
      .checkout .cart .products .details .state {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 12px;
        color: rgba(32, 30, 30, 0.8);
        margin: 15px 0; }
      .checkout .cart .products .details .bottom {
        width: 100%;
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-top: 12px; }
        .checkout .cart .products .details .bottom .price {
          font-family: "octin_college_bold", sans-serif;
          font-size: 16px;
          line-height: 19px;
          color: #201e1e;
          margin-bottom: 0;
          justify-content: left;
          white-space: nowrap; }
          .checkout .cart .products .details .bottom .price span {
            white-space: nowrap; }
          .checkout .cart .products .details .bottom .price .promo {
            display: flex;
            flex-flow: column;
            color: #ea393b; }
            .checkout .cart .products .details .bottom .price .promo span:nth-child(1) {
              color: rgba(32, 30, 30, 0.5);
              font-size: 12px;
              line-height: 14px;
              text-decoration: line-through; }
            .checkout .cart .products .details .bottom .price .promo span:nth-child(2) {
              color: #ea393b; }
        .checkout .cart .products .details .bottom .quantity-widget {
          display: flex;
          justify-content: center;
          text-align: center;
          align-self: flex-end; }
          @media only screen and (max-width: 991px) {
            .checkout .cart .products .details .bottom .quantity-widget {
              text-align: right; } }
          .checkout .cart .products .details .bottom .quantity-widget.no-update i {
            color: rgba(32, 30, 30, 0.1); }
          .checkout .cart .products .details .bottom .quantity-widget i {
            font-size: 14px;
            line-height: 18px;
            color: #ea393b; }
            .checkout .cart .products .details .bottom .quantity-widget i:hover, .checkout .cart .products .details .bottom .quantity-widget i:focus {
              cursor: pointer; }
            .checkout .cart .products .details .bottom .quantity-widget i.inactive {
              color: rgba(32, 30, 30, 0.2); }
          .checkout .cart .products .details .bottom .quantity-widget .qty {
            font-family: "octin_college_regular", sans-serif;
            font-size: 16px;
            letter-spacing: 1px;
            line-height: 19px;
            padding: 0 12px;
            color: #201e1e; }
            @media only screen and (max-width: 1199px) {
              .checkout .cart .products .details .bottom .quantity-widget .qty {
                padding: 0 6px; } }
  @media only screen and (max-width: 991px) {
    .checkout .cart .cart-bottom {
      background-color: white;
      position: relative;
      padding-bottom: 40px;
      z-index: 5; }
      .checkout .cart .cart-bottom:not(.empty):before {
        content: "";
        border-top: 1px solid rgba(32, 30, 30, 0.1);
        width: calc(100% + 150px);
        position: absolute;
        top: -14px;
        left: 0;
        height: 14px; } }
  .checkout .cart .cart-resume {
    position: relative;
    color: #201e1e; }
    .checkout .cart .cart-resume:not(.empty):before {
      content: "";
      border-top: 1px solid rgba(32, 30, 30, 0.1);
      width: calc(100% + 150px);
      position: absolute;
      top: -25px;
      left: -50px; }
      @media only screen and (max-width: 991px) {
        .checkout .cart .cart-resume:not(.empty):before {
          content: none; } }
    .checkout .cart .cart-resume .prices {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      font-size: 12px;
      line-height: 16px; }
      @media only screen and (max-width: 991px) {
        .checkout .cart .cart-resume .prices .costs {
          text-align: left; } }
      .checkout .cart .cart-resume .prices .costs li {
        text-transform: uppercase;
        margin-bottom: 9px;
        font-size: 14px; }
        .checkout .cart .cart-resume .prices .costs li .details {
          font-weight: 400;
          color: rgba(32, 30, 30, 0.8);
          font-size: 15px;
          line-height: 14px;
          margin-top: 3px; }
      .checkout .cart .cart-resume .prices .values li {
        text-align: right;
        margin-bottom: 9px;
        font-size: 14px; }
      .checkout .cart .cart-resume .prices .total {
        display: flex;
        justify-content: space-between;
        font-size: 22px;
        line-height: 32px;
        text-transform: uppercase;
        margin-bottom: 36px; }
        @media only screen and (max-width: 767px) {
          .checkout .cart .cart-resume .prices .total {
            margin-bottom: 0; } }
      .checkout .cart .cart-resume .prices .discount-info {
        height: 33px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 9px; }
        .checkout .cart .cart-resume .prices .discount-info li {
          margin-bottom: 0; }
      .checkout .cart .cart-resume .prices span {
        font-size: 12px;
        font-weight: 400; }

@media only screen and (max-width: 991px) {
  .checkout .bar-cart {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    background: #fff;
    color: #201e1e;
    position: absolute;
    line-height: 40px;
    top: -39px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    padding: 0 24px;
    letter-spacing: 1px;
    text-transform: uppercase; }
    .checkout .bar-cart:hover, .checkout .bar-cart:focus {
      cursor: pointer; }
    .checkout .bar-cart .total {
      justify-content: space-between;
      display: flex;
      width: 120px; }
      .checkout .bar-cart .total .label {
        font-weight: 400; } }

@media only screen and (max-width: 767px) {
  .checkout .bar-cart {
    padding: 0 12px; } }

header.checkout-header {
  z-index: 6; }
  @media only screen and (max-width: 991px) {
    header.checkout-header {
      z-index: 2; }
      header.checkout-header .toggle-menu,
      header.checkout-header .logo-text {
        display: none; } }
  header.checkout-header .widgets .link > span,
  header.checkout-header .widgets .link > a {
    opacity: 0; }

@media only screen and (max-width: 991px) {
  .main-container.iOS-device .checkout .sideDetails {
    /*background: yellow;*/ }
    .main-container.iOS-device .checkout .sideDetails.open {
      top: -5px; }
    .main-container.iOS-device .checkout .sideDetails .cart {
      /*background: $color-red;*/
      height: calc(100vh - 100px); }
    .main-container.iOS-device .checkout .sideDetails .scrollable {
      top: 50px;
      height: calc(100vh - 150px);
      padding-bottom: 150px; }
  .main-container:not(.safari-mobile) .checkout .sideDetails {
    /*background: $color-green;*/ }
    .main-container:not(.safari-mobile) .checkout .sideDetails .sideContent {
      justify-content: flex-start; }
    .main-container:not(.safari-mobile) .checkout .sideDetails.open {
      top: 0px; }
    .main-container:not(.safari-mobile) .checkout .sideDetails .cart {
      /*background: $color-red;*/
      height: calc(100vh - 80px); }
      .main-container:not(.safari-mobile) .checkout .sideDetails .cart .cart-resume {
        /*background: yellow;*/ }
      .main-container:not(.safari-mobile) .checkout .sideDetails .cart .scrollable {
        top: 50px;
        height: calc(100vh - 250px); }
  .main-container.android-mobile {
    user-select: none; }
    .main-container.android-mobile .checkout .sideDetails {
      /*background: yellow;*/ }
      .main-container.android-mobile .checkout .sideDetails .cart {
        /*background: $color-red;*/ }
        .main-container.android-mobile .checkout .sideDetails .cart .cart-resume {
          /*background: $color-green;*/ }
        .main-container.android-mobile .checkout .sideDetails .cart .scrollable {
          top: 50px;
          height: calc(100vh - 250px); } }

@media only screen and (max-width: 767px) {
  /* SPECIAL HEIGHT FOR SAFARI ON IOS AND ANDROID BROWSERS TO SHOW ALL COMPONENTS IN THE MENU MOBILE */
  .main-container.iOS-device .side-bar {
    /*background: $color-green;*/ }
  .main-container.iOS-device select {
    width: calc( 100% + 6px);
    /*Width of select dropdown to give space for arrow image*/ }
  .main-container.iOS-device .scrollable {
    padding: 24px 18px 24px 12px;
    height: calc(100vh - 180px); }
  .main-container.iOS-device .cart-container .body {
    height: 100%; }
  .main-container.iOS-device .cart-container .scrollable {
    top: 0;
    height: calc(100% - 80px); }
  .main-container.iOS-device .cart .body {
    height: 100%; }
  .main-container.iOS-device .cart .scrollable {
    height: calc(100% - 150px); }
  .main-container.iOS-device:not(.safari-mobile) .side-bar {
    /*background: $color-red;*/ }
    .main-container.iOS-device:not(.safari-mobile) .side-bar .body {
      /*background: #FF80AB;*/
      height: 100vh; }
  .main-container.iOS-device:not(.safari-mobile) .scrollable {
    /*background: #880E4F;*/
    height: calc(100vh - 100px); }
  .main-container.iOS-device:not(.safari-mobile) .cart-container .body {
    height: calc(100vh - 200px); }
  .main-container.iOS-device:not(.safari-mobile) .cart-container .scrollable {
    height: 100%; }
  .main-container.safari-mobile #size-guide .content {
    height: calc(100vh - 150px); }
  .main-container.android-mobile .side-bar {
    /*background: $color-facebook;*/ }
    .main-container.android-mobile .side-bar .body {
      /*background: #FF80AB;*/ }
  .main-container.android-mobile .scrollable {
    height: calc(100vh - 280px); }
  .main-container.android-mobile .cart-container .body {
    height: 100%; }
  .main-container.android-mobile .cart-container .scrollable {
    top: 0; }
  .main-container.android-mobile #size-guide .content {
    height: calc(100vh - 135px); }
  .main-container.firefox #size-guide .content {
    height: calc(100vh - 75px); } }

@keyframes transitionTwo {
  from {
    background-position-x: -432px; }
  to {
    background-position-x: 0px; } }

@keyframes transitionOne {
  from {
    background-position-x: 0px; }
  to {
    background-position-x: -432px; } }

.shapeshifter {
  animation-duration: 400ms;
  animation-timing-function: steps(18);
  animation-iteration-count: 1;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  animation-name: transitionTwo; }
  .shapeshifter.play {
    animation-name: transitionOne;
    background-position-x: -432px; }
  .shapeshifter:hover, .shapeshifter:focus {
    cursor: pointer; }

.cookie-bar {
  position: fixed;
  height: 0;
  bottom: 50px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  width: 100%;
  z-index: 2; }
  .cookie-bar .content {
    display: flex;
    justify-content: center;
    background: rgba(32, 30, 30, 0.7);
    line-height: 40px;
    height: 40px;
    padding: 0 40px;
    color: #fff; }
    .cookie-bar .content .text {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 18px;
      font-weight: 300;
      line-height: 36px; }
    .cookie-bar .content .close {
      cursor: pointer; }
      .cookie-bar .content .close i {
        font-size: 18px;
        margin-left: 20px; }
    .cookie-bar .content a {
      color: inherit; }
      .cookie-bar .content a:focus, .cookie-bar .content a:hover {
        cursor: pointer; }

@media only screen and (max-width: 767px) {
  .cookie-bar {
    bottom: 60px;
    z-index: 5; } }

#size-guide {
  height: auto;
  width: 100%; }
  #size-guide .content {
    font-family: "Barlow Condensed", sans-serif;
    line-height: 24px;
    font-size: 16px;
    margin-top: 76px;
    max-height: 70vh;
    overflow-y: scroll; }
    @media only screen and (max-width: 767px) {
      #size-guide .content {
        padding: 0 24px;
        max-height: calc(100vh - 76px); } }
    #size-guide .content .title {
      letter-spacing: 1px;
      color: #ea393b;
      font-weight: 600;
      text-transform: uppercase;
      margin: 60px 0 30px;
      font-size: 18px; }
    #size-guide .content .button {
      align-self: center; }
      #size-guide .content .button a {
        font-family: "octin_college_regular", sans-serif;
        font-size: 12px;
        font-weight: bold;
        letter-spacing: 1px; }
  #size-guide .tabs {
    border-bottom: 1px solid rgba(32, 30, 30, 0.05); }
    @media only screen and (max-width: 767px) {
      #size-guide .tabs {
        margin: 0 -24px; } }
    #size-guide .tabs .tab-head {
      display: flex;
      flex-flow: row;
      justify-content: space-between;
      font-size: 20px;
      font-weight: 600;
      line-height: 60px;
      height: 60px;
      padding: 0 24px;
      border-top: 1px solid rgba(32, 30, 30, 0.05); }
      #size-guide .tabs .tab-head .shapeshifter {
        align-self: center; }
    #size-guide .tabs .tab-body {
      display: none; }
      #size-guide .tabs .tab-body.active {
        display: flex; }
    #size-guide .tabs table {
      width: 100%;
      line-height: 45px; }
      @media only screen and (max-width: 767px) {
        #size-guide .tabs table {
          font-size: 12px; } }
      #size-guide .tabs table thead {
        background-color: #eee;
        font-weight: 600; }
        #size-guide .tabs table thead th {
          line-height: 16px;
          padding: 12px; }
          @media only screen and (max-width: 767px) {
            #size-guide .tabs table thead th {
              padding: 12px 6px; } }
      #size-guide .tabs table tbody tr:nth-child(even) {
        background: #eee; }
      #size-guide .tabs table tbody tr:nth-child(odd) {
        background: rgba(32, 30, 30, 0.05); }
      @media only screen and (max-width: 767px) {
        #size-guide .tabs table tbody tr td {
          white-space: pre-wrap;
          vertical-align: middle; } }
      #size-guide .tabs table tbody tr td:first-child {
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          #size-guide .tabs table tbody tr td:first-child {
            padding: 0 5px;
            line-height: normal;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 45px; } }

#shipping-confirmation {
  height: auto;
  width: 100%; }
  #shipping-confirmation .button-container {
    width: 49%; }
  #shipping-confirmation .buttons-container {
    display: flex;
    flex-direction: row; }
  @media only screen and (max-width: 767px) {
    #shipping-confirmation .button-container {
      width: 100%; }
    #shipping-confirmation .button-container:first-child {
      margin-bottom: 14px; }
    #shipping-confirmation .buttons {
      flex-direction: column;
      bottom: 0; } }
  #shipping-confirmation .content {
    font-family: "Barlow Condensed", sans-serif;
    line-height: 24px;
    font-size: 18px;
    margin-top: 76px;
    max-height: 70vh;
    overflow-y: scroll;
    padding-bottom: 18px;
    padding-left: 24px; }
    @media only screen and (max-width: 767px) {
      #shipping-confirmation .content {
        padding: 0 24px;
        max-height: calc(100vh - 76px); } }

.custom-bar {
  float: left;
  width: 100%; }
  @media only screen and (max-width: 991px) {
    .custom-bar {
      position: fixed;
      z-index: 1;
      bottom: -100vh;
      left: 0;
      width: 100%;
      padding: 36px;
      background: #fff;
      box-sizing: border-box;
      text-align: center;
      transition: 0.7s bottom ease-in-out; }
      .custom-bar.open {
        bottom: 50px;
        transition: 0.7s bottom ease-in-out; } }
  .custom-bar .header {
    display: flex;
    justify-content: space-between;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 14px;
    margin-bottom: 24px; }
    @media only screen and (max-width: 991px) {
      .custom-bar .header {
        justify-content: center; } }
    .custom-bar .header .label {
      color: rgba(32, 30, 30, 0.5); }
      @media only screen and (max-width: 991px) {
        .custom-bar .header .label {
          color: #201e1e;
          font-size: 16px;
          font-weight: 600;
          text-transform: none; } }
    .custom-bar .header .extra-price {
      color: rgba(32, 30, 30, 0.8); }
      @media only screen and (max-width: 991px) {
        .custom-bar .header .extra-price {
          padding-left: 10px;
          font-size: 16px;
          color: #ea393b; } }

.customizable-input {
  text-transform: uppercase;
  position: relative; }
  .customizable-input .body {
    height: 50px;
    line-height: 50px;
    width: 100%;
    background-color: rgba(32, 30, 30, 0.03);
    display: flex;
    margin-bottom: 24px;
    color: rgba(32, 30, 30, 0.8);
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.5s border ease-out; }
    @media only screen and (max-width: 991px) {
      .customizable-input .body {
        color: rgba(32, 30, 30, 0.8); } }
    .customizable-input .body.selected {
      border: 2px solid #37f899;
      transition: 0.7s border ease-in; }
    .customizable-input .body .badge {
      padding: 6px 0 0 12px; }
      .customizable-input .body .badge img {
        width: 20px; }
    .customizable-input .body .text {
      padding: 12px 0 12px 12px;
      font-weight: 600; }
      .customizable-input .body .text .text-name {
        font-size: 9px;
        line-height: 9px; }
      .customizable-input .body .text .text-number {
        font-size: 20px;
        line-height: 14px; }
    .customizable-input .body .separator {
      margin: 12px;
      height: 26px;
      border-right: 1px solid rgba(32, 30, 30, 0.1); }
    .customizable-input .body .name {
      width: 100%;
      max-width: 150px;
      display: flex;
      font-size: 12px;
      justify-content: space-between;
      overflow-x: auto;
      -ms-overflow-style: none;
      overflow: -moz-scrollbars-none; }
      .customizable-input .body .name::-webkit-scrollbar {
        display: none; }
      @media only screen and (max-width: 1199px) {
        .customizable-input .body .name {
          max-width: 110px; } }
      @media only screen and (max-width: 991px) {
        .customizable-input .body .name {
          color: #201e1e;
          font-size: 16px;
          letter-spacing: 0.67px;
          max-width: calc(100% - 100px); } }
      .customizable-input .body .name span {
        white-space: nowrap; }
  .customizable-input i {
    position: absolute;
    right: 12px;
    bottom: 20px;
    color: rgba(32, 30, 30, 0.8);
    font-size: 14px;
    cursor: pointer; }

.promo-code {
  margin-bottom: 75px; }
  @media only screen and (max-width: 991px) {
    .promo-code {
      margin-bottom: 24px; } }
  .promo-code .button span {
    white-space: nowrap;
    display: flex;
    flex-direction: row-reverse; }
    @media only screen and (max-width: 1199px) {
      .promo-code .button span {
        max-width: calc(100% - 6px);
        overflow-x: scroll;
        display: flex;
        justify-content: center;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none; }
        .promo-code .button span::-webkit-scrollbar {
          display: none; } }
    @media only screen and (max-width: 991px) {
      .promo-code .button span {
        max-width: 100%; } }
    .promo-code .button span i {
      margin-left: 0;
      margin-right: 15px; }
  .promo-code .promo-head {
    display: flex;
    justify-content: space-between;
    color: #201e1e;
    line-height: 19px;
    margin-bottom: 14px; }
  .promo-code .promo-form {
    display: flex; }
    @media only screen and (max-width: 991px) {
      .promo-code .promo-form div:nth-child(2) {
        width: 35%; }
        .promo-code .promo-form div:nth-child(2) .button {
          width: 100%;
          padding: 0; }
          .promo-code .promo-form div:nth-child(2) .button.green {
            background-color: #37f899; } }
    @media only screen and (max-width: 991px) {
      .promo-code .promo-form .input-container {
        width: 65%; }
        .promo-code .promo-form .input-container .input-field input {
          width: calc(100% - 16px) !important;
          padding-top: 0;
          padding-bottom: 0;
          height: 36px;
          line-height: 36px; } }
    .promo-code .promo-form .input-field {
      width: 100%; }
      .promo-code .promo-form .input-field input {
        height: 34px;
        border: 2px solid rgba(32, 30, 30, 0.1); }
        .promo-code .promo-form .input-field input::placeholder {
          color: rgba(32, 30, 30, 0.2);
          text-transform: uppercase;
          font-size: 12px; }
      .promo-code .promo-form .input-field label {
        display: none; }
    .promo-code .promo-form .button {
      padding: 0 24px; }
      @media only screen and (max-width: 1199px) {
        .promo-code .promo-form .button span {
          max-width: 100%; } }
      @media only screen and (max-width: 991px) {
        .promo-code .promo-form .button {
          padding: 0 40px; } }
      .promo-code .promo-form .button .loader {
        font-size: 16px; }
  .promo-code .message {
    margin-top: 14px; }
    .promo-code .message.error {
      color: #ea393b; }

.side-bar.customize {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 0 100px 0 50px;
  box-sizing: border-box;
  right: -100vw;
  top: 0; }
  @media only screen and (max-width: 1199px) {
    .side-bar.customize {
      width: 200px;
      box-sizing: content-box; } }
  @media only screen and (max-width: 991px) {
    .side-bar.customize {
      top: 0;
      width: 100%;
      box-sizing: border-box;
      justify-content: flex-start;
      padding: 0 50px; } }
  @media only screen and (max-width: 767px) {
    .side-bar.customize {
      padding: 0 24px; } }
  @media only screen and (max-width: 575px) {
    .side-bar.customize {
      padding: 0 12px; } }
  .side-bar.customize.open {
    right: 0;
    height: 100%;
    position: fixed;
    overflow-y: auto; }
    @media only screen and (max-width: 991px) {
      .side-bar.customize.open {
        right: 0;
        height: 100%;
        overflow-x: hidden;
        z-index: 3; } }
  .side-bar.customize .item {
    display: flex;
    border-bottom: 1px solid rgba(32, 30, 30, 0.1); }
    .side-bar.customize .item:hover {
      cursor: pointer; }
    .side-bar.customize .item img {
      max-width: 85px;
      padding-right: 12px; }
      @media only screen and (max-width: 991px) {
        .side-bar.customize .item img {
          max-width: 75px; } }
    .side-bar.customize .item .description {
      display: flex;
      flex-flow: column;
      justify-content: center;
      color: #201e1e;
      font-size: 16px; }
      @media only screen and (max-width: 991px) {
        .side-bar.customize .item .description {
          justify-content: space-around; } }
      .side-bar.customize .item .description .name {
        line-height: 18px; }
  .side-bar.customize .close {
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 14px;
    margin-bottom: 26px;
    text-transform: uppercase;
    display: flex;
    align-items: center; }
    .side-bar.customize .close:hover {
      cursor: pointer; }
    @media only screen and (max-width: 991px) {
      .side-bar.customize .close {
        margin-bottom: 34px;
        color: #201e1e;
        font-family: "octin_college_bold", sans-serif;
        letter-spacing: 0.5px;
        font-size: 16px;
        line-height: 50px; } }
    .side-bar.customize .close i {
      font-size: 10px;
      padding-right: 6px;
      margin-top: 3px; }
      @media only screen and (max-width: 991px) {
        .side-bar.customize .close i {
          font-size: 15px;
          padding-right: 12px; } }
  .side-bar.customize .title {
    color: #201e1e;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 24px; }
    @media only screen and (max-width: 991px) {
      .side-bar.customize .title {
        text-align: center; } }
  @media only screen and (max-width: 991px) {
    .side-bar.customize .custom-text {
      margin-bottom: 20px; }
      .side-bar.customize .custom-text > div {
        display: flex;
        justify-content: center; } }
  .side-bar.customize .custom-text .input-field {
    margin-bottom: 26px; }
  .side-bar.customize .custom-text .text-preview {
    position: absolute;
    z-index: 1;
    top: 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-family: "octin_college_bold", sans-serif;
    color: #201e1e; }
    .side-bar.customize .custom-text .text-preview.front.jersey_name_size_s.jersey_name_font_fpf-2024.front, .side-bar.customize .custom-text .text-preview.front.jersey_name_size_m.jersey_name_font_fpf-2024.front, .side-bar.customize .custom-text .text-preview.front.jersey_name_size_l.jersey_name_font_fpf-2024.front {
      display: flex;
      height: calc(100% - 18px); }
    @media only screen and (max-width: 991px) {
      .side-bar.customize .custom-text .text-preview.front.jersey_name_size_s.jersey_name_font_fpf-2024.front, .side-bar.customize .custom-text .text-preview.front.jersey_name_size_m.jersey_name_font_fpf-2024.front, .side-bar.customize .custom-text .text-preview.front.jersey_name_size_l.jersey_name_font_fpf-2024.front {
        display: flex;
        height: calc(100% - 65px); } }
    .side-bar.customize .custom-text .text-preview.jersey_name_size_s {
      height: calc(100% - 61px); }
      .side-bar.customize .custom-text .text-preview.jersey_name_size_s.jersey_name_font_fpf-2022 {
        height: calc(100% - 61px); }
        .side-bar.customize .custom-text .text-preview.jersey_name_size_s.jersey_name_font_fpf-2022.jersey_name_font_fpf-2022 {
          height: calc(100% - 41px); }
      .side-bar.customize .custom-text .text-preview.jersey_name_size_s.jersey_name_font_fpf-2024 {
        height: calc(100% - 95px); }
      @media only screen and (max-width: 1199px) {
        .side-bar.customize .custom-text .text-preview.jersey_name_size_s {
          width: calc(100% + 55px);
          height: calc(100% - 62px);
          margin-left: -3px; }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_s.jersey_name_font_fpf-2024 {
            height: calc(100% - 120px); } }
      @media only screen and (max-width: 991px) {
        .side-bar.customize .custom-text .text-preview.jersey_name_size_s {
          width: calc(100% - 20px);
          height: calc(100% - 99px);
          margin-left: 0px; }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_s.jersey_name_font_fpf-2022 {
            height: calc(100% - 82px); } }
    .side-bar.customize .custom-text .text-preview.jersey_name_size_m {
      height: calc(100% - 73px); }
      .side-bar.customize .custom-text .text-preview.jersey_name_size_m.jersey_name_font_fpf-2022 {
        height: calc(100% - 50px); }
      .side-bar.customize .custom-text .text-preview.jersey_name_size_m.jersey_name_font_fpf-2024 {
        height: calc(100% - 65px); }
      @media only screen and (max-width: 1199px) {
        .side-bar.customize .custom-text .text-preview.jersey_name_size_m {
          width: calc(100% + 55px);
          height: calc(100% - 73px); } }
      @media only screen and (max-width: 991px) {
        .side-bar.customize .custom-text .text-preview.jersey_name_size_m {
          width: calc(100% - 20px);
          height: calc(100% - 123px); }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_m.jersey_name_font_fpf-2022 {
            height: calc(100% - 103px); }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_m.jersey_name_font_fpf-2024 {
            height: calc(100% - 115px); } }
    .side-bar.customize .custom-text .text-preview.jersey_name_size_l {
      height: calc(100% - 7px); }
      .side-bar.customize .custom-text .text-preview.jersey_name_size_l.jersey_name_font_fpf-2022 {
        height: calc(100% - 8px); }
      .side-bar.customize .custom-text .text-preview.jersey_name_size_l.jersey_name_font_fpf-2024 {
        height: calc(100%); }
      @media only screen and (max-width: 1199px) {
        .side-bar.customize .custom-text .text-preview.jersey_name_size_l {
          width: calc(100% + 55px);
          height: calc(100% - 40px); }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_l.jersey_name_font_fpf-2022 {
            height: calc(100% - 36px); }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_l.jersey_name_font_fpf-2024 {
            height: calc(100% - 74px); } }
      @media only screen and (max-width: 991px) {
        .side-bar.customize .custom-text .text-preview.jersey_name_size_l {
          width: calc(100% - 20px);
          height: calc(100% - 70px); }
          .side-bar.customize .custom-text .text-preview.jersey_name_size_l.jersey_name_font_fpf-2022 {
            height: calc(100% - 77px); } }
    .side-bar.customize .custom-text .text-preview.white {
      color: #fff; }
    .side-bar.customize .custom-text .text-preview .name {
      letter-spacing: 2px;
      text-transform: uppercase;
      padding-bottom: 10px; }
      .side-bar.customize .custom-text .text-preview .name.jersey_name_font_fpf-2024 {
        letter-spacing: 1px; }
      .side-bar.customize .custom-text .text-preview .name__s {
        font-size: 16px;
        height: 16px; }
      .side-bar.customize .custom-text .text-preview .name__m {
        font-size: 24px;
        height: 24px; }
      .side-bar.customize .custom-text .text-preview .name__l {
        font-size: 32px;
        height: 32px; }
        .side-bar.customize .custom-text .text-preview .name__l.jersey_number_font_fpf-2022 {
          margin-left: 2px; }
      .side-bar.customize .custom-text .text-preview .name.jersey_name_font_fpf-2025 {
        font-size: 18px;
        height: 20px; }
      .side-bar.customize .custom-text .text-preview .name.jersey_name_font_fpf-2026 {
        font-size: 18px;
        height: 20px; }
    .side-bar.customize .custom-text .text-preview .number {
      letter-spacing: 5px;
      margin-top: -5px; }
      .side-bar.customize .custom-text .text-preview .number__s {
        font-size: 55px;
        height: 77px;
        margin-top: -4px;
        margin-left: 3px; }
        .side-bar.customize .custom-text .text-preview .number__s.jersey_number_font_fpf-2022 {
          margin-top: 9px;
          margin-left: 3px; }
        @media only screen and (max-width: 1199px) {
          .side-bar.customize .custom-text .text-preview .number__s {
            height: 78px;
            margin-top: -3px; }
            .side-bar.customize .custom-text .text-preview .number__s.jersey_number_font_fpf-2022 {
              margin-top: 9px;
              margin-left: 3px; } }
        @media only screen and (max-width: 991px) {
          .side-bar.customize .custom-text .text-preview .number__s {
            height: 78px;
            margin-top: -3px; }
            .side-bar.customize .custom-text .text-preview .number__s.jersey_number_font_fpf-2022 {
              margin-top: 9px;
              margin-left: 3px;
              font-size: 58px; } }
      .side-bar.customize .custom-text .text-preview .number__m {
        font-size: 85px;
        height: 85px;
        margin-top: -18px; }
        .side-bar.customize .custom-text .text-preview .number__m.jersey_number_font_fpf-2022 {
          font-size: 90px;
          margin-top: 2px; }
        .side-bar.customize .custom-text .text-preview .number__m.jersey_number_font_fpf-2024-numbers {
          margin-top: -5px;
          letter-spacing: 10px;
          text-indent: 8px; }
          .side-bar.customize .custom-text .text-preview .number__m.jersey_number_font_fpf-2024-numbers.front {
            margin-top: 0px;
            font-size: 30px;
            letter-spacing: 4px;
            text-indent: 0px;
            margin-left: -65px; }
        @media only screen and (max-width: 1199px) {
          .side-bar.customize .custom-text .text-preview .number__m {
            margin-top: -18px; } }
        @media only screen and (max-width: 991px) {
          .side-bar.customize .custom-text .text-preview .number__m {
            height: 75px;
            margin-top: -18px; }
            .side-bar.customize .custom-text .text-preview .number__m.jersey_number_font_fpf-2024-numbers {
              margin-top: -7px; } }
      .side-bar.customize .custom-text .text-preview .number__l {
        font-size: 113px;
        height: 149px;
        margin-top: -19px;
        margin-left: 3px; }
        .side-bar.customize .custom-text .text-preview .number__l.jersey_number_font_fpf-2022 {
          font-size: 117px;
          margin-top: -16px;
          margin-left: 3px; }
        .side-bar.customize .custom-text .text-preview .number__l.jersey_number_font_fpf-2024-numbers {
          margin-top: -9px;
          letter-spacing: 1px; }
        @media only screen and (max-width: 991px) {
          .side-bar.customize .custom-text .text-preview .number__l {
            margin-top: -20px; } }
      .side-bar.customize .custom-text .text-preview .number.front.jersey_number_font_fpf-2025 {
        font-size: 35px;
        height: 30px;
        margin-top: -75px; }
      .side-bar.customize .custom-text .text-preview .number.front.jersey_number_font_fpf-2026 {
        font-size: 35px;
        height: 30px;
        margin-top: -75px; }

.open-customization__personal {
  padding-top: 30px;
  height: 125px !important;
  visibility: visible !important; }

.open-customization__player {
  padding-top: 30px;
  height: 45px !important;
  visibility: visible !important; }

.customize-personal, .customize-player {
  margin-bottom: 24px; }
  .customize-personal .input-radio, .customize-player .input-radio {
    display: flex;
    align-items: center; }
    .customize-personal .input-radio span, .customize-player .input-radio span {
      font-size: 16px;
      color: #201e1e;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600; }

.customize-personal__options {
  height: 0;
  visibility: hidden;
  transition: height 0.3s ease-in-out; }

.customize-input__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; }

@media only screen and (max-width: 991px) {
  .customize {
    flex-direction: column;
    padding: 0 24px; } }

@media only screen and (max-width: 991px) {
  .sidebar-notify__button {
    height: 48px !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important; }
    .sidebar-notify__button.hover::before {
      width: 100% !important; } }

.no-stock__wrapper {
  margin-bottom: 50px; }
  .no-stock__wrapper .input-field {
    margin-bottom: 30px; }
  .no-stock__wrapper .input-field {
    margin-bottom: 30px; }
  .no-stock__wrapper .input-checkbox {
    margin-bottom: 12px; }

.sizes-customize {
  float: initial; }

.input-container__sizes {
  float: left;
  width: 100%; }

.personalization-wrapper {
  position: relative;
  height: fit-content;
  margin-bottom: 40px; }
  .personalization-wrapper img {
    position: relative;
    width: 250px;
    height: 320px;
    object-fit: cover;
    object-position: center center; }

.toggle-button {
  background-color: #fff;
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 74px;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #201e1e;
  padding: 4px 2px;
  z-index: 2; }

.toggle-button-text {
  font-size: 12px;
  line-height: 14px;
  font-family: "octin_college_bold", sans-serif;
  letter-spacing: 1px; }

.toggle-button-icon {
  font-size: 20px; }

.customization-preview-warning {
  top: -32px;
  position: relative;
  font-size: 14px; }

.tag {
  position: absolute;
  font-family: "octin_college_bold", sans-serif;
  padding: 0 8px;
  text-transform: uppercase;
  line-height: 30px;
  bottom: 8px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  z-index: 2;
  left: 0; }
  .tag.sale, .tag.new, .tag.no-stock, .tag.exclusive, .tag.pre_sale {
    height: 30px; }
  .tag.pre_sale {
    background-color: #37f899;
    color: #201e1e; }
  .tag.sale {
    background-color: #ea393b;
    color: #fff; }
  .tag.new {
    background-color: #37f899;
    color: #201e1e; }
  .tag.no-stock {
    background-color: #cdcdcd;
    color: #fff; }
  .tag.exclusive {
    background-color: #201e1e;
    color: #fff; }

.return-container {
  transition: height 0.4s ease-out;
  width: 100%;
  font-family: "Barlow Condensed", sans-serif; }
  .return-container.is-empty {
    display: flex;
    flex-direction: column; }
    .return-container.is-empty .content {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%; }
  .return-container.is-loading, .return-container.is-empty {
    min-height: 360px; }
  .return-container .head {
    padding: 24px;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      .return-container .head {
        padding: 24px 0;
        width: 100%; } }
  .return-container .content {
    max-height: 65vh;
    overflow: auto; }
    @media only screen and (max-width: 767px) {
      .return-container .content {
        max-height: calc(100vh - 105px);
        width: calc(100% + 24px);
        margin-left: -12px; } }
    .return-container .content .section-1 {
      margin-top: 75px;
      padding: 24px;
      background-color: #eee; }
      @media only screen and (max-width: 767px) {
        .return-container .content .section-1 {
          padding: 36px 12px; } }
    .return-container .content .section-2 {
      padding: 24px; }
      @media only screen and (max-width: 767px) {
        .return-container .content .section-2 {
          padding: 24px 12px; } }
      .return-container .content .section-2 .column-mobile {
        flex-wrap: nowrap; }
        @media only screen and (max-width: 1199px) {
          .return-container .content .section-2 .column-mobile {
            flex-direction: column;
            flex-wrap: wrap; } }
      .return-container .content .section-2 .content {
        margin-left: 0;
        width: 100%; }
    .return-container .content .section-3 {
      padding: 24px 24px 48px 24px; }
      .return-container .content .section-3 .subtitle {
        margin-bottom: 40px; }
      .return-container .content .section-3 button {
        margin-top: 40px; }
    .return-container .content.return-content {
      flex-flow: column;
      text-align: center; }
      .return-container .content.return-content.success {
        margin-top: 0; }
        .return-container .content.return-content.success .title {
          margin-top: 140px; }
        .return-container .content.return-content.success .button {
          margin-bottom: 95px; }
  .return-container .footer {
    box-sizing: border-box;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      .return-container .footer {
        display: flex;
        flex-flow: column;
        width: 100%;
        height: 55px;
        justify-content: center;
        background: #fff;
        z-index: 1; } }
    .return-container .footer .footer__link {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      line-height: 16px;
      align-items: flex-start;
      text-align: left; }
      @media only screen and (max-width: 767px) {
        .return-container .footer .footer__link {
          justify-content: center;
          text-align: center;
          align-items: center; } }
    .return-container .footer a {
      font-weight: 600;
      text-transform: uppercase;
      color: inherit; }
    .return-container .footer .error {
      color: #ea393b; }
  .return-container .title {
    color: #ea393b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; }
  .return-container .steps {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
    text-align: center; }
    .return-container .steps > div {
      position: relative; }
    .return-container .steps .number {
      position: absolute;
      top: 0;
      left: 0;
      font-family: "octin_college_bold", sans-serif;
      font-size: 18px;
      line-height: 21px;
      display: flex;
      justify-content: space-between;
      width: 40px; }
      .return-container .steps .number:before {
        content: "["; }
      .return-container .steps .number:after {
        content: "]"; }
      .return-container .steps .number:before, .return-container .steps .number:after {
        font-family: "octin_college_bold", sans-serif;
        font-size: 26px;
        line-height: 8px;
        text-align: center;
        color: #37f899;
        position: relative;
        top: 8px;
        letter-spacing: 2px; }
    .return-container .steps img {
      margin-top: 18px;
      width: 100px; }
    .return-container .steps .description {
      width: calc(100% - 50px);
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px; }
      @media only screen and (max-width: 767px) {
        .return-container .steps .description {
          width: calc(100% - 12px);
          padding: 0;
          margin: 12px 6px 36px 6px; } }
  .return-container .products {
    width: 66%;
    margin-top: 24px;
    margin-bottom: 24px; }
    @media only screen and (max-width: 1199px) {
      .return-container .products {
        width: 100%; } }
    .return-container .products .product {
      margin-bottom: 24px; }
      .return-container .products .product .content {
        display: flex;
        overflow: hidden; }
      .return-container .products .product .reasons-list .input-dropdown {
        width: 350px;
        min-width: 100%; }
        @media only screen and (max-width: 767px) {
          .return-container .products .product .reasons-list .input-dropdown {
            width: 225px; } }
        @media only screen and (max-width: 575px) {
          .return-container .products .product .reasons-list .input-dropdown {
            margin-top: 30px; } }
        .return-container .products .product .reasons-list .input-dropdown .dropdown-item.selected {
          border: none; }
      .return-container .products .product .reasons-list a {
        text-decoration: none; }
      .return-container .products .product .reasons-list .input-dropdown:not(.open) {
        border: 1px solid #eee; }
      .return-container .products .product .select {
        height: 16px;
        width: 16px;
        border: 1px solid rgba(32, 30, 30, 0.5);
        align-self: center;
        margin-right: 26px;
        text-align: center;
        color: #fff;
        background: #fff;
        transition: 0.4s background ease-out, 0.4s color ease-out; }
        .return-container .products .product .select.active {
          position: relative;
          background: #201e1e;
          color: #37f899;
          transition: 0.8s background ease-out, 0.8s color ease-out; }
        .return-container .products .product .select:hover {
          cursor: pointer; }
      .return-container .products .product .thumbnail img {
        width: 86px; }
      .return-container .products .product .details {
        margin-left: 12px;
        display: flex;
        flex-flow: column;
        justify-content: space-between; }
        .return-container .products .product .details .top .name {
          font-size: 16px;
          line-height: 18px; }
        .return-container .products .product .details .top .attributes,
        .return-container .products .product .details .top .reference {
          color: rgba(32, 30, 30, 0.5);
          font-size: 12px;
          font-weight: 600;
          line-height: 20px;
          text-transform: uppercase; }
      .return-container .products .product .bottom {
        height: 0;
        opacity: 0;
        margin-left: 44px;
        margin-top: 0;
        transition: 0.4s height ease-out, 0.3s opacity ease-out, 0.4s margin-top ease-out; }
        @media only screen and (max-width: 767px) {
          .return-container .products .product .bottom {
            margin-left: 0; } }
        .return-container .products .product .bottom.active {
          height: 50px;
          opacity: 1;
          margin-top: 44px;
          transition: 0.4s height ease-out, 0.4s opacity ease-out, 0.4s margin-top ease-out; }
          @media only screen and (max-width: 575px) {
            .return-container .products .product .bottom.active {
              height: auto;
              display: flex;
              flex-direction: column; } }
        .return-container .products .product .bottom .quantity-widget {
          margin-top: -18px;
          height: 54px;
          justify-content: space-between;
          display: flex;
          flex-direction: column; }
          @media only screen and (max-width: 575px) {
            .return-container .products .product .bottom .quantity-widget {
              height: auto;
              margin-right: 0; }
              .return-container .products .product .bottom .quantity-widget > p {
                padding-bottom: 10px; }
              .return-container .products .product .bottom .quantity-widget > div {
                align-self: flex-start; } }
          .return-container .products .product .bottom .quantity-widget i {
            font-size: 14px;
            line-height: 18px;
            color: #ea393b; }
            .return-container .products .product .bottom .quantity-widget i:hover, .return-container .products .product .bottom .quantity-widget i:focus {
              cursor: pointer; }
            .return-container .products .product .bottom .quantity-widget i.inactive {
              color: rgba(32, 30, 30, 0.2); }
          .return-container .products .product .bottom .quantity-widget .qty {
            font-family: "octin_college_regular", sans-serif;
            font-size: 16px;
            letter-spacing: 1px;
            line-height: 19px;
            padding: 0 12px; }
  .return-container .total-resume {
    width: 33%;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px; }
    @media only screen and (max-width: 1199px) {
      .return-container .total-resume {
        width: 100%;
        padding-left: 0; } }
    .return-container .total-resume .value {
      font-family: "octin_college_bold", sans-serif;
      line-height: 20px; }
    .return-container .total-resume .total {
      font-size: 20px;
      line-height: 24px;
      margin-top: 12px; }
    .return-container .total-resume .info {
      color: rgba(32, 30, 30, 0.8);
      width: calc(100% - 60px); }

.return_token .return-container .content {
  max-height: 100%;
  overflow: initial; }

@media only screen and (max-width: 767px) {
  .return_token .footer__button button {
    background: #37f899;
    z-index: 1; } }

@media only screen and (max-width: 767px) {
  #content-modal .return-container .head {
    padding: 24px 12px;
    width: calc(100% - 24px); } }

#content-modal .return-container .content {
  width: 100%;
  margin-left: 0; }

#content-modal .return-container.is-empty .content {
  padding-top: 40px; }

.placeholder {
  display: table;
  width: 100%;
  text-align: center;
  min-height: 230px; }

.placeholder__content {
  display: table-cell;
  vertical-align: middle; }

.placeholder__icon {
  font-size: 10rem;
  color: rgba(32, 30, 30, 0.1); }

header {
  z-index: 6;
  position: fixed;
  height: 100px;
  width: 100%;
  top: 0;
  background: transparent;
  color: #201e1e;
  transition: top 0.5s ease-in-out, background 0.5s ease-in-out, color 0.5s ease-in-out, opacity 1s ease-in-out;
  /*sticky menu*/
  /* menus */
  /* divisor */
  /* logos */
  /* widgets */
  /* MENU ONLY VISIBLE ON MOBILE */
  /* SECTION TOP MENU - dropdown mobile*/ }
  @media only screen and (max-width: 991px) {
    header.homepageAdjustments > .container > .widgets > .bottom {
      margin-top: 1.7rem;
      right: -1rem;
      left: auto;
      position: relative; } }
  @media only screen and (max-width: 991px) {
    header.homepageAdjustments > .container
> .widgets
> .bottom
> .search-content {
      font-size: 22px;
      top: 2px;
      position: absolute; } }
  @media only screen and (max-width: 991px) {
    header.homepageAdjustments.compressed > .container > .widgets > .bottom {
      margin-top: -1.45rem; } }
  @media only screen and (max-width: 991px) {
    header.homepageAdjustments > .container > .widgets > .top > .bag-content {
      left: auto;
      right: -0.45rem; } }
  header.homepageAdjustments.compressed > .container
> .widgets
> .top
> .bag-content {
    top: 1.5rem;
    position: relative; }
    header.homepageAdjustments.compressed > .container
> .widgets
> .top
> .bag-content:before {
      top: -1.3rem; }
    @media only screen and (max-width: 991px) {
      header.homepageAdjustments.compressed > .container
> .widgets
> .top
> .bag-content {
        top: 0;
        left: auto;
        right: -1.35rem;
        margin-top: -70px;
        right: -0.35rem;
        margin-top: -50px;
        position: absolute; }
        header.homepageAdjustments.compressed > .container
> .widgets
> .top
> .bag-content.has-session {
          margin-top: -10px; } }
  header.search-open > .container > .widgets > .bottom {
    top: 18px; }
  @media only screen and (max-width: 991px) {
    header > .container > .widgets > .bottom {
      margin-top: 1.7rem;
      right: -1rem;
      left: auto;
      position: relative; } }
  @media only screen and (max-width: 991px) {
    header > .container > .widgets > .top > .bag-content {
      top: -0.55rem;
      left: auto;
      right: -0.45rem; }
      header > .container > .widgets > .top > .bag-content .quantity {
        top: 0;
        margin-top: 5.5px; } }
  @media only screen and (max-width: 991px) {
    header > .container > .toggle-menu > i {
      top: -16px; } }
  @media only screen and (max-width: 991px) {
    header.homepageAdjustments.compressed > .container > .toggle-menu > i {
      top: 0rem; } }
  @media only screen and (max-width: 991px) {
    header.compressed > .container > .toggle-menu > i {
      top: 0; } }
  header.compressed > .container > .widgets > .top > .bag-content {
    top: 1.5rem;
    position: relative; }
    header.compressed > .container > .widgets > .top > .bag-content:before {
      top: -1.3rem; }
    @media only screen and (max-width: 991px) {
      header.compressed > .container > .widgets > .top > .bag-content {
        top: 0px;
        margin-top: -49px;
        position: absolute; }
        header.compressed > .container > .widgets > .top > .bag-content.has-session {
          margin-top: -49px; } }
  header.compressed #store-menu a {
    color: #201e1e; }
  @media only screen and (max-width: 991px) {
    header.compressed #content-breadcrumbs {
      margin-top: 18px;
      margin-left: 20px; }
      header.compressed #content-breadcrumbs .top {
        margin-top: 0; }
    header #content-breadcrumbs {
      margin-top: 67px;
      transition: margin 0.5s ease-in-out; }
      header #content-breadcrumbs a {
        z-index: 5; }
    header.search-open #content-breadcrumbs, header.mobile-menu-open #content-breadcrumbs {
      display: none; } }
  header.hover #store-menu a {
    color: #201e1e;
    opacity: 0.5; }
  header.hover #store-menu li.active a {
    opacity: 1; }
  header.white ul.menu-hover > li > a {
    color: #fff;
    opacity: 1; }
  header.white :not(.compressed) > ul.menu-hover > li > a {
    color: #fff; }
  header.white ul.menu-hover > li.active > a {
    opacity: 1; }
  @media only screen and (max-width: 991px) {
    header {
      height: 50px; } }
  header > div {
    margin-right: 115px; }
  header.white:not(.hover):not(.compressed) {
    color: #fff;
    transition: color 0.3s ease-in-out, top 0.5s ease-in-out, background 0.5s ease-in-out;
    display: grid; }
    header.white:not(.hover):not(.compressed) .logo-svg .white {
      opacity: 1; }
    header.white:not(.hover):not(.compressed) .logo-svg .color {
      opacity: 0; }
    header.white:not(.hover):not(.compressed) .logo-link .logo-letters-svg {
      background-image: url("/static/images/fpp_name_logo_white.svg"); }
    header.white:not(.hover):not(.compressed) .line {
      height: 1px;
      background: rgba(255, 255, 255, 0.2); }
      @media only screen and (max-width: 991px) {
        header.white:not(.hover):not(.compressed) .line {
          display: none; } }
  header:not(.hover) .feature-product {
    display: none; }
  @media only screen and (max-width: 991px) {
    header:not(.search-open).mobile-menu-open .toggle-menu, header:not(.search-open).mobile-menu-open.white .toggle-menu {
      top: 26px;
      transition: none; }
    header:not(.search-open).mobile-menu-open .widgets, header:not(.search-open).mobile-menu-open.white .widgets {
      right: 6vw; } }
  header.hover {
    display: block; }
    header.hover .menu-open {
      display: table;
      left: 0; }
    header.hover .widgets .top .link .side-bar.open {
      top: -55px; }
    header.hover .menu-top {
      opacity: 0;
      transition: opacity 0.5s ease-in-out; }
    header.hover .store-menu-container #store-menu li {
      color: #201e1e;
      transition: color 0.3s ease-in-out; }
      header.hover .store-menu-container #store-menu li:not(.active) {
        color: rgba(32, 30, 30, 0.1);
        transition: color 0.3s ease-in-out; }
  header .store-menu-container #store-menu li.green a {
    color: #37f899; }
  header .store-menu-container #store-menu li.green:active {
    color: #201e1e; }
  header .store-menu-container #store-menu li.green:not(.active) {
    color: #201e1e;
    transition: color 0.3s ease-in-out; }
  header .store-menu-container #store-menu li.active.green a {
    color: #201e1e; }
  header.compressed .widgets .top .bag-content .icon-bag-white, header.hover .widgets .top .bag-content .icon-bag-white {
    background-image: url("/static/images/icon/icon_cart.svg");
    background-size: contain; }
  header.compressed .widgets .top .bag-content .icon-bag-empty-white, header.hover .widgets .top .bag-content .icon-bag-empty-white {
    background-image: url("/static/images/icon/icon_cart_line.svg");
    background-size: contain; }
    @media only screen and (min-width: 992px) {
      header.compressed .widgets .top .bag-content .icon-bag-empty-white, header.hover .widgets .top .bag-content .icon-bag-empty-white {
        position: relative;
        width: 17px;
        height: 17px; } }
  header.compressed {
    /*sticky menu*/
    top: 40px;
    color: #201e1e;
    background: #fff;
    transition: top 0.5s ease-in-out, background 0.5s ease-in-out, color 0.3s ease-in-out; }
    @media only screen and (max-width: 991px) {
      header.compressed .compressed-searc-icon {
        margin-top: -4px; } }
    header.compressed ul.menu-hover > li > a {
      color: #201e1e; }
    @media only screen and (max-width: 991px) {
      header.compressed {
        top: 0;
        box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0.05), 0 27px 28px -10px rgba(0, 0, 0, 0.05); } }
    header.compressed .store-menu-container {
      height: 55px;
      line-height: 55px;
      transition: height 0.5s ease-in-out, line-height 0.5s ease-in-out; }
      header.compressed .store-menu-container #store-menu {
        align-items: center; }
    header.compressed .logo-link {
      top: 55px;
      transition: top 0.5s ease-in-out; }
      @media only screen and (max-width: 991px) {
        header.compressed .logo-link {
          top: 10px;
          z-index: 1; } }
      header.compressed .logo-link .logo-svg img {
        width: 18px;
        height: 30px; }
        header.compressed .logo-link .logo-svg img.white {
          opacity: 0;
          transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out; }
        header.compressed .logo-link .logo-svg img.color {
          opacity: 1;
          transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out; }
      header.compressed .logo-link .logo-info {
        margin-top: -30px;
        transition: margin-top 0.5s ease-in-out; }
    header.compressed .widgets .top .bag-content {
      margin-top: 50px;
      transition: margin-top 0.5s ease-in-out; }
      @media only screen and (max-width: 991px) {
        header.compressed .widgets .top .bag-content {
          margin-top: 0; } }
      header.compressed .widgets .top .bag-content:before {
        top: 35px; }
    @media only screen and (max-width: 991px) {
      header.compressed .widgets .top .link {
        margin-top: -35px;
        margin-bottom: 40px;
        transition: margin-top 0.5s ease-in-out, margin-bottom 0.5s ease-in-out; } }
    header.compressed .widgets .top .link .side-bar.open {
      top: 15px; }
    header.compressed .widgets .bottom {
      margin-top: -22px;
      transition: margin-top 0.5s ease-in-out; }
      header.compressed .widgets .bottom .search-content .search {
        opacity: 0;
        transition: opacity 0.5s ease-in-out; }
    @media only screen and (max-width: 991px) {
      header.compressed .toggle-menu {
        z-index: 1;
        top: 15px;
        left: 45px;
        transition: top 0.5s ease-in-out, left 0.5s ease-in-out; }
        header.compressed .toggle-menu i:nth-child(2) {
          left: 0; } }
  @media only screen and (max-width: 991px) {
    header.mobile-menu-open, header.mobile-menu-open.white {
      color: #201e1e;
      z-index: 6; }
      header.mobile-menu-open .toggle-menu i:nth-child(1), header.mobile-menu-open.white .toggle-menu i:nth-child(1) {
        display: none;
        z-index: 1; }
      header.mobile-menu-open .toggle-menu i:nth-child(2), header.mobile-menu-open.white .toggle-menu i:nth-child(2) {
        display: inline;
        color: #201e1e;
        z-index: 2;
        top: -13px !important; }
      header.mobile-menu-open .logo-link .logo-svg, header.mobile-menu-open.white .logo-link .logo-svg {
        background: #fff;
        transition: background 0.5s 0.5s;
        display: flex;
        justify-content: left; }
        header.mobile-menu-open .logo-link .logo-svg .color, header.mobile-menu-open.white .logo-link .logo-svg .color {
          opacity: 1;
          display: inline-block; }
        header.mobile-menu-open .logo-link .logo-svg .white, header.mobile-menu-open.white .logo-link .logo-svg .white {
          opacity: 0;
          display: none; }
      header.mobile-menu-open .logo-link .logo-info, header.mobile-menu-open.white .logo-link .logo-info {
        display: none; }
      header.mobile-menu-open .widgets, header.mobile-menu-open.white .widgets {
        display: none; } }
  @media only screen and (max-width: 991px) {
    header.search-open {
      z-index: 6; } }
  header .store-menu-container {
    height: auto;
    line-height: 30px;
    transition: height 0.5s ease-in-out, line-height 0.5s ease-in-out; }
    header .store-menu-container #store-menu li .red-line span {
      width: 0;
      transition: width 0.5s ease-in-out; }
    header .store-menu-container #store-menu li.active .red-line span,
    header .store-menu-container #store-menu li:hover .red-line span,
    header .store-menu-container #store-menu li:focus .red-line span {
      width: 100%;
      transition: width 0.3s ease-in-out; }
  header ul {
    padding: 0;
    margin: 0; }
    header ul li {
      list-style: none; }
      header ul li a {
        text-decoration: none;
        color: inherit; }
        header ul li a:hover, header ul li a:focus {
          cursor: pointer; }
    header ul.menu-top {
      display: inline-flex;
      justify-content: center;
      z-index: 1;
      position: relative; }
      header ul.menu-top li {
        padding: 14px;
        font-family: "octin_college_regular", sans-serif; }
        @media only screen and (max-width: 991px) {
          header ul.menu-top li {
            padding: 14px 8px; } }
        header ul.menu-top li a {
          font-size: 12px; }
    header ul#store-menu {
      display: inline-flex;
      justify-content: center;
      font-family: "octin_college_bold", sans-serif;
      position: relative;
      font-size: 16px;
      line-height: 16px;
      width: 100%;
      z-index: 1;
      text-align: center; }
      header ul#store-menu li {
        position: relative;
        display: flex;
        align-items: center;
        font-size: 14px; }
        @media (min-width: 1401px) {
          header ul#store-menu li {
            padding: 12px 20px; } }
        @media (min-width: 1201px) and (max-width: 1400px) {
          header ul#store-menu li {
            padding: 12px 15px; } }
        @media (max-width: 1200px) {
          header ul#store-menu li {
            padding: 10px;
            font-size: 12px;
            flex: 1;
            justify-content: center;
            max-width: fit-content; } }
        header ul#store-menu li .red-line {
          display: flex;
          flex-direction: row;
          justify-content: center; }
        header ul#store-menu li a {
          text-decoration: none; }
        header ul#store-menu li span:hover, header ul#store-menu li span:focus {
          cursor: pointer; }
        header ul#store-menu li.active .red-line,
        header ul#store-menu li.active .green-line, header ul#store-menu li:hover .red-line,
        header ul#store-menu li:hover .green-line, header ul#store-menu li:focus .red-line,
        header ul#store-menu li:focus .green-line {
          position: absolute;
          width: 100%;
          left: 0;
          top: -2px;
          height: 2px; }
          header ul#store-menu li.active .red-line span,
          header ul#store-menu li.active .green-line span, header ul#store-menu li:hover .red-line span,
          header ul#store-menu li:hover .green-line span, header ul#store-menu li:focus .red-line span,
          header ul#store-menu li:focus .green-line span {
            position: absolute;
            width: 100%;
            border-top: 3px solid #ea393b;
            left: 0; }
            header ul#store-menu li.active .red-line span:before,
            header ul#store-menu li.active .green-line span:before, header ul#store-menu li:hover .red-line span:before,
            header ul#store-menu li:hover .green-line span:before, header ul#store-menu li:focus .red-line span:before,
            header ul#store-menu li:focus .green-line span:before {
              content: "";
              position: absolute;
              width: 90%;
              left: 5%;
              box-shadow: 0px 0px 6px 1px #ff6f6f; }
            header ul#store-menu li.active .red-line span:after,
            header ul#store-menu li.active .green-line span:after, header ul#store-menu li:hover .red-line span:after,
            header ul#store-menu li:hover .green-line span:after, header ul#store-menu li:focus .red-line span:after,
            header ul#store-menu li:focus .green-line span:after {
              content: "";
              width: 50%;
              position: absolute;
              left: 25%;
              box-shadow: 0px 6px 13px 1px #fdd2d5; }
        header ul#store-menu li.active .green-line span, header ul#store-menu li:hover .green-line span, header ul#store-menu li:focus .green-line span {
          border-top: 3px solid #37f899; }
          header ul#store-menu li.active .green-line span:before, header ul#store-menu li:hover .green-line span:before, header ul#store-menu li:focus .green-line span:before {
            box-shadow: 0px 0px 6px 1px #95bca7; }
          header ul#store-menu li.active .green-line span:after, header ul#store-menu li:hover .green-line span:after, header ul#store-menu li:focus .green-line span:after {
            box-shadow: 0px 6px 13px 1px #95bca7; }
  header .menu-open {
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 0;
    left: 0;
    top: 0;
    height: 0;
    padding: 0;
    transition: top 0.5s ease-in-out, height 0.5s ease-in-out, padding 0.5s ease-in-out; }
    header .menu-open.open {
      padding: 144px 0 57px;
      height: 320px;
      width: 100%;
      transition: height 0.5s ease-in-out, width 0.5s ease-in-out, padding 0.5s ease-in-out; }
      header .menu-open.open .subcategories {
        opacity: 1;
        height: 100%;
        transition: opacity 0.5s ease-in-out 0.2s, height 0.5s ease-in-out 0.2s; }
        header .menu-open.open .subcategories .feature-product {
          opacity: 1;
          transition: opacity 0.2s ease-in-out; }
        header .menu-open.open .subcategories .menu-border:not(:empty) {
          min-height: 288px;
          height: 100%; }
    header .menu-open .subcategories {
      opacity: 0;
      height: 0;
      transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out; }
      header .menu-open .subcategories .feature-product {
        opacity: 0;
        transition: opacity 0.2s ease-in-out; }
      header .menu-open .subcategories .menu-border {
        height: 0; }
    header .menu-open .menu-border {
      border-left: 1px solid rgba(32, 30, 30, 0.1);
      position: relative; }
      header .menu-open .menu-border li,
      header .menu-open .menu-border .item-list {
        color: #201e1e;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 26px;
        font-size: 16px;
        margin-bottom: 18px;
        padding-left: 22px; }
        header .menu-open .menu-border li:before,
        header .menu-open .menu-border .item-list:before {
          content: "";
          height: 1px;
          width: 5px;
          background-color: #ea393b;
          position: absolute;
          margin-top: 13px;
          left: -3px; }
    header .menu-open .categories-menu {
      position: relative; }
      header .menu-open .categories-menu li {
        color: #201e1e;
        line-height: 26px; }
        header .menu-open .categories-menu li a {
          text-decoration: none;
          color: inherit; }
      header .menu-open .categories-menu .categories-submenu :before {
        content: none; }
      header .menu-open .categories-menu .categories-submenu li {
        padding: 0;
        margin: 0;
        line-height: 14px; }
        header .menu-open .categories-menu .categories-submenu li:first-child {
          margin-top: -8px;
          line-height: 23px;
          padding-bottom: 12px; }
          header .menu-open .categories-menu .categories-submenu li:first-child a {
            color: rgba(32, 30, 30, 0.2);
            font-family: "Barlow Condensed", sans-serif;
            line-height: 23px;
            text-decoration: underline;
            margin-bottom: 6px;
            text-transform: initial; }
        header .menu-open .categories-menu .categories-submenu li:not(.view-all) a:hover,
        header .menu-open .categories-menu .categories-submenu li:not(.view-all) a:focus,
        header .menu-open .categories-menu .categories-submenu li.active a {
          color: #201e1e;
          transition: color 0.5s ease-in-out; }
          header .menu-open .categories-menu .categories-submenu li:not(.view-all) a:hover:before,
          header .menu-open .categories-menu .categories-submenu li:not(.view-all) a:focus:before,
          header .menu-open .categories-menu .categories-submenu li.active a:before {
            width: 100%;
            transition: width 0.5s ease-in-out; }
        header .menu-open .categories-menu .categories-submenu li a {
          line-height: 23px;
          font-weight: 400;
          text-transform: initial;
          text-decoration: none;
          padding: 0;
          position: relative;
          color: rgba(32, 30, 30, 0.5);
          transition: color 0.5s ease-in-out; }
          header .menu-open .categories-menu .categories-submenu li a:before {
            content: "";
            width: 0;
            border-top: 3px solid #37f899;
            height: 2px;
            position: absolute;
            top: 50%;
            z-index: -1;
            width: 0;
            transition: width 0.5s ease-in-out; }
    header .menu-open .feature-product .slider {
      position: relative; }
    header .menu-open .feature-product .product {
      display: flex;
      flex-flow: row;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      opacity: 0; }
      header .menu-open .feature-product .product .images {
        width: 204px; }
        header .menu-open .feature-product .product .images img {
          position: absolute;
          padding-left: 23.5px;
          width: 100%; }
      header .menu-open .feature-product .product.active {
        opacity: 1; }
      header .menu-open .feature-product .product .button {
        align-self: left;
        width: fit-content;
        display: flex; }
    header .menu-open .feature-product .product-content {
      display: flex;
      flex-flow: column;
      justify-content: center;
      height: 230px;
      width: auto;
      z-index: 1; }
    header .menu-open .feature-product .title,
    header .menu-open .feature-product .price,
    header .menu-open .feature-product .color-label,
    header .menu-open .feature-product .swatches {
      padding-left: 36px; }
    header .menu-open .feature-product .title {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 16px;
      line-height: 24px; }
    header .menu-open .feature-product .price {
      line-height: 30px;
      margin-bottom: 6px; }
    header .menu-open .feature-product .color-label {
      font-family: "Barlow Condensed", sans-serif;
      text-transform: uppercase;
      font-size: 12px;
      line-height: 14px;
      color: rgba(32, 30, 30, 0.5); }
    header .menu-open .feature-product .swatches {
      width: 0;
      height: 0;
      line-height: 0;
      margin-top: 5px; }
      header .menu-open .feature-product .swatches li {
        padding-left: 20px;
        line-height: 0;
        align-self: center;
        margin-bottom: 0;
        cursor: pointer; }
        header .menu-open .feature-product .swatches li:before {
          content: none; }
        header .menu-open .feature-product .swatches li:not(.active) {
          min-width: 16px;
          width: 16px;
          height: 16px;
          padding-left: 16px; }
    header .menu-open .feature-product .arrows {
      display: flex;
      flex-flow: row;
      justify-content: space-between;
      margin-left: 206px;
      width: 40px;
      font-size: 24px;
      position: absolute;
      z-index: 10;
      top: 0;
      left: 0; }
      header .menu-open .feature-product .arrows div {
        cursor: pointer; }
    header .menu-open .feature-product .fanPrice {
      display: flex;
      align-items: center; }
      header .menu-open .feature-product .fanPrice span {
        height: 30px; }
        header .menu-open .feature-product .fanPrice span:first-child {
          padding-right: 12px;
          color: rgba(32, 30, 30, 0.5); }
      header .menu-open .feature-product .fanPrice .center {
        padding-right: 4px; }
        header .menu-open .feature-product .fanPrice .center img {
          cursor: pointer;
          filter: brightness(0); }
          header .menu-open .feature-product .fanPrice .center img:hover {
            filter: none; }
  header .line {
    height: 1px;
    background: rgba(32, 30, 30, 0.1);
    z-index: 1;
    width: 100%; }
    @media only screen and (max-width: 991px) {
      header .line {
        display: none; } }
    header .line.checkout {
      position: absolute;
      top: 43px; }
  header .logo-link {
    /* SECTION LEFT MENU */
    position: absolute;
    left: 43px;
    text-decoration: none;
    color: inherit;
    width: 143px;
    display: flex;
    z-index: 2;
    top: 20px;
    transition: top 0.5s ease-in-out; }
    @media only screen and (max-width: 1199px) {
      header .logo-link {
        left: 24px; } }
    @media only screen and (max-width: 991px) {
      header .logo-link {
        left: 12px; } }
    @media only screen and (max-width: 991px) {
      header .logo-link {
        top: 10px; } }
    header .logo-link .logo-letters-svg {
      background-image: url("/static/images/fpp_name_logo.svg");
      background-repeat: no-repeat;
      height: 15px; }
    header .logo-link .logo-text {
      margin-top: 19px;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 12px;
      line-height: 11px; }
      header .logo-link .logo-text i {
        display: none; }
    header .logo-link .logo-info {
      display: inline-block;
      width: 57px;
      margin-left: 12px;
      margin-top: 0;
      transition: margin-top 0.5s ease-in-out; }
      @media only screen and (max-width: 991px) {
        header .logo-link .logo-info {
          margin-left: 0;
          margin-top: 10px;
          width: 90px; }
          header .logo-link .logo-info .logo-letters-svg {
            display: none; }
          header .logo-link .logo-info .logo-text {
            margin-top: 0;
            position: relative; }
            header .logo-link .logo-info .logo-text i {
              position: absolute;
              right: 0;
              display: inline-block; } }
      header .logo-link .logo-info:hover, header .logo-link .logo-info:focus {
        cursor: pointer; }
    header .logo-link .logo-svg {
      position: relative;
      width: 46px; }
      @media only screen and (max-width: 991px) {
        header .logo-link .logo-svg {
          width: 20px;
          margin-right: 16px; }
          header .logo-link .logo-svg .color,
          header .logo-link .logo-svg .white {
            height: 27px;
            width: 20px; } }
      header .logo-link .logo-svg img {
        position: absolute;
        right: 0;
        top: 0;
        width: 46px;
        height: 60px;
        transition: width 0.5s ease-in-out, height 0.5s ease-in-out; }
        @media (max-width: 1200px) {
          header .logo-link .logo-svg img {
            height: 55px; } }
        header .logo-link .logo-svg img.white {
          opacity: 0; }
        header .logo-link .logo-svg img.color {
          opacity: 1; }
    header .logo-link a {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 10;
      left: 0; }
      @media only screen and (max-width: 991px) {
        header .logo-link a {
          width: 20px;
          height: 30px; } }
  header .toggle-menu {
    display: none;
    font-size: 22px;
    position: absolute;
    top: 80px;
    left: 12px;
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out; }
    @media only screen and (max-width: 991px) {
      header .toggle-menu {
        display: inline; }
        header .toggle-menu:hover, header .toggle-menu:focus {
          cursor: pointer; } }
    header .toggle-menu i:first-child {
      /*adds area to click on menu*/ }
      @media only screen and (max-width: 991px) {
        header .toggle-menu i:first-child {
          height: 20px;
          width: 20px;
          position: absolute;
          left: 0; } }
      @media only screen and (max-width: 991px) {
        header .toggle-menu i:first-child {
          display: inline; } }
    @media only screen and (max-width: 991px) {
      header .toggle-menu i:nth-child(2) {
        display: none;
        z-index: 1;
        position: absolute;
        left: 35px;
        font-size: 26px; } }
  header .widgets {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 10px;
    top: 0;
    right: 100px; }
    @media only screen and (max-width: 1199px) {
      header .widgets {
        right: 50px; } }
    @media only screen and (max-width: 991px) {
      header .widgets {
        right: 24px; } }
    @media only screen and (max-width: 991px) {
      header .widgets {
        right: 12px; } }
    header .widgets .top {
      display: flex;
      align-items: center;
      z-index: 10;
      height: 28px; }
      @media only screen and (max-width: 991px) {
        header .widgets .top {
          flex-flow: column;
          z-index: unset; } }
      header .widgets .top .language-picker {
        margin-right: 20px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 12px;
        line-height: 20px;
        text-transform: uppercase; }
      header .widgets .top .link {
        margin-right: 6px; }
        @media only screen and (max-width: 991px) {
          header .widgets .top .link {
            display: flex;
            align-self: flex-end;
            margin-top: 5px;
            margin-bottom: 10px;
            transition: margin-top 0.5s ease-in-out, margin-bottom 0.5s ease-in-out; } }
        header .widgets .top .link a {
          color: inherit;
          text-decoration: none; }
        header .widgets .top .link .checkbox-label a {
          text-decoration: underline; }
          header .widgets .top .link .checkbox-label a:focus, header .widgets .top .link .checkbox-label a:hover {
            text-decoration: none; }
      header .widgets .top .bag-content {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        z-index: 1;
        width: 39px;
        margin-top: 0;
        transition: margin-top 0.5s ease-in-out; }
        header .widgets .top .bag-content .side-bar.open .spinner {
          margin-left: 12px; }
        @media only screen and (min-width: 992px) {
          header .widgets .top .bag-content .icon-bag-empty,
          header .widgets .top .bag-content .icon-bag-empty-white {
            margin-left: 8px; }
          header .widgets .top .bag-content .spinner {
            left: 60%; } }
        @media only screen and (max-width: 991px) {
          header .widgets .top .bag-content {
            position: absolute;
            top: 57px !important;
            right: 0;
            z-index: 5; }
            header .widgets .top .bag-content .basket {
              display: flex;
              justify-content: center; }
              header .widgets .top .bag-content .basket > span {
                display: flex;
                justify-content: center; }
            header .widgets .top .bag-content .icon-bag,
            header .widgets .top .bag-content .icon-bag-white,
            header .widgets .top .bag-content .icon-bag-empty,
            header .widgets .top .bag-content .icon-bag-empty-white {
              height: 17px;
              width: 17px;
              z-index: 0; } }
        header .widgets .top .bag-content:before {
          content: "";
          height: 3px;
          width: 30px;
          background-color: #37f899;
          position: absolute;
          top: 26px;
          right: 0; }
          @media only screen and (max-width: 991px) {
            header .widgets .top .bag-content:before {
              content: none; } }
        header .widgets .top .bag-content .basket-data-container {
          display: flex;
          align-items: center; }
        header .widgets .top .bag-content .quantity {
          font-family: "octin_college_bold", sans-serif;
          vertical-align: text-top;
          display: inline-block;
          font-size: 16px;
          text-align: right;
          position: relative;
          z-index: 1;
          padding: 0 2px;
          margin-top: 1px;
          margin-right: 4px; }
          @media only screen and (max-width: 991px) {
            header .widgets .top .bag-content .quantity {
              position: absolute;
              z-index: 1;
              color: #37f899;
              font-size: 12px;
              top: 9px;
              margin-right: 1px; } }
          header .widgets .top .bag-content .quantity:hover, header .widgets .top .bag-content .quantity:focus {
            cursor: pointer; }
    header .widgets .bottom {
      margin-top: 20px;
      transition: margin-top 0.5s ease-in-out;
      z-index: 10;
      width: 30px;
      align-self: flex-end;
      display: flex;
      justify-content: space-around; }
      @media only screen and (max-width: 991px) {
        header .widgets .bottom {
          margin-top: 40px;
          width: 70px;
          z-index: unset; } }
      header .widgets .bottom .search-content {
        width: fit-content;
        margin-top: -5px; }
        @media only screen and (max-width: 991px) {
          header .widgets .bottom .search-content {
            margin-top: unset; }
            header .widgets .bottom .search-content i {
              margin-right: 45px; } }
        header .widgets .bottom .search-content .icon {
          font-size: 22px; }
        header .widgets .bottom .search-content .search {
          margin-left: 10px;
          font-family: "Barlow Condensed", sans-serif;
          font-weight: 600;
          letter-spacing: 1px;
          font-size: 12px;
          line-height: 20px;
          text-transform: uppercase;
          opacity: 1;
          transition: opacity 0.5s ease-in-out; }
          @media only screen and (max-width: 991px) {
            header .widgets .bottom .search-content .search {
              display: none; } }
        header .widgets .bottom .search-content .icon:hover,
        header .widgets .bottom .search-content .icon:focus,
        header .widgets .bottom .search-content .search:hover,
        header .widgets .bottom .search-content .search:focus {
          cursor: pointer; }
      @media only screen and (max-width: 991px) {
        header .widgets .bottom .search-bar-container.open i {
          margin-right: 10px; }
        header .widgets .bottom .search-bar-container .close-search-bar i {
          margin-right: 0; } }
  header .feature-product .product {
    transition: opacity 0.5s ease-in-out; }
  @media only screen and (max-width: 991px) {
    header .menu-mobile {
      background: #fff;
      position: absolute;
      height: calc(100vh - 100px);
      width: 90vw;
      top: 0;
      padding: 50px 0 50px 12px;
      color: #201e1e;
      display: flex;
      visibility: hidden;
      right: 150vw;
      transition: right 0.8s ease-in-out;
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      /* MENU MOBILE OPEN */ }
      header .menu-mobile .categoryTitle {
        position: relative; }
      header .menu-mobile .active .selected::before {
        content: " ";
        height: 3px;
        border-top: 3px solid #37f899;
        position: absolute;
        top: 50%;
        z-index: -1;
        width: fit-content;
        transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
      header .menu-mobile .active .secondLevelSelected::after {
        content: " ";
        height: 3px;
        border-top: 3px solid #37f899;
        position: absolute;
        top: 24%;
        z-index: -1;
        width: 29%;
        transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
      header .menu-mobile.open {
        visibility: visible;
        right: 10vw;
        transition: right 0.5s ease-in-out; }
      header .menu-mobile #store-menu {
        overflow: scroll;
        height: calc( 100vh - 100px);
        display: block;
        overflow-x: hidden;
        position: fixed;
        top: 50px;
        -webkit-overflow-scrolling: touch; }
        header .menu-mobile #store-menu .selected {
          color: black; }
          header .menu-mobile #store-menu .selected .categoryTitle::after {
            content: " ";
            height: 3px;
            border-top: 3px solid #37f899;
            position: absolute;
            top: 47%;
            left: 0;
            z-index: -1;
            width: 100%;
            transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
        header .menu-mobile #store-menu > li {
          text-transform: uppercase;
          font-family: "Barlow Condensed", sans-serif;
          font-weight: 600;
          font-size: 24px;
          line-height: 36px;
          display: flex;
          flex-flow: column;
          height: 60px;
          box-sizing: content-box;
          padding: 0; }
          header .menu-mobile #store-menu > li:before {
            background-color: rgba(32, 30, 30, 0.05);
            content: "";
            position: absolute;
            right: 0;
            top: -1px;
            height: 1px;
            width: 90vw; }
          header .menu-mobile #store-menu > li.extra-info {
            text-transform: uppercase;
            font-family: "Barlow Condensed", sans-serif;
            font-size: 24px;
            line-height: 36px;
            color: rgba(32, 30, 30, 0.5);
            display: block; }
            header .menu-mobile #store-menu > li.extra-info .categories-menu > li {
              font-size: 20px;
              line-height: 48px;
              padding: 0; }
              header .menu-mobile #store-menu > li.extra-info .categories-menu > li:before {
                content: "";
                position: absolute;
                width: 90vw;
                right: -12px;
                bottom: 0;
                height: 1px;
                background-color: rgba(32, 30, 30, 0.05); }
              header .menu-mobile #store-menu > li.extra-info .categories-menu > li a {
                padding-left: 36px; }
          header .menu-mobile #store-menu > li:not(.active) ul {
            display: none; }
          header .menu-mobile #store-menu > li.active {
            height: auto; }
            header .menu-mobile #store-menu > li.active:before,
            header .menu-mobile #store-menu > li.active .categories-menu li:last-child:before {
              background-color: #37f899; }
            header .menu-mobile #store-menu > li.active .categories-menu {
              display: inline;
              opacity: 1;
              height: auto; }
              header .menu-mobile #store-menu > li.active .categories-menu li:not(.active) ul {
                display: none; }
            header .menu-mobile #store-menu > li.active .categories-submenu {
              opacity: 1;
              height: 100%; }
          header .menu-mobile #store-menu > li > span,
          header .menu-mobile #store-menu > li > a {
            display: flex;
            flex-flow: row;
            justify-content: space-between;
            padding: 12px 12px 12px 24px;
            width: 90vw;
            box-sizing: border-box; }
          header .menu-mobile #store-menu > li .categories-menu {
            padding: 12px 0 0;
            display: none; }
            header .menu-mobile #store-menu > li .categories-menu > li {
              padding: 0;
              display: flex;
              flex-flow: column;
              color: rgba(32, 30, 30, 0.8);
              font-family: "Barlow Condensed", sans-serif;
              font-size: 20px;
              font-weight: 600;
              line-height: 48px; }
              header .menu-mobile #store-menu > li .categories-menu > li:before {
                content: "";
                position: absolute;
                bottom: 0;
                height: 1px;
                background-color: rgba(32, 30, 30, 0.05); }
              header .menu-mobile #store-menu > li .categories-menu > li > span,
              header .menu-mobile #store-menu > li .categories-menu > li > a {
                display: flex;
                justify-content: space-between;
                padding-left: 36px;
                box-sizing: border-box;
                width: calc(90vw - 12px); }
              header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu {
                padding: 0 12px;
                display: flex;
                flex-flow: column;
                opacity: 0;
                height: 0; }
                header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu .selected {
                  color: black; }
                  header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu .selected a {
                    color: black; }
                  header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu .selected::before {
                    content: " ";
                    height: 3px;
                    border-top: 3px solid #37f899;
                    position: absolute;
                    top: 47%;
                    left: 0;
                    z-index: -1;
                    width: 100%;
                    transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
                header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu .categoryTitle {
                  position: relative; }
                header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li {
                  padding: 0 5px;
                  left: 31px;
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 28px; }
                  header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li a {
                    position: relative;
                    color: rgba(32, 30, 30, 0.5);
                    width: 100%;
                    /* hover subcategories */ }
                    header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li a:before {
                      content: none;
                      height: 2px;
                      border-top: 3px solid #37f899;
                      position: absolute;
                      top: 50%;
                      left: -10px;
                      z-index: -1;
                      width: 0;
                      transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
                    header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li a:hover, header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li a:focus {
                      color: #201e1e; }
                      header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li a:hover:before, header .menu-mobile #store-menu > li .categories-menu > li .categories-submenu li a:focus:before {
                        width: calc(100% + 20px);
                        transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
              header .menu-mobile #store-menu > li .categories-menu > li .shapeshifter {
                margin-top: 12px;
                margin-right: 12px; }
        header .menu-mobile #store-menu a {
          text-decoration: none;
          color: inherit;
          width: calc(100% - 10px); }
        header .menu-mobile #store-menu .categories-menu {
          height: 0;
          opacity: 0; }
          header .menu-mobile #store-menu .categories-menu > li:before {
            right: 0;
            width: 90vw;
            background-color: #37f899; }
          header .menu-mobile #store-menu .categories-menu > li.active .categories-submenu {
            opacity: 1;
            height: 100%; }
          header .menu-mobile #store-menu .categories-menu > li .categories-submenu {
            opacity: 0;
            height: 0;
            text-align: left; }
            header .menu-mobile #store-menu .categories-menu > li .categories-submenu li {
              /* hover subcategories effect*/ }
              header .menu-mobile #store-menu .categories-menu > li .categories-submenu li a {
                color: rgba(32, 30, 30, 0.5); }
                header .menu-mobile #store-menu .categories-menu > li .categories-submenu li a:before {
                  width: 0;
                  transition: width 0.5s ease-in-out, color 0.5s ease-in-out; }
                header .menu-mobile #store-menu .categories-menu > li .categories-submenu li a:hover, header .menu-mobile #store-menu .categories-menu > li .categories-submenu li a:focus {
                  color: #201e1e; }
                  header .menu-mobile #store-menu .categories-menu > li .categories-submenu li a:hover:before, header .menu-mobile #store-menu .categories-menu > li .categories-submenu li a:focus:before {
                    width: calc(100% + 20px);
                    transition: width 0.5s ease-in-out, color 0.5s ease-in-out; } }
  header ul.menu-top {
    opacity: 1;
    transition: opacity 0.5s ease-in-out; }
    @media only screen and (max-width: 991px) {
      header ul.menu-top {
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
        position: fixed;
        bottom: 0;
        left: 0;
        background: #fff;
        color: #201e1e;
        opacity: 0;
        bottom: -150vh;
        transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out; }
        header ul.menu-top.open {
          opacity: 1;
          bottom: 0;
          transition: opacity 0.5s ease-in-out, bottom 0.5s ease-in-out; }
        header ul.menu-top .title {
          margin: 36px 0 12px;
          font-family: "Barlow Condensed", sans-serif;
          font-size: 16px;
          font-weight: 600;
          line-height: 16px;
          justify-content: center; }
        header ul.menu-top .subtitle {
          font-family: "octin_college_bold", sans-serif;
          letter-spacing: 1px;
          font-size: 14px;
          line-height: 34px;
          margin-left: 30px; }
        header ul.menu-top li {
          padding: 3px 0;
          margin-left: 30px;
          line-height: 42px;
          letter-spacing: 1px;
          font-size: 16px;
          display: flex; }
          header ul.menu-top li i {
            display: flex;
            flex-flow: column;
            justify-content: center;
            margin-left: 10px; } }
  header .menu-top {
    opacity: 1;
    transition: opacity 0.5s ease-in-out; }
  @media only screen and (max-width: 991px) {
    header .desktop-md {
      display: none !important; }
    header .page-top {
      margin-top: 100px; }
    header .hidden-mobile-md {
      display: none; } }

/* SPECIAL HEIGHT FOR SAFARI ON IOS AND ANDROID BROWSERS TO SHOW ALL COMPONENTS IN THE MENU MOBILE */
@media only screen and (max-width: 991px) {
  .main-container.safari-mobile header .menu-mobile #store-menu, .main-container.android-mobile header .menu-mobile #store-menu {
    height: calc(100vh - 180px); } }

.feature-product .bullets {
  position: absolute;
  top: 210px;
  left: 240px;
  font-size: 12px;
  z-index: 10;
  transform: skew(-15deg); }

.feature-product .bullets__link {
  display: inline;
  cursor: pointer;
  background-color: #201e1e;
  opacity: 0.5;
  padding-right: 1px;
  margin-right: 8px;
  height: 10px; }

.feature-product .bullets__link--active {
  opacity: 1; }

.menu-hover {
  z-index: 9 !important; }

.menu-index {
  z-index: initial !important; }

.icon-compressed {
  top: -3px; }

.icon-uncompressed {
  top: -12px; }

.divider {
  display: none; }
  @media only screen and (max-width: 991px) {
    .divider {
      display: block;
      width: 90vw;
      margin-top: 8px;
      padding: 0 10px;
      border-top: 1px solid rgba(0, 0, 0, 0.05); }
      .divider.isWhite {
        border-top: 1px solid rgba(255, 255, 255, 0.2); }
      .divider.compressed {
        display: none; } }

.puma-icon {
  margin-right: 4px;
  min-width: 26px; }

.icon-menu-button {
  z-index: 999999; }

@media only screen and (max-width: 991px) {
  .hide-mobile {
    z-index: 0; } }

.breadcrumbs {
  display: flex;
  font-family: "Barlow Condensed", sans-serif; }
  @media only screen and (min-width: 768px) {
    .breadcrumbs {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767px) {
    .breadcrumbs {
      display: flex;
      color: #201e1e;
      line-height: 16px;
      width: calc(100% - 32px);
      padding-left: 32px;
      padding-bottom: 15px;
      transition: top 0.5s ease-in-out, left 0.5s ease-in-out; }
      .breadcrumbs a {
        color: inherit;
        text-decoration: none;
        display: flex; }
        .breadcrumbs a i {
          margin: 0 12px; }
      .breadcrumbs.top {
        margin-top: 30px; } }

.breadcrumbs__link {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none; }
  .breadcrumbs__link:link, .breadcrumbs__link:active, .breadcrumbs__link:visited {
    text-decoration: none; }
  .breadcrumbs__link:hover {
    text-decoration: underline; }
  @media only screen and (max-width: 767px) {
    .breadcrumbs__link {
      width: fit-content;
      font-weight: 600;
      font-size: 14px; } }

.breadcrumbs__arrow {
  margin: 0 14px; }

/* NORMAL BANNER */
.banner-container {
  position: relative;
  overflow: hidden; }
  .banner-container.white {
    color: #fff; }
    @media only screen and (max-width: 767px) {
      .banner-container.white {
        color: #201e1e; } }
  .banner-container img {
    width: 100%;
    height: 100%; }
  .banner-container .banner-text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center; }
    .banner-container .banner-text.left {
      padding-left: 60px; }
      @media only screen and (max-width: 767px) {
        .banner-container .banner-text.left {
          padding-left: 0; }
          .banner-container .banner-text.left .grid {
            align-self: center; } }
      .banner-container .banner-text.left .banner-intro {
        margin: 0 0 24px 30px;
        justify-content: left; }
        @media only screen and (max-width: 767px) {
          .banner-container .banner-text.left .banner-intro {
            justify-content: center;
            margin: 24px 0 6px 0;
            position: relative; } }
        .banner-container .banner-text.left .banner-intro .border-subtitle {
          left: -30px; }
    .banner-container .banner-text.center {
      text-align: center; }
      .banner-container .banner-text.center .banner-intro {
        justify-content: center; }
        @media only screen and (max-width: 767px) {
          .banner-container .banner-text.center .banner-intro {
            margin: 24px 0 6px 0;
            position: relative; } }
      .banner-container .banner-text.center .grid {
        align-self: center; }
    .banner-container .banner-text.right {
      margin-left: -60px; }
      @media only screen and (max-width: 767px) {
        .banner-container .banner-text.right {
          margin-left: 0; }
          .banner-container .banner-text.right .grid {
            align-self: center; }
          .banner-container .banner-text.right.banner-text > div {
            text-align: center; } }
      .banner-container .banner-text.right .banner-intro {
        justify-content: flex-end;
        padding: 0 30px 0 0; }
        @media only screen and (max-width: 767px) {
          .banner-container .banner-text.right .banner-intro {
            justify-content: center;
            padding: 0;
            margin: 24px 0 6px 0;
            position: relative; } }
        .banner-container .banner-text.right .banner-intro .border-subtitle {
          left: auto;
          right: -30px; }
    .banner-container .banner-text .cell {
      width: 100%; }
    .banner-container .banner-text .flex-column {
      width: 100vw;
      padding: 0 12px; }
    @media (max-width: 767px) {
      .banner-container .banner-text {
        padding-left: 0; } }

/* TOP BANNER */
.banner-top-container {
  margin-bottom: 45px;
  color: #201e1e;
  position: relative;
  overflow: visible;
  z-index: 0;
  height: 85vh;
  /* Catalog banner exception */ }
  .banner-top-container.white .banner-prev,
  .banner-top-container.white .banner-next {
    color: #fff; }
  .banner-top-container.white .banner-prev:hover,
  .banner-top-container.white .banner-next:hover {
    cursor: pointer; }
  .banner-top-container .banner {
    height: 85vh;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.5s ease-in-out, width 0.5s ease-in-out;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    display: flex; }
    .banner-top-container .banner.white {
      color: #fff; }
    .banner-top-container .banner.leaving {
      width: 0%;
      z-index: 2; }
      .banner-top-container .banner.leaving .banner-text {
        opacity: 0;
        transform: translateX(-50px); }
    .banner-top-container .banner .banner-content {
      background-color: #cdcdcd;
      display: flex;
      align-items: center;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%; }
      .banner-top-container .banner .banner-content .image-content {
        height: 85vh;
        width: 100%;
        object-fit: cover;
        object-position: top center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0; }
      .banner-top-container .banner .banner-content .banner-description {
        font-weight: 100; }
    .banner-top-container .banner .banner-text {
      display: inline;
      z-index: 1;
      transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out; }
      .banner-top-container .banner .banner-text .banner-intro {
        margin: 0 0 24px 24px; }
        @media only screen and (max-width: 767px) {
          .banner-top-container .banner .banner-text .banner-intro {
            margin: 0 0 24px; } }
  .banner-top-container .invisible {
    left: 0;
    z-index: 0;
    opacity: 0;
    width: 100%; }
  .banner-top-container .banner-pagination {
    display: inline-flex;
    position: absolute;
    z-index: 3;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%); }
    .banner-top-container .banner-pagination .banner-bullet {
      margin: 0 3px;
      height: 18px;
      width: 2px;
      background-color: rgba(32, 30, 30, 0.1); }
      .banner-top-container .banner-pagination .banner-bullet.active {
        background-color: #201e1e; }
  .banner-top-container .banner-prev,
  .banner-top-container .banner-next {
    color: rgba(32, 30, 30, 0.5);
    font-size: 36px;
    margin: 15px;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
  .banner-top-container .banner-prev:hover,
  .banner-top-container .banner-next:hover {
    cursor: pointer; }
  .banner-top-container .banner-next {
    left: auto;
    right: 0; }
  .banner-top-container.catalog-top {
    overflow: hidden; }
    .banner-top-container.catalog-top .banner .banner-content .image-content {
      position: fixed; }

.banner-top-replacer {
  height: 85vh;
  width: 100%;
  margin-bottom: 45px; }

.home .banner-top-container,
.home .banner {
  height: 85vh; }

/* BANNER CONTENT - shared*/
.banner-top-container .banner-text > .right,
.banner-top-container .right > .banner-text,
.banner-container .banner-text > .right,
.banner-container .right > .banner-text {
  text-align: right; }
  .banner-top-container .banner-text > .right .border-intro,
  .banner-top-container .banner-text > .right .banner-intro,
  .banner-top-container .banner-text > .right .banner-title,
  .banner-top-container .banner-text > .right .banner-description,
  .banner-top-container .right > .banner-text .border-intro,
  .banner-top-container .right > .banner-text .banner-intro,
  .banner-top-container .right > .banner-text .banner-title,
  .banner-top-container .right > .banner-text .banner-description,
  .banner-container .banner-text > .right .border-intro,
  .banner-container .banner-text > .right .banner-intro,
  .banner-container .banner-text > .right .banner-title,
  .banner-container .banner-text > .right .banner-description,
  .banner-container .right > .banner-text .border-intro,
  .banner-container .right > .banner-text .banner-intro,
  .banner-container .right > .banner-text .banner-title,
  .banner-container .right > .banner-text .banner-description {
    width: auto; }
  .banner-top-container .banner-text > .right .border-subtitle,
  .banner-top-container .right > .banner-text .border-subtitle,
  .banner-container .banner-text > .right .border-subtitle,
  .banner-container .right > .banner-text .border-subtitle {
    right: 0;
    margin: 5px 0; }
  .banner-top-container .banner-text > .right .main-btn,
  .banner-top-container .right > .banner-text .main-btn,
  .banner-container .banner-text > .right .main-btn,
  .banner-container .right > .banner-text .main-btn {
    margin: 0; }

.banner-top-container .banner-text > .center,
.banner-top-container .center > .banner-text,
.banner-container .banner-text > .center,
.banner-container .center > .banner-text {
  text-align: center; }
  .banner-top-container .banner-text > .center .border-intro,
  .banner-top-container .banner-text > .center .banner-intro,
  .banner-top-container .banner-text > .center .banner-title,
  .banner-top-container .banner-text > .center .banner-description,
  .banner-top-container .center > .banner-text .border-intro,
  .banner-top-container .center > .banner-text .banner-intro,
  .banner-top-container .center > .banner-text .banner-title,
  .banner-top-container .center > .banner-text .banner-description,
  .banner-container .banner-text > .center .border-intro,
  .banner-container .banner-text > .center .banner-intro,
  .banner-container .banner-text > .center .banner-title,
  .banner-container .banner-text > .center .banner-description,
  .banner-container .center > .banner-text .border-intro,
  .banner-container .center > .banner-text .banner-intro,
  .banner-container .center > .banner-text .banner-title,
  .banner-container .center > .banner-text .banner-description {
    width: auto; }
  .banner-top-container .banner-text > .center .border-subtitle,
  .banner-top-container .center > .banner-text .border-subtitle,
  .banner-container .banner-text > .center .border-subtitle,
  .banner-container .center > .banner-text .border-subtitle {
    right: 0;
    margin: 5px 0; }
  .banner-top-container .banner-text > .center .main-btn,
  .banner-top-container .center > .banner-text .main-btn,
  .banner-container .banner-text > .center .main-btn,
  .banner-container .center > .banner-text .main-btn {
    margin: 0; }

.banner-top-container .banner-text .border-subtitle,
.banner-container .banner-text .border-subtitle {
  position: absolute;
  height: 21px;
  width: 2px;
  margin: 5px 20px 0 2px; }
  .banner-top-container .banner-text .border-subtitle.red,
  .banner-container .banner-text .border-subtitle.red {
    background-color: #ea393b; }

.banner-top-container .banner-text .banner-intro,
.banner-container .banner-text .banner-intro {
  width: 25vw;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 30px;
  display: flex;
  justify-content: left; }
  .banner-top-container .banner-text .banner-intro span,
  .banner-container .banner-text .banner-intro span {
    position: relative; }
    .banner-top-container .banner-text .banner-intro span .border-subtitle,
    .banner-container .banner-text .banner-intro span .border-subtitle {
      position: absolute;
      left: -10px; }

.banner-top-container .banner-text .banner-title,
.banner-container .banner-text .banner-title {
  width: 40vw;
  font-family: "octin_college_bold", sans-serif;
  text-transform: uppercase;
  font-size: 63px;
  letter-spacing: 1px;
  line-height: 56px;
  text-shadow: 14px 10px 13px rgba(0, 0, 0, 0.07);
  margin: 0 0 24px;
  word-wrap: break-word; }
  @media only screen and (max-width: 767px) {
    .banner-top-container .banner-text .banner-title,
    .banner-container .banner-text .banner-title {
      margin: 0 auto; } }

.banner-top-container .banner-text .banner-description,
.banner-container .banner-text .banner-description {
  width: 30vw;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 24px; }

.banner-top-container .banner-text .banner-btns,
.banner-container .banner-text .banner-btns {
  display: inline-flex;
  margin: 12px 0; }

.banner-top-container .banner-text .button,
.banner-container .banner-text .button {
  align-self: left; }

@media only screen and (max-width: 767px) {
  /* NORMAL BANNER */
  .banner-container .banner-text {
    position: relative;
    text-align: center; }
    .banner-container .banner-text .border-subtitle {
      display: none; }
    .banner-container .banner-text .banner-description {
      color: rgba(32, 30, 30, 0.5); }
  /* TOP BANNER */
  .banner-top-container:not(.homepage-top, .nomatch-top) {
    display: none;
    text-align: center; }
    .banner-top-container .banner .banner-content {
      align-self: flex-end;
      flex-flow: column-reverse;
      padding-bottom: 27px; }
      .banner-top-container .banner .banner-content div:first-child {
        margin-bottom: 20px; }
    .banner-top-container .banner-pagination {
      display: none; }
  .homepage-top .banner .banner-content,
  .nomatch-top .banner .banner-content {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    text-align: center; }
    .homepage-top .banner .banner-content > div,
    .nomatch-top .banner .banner-content > div {
      margin-bottom: 40px; }
  /* BANNER CONTENT - shared*/
  .banner-top-container .banner-text,
  .banner-container .banner-text {
    position: relative; }
    .banner-top-container .banner-text .border-subtitle,
    .banner-container .banner-text .border-subtitle {
      display: none; }
    .banner-top-container .banner-text .banner-intro,
    .banner-container .banner-text .banner-intro {
      width: 100%;
      font-size: 16px;
      line-height: 16px;
      display: flex;
      justify-content: center;
      margin: 6px 0; }
      .banner-top-container .banner-text .banner-intro span,
      .banner-container .banner-text .banner-intro span {
        z-index: 1; }
    .banner-top-container .banner-text .banner-title,
    .banner-container .banner-text .banner-title {
      width: 100%;
      font-size: 24px;
      line-height: 19px;
      margin: 0 0 7px; }
    .banner-top-container .banner-text .banner-description,
    .banner-container .banner-text .banner-description {
      width: 100%;
      font-size: 16px;
      line-height: 18px;
      margin: 0 0 27px; }
    .banner-top-container .banner-text .button,
    .banner-container .banner-text .button {
      align-self: center; } }

.video-content video {
  width: 100% !important;
  height: auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-width: 100%;
  min-height: 100%; }

/* Normal Banner with video */
.video-section.video-content {
  height: 60vw; }
  .video-section.video-content video {
    object-fit: contain; }

footer {
  margin-top: 0;
  text-align: center; }
  footer .footer-widgets {
    background-color: rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 0; }
    footer .footer-widgets .widget {
      margin: 65px 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      position: relative; }
      footer .footer-widgets .widget#widget-1 {
        background-image: url("/../static/images/white_official.svg"); }
      footer .footer-widgets .widget#widget-2 {
        background-image: url("/../static/images/white_delivery.svg"); }
        footer .footer-widgets .widget#widget-2:before, footer .footer-widgets .widget#widget-2:after {
          content: "";
          height: 6px;
          width: 6px;
          background-color: #37f899;
          position: absolute;
          top: 50%; }
        footer .footer-widgets .widget#widget-2:before {
          left: 0; }
        footer .footer-widgets .widget#widget-2:after {
          right: 0; }
      footer .footer-widgets .widget#widget-3 {
        background-image: url("/../static/images/white_payment.svg"); }
        footer .footer-widgets .widget#widget-3 img {
          margin-bottom: 5px; }
      footer .footer-widgets .widget .widget-title {
        font-family: "octin_college_bold", sans-serif;
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 16px; }
      footer .footer-widgets .widget .widget-description {
        color: rgba(32, 30, 30, 0.5);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        line-height: 16px; }
      footer .footer-widgets .widget img {
        margin-bottom: 15px; }
  footer .footer-bottom {
    background-color: rgba(32, 30, 30, 0.02);
    z-index: 0;
    position: relative; }
    footer .footer-bottom .footer-social {
      padding: 70px 0 40px;
      font-family: "octin_college_bold", sans-serif;
      letter-spacing: 5px; }
      footer .footer-bottom .footer-social .social-title-1 {
        font-size: 16px;
        line-height: 16px; }
      footer .footer-bottom .footer-social .social-title-2 {
        font-size: 32px;
        line-height: 36px;
        z-index: 1;
        position: relative; }
      footer .footer-bottom .footer-social .social-subtitle {
        margin-bottom: 24px;
        color: rgba(32, 30, 30, 0.5);
        font-size: 12px;
        letter-spacing: 3px;
        line-height: 16px; }
      footer .footer-bottom .footer-social .social-icons {
        display: flex; }
        footer .footer-bottom .footer-social .social-icons a {
          color: #201e1e;
          flex: 1;
          display: flex;
          padding: 0; }
          footer .footer-bottom .footer-social .social-icons a i {
            font-size: 20px;
            line-height: 23px;
            padding: 0;
            width: 100%; }
            footer .footer-bottom .footer-social .social-icons a i.icon-instagram::before {
              left: 50%;
              transform: translateX(-50%); }
          footer .footer-bottom .footer-social .social-icons a:hover, footer .footer-bottom .footer-social .social-icons a:focus {
            color: #ea393b; }
        footer .footer-bottom .footer-social .social-icons a:not(:last-child) i {
          position: relative; }
          footer .footer-bottom .footer-social .social-icons a:not(:last-child) i:after {
            content: "";
            position: absolute;
            right: 0;
            top: 8px;
            height: 6px;
            width: 6px;
            background-color: #37f899; }
      footer .footer-bottom .footer-social .subscribe {
        display: flex;
        position: relative;
        margin: 7px 0 36px;
        justify-content: center; }
        footer .footer-bottom .footer-social .subscribe .green-border {
          z-index: 0;
          width: 100%;
          height: 100%;
          position: absolute;
          padding: 20px;
          top: -20px;
          border-top: 1px solid #37f899; }
          footer .footer-bottom .footer-social .subscribe .green-border:before {
            content: "";
            width: 90%;
            height: 100%;
            position: absolute;
            padding: 10px;
            top: -20px;
            left: 0px;
            border-bottom: 1px solid #37f899; }
          footer .footer-bottom .footer-social .subscribe .green-border:after {
            content: "";
            height: 66px;
            position: absolute;
            top: 0;
            left: 0;
            border-left: 1px solid #37f899; }
        footer .footer-bottom .footer-social .subscribe input {
          height: 50px;
          width: 70%;
          background-color: #fff;
          border: 2px solid #fff;
          z-index: 1;
          padding: 0 52px 0 12px;
          font-family: "Barlow Condensed", sans-serif;
          text-transform: uppercase;
          font-size: 16px;
          letter-spacing: 1px;
          line-height: 19px;
          box-sizing: border-box; }
          footer .footer-bottom .footer-social .subscribe input::placeholder {
            color: rgba(32, 30, 30, 0.5); }
          footer .footer-bottom .footer-social .subscribe input:focus {
            outline: none; }
          footer .footer-bottom .footer-social .subscribe input.error {
            border-color: #ea393b; }
        footer .footer-bottom .footer-social .subscribe .button {
          z-index: 2;
          margin-left: -40px;
          margin-top: 6px;
          margin-bottom: 6px; }
      footer .footer-bottom .footer-social p.error {
        font-family: "Barlow Condensed", sans-serif;
        color: #ea393b;
        text-align: left;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
        color: #ea393b;
        font-size: 14px;
        font-weight: 600;
        line-height: 14px; }
    footer .footer-bottom .container {
      background: rgba(32, 30, 30, 0.04); }
    footer .footer-bottom .footer-divisor {
      border-bottom: 1px solid rgba(32, 30, 30, 0.1); }
    footer .footer-bottom .footer-menu {
      margin: 36px 0 25px; }
      footer .footer-bottom .footer-menu .menu-top {
        display: flex;
        justify-content: center;
        font-family: "octin_college_bold", sans-serif;
        line-height: 24px;
        margin-bottom: 24px; }
        footer .footer-bottom .footer-menu .menu-top ul {
          align-items: center; }
        footer .footer-bottom .footer-menu .menu-top .language-switch .css-15k3avv,
        footer .footer-bottom .footer-menu .menu-top .language-switch .input-field {
          z-index: 2; }
        footer .footer-bottom .footer-menu .menu-top .language-switch .css-11unzgr {
          text-align: left; }
        footer .footer-bottom .footer-menu .menu-top .language-switch .css-vj8t7z {
          width: 100px;
          background-color: #e2e2e2;
          border: none !important;
          border-right: 1px solid rgba(32, 30, 30, 0.1) !important; }
        footer .footer-bottom .footer-menu .menu-top .language-switch .css-xp4uvy {
          color: #201e1e;
          font-size: 13px;
          font-weight: 900;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
        footer .footer-bottom .footer-menu .menu-top .language-switch .css-2o5izw {
          width: 100px; }
        footer .footer-bottom .footer-menu .menu-top .menu-top-links {
          display: flex; }
          footer .footer-bottom .footer-menu .menu-top .menu-top-links > li {
            font-size: 12px;
            line-height: 14px;
            padding: 2.5px 12px; }
            footer .footer-bottom .footer-menu .menu-top .menu-top-links > li:nth-child(1) {
              border-right: 1px solid rgba(32, 30, 30, 0.1);
              height: 100%;
              display: flex;
              justify-content: center;
              flex-direction: column; }
            footer .footer-bottom .footer-menu .menu-top .menu-top-links > li a {
              color: #201e1e;
              text-decoration: none; }
            footer .footer-bottom .footer-menu .menu-top .menu-top-links > li.grey a {
              color: rgba(32, 30, 30, 0.5);
              text-decoration: none; }
      footer .footer-bottom .footer-menu .menu-bottom ul {
        display: flex;
        justify-content: center; }
        footer .footer-bottom .footer-menu .menu-bottom ul li {
          font-family: "octin_college_regular", sans-serif;
          font-size: 12px;
          line-height: 12px;
          padding: 0 12px;
          color: rgba(32, 30, 30, 0.5); }
          footer .footer-bottom .footer-menu .menu-bottom ul li a {
            text-decoration: none;
            color: rgba(32, 30, 30, 0.5); }
      footer .footer-bottom .footer-menu a {
        position: relative;
        display: flex;
        flex-flow: column;
        justify-content: center; }
        footer .footer-bottom .footer-menu a:before {
          content: "";
          position: absolute;
          height: 2px;
          left: -5px;
          background: #37f899;
          width: 0;
          transition: width 0.4s ease-in; }
        footer .footer-bottom .footer-menu a:hover:before, footer .footer-bottom .footer-menu a:focus:before {
          width: calc(100% + 10px);
          transition: width 0.4s ease-in; }
        footer .footer-bottom .footer-menu a span {
          position: relative;
          z-index: 1; }
    footer .footer-bottom .menu-payments {
      margin: 25px 0 85px;
      display: flex;
      flex-flow: row;
      justify-content: center;
      line-height: 40px; }
      footer .footer-bottom .menu-payments img {
        padding: 0 15px; }
        footer .footer-bottom .menu-payments img#paypalImg {
          width: 34px;
          margin-bottom: 3px; }
        footer .footer-bottom .menu-payments img#mastesrcard {
          width: 26.4px; }
        footer .footer-bottom .menu-payments img#mbway {
          width: 35px;
          margin-top: 7px; }
        footer .footer-bottom .menu-payments img#visa {
          width: 24.4px;
          height: 16px; }
        footer .footer-bottom .menu-payments img#multibanco {
          width: 25px;
          margin-top: 4px; }
      footer .footer-bottom .menu-payments span:not(:last-child) {
        position: relative; }
        footer .footer-bottom .menu-payments span:not(:last-child):before {
          content: "";
          position: absolute;
          top: 15px;
          right: 0;
          height: 3px;
          width: 3px;
          background-color: rgba(32, 30, 30, 0.1); }
  footer .menu-footer {
    display: none; }
  @media screen and (min-width: 768px) {
    footer {
      margin-top: 100px; } }

@media only screen and (max-width: 1199px) {
  footer .footer-bottom .footer-menu .menu-top .menu-top-links li {
    width: 12.5%;
    max-width: 12.5%;
    line-height: 14px; } }

@media only screen and (max-width: 991px) {
  footer .footer-divisor,
  footer .footer-menu {
    display: none; }
  footer .footer-bottom .menu-payments {
    margin: 25px 0 0; }
  footer .footer-widgets .widget img {
    margin-right: auto;
    margin-left: auto; }
  footer .footer-widgets .widget#widget-2:after, footer .footer-widgets .widget#widget-2:before {
    display: none; }
  footer .menu-footer {
    bottom: 0;
    width: calc(90vw - 24px);
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 16px 12px;
    margin-bottom: 100px; }
    footer .menu-footer .copyrights {
      color: rgba(32, 30, 30, 0.5);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      line-height: 14px;
      text-align: left;
      margin: 0; }
    footer .menu-footer .language-switch {
      font-family: "octin_college_bold", sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      line-height: 24px;
      padding-left: 20px;
      border-left: 1px solid rgba(32, 30, 30, 0.1); }
      footer .menu-footer .language-switch:hover, footer .menu-footer .language-switch:focus {
        cursor: pointer; }
      footer .menu-footer .language-switch i {
        padding-left: 15px; } }

.catalog-container {
  margin-top: -215px;
  position: relative;
  /* PRODUCTS */ }
  @media only screen and (max-width: 767px) {
    .catalog-container {
      margin-top: 0px;
      padding-top: 66px; } }
  .catalog-container.no-banner {
    margin-top: 120px; }
    @media only screen and (max-width: 767px) {
      .catalog-container.no-banner {
        margin-top: 0; } }
    .catalog-container.no-banner:before {
      content: none; }
  .catalog-container:not(.no-banner):before {
    content: "";
    position: absolute;
    top: 170px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee; }
    @media only screen and (max-width: 767px) {
      .catalog-container:not(.no-banner):before {
        content: none; } }
  .catalog-container .empty {
    background: #fff;
    text-align: center;
    height: 60vh;
    display: flex;
    flex-flow: column;
    justify-content: center; }
    .catalog-container .empty .text {
      color: rgba(32, 30, 30, 0.5);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 20px;
      line-height: 28px;
      width: 200px;
      align-self: center;
      margin-top: 26px; }
  .catalog-container .catalog-head {
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    background: transparent;
    padding-bottom: 45px; }
    @media only screen and (max-width: 1199px) {
      .catalog-container .catalog-head {
        margin: 0rem 0 1rem;
        padding-bottom: 0px; } }
    .catalog-container .catalog-head:not(.ghost) {
      z-index: 1;
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .catalog-container .catalog-head:not(.ghost) h1.category-name {
        flex: 1;
        padding-right: 24px; }
      @media only screen and (max-width: 767px) {
        .catalog-container .catalog-head:not(.ghost) {
          position: static;
          padding: 0;
          padding-left: 32px;
          width: calc(100% - 94px); } }
      .catalog-container .catalog-head:not(.ghost).compressed {
        position: fixed;
        margin: 0;
        padding: 20px 100px;
        width: calc(100% - 200px);
        left: 0;
        z-index: 3;
        top: 54px;
        background: #fff;
        transition: 0.5s 0.01s background ease-in-out; }
        @media only screen and (max-width: 1199px) {
          .catalog-container .catalog-head:not(.ghost).compressed {
            width: calc(100% - 100px);
            padding: 20px 50px; } }
        @media only screen and (max-width: 991px) {
          .catalog-container .catalog-head:not(.ghost).compressed {
            width: calc(100% - 150px);
            height: 50px;
            padding: 0px 75px;
            top: 0px;
            position: fixed;
            z-index: 10;
            background-color: transparent;
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 50px;
            padding-left: 0;
            left: 75px; }
            .catalog-container .catalog-head:not(.ghost).compressed h1.category-name {
              font-size: 12px !important; } }
        .catalog-container .catalog-head:not(.ghost).compressed h1.category-name {
          font-size: 32px;
          transition: 0.5s font-size ease;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          line-clamp: 2;
          -webkit-box-orient: vertical; }
    .catalog-container .catalog-head.ghost {
      display: none; }
    .catalog-container .catalog-head h1.category-name {
      font-family: "octin_college_bold", sans-serif;
      line-height: 44px;
      text-shadow: 14px 10px 13px rgba(0, 0, 0, 0.07);
      text-transform: uppercase;
      font-size: 52px;
      transition: 0.5s font-size ease; }
    .catalog-container .catalog-head .filters {
      align-items: end; }
      @media only screen and (max-width: 767px) {
        .catalog-container .catalog-head .filters {
          max-width: 100%;
          width: 100%; } }
    @media only screen and (max-width: 767px) {
      .catalog-container .catalog-head h1.category-name {
        font-size: 16px;
        line-height: 16px;
        color: #201e1e;
        font-family: 600;
        padding-right: 0 !important; } }
  .catalog-container .products-container {
    position: relative;
    margin: 0 -23px; }
    @media only screen and (max-width: 767px) {
      .catalog-container .products-container {
        margin: 0 -12px; }
        .catalog-container .products-container:hover, .catalog-container .products-container:focus {
          z-index: 0; }
          .catalog-container .products-container:hover .content.first-product .product-images .product-bg.second, .catalog-container .products-container:focus .content.first-product .product-images .product-bg.second {
            display: none; }
          .catalog-container .products-container:hover .content.first-product .product-details, .catalog-container .products-container:focus .content.first-product .product-details {
            padding-top: 12px; }
          .catalog-container .products-container:hover .content .product-details:before, .catalog-container .products-container:focus .content .product-details:before {
            content: none; }
          .catalog-container .products-container:hover .content img, .catalog-container .products-container:focus .content img {
            display: inline; }
            .catalog-container .products-container:hover .content img.second, .catalog-container .products-container:focus .content img.second {
              display: none; } }
    .catalog-container .products-container .product {
      padding: 0 23px;
      height: 100%;
      padding-bottom: 25px;
      text-align: center;
      font-size: 16px;
      line-height: 19px;
      position: relative;
      z-index: 1;
      transition: z-index 1s; }
      @media only screen and (max-width: 767px) {
        .catalog-container .products-container .product {
          padding: 0 1px;
          z-index: 0; } }
      .catalog-container .products-container .product:hover .product-details {
        position: relative; }
        .catalog-container .products-container .product:hover .product-details .swatches {
          position: relative; }
        .catalog-container .products-container .product:hover .product-details .button {
          position: relative; }
      .catalog-container .products-container .product .content {
        position: relative; }
        @media only screen and (max-width: 767px) {
          .catalog-container .products-container .product .content {
            padding-bottom: 25px;
            z-index: 0; }
            .catalog-container .products-container .product .content .h100 {
              height: auto; } }
        .catalog-container .products-container .product .content.first-product {
          height: 100%; }
          @media only screen and (max-width: 767px) {
            .catalog-container .products-container .product .content.first-product {
              padding-bottom: 25px; } }
          @media only screen and (max-width: 767px) {
            .catalog-container .products-container .product .content.first-product .product-images {
              height: auto; } }
          .catalog-container .products-container .product .content.first-product .product-images .product-bg {
            background-size: cover;
            position: relative;
            height: 100%; }
            @media only screen and (max-width: 767px) {
              .catalog-container .products-container .product .content.first-product .product-images .product-bg {
                display: none; } }
            .catalog-container .products-container .product .content.first-product .product-images .product-bg.second {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%; }
              @media only screen and (max-width: 767px) {
                .catalog-container .products-container .product .content.first-product .product-images .product-bg.second {
                  display: none; } }
          .catalog-container .products-container .product .content.first-product .product-details {
            max-height: none; }
            .catalog-container .products-container .product .content.first-product .product-details:before {
              top: 0; }
            .catalog-container .products-container .product .content.first-product .product-details .button {
              align-self: center;
              width: auto; }
        .catalog-container .products-container .product .content .product-images {
          overflow: hidden;
          position: relative;
          line-height: 0;
          height: calc(100% - 125px); }
          .catalog-container .products-container .product .content .product-images a {
            font-size: 0; }
          .catalog-container .products-container .product .content .product-images img {
            position: relative;
            z-index: 1;
            font-size: 20px;
            line-height: 20px; }
            .catalog-container .products-container .product .content .product-images img.second {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%; }

.product-details {
  max-height: 80px;
  position: relative;
  padding-top: 12px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .product-details {
      height: auto; }
      .product-details .button {
        display: none; } }
  .product-details:before {
    background: #fff;
    content: "";
    width: 100%;
    position: absolute;
    top: -5px;
    left: 0; }
  .product-details .tag {
    position: absolute;
    font-family: "octin_college_bold", sans-serif;
    width: 60px;
    text-transform: uppercase;
    line-height: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 2;
    top: -50px;
    left: -6px;
    height: 30px;
    width: 85px; }
    @media only screen and (max-width: 767px) {
      .product-details .tag {
        left: 0; } }
    .product-details .tag.pre_sale {
      width: 85px; }
    .product-details .tag.sale {
      background-color: #ea393b;
      color: #fff; }
    .product-details .tag.new {
      background-color: #37f899; }
  .product-details .swatches {
    justify-content: center;
    margin: 0;
    padding-bottom: 0;
    height: auto; }
    @media only screen and (max-width: 767px) {
      .product-details .swatches {
        opacity: 1;
        margin-bottom: 10px; } }
    .product-details .swatches li {
      height: 16px;
      width: 16px; }
      .product-details .swatches li:hover {
        cursor: default; }
  .product-details .title {
    font-family: "Barlow Condensed", sans-serif;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    white-space: initial;
    margin-left: auto;
    margin-right: auto;
    padding-right: 5px;
    padding-left: 5px; }
    .product-details .title a {
      color: inherit;
      text-decoration: none; }
  .product-details .price .promo :first-child {
    color: rgba(32, 30, 30, 0.5);
    font-size: 12px;
    line-height: 14px;
    padding-right: 8px; }
  .product-details .price .fanPrice {
    display: flex;
    align-items: center;
    justify-content: center; }
    .product-details .price .fanPrice span {
      padding-right: 8px;
      display: flex;
      align-items: center; }
    .product-details .price .fanPrice span:nth-child(1) {
      color: rgba(32, 30, 30, 0.5);
      padding-right: 10px; }
    .product-details .price .fanPrice span:nth-child(2) {
      padding-right: 4px; }
    .product-details .price .fanPrice span:nth-child(4) {
      display: none; }
    .product-details .price .fanPrice small {
      display: none; }
    .product-details .price .fanPrice img {
      width: 16px;
      height: auto;
      cursor: pointer;
      filter: brightness(0); }
      .product-details .price .fanPrice img:hover {
        filter: none; }
    .product-details .price .fanPrice [data-tooltip]:after {
      font-size: 15px;
      letter-spacing: 0.33px;
      line-height: 14px;
      padding: 7px 9px 10px;
      font-family: "Barlow Condensed", sans-serif;
      text-align: left; }
  .product-details .btn-container {
    position: absolute;
    width: 100%; }
    .product-details .btn-container .button {
      align-self: center; }

.black-text {
  color: #000000 !important; }

.container-has-infobar .catalog-container {
  margin-top: 180px; }
  @media only screen and (max-width: 767px) {
    .container-has-infobar .catalog-container {
      margin-top: 46px; } }

.slider-products {
  padding-top: 110px;
  position: relative; }
  .slider-products .slick-disabled {
    display: none !important; }
  @media only screen and (max-width: 991px) {
    .slider-products {
      margin-right: -24px;
      margin-left: -24px;
      box-sizing: border-box; } }
  @media only screen and (max-width: 767px) {
    .slider-products {
      margin-right: -12px;
      margin-left: -12px; } }
  .slider-products .slick-initialized .slick-slide {
    display: flex;
    align-items: center; }
  .slider-products .slick-slide img {
    height: auto;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    position: relative; }
  .slider-products .slick-slide .video {
    overflow: hidden;
    height: 100%;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .slider-products .slick-slide .video {
        width: 100%;
        height: auto;
        overflow: hidden; } }
  .slider-products .slick-slide video {
    height: 100%;
    aspect-ratio: 10/12;
    object-fit: cover;
    transform: translateY(-50%);
    top: 50%;
    position: relative; }
  .slider-products .slick-slide > a {
    margin: 0;
    display: flex;
    align-items: center;
    overflow: visible;
    height: 100%;
    position: relative; }
    .slider-products .slick-slide > a img {
      height: 100%;
      width: auto; }
  .slider-products .slick-slide.double span {
    top: auto;
    left: 0;
    height: 19px; }
  .slider-products .slick-list {
    margin: 0 -6px;
    overflow: visible; }
    @media only screen and (max-width: 991px) {
      .slider-products .slick-list {
        margin: 0; } }
  .slider-products .slick-arrow {
    width: 100%;
    z-index: 1;
    text-align: center; }
    .slider-products .slick-arrow.slick-prev, .slider-products .slick-arrow.slick-next {
      position: absolute;
      bottom: 10vh;
      left: 25vw;
      width: 38px;
      height: 38px;
      transform: translateX(-100%); }
    .slider-products .slick-arrow.slick-next {
      margin-left: 50px; }
      @media only screen and (max-width: 767px) {
        .slider-products .slick-arrow.slick-next {
          right: 18px; } }
    @media only screen and (max-width: 767px) {
      .slider-products .slick-arrow.slick-prev {
        left: 12px; } }
  .slider-products ul,
  .slider-products .slick-track {
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex; }
    .slider-products ul:before,
    .slider-products .slick-track:before {
      content: "";
      width: 100%;
      height: calc(100% - 170px);
      position: absolute;
      margin: 85px -48px;
      background: rgba(32, 30, 30, 0.02); }
    .slider-products ul.mobile,
    .slider-products .slick-track.mobile {
      display: none; }
  .slider-products li,
  .slider-products .slick-slide {
    width: auto;
    height: 80vh;
    display: inline-block;
    padding: 0 6px;
    position: relative; }
    .slider-products li a,
    .slider-products .slick-slide a {
      position: relative;
      display: block;
      overflow: hidden; }
    .slider-products li img,
    .slider-products .slick-slide img {
      height: 100%;
      transform-origin: center;
      left: 0;
      width: auto;
      transform: translate(0); }
      .slider-products li img.second,
      .slider-products .slick-slide img.second {
        opacity: 0;
        transform: scale(1);
        transition: opacity 0.3s ease-in, transform 0.3s ease-in;
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important; }
      @media only screen and (max-width: 991px) {
        .slider-products li img,
        .slider-products .slick-slide img {
          width: 100%;
          height: auto; } }
    .slider-products li .product-details ul:before,
    .slider-products .slick-slide .product-details ul:before {
      display: none; }
    .slider-products li .product-details li,
    .slider-products .slick-slide .product-details li {
      padding: 0; }
    .slider-products li .product-images > a,
    .slider-products .slick-slide .product-images > a {
      box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 75px 39px -57px rgba(0, 0, 0, 0.08), 0 18px 31px -32px rgba(0, 0, 0, 0.27), 0 27px 28px -10px rgba(0, 0, 0, 0.05); }
    @media only screen and (min-width: 992px) {
      .slider-products li .product:hover .product-details, .slider-products li .product:focus .product-details,
      .slider-products .slick-slide .product:hover .product-details,
      .slider-products .slick-slide .product:focus .product-details {
        position: relative; }
        .slider-products li .product:hover .product-details:before, .slider-products li .product:focus .product-details:before,
        .slider-products .slick-slide .product:hover .product-details:before,
        .slider-products .slick-slide .product:focus .product-details:before {
          box-shadow: 0 25px 15px -30px rgba(0, 0, 0, 0.5), 0 25px 30px -10px rgba(32, 30, 30, 0.1);
          height: calc(100% + 58px);
          transition: height 0.3s ease-out, box-shadow 3s ease-out; }
        .slider-products li .product:hover .product-details .swatches, .slider-products li .product:focus .product-details .swatches,
        .slider-products .slick-slide .product:hover .product-details .swatches,
        .slider-products .slick-slide .product:focus .product-details .swatches {
          position: relative;
          margin-top: 0;
          opacity: 1;
          transition: opacity 0.3s ease-in, margin-top 0.5s ease-out;
          transition-delay: 0.1s; } }
    @media only screen and (min-width: 992px) and (max-width: 991px) {
      .slider-products li .product:hover .product-details .swatches, .slider-products li .product:focus .product-details .swatches,
      .slider-products .slick-slide .product:hover .product-details .swatches,
      .slider-products .slick-slide .product:focus .product-details .swatches {
        padding: 30px 0; } }
    @media only screen and (min-width: 992px) {
        .slider-products li .product:hover .product-details .button, .slider-products li .product:focus .product-details .button,
        .slider-products .slick-slide .product:hover .product-details .button,
        .slider-products .slick-slide .product:focus .product-details .button {
          position: relative;
          margin-top: 23px;
          opacity: 1;
          transition: opacity 0.3s ease-in, margin-top 0.5s ease-out;
          transition-delay: 0.1s; }
      .slider-products li .product:hover img, .slider-products li .product:focus img,
      .slider-products .slick-slide .product:hover img,
      .slider-products .slick-slide .product:focus img {
        transform: scale(1.1);
        transition: transform 3s ease-in; }
        .slider-products li .product:hover img.second, .slider-products li .product:focus img.second,
        .slider-products .slick-slide .product:hover img.second,
        .slider-products .slick-slide .product:focus img.second {
          opacity: 1;
          transition: transform 3s ease-in, opacity 0.3s ease-in;
          transition-delay: 0s, 0.7s; } }
    .slider-products li.double,
    .slider-products .slick-slide.double {
      width: auto; }
      .slider-products li.double > :first-child,
      .slider-products li.double > :nth-child(2),
      .slider-products .slick-slide.double > :first-child,
      .slider-products .slick-slide.double > :nth-child(2) {
        opacity: 0; }
        .slider-products li.double > :first-child .product-details,
        .slider-products li.double > :nth-child(2) .product-details,
        .slider-products .slick-slide.double > :first-child .product-details,
        .slider-products .slick-slide.double > :nth-child(2) .product-details {
          display: none; }
        .slider-products li.double > :first-child img,
        .slider-products li.double > :first-child video,
        .slider-products li.double > :nth-child(2) img,
        .slider-products li.double > :nth-child(2) video,
        .slider-products .slick-slide.double > :first-child img,
        .slider-products .slick-slide.double > :first-child video,
        .slider-products .slick-slide.double > :nth-child(2) img,
        .slider-products .slick-slide.double > :nth-child(2) video {
          height: 50%; }
        .slider-products li.double > :first-child h5,
        .slider-products li.double > :first-child span,
        .slider-products li.double > :nth-child(2) h5,
        .slider-products li.double > :nth-child(2) span,
        .slider-products .slick-slide.double > :first-child h5,
        .slider-products .slick-slide.double > :first-child span,
        .slider-products .slick-slide.double > :nth-child(2) h5,
        .slider-products .slick-slide.double > :nth-child(2) span {
          display: none; }
      .slider-products li.double > :nth-child(3),
      .slider-products li.double > :nth-child(4),
      .slider-products .slick-slide.double > :nth-child(3),
      .slider-products .slick-slide.double > :nth-child(4) {
        position: absolute;
        opacity: 1;
        width: auto;
        transform: none; }
        .slider-products li.double > :nth-child(3) img,
        .slider-products li.double > :nth-child(3) video,
        .slider-products li.double > :nth-child(4) img,
        .slider-products li.double > :nth-child(4) video,
        .slider-products .slick-slide.double > :nth-child(3) img,
        .slider-products .slick-slide.double > :nth-child(3) video,
        .slider-products .slick-slide.double > :nth-child(4) img,
        .slider-products .slick-slide.double > :nth-child(4) video {
          height: 100%;
          width: auto; }
      .slider-products li.double > :nth-child(3),
      .slider-products .slick-slide.double > :nth-child(3) {
        height: 52.37%;
        top: 1.63%;
        left: 4.38%;
        z-index: 1; }
      .slider-products li.double > :nth-child(4),
      .slider-products .slick-slide.double > :nth-child(4) {
        height: 48.5%;
        right: 4.87%;
        bottom: 2.47%; }
    .slider-products li.last a,
    .slider-products .slick-slide.last a {
      padding: 0 10%;
      height: 80%; }
    .slider-products li.last.two a img,
    .slider-products li.last.two a video,
    .slider-products .slick-slide.last.two a img,
    .slider-products .slick-slide.last.two a video {
      height: 100%; }
  .slider-products .slick-prev,
  .slider-products .slick-next {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 36px;
    line-height: 30px;
    width: 36px;
    height: 30px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    transition: opacity 1s ease-in-out;
    cursor: pointer; }
    .slider-products .slick-prev i,
    .slider-products .slick-next i {
      font-size: 36px;
      line-height: 20px; }
    .slider-products .slick-prev.disabled,
    .slider-products .slick-next.disabled {
      opacity: 0;
      z-index: -1; }

@media only screen and (max-width: 991px) {
  .productsDetailsSection {
    background: rgba(0, 0, 0, 0.02); }
    .productsDetailsSection .sideDetails {
      z-index: 4;
      top: 1.5rem; } }

.productsDetailsSection .product_pre_sale {
  position: absolute;
  top: 130px;
  left: 0;
  width: auto;
  padding: 0 8px;
  background-color: #37f899;
  color: #201e1e;
  font-family: "octin_college_bold", sans-serif;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 30px; }

.gallery-fullscreen {
  position: fixed;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.5s ease-in-out;
  background: #fff; }
  .gallery-fullscreen li {
    opacity: 0;
    position: absolute;
    overflow: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: opacity 0.5s ease-in-out; }
    .gallery-fullscreen li img,
    .gallery-fullscreen li video {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      .gallery-fullscreen li img:hover, .gallery-fullscreen li img:focus,
      .gallery-fullscreen li video:hover,
      .gallery-fullscreen li video:focus {
        cursor: url("../../static/images/cursor_close.svg") 20 20, pointer; }
    .gallery-fullscreen li.active {
      opacity: 1; }
  .gallery-fullscreen.active {
    opacity: 1;
    visibility: visible; }

.fullscreen-navigation {
  position: absolute;
  top: 50vh;
  display: flex;
  justify-content: space-between;
  width: calc(100vw - 64px);
  left: 32px;
  height: 0;
  font-size: 20px; }
  .fullscreen-navigation .next:hover, .fullscreen-navigation .next:focus,
  .fullscreen-navigation .prev:hover,
  .fullscreen-navigation .prev:focus {
    cursor: pointer; }

.productInfo {
  margin-top: 60px;
  background: white;
  width: calc(100% - 324px); }
  @media only screen and (max-width: 1199px) {
    .productInfo {
      width: calc(100% - 274px); } }
  @media only screen and (max-width: 991px) {
    .productInfo {
      width: 100%;
      margin-top: 0;
      background: transparent; } }
  .productInfo .grid:nth-child(1) .cell {
    border-bottom: 1px solid #eee; }
    @media only screen and (max-width: 991px) {
      .productInfo .grid:nth-child(1) .cell {
        border-bottom: none; } }
  .productInfo .grid:nth-child(2) .cell:nth-child(1),
  .productInfo .grid:nth-child(1) .cell:nth-child(2) {
    border-right: 1px solid #eee; }
    @media only screen and (max-width: 991px) {
      .productInfo .grid:nth-child(2) .cell:nth-child(1),
      .productInfo .grid:nth-child(1) .cell:nth-child(2) {
        border-right: none; } }
  @media only screen and (max-width: 991px) {
    .productInfo .grid:nth-child(1) .cell:nth-child(1) {
      margin-bottom: 36px; }
    .productInfo .grid:nth-child(1) .cell:nth-child(2) .open .text {
      padding: 15px 0 12px; }
    .productInfo .grid:nth-child(1) .cell:nth-child(2) .open .reference {
      padding-bottom: 36px; }
    .productInfo .reverse-row {
      flex-flow: column; } }
  .productInfo .info {
    padding: 60px 100px; }
    @media only screen and (max-width: 1199px) {
      .productInfo .info {
        padding: 60px 50px; }
        .productInfo .info.social {
          position: relative;
          top: 1.5rem; } }
    @media only screen and (max-width: 991px) {
      .productInfo .info {
        padding: 0; }
        .productInfo .info.social .title {
          display: none; }
        .productInfo .info .reference {
          color: rgba(32, 30, 30, 0.5);
          text-transform: uppercase;
          font-family: "Barlow Condensed", sans-serif;
          font-size: 12px;
          line-height: 14px;
          letter-spacing: 1px;
          padding-bottom: 0; } }
    .productInfo .info .title {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 21px;
      white-space: initial; }
      @media only screen and (max-width: 991px) {
        .productInfo .info .title {
          box-shadow: inset 0 1px 0 0 rgba(32, 30, 30, 0.05);
          line-height: 24px;
          padding: 18px 0;
          display: flex;
          justify-content: space-between; } }
    .productInfo .info .text {
      margin-top: 24px;
      color: rgba(32, 30, 30, 0.8);
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 300;
      line-height: 21px; }
    .productInfo .info .social-icons {
      display: flex;
      flex-flow: row;
      justify-content: space-around;
      font-size: 24px;
      margin-top: 32px; }
      @media only screen and (max-width: 991px) {
        .productInfo .info .social-icons {
          margin-top: 0;
          justify-content: center; } }
      .productInfo .info .social-icons a {
        padding: 0 12px; }
        @media only screen and (max-width: 991px) {
          .productInfo .info .social-icons a {
            margin: 0 18px; } }
    .productInfo .info b {
      font-weight: 400; }
  .productInfo .subText {
    margin-top: 21px; }
    .productInfo .subText .title {
      font-family: 'Roboto', sans-serif;
      font-weight: 400;
      color: rgba(32, 30, 30, 0.8); }
    .productInfo .subText .text {
      margin-top: 0;
      font-weight: 300; }

.sideDetails {
  background: #fff;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 250px;
  padding: 0 100px 0 50px;
  color: rgba(32, 30, 30, 0.5);
  font-family: "Barlow Condensed", sans-serif;
  z-index: 4; }
  @media only screen and (max-width: 1199px) {
    .sideDetails {
      width: 300px;
      padding: 0 50px 0 50px; } }
  @media only screen and (max-width: 991px) {
    .sideDetails {
      background: transparent;
      position: relative;
      width: 100%;
      padding: 0; } }
  @media only screen and (max-width: 767px) {
    .sideDetails {
      z-index: 5; } }
  .sideDetails.fixed {
    justify-content: center; }
    .sideDetails.fixed .sideContent {
      height: 100vh;
      position: fixed;
      padding-right: 100px;
      top: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow-y: scroll;
      -ms-overflow-style: none;
      overflow: -moz-scrollbars-none; }
      .sideDetails.fixed .sideContent::-webkit-scrollbar {
        display: none; }
      @media only screen and (max-width: 1199px) {
        .sideDetails.fixed .sideContent {
          width: 300px;
          padding-right: 50px; } }
  .sideDetails .sideContent {
    width: 250px;
    padding-bottom: 50px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-flow: column; }
    @media only screen and (max-width: 991px) {
      .sideDetails .sideContent {
        width: 100%;
        text-align: center;
        padding-bottom: 0; } }
    .sideDetails .sideContent > div {
      width: 250px; }
      @media only screen and (max-width: 1199px) {
        .sideDetails .sideContent > div {
          width: 300px; } }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent > div {
          width: 100%; } }
    .sideDetails .sideContent .pre_sale {
      background-color: #37f899;
      color: #201e1e;
      line-height: 30px;
      width: 85px;
      padding: 5px 16px;
      font-family: "octin_college_bold", sans-serif;
      text-transform: uppercase;
      line-height: 30px;
      font-size: 12px;
      text-align: center;
      letter-spacing: 1px; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent .pre_sale {
          line-height: 25px;
          bottom: 8px;
          width: 70px;
          font-size: 11px;
          padding: 0 8px; } }
    .sideDetails .sideContent .basket_pre_sale {
      position: absolute;
      bottom: 20px;
      left: 0;
      width: 62px;
      padding: 0 8px;
      background-color: #37f899;
      color: #201e1e;
      font-family: "octin_college_bold", sans-serif;
      text-transform: uppercase;
      line-height: 25px;
      font-size: 11px;
      text-align: center;
      letter-spacing: 1px; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent .basket_pre_sale {
          width: 70px;
          bottom: 8px; } }
      @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
        .sideDetails .sideContent .basket_pre_sale {
          width: auto;
          line-height: 20px;
          font-size: 8px; } }
    .sideDetails .sideContent .pre_sale_date {
      margin-top: 8px; }
    .sideDetails .sideContent .pre_sale_date_mobile {
      width: 100%;
      display: inline-block;
      padding: 20px 0; }
    .sideDetails .sideContent h1.name {
      margin: 26px 0 6px;
      color: #201e1e;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 20px;
      line-height: 24px; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent h1.name {
          margin: 39px 0 6px; } }
    .sideDetails .sideContent .reference {
      text-transform: uppercase;
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 24px; }
    @media only screen and (max-width: 991px) {
      .sideDetails .sideContent .price-container {
        display: flex;
        justify-content: center; } }
    .sideDetails .sideContent .price-container .price {
      color: rgba(32, 30, 30, 0.8);
      font-family: "octin_college_regular", sans-serif;
      font-size: 24px;
      line-height: 29px;
      margin-bottom: 24px; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent .price-container .price {
          display: flex;
          justify-content: center;
          margin-bottom: 10px;
          color: rgba(32, 30, 30, 0.5); } }
      .sideDetails .sideContent .price-container .price .promo {
        display: flex;
        align-items: center; }
        .sideDetails .sideContent .price-container .price .promo :first-child {
          color: rgba(32, 30, 30, 0.8);
          font-size: 16px;
          line-height: 19px;
          padding-right: 12px; }
      .sideDetails .sideContent .price-container .price .fanPrice {
        display: flex;
        align-items: center; }
        .sideDetails .sideContent .price-container .price .fanPrice span {
          padding-left: 0px;
          padding-right: 12px;
          display: flex;
          align-items: center; }
        .sideDetails .sideContent .price-container .price .fanPrice span:nth-child(1) {
          color: rgba(32, 30, 30, 0.5); }
        .sideDetails .sideContent .price-container .price .fanPrice span:nth-child(2) {
          padding-right: 4px; }
        .sideDetails .sideContent .price-container .price .fanPrice span:nth-child(3) {
          color: #201e1e; }
        .sideDetails .sideContent .price-container .price .fanPrice span:nth-child(4) {
          display: none;
          width: 100%;
          color: #201e1e;
          font-family: "Barlow Condensed", sans-serif;
          font-size: 12px;
          font-weight: 600;
          letter-spacing: 0.3px;
          line-height: 14px;
          text-align: center;
          margin-top: 10px; }
        .sideDetails .sideContent .price-container .price .fanPrice img {
          cursor: pointer;
          filter: brightness(0); }
          .sideDetails .sideContent .price-container .price .fanPrice img:hover {
            filter: none; }
        .sideDetails .sideContent .price-container .price .fanPrice small {
          display: none; }
        .sideDetails .sideContent .price-container .price .fanPrice [data-tooltip]:after {
          font-size: 15px;
          letter-spacing: 0.33px;
          line-height: 14px;
          padding: 7px 9px 10px;
          font-family: "Barlow Condensed", sans-serif;
          text-align: left;
          white-space: pre-wrap; }
        @media only screen and (min-width: 992px) {
          .sideDetails .sideContent .price-container .price .fanPrice [data-tooltip]:after {
            width: 145px; } }
        @media only screen and (max-width: 991px) {
          .sideDetails .sideContent .price-container .price .fanPrice {
            flex-wrap: wrap;
            justify-content: center; }
            .sideDetails .sideContent .price-container .price .fanPrice [data-tooltip]:after,
            .sideDetails .sideContent .price-container .price .fanPrice [data-tooltip]:before {
              display: none !important; }
            .sideDetails .sideContent .price-container .price .fanPrice span:nth-child(4) {
              display: block; }
            .sideDetails .sideContent .price-container .price .fanPrice small {
              display: block; } }
    .sideDetails .sideContent .price-container .custom-price {
      line-height: 28px;
      color: #ea393b;
      padding-left: 16px; }
      @media only screen and (min-width: 992px) {
        .sideDetails .sideContent .price-container .custom-price {
          display: none; } }
    .sideDetails .sideContent .atributeLabel {
      font-size: 12px;
      line-height: 14px;
      margin-bottom: 11px;
      text-transform: uppercase; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent .atributeLabel {
          text-transform: none;
          font-size: 16px;
          color: #201e1e;
          font-weight: 600; } }
    @media (max-width: 767px) {
      .sideDetails .sideContent .atributeLabel.colors {
        display: none; } }
    .sideDetails .sideContent .sizeguideLink {
      color: rgba(32, 30, 30, 0.8);
      font-family: "Barlow Condensed", sans-serif;
      text-decoration: underline;
      font-size: 12px;
      line-height: 14px;
      float: right; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent .sizeguideLink {
          position: absolute;
          bottom: 35px;
          right: 0;
          left: 0;
          align-self: center; } }
    .sideDetails .sideContent .locked-action-info {
      color: #ea393b;
      margin-bottom: 12px;
      font-family: "Barlow Condensed";
      font-display: swap;
      font-size: 12px;
      letter-spacing: 0.3px;
      line-height: 14px; }
      @media only screen and (max-width: 991px) {
        .sideDetails .sideContent .locked-action-info {
          margin-top: 0;
          margin-bottom: 42px; } }
    @media only screen and (min-width: 992px) {
      .sideDetails .sideContent .locked-action-button {
        width: 100%; } }
    .sideDetails .sideContent .locked-action-button a {
      width: 100%;
      display: flex;
      justify-content: center; }

@media only screen and (max-width: 991px) {
  .slider-products .slick-prev,
  .slider-products .slick-next {
    background-color: rgba(255, 255, 255, 0.8); }
  .slider-products .mobile .last {
    width: 65vw; }
  .slider-products .slick-arrow {
    top: 50%;
    transform: translateY(-50%); }
    .slider-products .slick-arrow.slick-prev, .slider-products .slick-arrow.slick-next {
      transform: translateX(0); }
    .slider-products .slick-arrow.slick-prev {
      left: 24px; }
    .slider-products .slick-arrow.slick-next {
      left: auto;
      right: 24px; }
  .slider-products ul,
  .slider-products .slick-track {
    height: 100%;
    overflow: hidden; }
    .slider-products ul.mobile,
    .slider-products .slick-track.mobile {
      display: block; }
  .slider-products li,
  .slider-products .slick-slide {
    max-height: 74vh;
    height: auto;
    padding: 0;
    width: 100vw;
    margin: 0; }
    .slider-products li > a,
    .slider-products .slick-slide > a {
      width: 100%;
      margin: 0; }
      .slider-products li > a img,
      .slider-products li > a video,
      .slider-products .slick-slide > a img,
      .slider-products .slick-slide > a video {
        height: 100%;
        width: 100%;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        object-fit: cover;
        overflow: hidden;
        position: static;
        transform: none; }
    .slider-products li.last,
    .slider-products .slick-slide.last {
      width: 100vw;
      height: auto; }
      .slider-products li.last a,
      .slider-products .slick-slide.last a {
        padding: 0;
        height: 100%; }
    .slider-products li.double img,
    .slider-products li.double video,
    .slider-products .slick-slide.double img,
    .slider-products .slick-slide.double video {
      width: 100vw; }
      .slider-products li.double img:nth-child(3), .slider-products li.double img:nth-child(4),
      .slider-products li.double video:nth-child(3),
      .slider-products li.double video:nth-child(4),
      .slider-products .slick-slide.double img:nth-child(3),
      .slider-products .slick-slide.double img:nth-child(4),
      .slider-products .slick-slide.double video:nth-child(3),
      .slider-products .slick-slide.double video:nth-child(4) {
        height: auto;
        left: 0;
        top: 0; }
  .slider-products .prev,
  .slider-products .next {
    background-color: transparent; }
  .sideDetails .sideContent {
    /* mobile attributes/sizes modals */ }
    .sideDetails .sideContent .go-back {
      display: none; }
    .sideDetails .sideContent .swatches {
      position: relative;
      top: 0;
      display: flex;
      justify-content: center; }
      .sideDetails .sideContent .swatches li {
        height: 26px;
        width: 26px; }
    .sideDetails .sideContent .mobile-md-fixed {
      z-index: 1; }
      .sideDetails .sideContent .mobile-md-fixed.z4 {
        z-index: 4; }
    .sideDetails .sideContent .sizes,
    .sideDetails .sideContent .attributes {
      position: fixed;
      background: #fff;
      width: calc(100vw - 24px);
      height: 100px;
      left: 0;
      z-index: 1;
      padding: 36px 12px 65px 12px; }
      .sideDetails .sideContent .sizes > span,
      .sideDetails .sideContent .attributes > span {
        display: flex;
        justify-content: center; }
      .sideDetails .sideContent .sizes .size-container,
      .sideDetails .sideContent .attributes .size-container {
        display: flex;
        justify-content: center;
        padding: 0; } }

@media only screen and (max-width: 991px) {
  .notify-button {
    height: 48px !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9 !important; }
    .notify-button.hover::before {
      width: 100% !important; } }

@media (max-width: 991px) {
  .no-stock {
    margin-top: 6px;
    margin-left: -12px;
    margin-bottom: 0px; }
    .no-stock-label {
      position: absolute;
      top: -15px;
      background: #d1d1d1 !important; }
    .no-stock-text {
      margin-bottom: 25px !important;
      margin-left: 6px; } }

.no-stock-label {
  text-transform: uppercase;
  padding: 6px 16px;
  float: left;
  background: #d8d8d8;
  font-family: "octin_college_bold", sans-serif;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px; }

.no-stock-text {
  float: left;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.35px;
  color: #ea393b;
  font-weight: 600;
  margin-bottom: 24px; }

.disable-click {
  pointer-events: none;
  opacity: 0.4; }

.sold-out {
  color: rgba(32, 30, 30, 0.8);
  font-family: "Barlow Condensed", sans-serif;
  text-decoration: underline;
  font-size: 15px;
  line-height: 14px;
  float: left;
  width: 100%;
  cursor: pointer;
  margin: 8px 0;
  padding: 15px 0; }

.atributeLabel {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 11px;
  text-transform: uppercase; }

.fanPrice__wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 4px; }

.fanPrice__icon {
  filter: brightness(0);
  margin-right: 4px; }

.fanPrice__tag {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #201e1e;
  text-transform: uppercase;
  line-height: 12px;
  font-family: 600;
  font-weight: 400; }

.priceItems__old {
  font-family: "octin_college_regular", sans-serif;
  font-size: 12px;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5); }

.sizes .no-stock {
  flex-direction: row; }

.error .input-field {
  margin-bottom: 6px; }

.error .message {
  color: #ea393b;
  margin-bottom: 30px; }

.productDetailsGallery {
  padding-top: 110px; }
  .productDetailsGallery .video-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 10/12;
    position: relative;
    overflow: hidden; }
    .productDetailsGallery .video-wrapper .placeholder {
      opacity: 0;
      z-index: 0;
      position: relative;
      margin: 0 !important;
      width: 100% !important; }
    .productDetailsGallery .video-wrapper video {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover; }
  .productDetailsGallery img,
  .productDetailsGallery video {
    width: 100%;
    margin: 0 12px; }
    @media only screen and (max-width: 991px) {
      .productDetailsGallery img,
      .productDetailsGallery video {
        margin: 0;
        height: 100%;
        object-fit: cover;
        object-position: center; } }
    .productDetailsGallery img:hover, .productDetailsGallery img:focus,
    .productDetailsGallery video:hover,
    .productDetailsGallery video:focus {
      cursor: url("../../static/images/cursor_open.svg") 13 13, pointer; }
      @media only screen and (max-width: 991px) {
        .productDetailsGallery img:hover, .productDetailsGallery img:focus,
        .productDetailsGallery video:hover,
        .productDetailsGallery video:focus {
          cursor: default; } }
  .productDetailsGallery video {
    aspect-ratio: 10/12;
    object-fit: cover;
    object-position: center; }
  .productDetailsGallery .slick-list {
    position: relative;
    margin: 0 -100px !important;
    width: calc(100% - 200px) !important; }
    @media only screen and (max-width: 1199px) {
      .productDetailsGallery .slick-list {
        top: 1.5rem;
        width: calc(100% - 150px) !important; } }
    @media only screen and (max-width: 991px) {
      .productDetailsGallery .slick-list {
        margin: -24px !important;
        width: calc(100% + 48px) !important; } }
    .productDetailsGallery .slick-list:before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      left: 50px;
      width: 100%;
      height: calc(100% - 170px);
      margin: 85px 0;
      background: rgba(32, 30, 30, 0.02); }
  .productDetailsGallery .slick-track {
    display: flex;
    margin-right: 88px;
    margin-left: 88px; }
    @media only screen and (max-width: 991px) {
      .productDetailsGallery .slick-track {
        margin-right: 0;
        margin-left: 0; } }
  .productDetailsGallery .slick-slide {
    aspect-ratio: 10/12;
    overflow: hidden;
    max-height: 80vh; }
    @media only screen and (max-width: 1199px) {
      .productDetailsGallery .slick-slide {
        max-height: 100%; } }
    .productDetailsGallery .slick-slide.last {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-self: center; }
      .productDetailsGallery .slick-slide.last.only {
        display: block; }
        @media only screen and (max-width: 1199px) {
          .productDetailsGallery .slick-slide.last.only {
            display: block;
            max-height: -webkit-fill-available; } }
      .productDetailsGallery .slick-slide.last img,
      .productDetailsGallery .slick-slide.last .video,
      .productDetailsGallery .slick-slide.last .video-wrapper {
        width: calc(100% - 100px); }
      .productDetailsGallery .slick-slide.last.first img {
        height: 100%;
        width: auto !important;
        object-fit: contain !important;
        align-self: flex-start; }
      .productDetailsGallery .slick-slide.last.first video {
        width: auto !important;
        aspect-ratio: unset; }
      .productDetailsGallery .slick-slide.last.doubled img,
      .productDetailsGallery .slick-slide.last.doubled .video,
      .productDetailsGallery .slick-slide.last.doubled .video-wrapper {
        width: calc(100% - 25px); }
      .productDetailsGallery .slick-slide.last.doubled > div:nth-child(2) img,
      .productDetailsGallery .slick-slide.last.doubled > div:nth-child(2) .video-wrapper {
        margin-top: -65px;
        margin-left: -65px; }
    .productDetailsGallery .slick-slide.doubled {
      display: flex;
      flex-direction: column; }
      .productDetailsGallery .slick-slide.doubled > div {
        width: 50%; }
        .productDetailsGallery .slick-slide.doubled > div:nth-child(1) {
          z-index: 1; }
          .productDetailsGallery .slick-slide.doubled > div:nth-child(1) img,
          .productDetailsGallery .slick-slide.doubled > div:nth-child(1) .video-wrapper {
            margin-top: 30px;
            margin-left: 30px; }
        .productDetailsGallery .slick-slide.doubled > div:nth-child(2) {
          align-self: flex-end;
          z-index: 0; }
          .productDetailsGallery .slick-slide.doubled > div:nth-child(2) img,
          .productDetailsGallery .slick-slide.doubled > div:nth-child(2) .video-wrapper {
            margin-top: -45px;
            margin-left: -15px; }
  .productDetailsGallery .slick-arrow {
    position: absolute;
    z-index: 1;
    top: 70%;
    left: 50%;
    width: 36px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: opacity 1s ease-in-out;
    cursor: pointer;
    transform: translate(calc(50% - 166px)); }
    @media only screen and (max-width: 1199px) {
      .productDetailsGallery .slick-arrow {
        transform: translate(calc(50% - 141px)); } }
    @media only screen and (max-width: 991px) {
      .productDetailsGallery .slick-arrow {
        top: 50%;
        left: 0;
        transform: translate(0, -50%); } }
    .productDetailsGallery .slick-arrow i {
      font-size: 37px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .productDetailsGallery .slick-arrow.slick-next {
      margin-left: 48px; }
      @media only screen and (max-width: 991px) {
        .productDetailsGallery .slick-arrow.slick-next {
          right: 0;
          left: auto; } }
  .productDetailsGallery .slick-dots {
    display: flex;
    justify-content: center;
    position: relative;
    width: calc(100% - 324px);
    top: 80px;
    left: 0; }
    .productDetailsGallery .slick-dots ul {
      background-color: rgba(32, 30, 30, 0.05);
      display: flex;
      justify-content: center;
      position: relative;
      padding: 6px 12px; }
    .productDetailsGallery .slick-dots li {
      border: 1px solid transparent;
      margin: 0 5px;
      aspect-ratio: 10/12;
      height: 36px;
      cursor: pointer; }
      .productDetailsGallery .slick-dots li.slick-active {
        border: 1px solid #ea393b; }
        .productDetailsGallery .slick-dots li.slick-active + .double {
          border: 1px solid #ea393b; }
    .productDetailsGallery .slick-dots img {
      height: 100%;
      width: auto;
      aspect-ratio: 10/12;
      margin: 0; }
      .productDetailsGallery .slick-dots img:hover, .productDetailsGallery .slick-dots img:focus {
        cursor: pointer; }

.side-bar {
  background: #fff;
  height: 100vh;
  width: 400px;
  padding-top: 15px;
  position: absolute;
  z-index: 2;
  top: -17px;
  right: -500px;
  transition: right 0.2s ease-out;
  /*transform: translateX(210px);
    transition: transform 0.2s ease-out;*/
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }
  @media only screen and (max-width: 767px) {
    .side-bar {
      right: -770px; } }
  .side-bar.open {
    right: -115px;
    transition: right 0.6s ease-out;
    /*transform: translateX(-250px);
        transition: transform 0.6s ease-out;*/ }
    @media only screen and (max-width: 1199px) {
      .side-bar.open {
        right: -50px;
        transition: right 0.6s ease-out; } }
    @media only screen and (max-width: 767px) {
      .side-bar.open {
        right: 0; }
        .side-bar.open .cart-resume {
          right: 0;
          transition: right 0.6s ease-out; } }
  @media only screen and (max-width: 767px) {
    .side-bar .cart-resume {
      right: -770px;
      transition: right 0.2s ease-out; } }
  .side-bar .login-container,
  .side-bar .recovery-container,
  .side-bar .register-container,
  .side-bar .cart-container,
  .side-bar .notify-container {
    font-family: "Barlow Condensed", sans-serif;
    position: relative;
    margin-right: -100px;
    height: 100vh;
    right: 0;
    top: 0;
    color: #201e1e;
    width: 0;
    height: calc(100vh - 40px);
    width: 385px;
    padding: 15px 70px 36px 50px;
    overflow-x: hidden; }
    .side-bar .login-container .head,
    .side-bar .recovery-container .head,
    .side-bar .register-container .head,
    .side-bar .cart-container .head,
    .side-bar .notify-container .head {
      display: flex;
      justify-content: space-between;
      margin-bottom: 43px;
      width: 250px;
      align-items: center; }
      @media only screen and (max-width: 991px) {
        .side-bar .login-container .head,
        .side-bar .recovery-container .head,
        .side-bar .register-container .head,
        .side-bar .cart-container .head,
        .side-bar .notify-container .head {
          padding-right: 50px; } }
      @media only screen and (max-width: 767px) {
        .side-bar .login-container .head,
        .side-bar .recovery-container .head,
        .side-bar .register-container .head,
        .side-bar .cart-container .head,
        .side-bar .notify-container .head {
          width: calc(100% - 24px); } }
      .side-bar .login-container .head .sidebar-extra-title,
      .side-bar .recovery-container .head .sidebar-extra-title,
      .side-bar .register-container .head .sidebar-extra-title,
      .side-bar .cart-container .head .sidebar-extra-title,
      .side-bar .notify-container .head .sidebar-extra-title {
        font-family: "octin_college_regular", sans-serif;
        line-height: 19px;
        margin-right: 12px; }
        @media only screen and (max-width: 767px) {
          .side-bar .login-container .head .sidebar-extra-title,
          .side-bar .recovery-container .head .sidebar-extra-title,
          .side-bar .register-container .head .sidebar-extra-title,
          .side-bar .cart-container .head .sidebar-extra-title,
          .side-bar .notify-container .head .sidebar-extra-title {
            display: flex;
            align-items: center; } }
      .side-bar .login-container .head .sidebar-title,
      .side-bar .recovery-container .head .sidebar-title,
      .side-bar .register-container .head .sidebar-title,
      .side-bar .cart-container .head .sidebar-title,
      .side-bar .notify-container .head .sidebar-title {
        font-family: "octin_college_regular", sans-serif;
        line-height: 19px;
        position: relative;
        font-size: 16px; }
        .side-bar .login-container .head .sidebar-title:not(.no-green):after,
        .side-bar .recovery-container .head .sidebar-title:not(.no-green):after,
        .side-bar .register-container .head .sidebar-title:not(.no-green):after,
        .side-bar .cart-container .head .sidebar-title:not(.no-green):after,
        .side-bar .notify-container .head .sidebar-title:not(.no-green):after {
          content: "";
          background: #37f899;
          width: 100%;
          height: 4px;
          position: absolute;
          bottom: -5px;
          left: 0px; }
        .side-bar .login-container .head .sidebar-title.bold,
        .side-bar .recovery-container .head .sidebar-title.bold,
        .side-bar .register-container .head .sidebar-title.bold,
        .side-bar .cart-container .head .sidebar-title.bold,
        .side-bar .notify-container .head .sidebar-title.bold {
          font-family: "octin_college_bold", sans-serif;
          font-size: 20px; }
      .side-bar .login-container .head .sidebar-close,
      .side-bar .recovery-container .head .sidebar-close,
      .side-bar .register-container .head .sidebar-close,
      .side-bar .cart-container .head .sidebar-close,
      .side-bar .notify-container .head .sidebar-close {
        font-size: 24px; }
        .side-bar .login-container .head .sidebar-close:hover, .side-bar .login-container .head .sidebar-close:focus,
        .side-bar .recovery-container .head .sidebar-close:hover,
        .side-bar .recovery-container .head .sidebar-close:focus,
        .side-bar .register-container .head .sidebar-close:hover,
        .side-bar .register-container .head .sidebar-close:focus,
        .side-bar .cart-container .head .sidebar-close:hover,
        .side-bar .cart-container .head .sidebar-close:focus,
        .side-bar .notify-container .head .sidebar-close:hover,
        .side-bar .notify-container .head .sidebar-close:focus {
          cursor: pointer; }
    .side-bar .login-container .body,
    .side-bar .recovery-container .body,
    .side-bar .register-container .body,
    .side-bar .cart-container .body,
    .side-bar .notify-container .body {
      padding: 44px 85px 0 0;
      overflow-y: auto;
      overflow-x: hidden;
      height: calc(100vh - 250px);
      margin-right: 50px;
      width: 250px; }
      @media only screen and (max-width: 1199px) {
        .side-bar .login-container .body,
        .side-bar .recovery-container .body,
        .side-bar .register-container .body,
        .side-bar .cart-container .body,
        .side-bar .notify-container .body {
          padding: 44px 100px 0 0; } }
      @media only screen and (max-width: 991px) {
        .side-bar .login-container .body,
        .side-bar .recovery-container .body,
        .side-bar .register-container .body,
        .side-bar .cart-container .body,
        .side-bar .notify-container .body {
          padding: 44px 75px 0 0; } }
      @media only screen and (max-width: 767px) {
        .side-bar .login-container .body,
        .side-bar .recovery-container .body,
        .side-bar .register-container .body,
        .side-bar .cart-container .body,
        .side-bar .notify-container .body {
          width: calc(100% - 24px); } }
      @media only screen and (max-width: 575px) {
        .side-bar .login-container .body,
        .side-bar .recovery-container .body,
        .side-bar .register-container .body,
        .side-bar .cart-container .body,
        .side-bar .notify-container .body {
          width: calc(100% - 12px); } }
      .side-bar .login-container .body .title,
      .side-bar .login-container .body .subtitle,
      .side-bar .recovery-container .body .title,
      .side-bar .recovery-container .body .subtitle,
      .side-bar .register-container .body .title,
      .side-bar .register-container .body .subtitle,
      .side-bar .cart-container .body .title,
      .side-bar .cart-container .body .subtitle,
      .side-bar .notify-container .body .title,
      .side-bar .notify-container .body .subtitle {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 24px;
        line-height: 28px;
        text-transform: uppercase; }
      .side-bar .login-container .body .title,
      .side-bar .recovery-container .body .title,
      .side-bar .register-container .body .title,
      .side-bar .cart-container .body .title,
      .side-bar .notify-container .body .title {
        font-weight: 400;
        letter-spacing: 0; }
      .side-bar .login-container .body .subtitle,
      .side-bar .recovery-container .body .subtitle,
      .side-bar .register-container .body .subtitle,
      .side-bar .cart-container .body .subtitle,
      .side-bar .notify-container .body .subtitle {
        font-weight: 600;
        margin-bottom: 36px; }
      .side-bar .login-container .body .text,
      .side-bar .recovery-container .body .text,
      .side-bar .register-container .body .text,
      .side-bar .cart-container .body .text,
      .side-bar .notify-container .body .text {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        line-height: 24px;
        margin: 36px 0;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0.3px; }
        .side-bar .login-container .body .text .input-radio,
        .side-bar .recovery-container .body .text .input-radio,
        .side-bar .register-container .body .text .input-radio,
        .side-bar .cart-container .body .text .input-radio,
        .side-bar .notify-container .body .text .input-radio {
          font-size: 12px; }
        .side-bar .login-container .body .text .resend .button,
        .side-bar .recovery-container .body .text .resend .button,
        .side-bar .register-container .body .text .resend .button,
        .side-bar .cart-container .body .text .resend .button,
        .side-bar .notify-container .body .text .resend .button {
          width: calc(100% - 150px);
          position: absolute;
          bottom: 80px; }
          .side-bar .login-container .body .text .resend .button i,
          .side-bar .recovery-container .body .text .resend .button i,
          .side-bar .register-container .body .text .resend .button i,
          .side-bar .cart-container .body .text .resend .button i,
          .side-bar .notify-container .body .text .resend .button i {
            margin-left: 12px; }
        .side-bar .login-container .body .text .resend div,
        .side-bar .recovery-container .body .text .resend div,
        .side-bar .register-container .body .text .resend div,
        .side-bar .cart-container .body .text .resend div,
        .side-bar .notify-container .body .text .resend div {
          position: absolute;
          bottom: 144px;
          width: calc(100% - 150px);
          font-size: 12px;
          line-height: 24px; }
          .side-bar .login-container .body .text .resend div span,
          .side-bar .recovery-container .body .text .resend div span,
          .side-bar .register-container .body .text .resend div span,
          .side-bar .cart-container .body .text .resend div span,
          .side-bar .notify-container .body .text .resend div span {
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: underline; }
        .side-bar .login-container .body .text strong,
        .side-bar .recovery-container .body .text strong,
        .side-bar .register-container .body .text strong,
        .side-bar .cart-container .body .text strong,
        .side-bar .notify-container .body .text strong {
          font-weight: 600; }
      .side-bar .login-container .body .secondary-text,
      .side-bar .recovery-container .body .secondary-text,
      .side-bar .register-container .body .secondary-text,
      .side-bar .cart-container .body .secondary-text,
      .side-bar .notify-container .body .secondary-text {
        font-size: 12px;
        line-height: 20px;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0.5px; }
      .side-bar .login-container .body .newsletter,
      .side-bar .recovery-container .body .newsletter,
      .side-bar .register-container .body .newsletter,
      .side-bar .cart-container .body .newsletter,
      .side-bar .notify-container .body .newsletter {
        margin: 24px 0; }
        .side-bar .login-container .body .newsletter .radio,
        .side-bar .recovery-container .body .newsletter .radio,
        .side-bar .register-container .body .newsletter .radio,
        .side-bar .cart-container .body .newsletter .radio,
        .side-bar .notify-container .body .newsletter .radio {
          margin: 12px 0 0; }
          .side-bar .login-container .body .newsletter .radio i,
          .side-bar .recovery-container .body .newsletter .radio i,
          .side-bar .register-container .body .newsletter .radio i,
          .side-bar .cart-container .body .newsletter .radio i,
          .side-bar .notify-container .body .newsletter .radio i {
            line-height: 20px; }
      .side-bar .login-container .body .social,
      .side-bar .recovery-container .body .social,
      .side-bar .register-container .body .social,
      .side-bar .cart-container .body .social,
      .side-bar .notify-container .body .social {
        height: 92px;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        .side-bar .login-container .body .social .facebook,
        .side-bar .login-container .body .social .google,
        .side-bar .recovery-container .body .social .facebook,
        .side-bar .recovery-container .body .social .google,
        .side-bar .register-container .body .social .facebook,
        .side-bar .register-container .body .social .google,
        .side-bar .cart-container .body .social .facebook,
        .side-bar .cart-container .body .social .google,
        .side-bar .notify-container .body .social .facebook,
        .side-bar .notify-container .body .social .google {
          font-family: "octin_college_bold", sans-serif;
          line-height: 36px;
          height: 40px;
          width: auto;
          color: white;
          text-align: center;
          text-transform: uppercase;
          font-size: 12px;
          font-weight: 600;
          letter-spacing: 2px;
          display: flex;
          justify-content: center;
          border: none; }
        .side-bar .login-container .body .social .facebook,
        .side-bar .recovery-container .body .social .facebook,
        .side-bar .register-container .body .social .facebook,
        .side-bar .cart-container .body .social .facebook,
        .side-bar .notify-container .body .social .facebook {
          background-color: #3b5998; }
        .side-bar .login-container .body .social .google,
        .side-bar .recovery-container .body .social .google,
        .side-bar .register-container .body .social .google,
        .side-bar .cart-container .body .social .google,
        .side-bar .notify-container .body .social .google {
          background-color: #ea4335;
          padding-left: 12px; }
        .side-bar .login-container .body .social .google:hover,
        .side-bar .login-container .body .social .google:focus,
        .side-bar .login-container .body .social .facebook:hover,
        .side-bar .login-container .body .social .facebook:focus,
        .side-bar .recovery-container .body .social .google:hover,
        .side-bar .recovery-container .body .social .google:focus,
        .side-bar .recovery-container .body .social .facebook:hover,
        .side-bar .recovery-container .body .social .facebook:focus,
        .side-bar .register-container .body .social .google:hover,
        .side-bar .register-container .body .social .google:focus,
        .side-bar .register-container .body .social .facebook:hover,
        .side-bar .register-container .body .social .facebook:focus,
        .side-bar .cart-container .body .social .google:hover,
        .side-bar .cart-container .body .social .google:focus,
        .side-bar .cart-container .body .social .facebook:hover,
        .side-bar .cart-container .body .social .facebook:focus,
        .side-bar .notify-container .body .social .google:hover,
        .side-bar .notify-container .body .social .google:focus,
        .side-bar .notify-container .body .social .facebook:hover,
        .side-bar .notify-container .body .social .facebook:focus {
          cursor: pointer;
          outline: none; }
        .side-bar .login-container .body .social i,
        .side-bar .recovery-container .body .social i,
        .side-bar .register-container .body .social i,
        .side-bar .cart-container .body .social i,
        .side-bar .notify-container .body .social i {
          font-size: 16px;
          padding-right: 12px; }
      .side-bar .login-container .body .separator,
      .side-bar .recovery-container .body .separator,
      .side-bar .register-container .body .separator,
      .side-bar .cart-container .body .separator,
      .side-bar .notify-container .body .separator {
        margin: 24px 0;
        font-weight: 400;
        font-size: 12px;
        line-height: 24px;
        text-align: center;
        text-transform: uppercase; }
      .side-bar .login-container .body .links,
      .side-bar .recovery-container .body .links,
      .side-bar .register-container .body .links,
      .side-bar .cart-container .body .links,
      .side-bar .notify-container .body .links {
        margin-top: 12px;
        font-size: 12px; }
        .side-bar .login-container .body .links a,
        .side-bar .recovery-container .body .links a,
        .side-bar .register-container .body .links a,
        .side-bar .cart-container .body .links a,
        .side-bar .notify-container .body .links a {
          line-height: 20px;
          font-weight: 600;
          text-transform: uppercase;
          color: #201e1e;
          text-decoration: underline; }
      .side-bar .login-container .body form,
      .side-bar .recovery-container .body form,
      .side-bar .register-container .body form,
      .side-bar .cart-container .body form,
      .side-bar .notify-container .body form {
        display: flex;
        flex-direction: column; }
        .side-bar .login-container .body form .input-field.input-dropdown,
        .side-bar .recovery-container .body form .input-field.input-dropdown,
        .side-bar .register-container .body form .input-field.input-dropdown,
        .side-bar .cart-container .body form .input-field.input-dropdown,
        .side-bar .notify-container .body form .input-field.input-dropdown {
          margin-top: 36px; }
        .side-bar .login-container .body form input:not([type="submit"]),
        .side-bar .recovery-container .body form input:not([type="submit"]),
        .side-bar .register-container .body form input:not([type="submit"]),
        .side-bar .cart-container .body form input:not([type="submit"]),
        .side-bar .notify-container .body form input:not([type="submit"]) {
          width: calc(100% - 15px); }
        .side-bar .login-container .body form input[type="submit"],
        .side-bar .login-container .body form button[type="submit"],
        .side-bar .recovery-container .body form input[type="submit"],
        .side-bar .recovery-container .body form button[type="submit"],
        .side-bar .register-container .body form input[type="submit"],
        .side-bar .register-container .body form button[type="submit"],
        .side-bar .cart-container .body form input[type="submit"],
        .side-bar .cart-container .body form button[type="submit"],
        .side-bar .notify-container .body form input[type="submit"],
        .side-bar .notify-container .body form button[type="submit"] {
          position: absolute;
          bottom: 80px;
          left: 50px; }
        .side-bar .login-container .body form .form-info.error,
        .side-bar .recovery-container .body form .form-info.error,
        .side-bar .register-container .body form .form-info.error,
        .side-bar .cart-container .body form .form-info.error,
        .side-bar .notify-container .body form .form-info.error {
          position: relative;
          bottom: 0; }
      .side-bar .login-container .body .success-container button,
      .side-bar .recovery-container .body .success-container button,
      .side-bar .register-container .body .success-container button,
      .side-bar .cart-container .body .success-container button,
      .side-bar .notify-container .body .success-container button {
        position: absolute;
        bottom: 80px; }
        .side-bar .login-container .body .success-container button i,
        .side-bar .recovery-container .body .success-container button i,
        .side-bar .register-container .body .success-container button i,
        .side-bar .cart-container .body .success-container button i,
        .side-bar .notify-container .body .success-container button i {
          margin-left: 12px; }
      .side-bar .login-container .body .success-container .footer,
      .side-bar .recovery-container .body .success-container .footer,
      .side-bar .register-container .body .success-container .footer,
      .side-bar .cart-container .body .success-container .footer,
      .side-bar .notify-container .body .success-container .footer {
        position: absolute;
        bottom: 36px; }
      .side-bar .login-container .body .button,
      .side-bar .recovery-container .body .button,
      .side-bar .register-container .body .button,
      .side-bar .cart-container .body .button,
      .side-bar .notify-container .body .button {
        position: absolute;
        bottom: 80px;
        left: 50px;
        width: 250px; }
        @media only screen and (max-width: 767px) {
          .side-bar .login-container .body .button,
          .side-bar .recovery-container .body .button,
          .side-bar .register-container .body .button,
          .side-bar .cart-container .body .button,
          .side-bar .notify-container .body .button {
            width: 100%; } }
    .side-bar .login-container .footer,
    .side-bar .recovery-container .footer,
    .side-bar .register-container .footer,
    .side-bar .cart-container .footer,
    .side-bar .notify-container .footer {
      padding: 20px 0 0;
      clear: both;
      position: absolute;
      bottom: 36px;
      font-size: 12px;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0.5px; }
      .side-bar .login-container .footer span,
      .side-bar .recovery-container .footer span,
      .side-bar .register-container .footer span,
      .side-bar .cart-container .footer span,
      .side-bar .notify-container .footer span {
        line-height: 24px;
        font-weight: 600;
        text-transform: uppercase;
        color: #201e1e;
        text-decoration: underline;
        cursor: pointer; }
        .side-bar .login-container .footer span:focus, .side-bar .login-container .footer span:hover,
        .side-bar .recovery-container .footer span:focus,
        .side-bar .recovery-container .footer span:hover,
        .side-bar .register-container .footer span:focus,
        .side-bar .register-container .footer span:hover,
        .side-bar .cart-container .footer span:focus,
        .side-bar .cart-container .footer span:hover,
        .side-bar .notify-container .footer span:focus,
        .side-bar .notify-container .footer span:hover {
          text-decoration: none; }
    .side-bar .login-container .forgot-password-link,
    .side-bar .recovery-container .forgot-password-link,
    .side-bar .register-container .forgot-password-link,
    .side-bar .cart-container .forgot-password-link,
    .side-bar .notify-container .forgot-password-link {
      padding-top: 12px;
      font-size: 12px;
      line-height: 24px;
      font-weight: 600;
      text-transform: uppercase;
      color: #201e1e;
      text-decoration: underline;
      cursor: pointer; }
      .side-bar .login-container .forgot-password-link:focus, .side-bar .login-container .forgot-password-link:hover,
      .side-bar .recovery-container .forgot-password-link:focus,
      .side-bar .recovery-container .forgot-password-link:hover,
      .side-bar .register-container .forgot-password-link:focus,
      .side-bar .register-container .forgot-password-link:hover,
      .side-bar .cart-container .forgot-password-link:focus,
      .side-bar .cart-container .forgot-password-link:hover,
      .side-bar .notify-container .forgot-password-link:focus,
      .side-bar .notify-container .forgot-password-link:hover {
        text-decoration: none; }
  .side-bar .register-container .body {
    height: calc(100vh - 150px); }
    .side-bar .register-container .body form {
      width: 250px; }
      .side-bar .register-container .body form button[type="submit"] {
        position: relative;
        bottom: auto;
        left: 0;
        width: 100%; }
      .side-bar .register-container .body form .form-info {
        position: relative;
        bottom: -20px; }
    .side-bar .register-container .body .success-container button {
      width: 250px; }
  .side-bar .register-container .input-checkbox > .checkbox-label {
    font-size: 12px;
    font-weight: 400; }
  .side-bar .register-container .footer {
    position: relative;
    bottom: 0;
    margin-top: 24px; }

header.compressed .bag-content .side-bar {
  top: -21px; }

.session-name {
  display: flex;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase; }
  .session-name a {
    color: inherit;
    text-decoration: none; }

.logout {
  cursor: pointer; }

.recovery-text {
  font-size: 12px !important; }
  .recovery-text .link {
    cursor: pointer;
    padding-left: 3px;
    text-decoration: underline; }
    .recovery-text .link:focus, .recovery-text .link:hover {
      text-decoration: none; }

/*.scrollable{
    height: calc(100vh - 300px);
    overflow: scroll;
}*/
@media only screen and (max-width: 991px) {
  .side-bar.notify {
    top: 0;
    width: 100vw;
    position: fixed; }
    .side-bar.notify .notify-container {
      width: calc(100% - 100px); }
      .side-bar.notify .notify-container .body {
        margin-top: 34px;
        justify-content: flex-start; }
  .scrollable {
    padding-top: 0; } }

@media only screen and (max-width: 767px) {
  .side-bar {
    position: fixed;
    width: 100vw;
    height: calc(100vh + 15px);
    top: -28px;
    overflow: visible; }
    .side-bar .login-container,
    .side-bar .recovery-container,
    .side-bar .register-container,
    .side-bar .cart-container {
      height: 100%;
      width: 100%;
      left: 0;
      padding: 0;
      text-align: center;
      z-index: 1; }
      .side-bar .login-container .head,
      .side-bar .recovery-container .head,
      .side-bar .register-container .head,
      .side-bar .cart-container .head {
        height: 53px;
        padding: 12px 12px 0 12px;
        margin: 0; }
        .side-bar .login-container .head .sidebar-title,
        .side-bar .recovery-container .head .sidebar-title,
        .side-bar .register-container .head .sidebar-title,
        .side-bar .cart-container .head .sidebar-title {
          line-height: 25px; }
        .side-bar .login-container .head .sidebar-close,
        .side-bar .recovery-container .head .sidebar-close,
        .side-bar .register-container .head .sidebar-close,
        .side-bar .cart-container .head .sidebar-close {
          line-height: 53px; }
      .side-bar .login-container .body,
      .side-bar .recovery-container .body,
      .side-bar .register-container .body,
      .side-bar .cart-container .body {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        height: calc(100vh - 100px);
        text-align: left; }
        .side-bar .login-container .body .title,
        .side-bar .login-container .body .subtitle,
        .side-bar .recovery-container .body .title,
        .side-bar .recovery-container .body .subtitle,
        .side-bar .register-container .body .title,
        .side-bar .register-container .body .subtitle,
        .side-bar .cart-container .body .title,
        .side-bar .cart-container .body .subtitle {
          text-align: center; }
        .side-bar .login-container .body .separator,
        .side-bar .recovery-container .body .separator,
        .side-bar .register-container .body .separator,
        .side-bar .cart-container .body .separator {
          margin: 12px 0; }
        .side-bar .login-container .body .text .resend div,
        .side-bar .recovery-container .body .text .resend div,
        .side-bar .register-container .body .text .resend div,
        .side-bar .cart-container .body .text .resend div {
          position: static;
          width: 100%;
          margin-top: 24px; }
        .side-bar .login-container .body form input[type="submit"],
        .side-bar .login-container .body form button[type="submit"],
        .side-bar .login-container .body .text .resend .button,
        .side-bar .login-container .body .success-container button,
        .side-bar .recovery-container .body form input[type="submit"],
        .side-bar .recovery-container .body form button[type="submit"],
        .side-bar .recovery-container .body .text .resend .button,
        .side-bar .recovery-container .body .success-container button,
        .side-bar .register-container .body form input[type="submit"],
        .side-bar .register-container .body form button[type="submit"],
        .side-bar .register-container .body .text .resend .button,
        .side-bar .register-container .body .success-container button,
        .side-bar .cart-container .body form input[type="submit"],
        .side-bar .cart-container .body form button[type="submit"],
        .side-bar .cart-container .body .text .resend .button,
        .side-bar .cart-container .body .success-container button {
          position: fixed;
          width: 100vw;
          height: 50px;
          bottom: 0;
          left: 0; }
        .side-bar .login-container .body .success-container .footer,
        .side-bar .recovery-container .body .success-container .footer,
        .side-bar .register-container .body .success-container .footer,
        .side-bar .cart-container .body .success-container .footer {
          bottom: 80px; }
        .side-bar .login-container .body .links,
        .side-bar .recovery-container .body .links,
        .side-bar .register-container .body .links,
        .side-bar .cart-container .body .links {
          text-align: left; }
        .side-bar .login-container .body div.button,
        .side-bar .recovery-container .body div.button,
        .side-bar .register-container .body div.button,
        .side-bar .cart-container .body div.button {
          width: calc(100% - 100px); }
      .side-bar .login-container .footer,
      .side-bar .recovery-container .footer,
      .side-bar .register-container .footer,
      .side-bar .cart-container .footer {
        position: relative;
        margin-top: 10px;
        bottom: 0;
        font-size: 12px;
        width: 100%; }
      .side-bar .login-container .forgot-password-link,
      .side-bar .recovery-container .forgot-password-link,
      .side-bar .register-container .forgot-password-link,
      .side-bar .cart-container .forgot-password-link {
        padding-top: 24px; }
    .side-bar .register-container .head {
      box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0.05), 0 27px 28px -10px rgba(0, 0, 0, 0.05); }
  .scrollable {
    height: calc(100% - 117px);
    position: absolute;
    padding: 24px 12px;
    top: 65px;
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    box-sizing: border-box; }
  .cart-container .scrollable,
  .cart .scrollable {
    top: 0;
    height: calc(100% - 90px); }
  .checkout .scrollable {
    padding-left: 0; }
  header.compressed .bag-content .side-bar {
    top: -28px; } }

.homepage-nike {
  height: 40vw;
  background: #fff;
  margin: 60px 0 80px;
  overflow: visible; }
  .homepage-nike .content {
    height: 100%;
    z-index: 0; }
  .homepage-nike .title {
    width: 100px;
    white-space: pre-line;
    position: absolute;
    top: 8vw;
    color: #fff;
    font-family: "octin_college_bold", sans-serif;
    font-size: 6vw;
    letter-spacing: 1px;
    line-height: 5.2vw;
    text-transform: uppercase;
    text-shadow: 1px 0 0 #37f899, -1px 0 0 #37f899, 0 1px 0 #37f899, 0 -1px 0 #37f899; }
  .homepage-nike .subtitle {
    font-family: "octin_college_regular", sans-serif;
    font-size: 36px;
    line-height: 35px;
    position: absolute;
    width: 250px;
    left: 40px; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .homepage-nike .subtitle {
        margin-top: -70px; } }
    .homepage-nike .subtitle:first-line {
      font-family: "octin_college_bold", sans-serif; }
  .homepage-nike .text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    line-height: 21px;
    width: 250px;
    position: absolute;
    left: 40px; }
  .homepage-nike .separator {
    position: absolute;
    width: 100%;
    top: calc(24vw + 2px);
    height: 1px;
    background: rgba(32, 30, 30, 0.05);
    z-index: 1; }
    .homepage-nike .separator:before {
      content: "";
      height: 1px;
      position: absolute;
      background: #201e1e; }
  .homepage-nike .bullet {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 24vw;
    left: 16px;
    background: #201e1e; }
  .homepage-nike .nike-slider {
    display: flex;
    height: 100%; }
    .homepage-nike .nike-slider li {
      display: inline-block;
      height: 100%;
      position: relative;
      overflow: visible; }
      .homepage-nike .nike-slider li img {
        position: absolute;
        top: -20%;
        right: 0; }
      .homepage-nike .nike-slider li.selected {
        color: #fff;
        z-index: 1; }
        .homepage-nike .nike-slider li.selected::before {
          content: "";
          position: absolute;
          margin-top: -24px;
          height: calc(100% + 48px); }
        .homepage-nike .nike-slider li.selected:nth-child(1)::before {
          background: linear-gradient(180deg, #f55f5f 0%, #b91931 100%); }
        .homepage-nike .nike-slider li.selected:nth-child(2)::before {
          background: linear-gradient(180deg, #95bca7 0%, #496756 100%); }
        .homepage-nike .nike-slider li.selected:nth-child(3)::before {
          background: linear-gradient(180deg, #67eeb8 0%, #17724c 100%); }
        .homepage-nike .nike-slider li.selected .bottom .links li a {
          border: 1px solid rgba(32, 30, 30, 0.02); }
        .homepage-nike .nike-slider li.selected .bottom .links li span {
          color: white; }
  .homepage-nike .top {
    height: calc(60% - 24px);
    width: calc(100% - 72px);
    margin: 0 36px;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    z-index: 1; }
    .homepage-nike .top h5 {
      font-family: "octin_college_regular", sans-serif;
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 1px; }
    .homepage-nike .top h4 {
      font-family: "octin_college_bold", sans-serif;
      font-size: 30px;
      line-height: 30px;
      white-space: nowrap; }
  .homepage-nike .bottom {
    position: absolute;
    bottom: 0;
    height: calc(40% - 24px);
    width: calc(100% - 72px);
    margin: 0 36px;
    z-index: 1; }
    .homepage-nike .bottom .links {
      display: flex;
      flex-direction: column; }
      .homepage-nike .bottom .links li {
        width: auto;
        height: 41px;
        z-index: 0; }
        .homepage-nike .bottom .links li a {
          background: #fff;
          text-decoration: none;
          color: inherit;
          padding: 13px 25px;
          font-size: 12px;
          letter-spacing: 2px;
          font-family: "octin_college_regular", sans-serif;
          color: rgba(32, 30, 30, 0.8);
          border: 1px solid #37f899;
          white-space: nowrap;
          line-height: 40px; }
          .homepage-nike .bottom .links li a i {
            padding-left: 25px; }
        .homepage-nike .bottom .links li span {
          color: inherit;
          font-size: 12px;
          letter-spacing: 2px;
          font-family: "octin_college_regular", sans-serif;
          color: rgba(32, 30, 30, 0.8);
          padding-top: 14px;
          display: inline-block;
          line-height: 125%; }
  .homepage-nike div {
    height: 100%; }

@media only screen and (max-width: 1199px) {
  .homepage-nike .top h5 {
    font-size: 10px;
    line-height: 10px; }
  .homepage-nike .top h4 {
    font-size: 27px; }
  .homepage-nike .bottom .links li {
    height: 35px; }
    .homepage-nike .bottom .links li a {
      padding: 10px 15px; }
      .homepage-nike .bottom .links li a i {
        padding-left: 15px; }
  .homepage-nike .subtitle {
    font-size: 30px;
    line-height: 30px;
    width: 225px; }
  .homepage-nike .text {
    font-size: 12px;
    line-height: 16px;
    width: 190px; } }

@media only screen and (max-width: 991px) {
  .homepage-nike {
    height: 110vw; }
    .homepage-nike .top {
      display: none; }
    .homepage-nike .bottom .links li {
      height: 41px; }
      .homepage-nike .bottom .links li a {
        padding: 13px 25px; }
        .homepage-nike .bottom .links li a i {
          padding-left: 25px; }
    .homepage-nike .subtitle {
      font-size: 36px;
      line-height: 35px;
      width: 250px; }
    .homepage-nike .separator {
      top: 50%; }
    .homepage-nike .bullet {
      display: none; }
    .homepage-nike .slide {
      display: flex;
      width: auto; }
    .homepage-nike .nike-slider {
      margin-left: -24px; }
      .homepage-nike .nike-slider.last-active li {
        width: 100vw !important; }
      .homepage-nike .nike-slider li {
        width: 85vw !important;
        position: absolute; }
        .homepage-nike .nike-slider li.next .top,
        .homepage-nike .nike-slider li.next .bottom, .homepage-nike .nike-slider li.hiddenNext .top,
        .homepage-nike .nike-slider li.hiddenNext .bottom {
          display: none; }
        .homepage-nike .nike-slider li::before {
          content: "";
          position: absolute;
          width: 85vw;
          margin-top: -24px;
          height: calc(100% + 48px); }
        .homepage-nike .nike-slider li:nth-child(1)::before {
          background: linear-gradient(180deg, #f55f5f 0%, #b91931 100%); }
        .homepage-nike .nike-slider li:nth-child(1) .bottom .links li a {
          border: 1px solid #b91931; }
        .homepage-nike .nike-slider li:nth-child(2)::before {
          background: linear-gradient(180deg, #95bca7 0%, #496756 100%); }
        .homepage-nike .nike-slider li:nth-child(2) .bottom .links li a {
          border: 1px solid #496756; }
        .homepage-nike .nike-slider li:nth-child(3)::before {
          background: linear-gradient(180deg, #67eeb8 0%, #17724c 100%); }
        .homepage-nike .nike-slider li:nth-child(3) .bottom .links li a {
          border: 1px solid green-2-gradient-dark; }
        .homepage-nike .nike-slider li img {
          width: 75vw !important; }
        .homepage-nike .nike-slider li .links li {
          position: relative; }
          .homepage-nike .nike-slider li .links li:before {
            content: none; }
    .homepage-nike .next-arrow {
      font-size: 36px;
      background: #fff;
      width: 50px;
      height: 42px;
      position: absolute;
      text-align: center;
      line-height: 45px;
      right: 0;
      top: calc(50% - 20px);
      z-index: 3; }
      .homepage-nike .next-arrow:hover, .homepage-nike .next-arrow:focus {
        cursor: pointer; }
    .homepage-nike .titles-slider {
      display: flex;
      justify-content: flex-end;
      flex-direction: column;
      position: absolute;
      z-index: 1;
      left: 12px;
      top: 40.5vw; }
      .homepage-nike .titles-slider .titles {
        color: #fff;
        font-size: 36px;
        line-height: 30px;
        display: flex;
        flex-direction: row;
        width: 96vw;
        font-family: "octin_college_bold", sans-serif; }
        .homepage-nike .titles-slider .titles li {
          padding-right: 12px;
          white-space: nowrap; }
    .homepage-nike .title.mobile {
      font-family: "octin_college_regular", sans-serif;
      z-index: 1;
      text-shadow: none;
      font-size: 16px;
      line-height: 28px;
      white-space: nowrap;
      top: 36vw;
      left: 35px; } }

@media only screen and (max-width: 767px) {
  .homepage-nike .nike-slider {
    margin-left: -12px; }
  .homepage-nike .title.mobile {
    left: 25px; } }

@media only screen and (max-width: 575px) {
  .homepage-nike .nike-slider .bottom {
    bottom: 8vw; }
  .homepage-nike .titles-slider {
    top: 40.5vw; }
  .homepage-nike .title.mobile {
    top: 33vw; } }

.user-settings .error-text {
  color: #ea393b;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  margin-top: 24px; }

.recover-password {
  margin-top: 86px;
  padding-top: 124px;
  position: relative;
  z-index: 0; }
  .recover-password .title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    color: #ea393b;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 36px; }
  .recover-password .description {
    font-family: "Barlow Condensed", sans-serif;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 39px; }
  .recover-password .input-field {
    width: calc(100% - 6px); }
    .recover-password .input-field label {
      font-family: "Barlow Condensed", sans-serif; }
  .recover-password .grid .cell:nth-child(1) .input-field {
    float: left; }
  .recover-password .grid .cell:nth-child(2) .input-field {
    float: right; }
  .recover-password .success-text {
    text-align: left;
    font-family: "Barlow Condensed", sans-serif;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px; }
    .recover-password .success-text a {
      font-weight: 600;
      color: inherit;
      text-transform: uppercase;
      padding-left: 3px;
      font-size: 14px; }
      .recover-password .success-text a:focus, .recover-password .success-text a:hover {
        text-decoration: none; }
  .recover-password .error-text {
    color: #ea393b;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    margin-top: 24px; }
  .recover-password .button {
    margin-top: 100px; }

@media only screen and (max-width: 575px) {
  .recover-password .input-field {
    width: 100%;
    margin-bottom: 30px; } }

.side-bar .cart-container .body {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 350px);
  width: 250px; }

.cart-container {
  color: #201e1e;
  position: relative;
  overflow: auto; }
  .cart-container .empty-cart {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: calc(100% - 200px);
    top: 50px;
    width: 250px;
    position: absolute; }
    .cart-container .empty-cart .cart {
      display: flex;
      flex-flow: row;
      justify-content: center; }
      .cart-container .empty-cart .cart .icon-bag-grey {
        position: relative;
        height: 50px;
        width: 50px; }
        .cart-container .empty-cart .cart .icon-bag-grey:before {
          content: "";
          position: absolute;
          top: 0;
          left: 0; }
        .cart-container .empty-cart .cart .icon-bag-grey .qty {
          position: absolute;
          right: 2px;
          bottom: 0;
          z-index: 1;
          font-size: 16px;
          font-family: "octin_college_bold", sans-serif;
          line-height: 25px;
          color: #fff;
          display: flex;
          justify-content: center; }
          .cart-container .empty-cart .cart .icon-bag-grey .qty:before {
            content: "";
            position: absolute;
            z-index: -1;
            height: 25px;
            width: 25px;
            background: #37f899;
            border-radius: 12px; }
    .cart-container .empty-cart .text {
      text-align: center;
      margin-top: 40px;
      color: rgba(32, 30, 30, 0.5);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 20px;
      line-height: 24px; }
  .cart-container .products {
    margin: 24px 0; }
    .cart-container .products.body {
      padding: 0 85px 0 0; }
      @media only screen and (max-width: 1199px) {
        .cart-container .products.body {
          padding: 0 75px 0 0; } }
    .cart-container .products ul.is-fetching li {
      opacity: 0.5;
      pointer-events: none; }
    .cart-container .products li {
      transition: opacity 0.2s;
      position: relative;
      margin: 24px 0; }
      .cart-container .products li.no-stock .thumbnail {
        opacity: 0.5; }
      .cart-container .products li > .tag {
        bottom: 8px; }
        @media (max-width: 991px) {
          .cart-container .products li > .tag {
            margin-left: 0; } }
    .cart-container .products .thumbnail img {
      width: 86px; }
    .cart-container .products .pre_sale {
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 70px;
      padding: 0 8px;
      background-color: #37f899;
      color: #201e1e;
      font-family: "octin_college_bold", sans-serif;
      font-size: 11px;
      text-align: center;
      letter-spacing: 1px;
      line-height: 25px; }
    .cart-container .products .details {
      position: relative;
      padding-left: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: auto;
      width: 100%; }
      .cart-container .products .details .name {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        line-height: 18px; }
      .cart-container .products .details .attributes {
        color: rgba(32, 30, 30, 0.5);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 12px;
        font-weight: 600;
        line-height: 14px;
        text-transform: uppercase; }
      .cart-container .products .details .customize-price {
        color: #201e1e;
        font-family: "octin_college_bold", sans-serif;
        font-size: 12px;
        line-height: 20px; }
      .cart-container .products .details .bottom {
        display: flex;
        justify-content: space-between;
        position: relative;
        width: 100%;
        bottom: auto;
        margin-top: 0; }
        .cart-container .products .details .bottom .price {
          font-family: "octin_college_bold", sans-serif;
          font-size: 16px;
          line-height: 19px;
          color: #201e1e; }
          .cart-container .products .details .bottom .price span {
            white-space: nowrap; }
          .cart-container .products .details .bottom .price .promo {
            display: flex;
            flex-flow: column; }
            .cart-container .products .details .bottom .price .promo span:nth-child(1) {
              color: rgba(32, 30, 30, 0.5);
              font-size: 12px;
              line-height: 14px;
              text-decoration: line-through; }
            .cart-container .products .details .bottom .price .promo span:nth-child(2) {
              color: #ea393b; }
        .cart-container .products .details .bottom .quantity-widget {
          display: flex;
          justify-content: center;
          text-align: center;
          align-self: flex-end; }
          .cart-container .products .details .bottom .quantity-widget i {
            font-size: 14px;
            line-height: 18px;
            color: #ea393b; }
            .cart-container .products .details .bottom .quantity-widget i:hover, .cart-container .products .details .bottom .quantity-widget i:focus {
              cursor: pointer; }
            .cart-container .products .details .bottom .quantity-widget i.inactive {
              color: rgba(32, 30, 30, 0.2); }
          .cart-container .products .details .bottom .quantity-widget .qty {
            font-family: "octin_college_regular", sans-serif;
            font-size: 16px;
            letter-spacing: 1px;
            line-height: 19px;
            padding: 0 12px; }
            @media only screen and (max-width: 1199px) {
              .cart-container .products .details .bottom .quantity-widget .qty {
                padding: 0 6px; } }
      .cart-container .products .details .state {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 12px;
        color: rgba(32, 30, 30, 0.8);
        margin: 14px 0 10px 0; }
  .cart-container .cart-resume {
    position: fixed;
    bottom: 0;
    width: 250px;
    padding: 50px 0;
    background: #fff;
    z-index: 1; }
    .cart-container .cart-resume:not(.empty):before {
      content: "";
      border-top: 1px solid rgba(32, 30, 30, 0.1);
      width: calc(100% + 135px);
      position: absolute;
      top: 0px;
      left: -50px; }
      @media only screen and (max-width: 1199px) {
        .cart-container .cart-resume:not(.empty):before {
          width: calc(100% + 150px);
          padding: 0 15px; } }
    .cart-container .cart-resume .prices {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      font-size: 12px;
      line-height: 16px; }
      .cart-container .cart-resume .prices .costs li {
        text-transform: uppercase;
        margin-bottom: 6px; }
        .cart-container .cart-resume .prices .costs li .details {
          font-weight: 400;
          color: rgba(32, 30, 30, 0.8);
          font-size: 12px;
          line-height: 14px;
          margin-top: 3px; }
      .cart-container .cart-resume .prices .values li {
        text-align: right;
        margin-bottom: 6px; }
      .cart-container .cart-resume .prices .total {
        display: flex;
        justify-content: space-between;
        font-size: 20px;
        line-height: 24px;
        text-transform: uppercase;
        margin-bottom: 36px; }
  .cart-container .promo-code {
    display: none; }

@media only screen and (max-width: 767px) {
  .sidebar-extra {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center; }
  .side-bar.open .cart-container .head {
    position: relative;
    z-index: 1;
    width: calc(100% - 24px);
    padding: 12px 12px 0; }
  .side-bar.open .cart-container .products {
    position: relative;
    height: calc(100% - 300px);
    width: 100%;
    z-index: 0; }
    .side-bar.open .cart-container .products .details {
      text-align: left; }
    .side-bar.open .cart-container .products .quantity-widget {
      text-align: right; }
  .side-bar.open .cart-container .cart-resume {
    position: static;
    width: 100%;
    padding: 0;
    bottom: auto; }
    .side-bar.open .cart-container .cart-resume .total {
      margin-bottom: 0; }
    .side-bar.open .cart-container .cart-resume .prices {
      padding-bottom: 12px; }
      .side-bar.open .cart-container .cart-resume .prices .costs {
        text-align: left; }
  .side-bar.open .cart-container .promo-code {
    display: block; }
  .side-bar:not(.open) .button {
    display: none; }
  .cart-container .empty-cart {
    width: calc(100% - 24px); }
  .cart-container .button.red {
    position: absolute;
    top: 145px;
    left: -10px;
    width: calc(100% + 20px);
    position: relative;
    top: initial;
    bottom: initial; }
  header.compressed .side-bar.open .cart-container .head {
    width: calc(100% - 24px);
    padding: 12px 12px 0; } }

.remove-widget {
  display: flex;
  justify-content: center;
  text-align: center;
  align-self: center; }

.remove-button {
  font-weight: 700;
  color: #201e1e;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline; }

.results {
  margin-top: 70px; }
  .results:before {
    content: none; }
  .results .result-count {
    color: rgba(32, 30, 30, 0.5);
    font-family: "octin_college_bold", sans-serif;
    font-size: 20px;
    line-height: 24px;
    text-shadow: 14px 10px 13px rgba(0, 0, 0, 0.07);
    margin-bottom: 37px; }
  .results .products-container {
    overflow: scroll;
    height: calc(100vh - 295px);
    margin-right: -120px; }
    .results .products-container .product-images:hover, .results .products-container .product-images:focus,
    .results .products-container .title:hover,
    .results .products-container .title:focus {
      cursor: pointer; }
    .results .products-container span {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap; }

@media only screen and (max-width: 767px) {
  .results {
    margin-top: 24px;
    padding-top: 0; }
    .results .result-count {
      text-align: center;
      width: 100%; } }

@media only screen and (max-width: 991px) {
  .results .products-container {
    height: calc(100vh - 145px); } }

/* Header styles */
header .search-bar-container {
  display: none; }
  header .search-bar-container.open {
    display: block; }

header.search-open ul.menu-top {
  opacity: 0; }

header.search-open .widgets {
  z-index: 1; }
  header.search-open .widgets .top {
    opacity: 0;
    height: auto; }

header.search-open .logo-link {
  z-index: 2; }
  header.search-open .logo-link .logo-letters-svg {
    opacity: 0; }

header.search-open .line {
  z-index: 2;
  top: 55px;
  position: relative; }

header
.widgets
.bottom
.search-content
.search-bar-container
.product-details
.button
i {
  font-size: 12px; }

.search-content .catalog-container.no-banner {
  margin-top: 20px; }

/* Searchbar styles */
.search-bar-container {
  position: absolute;
  width: 100vw;
  right: -100px;
  background: #fff;
  color: #201e1e;
  z-index: 1; }
  .search-bar-container .search-bar-content {
    display: flex;
    justify-content: center; }
  .search-bar-container .close-search-bar {
    position: absolute;
    top: 20px;
    right: 14px;
    font-size: 16px; }
  .search-bar-container .help-text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 11px;
    height: 60px;
    line-height: 60px;
    display: flex;
    justify-content: left; }
    .search-bar-container .help-text i {
      padding-right: 12px; }
  .search-bar-container .search-input {
    position: relative; }
    .search-bar-container .search-input form {
      right: 0;
      display: flex;
      justify-content: space-between;
      flex-flow: row;
      padding-top: 18.5px; }
    .search-bar-container .search-input input {
      position: relative;
      width: 100%;
      border: none;
      caret-color: #ea393b;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 64px;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 84px; }
      .search-bar-container .search-input input::placeholder {
        color: rgba(32, 30, 30, 0.1); }
      .search-bar-container .search-input input:focus {
        outline: none; }
    .search-bar-container .search-input .clear {
      right: 0; }
    .search-bar-container .search-input .red-line:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: #ea393b;
      z-index: 2; }
      @media only screen and (max-width: 991px) {
        .search-bar-container .search-input .red-line:before {
          top: -3px; } }
    .search-bar-container .search-input .red-line span:before {
      content: "";
      position: absolute;
      top: 0;
      left: 5px;
      width: calc(100% - 10px);
      height: 3px;
      z-index: 1;
      background-color: #fb6869;
      box-shadow: 0 2px 5px -1px #e9656c; }
    .search-bar-container .search-input .red-line span:after {
      content: "";
      position: absolute;
      top: 0;
      left: 25px;
      width: calc(100% - 50px);
      height: 3px;
      z-index: 0;
      background-color: #fb6869;
      box-shadow: 0 7px 10px -1px #ef8489; }
  .search-bar-container .clear {
    position: relative;
    color: rgba(32, 30, 30, 0.5);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-left: 10px;
    letter-spacing: 0.53px; }
  .search-bar-container .search-mobile form {
    display: flex;
    width: 100%; }
  .search-bar-container .search-mobile input {
    width: 100%;
    border: none;
    caret-color: #ea393b;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 25px;
    height: 50px; }
    .search-bar-container .search-mobile input::placeholder {
      text-transform: uppercase;
      color: #201e1e; }
    .search-bar-container .search-mobile input:focus {
      outline: none; }

@media only screen and (max-width: 1199px) {
  .search-bar-container {
    right: -50px; } }

@media only screen and (max-width: 991px) {
  .search-bar-container {
    right: -14px; }
    .search-bar-container .search-mobile input {
      width: calc(100% - 100px); } }

@media only screen and (max-width: 991px) {
  header.compressed .search-bar-container.open {
    height: calc(100vh + 20px); }
  /* hide logo over search */
  header.search-open .logo-link {
    z-index: 0; }
  /* when opening search on mobile menu */
  header.mobile-menu-open.search-open .line {
    top: 50px; }
  header.mobile-menu-open.search-open .search-bar-container.open {
    top: 10px; }
  /* header line */
  header.search-open .line {
    top: 46px; }
  .search-bar-container {
    top: -1px;
    right: -12px; }
    .search-bar-container.open {
      height: 100vh; }
    .search-bar-container .close-search-bar {
      top: 0;
      padding: 15px 0 18px 18px;
      z-index: 10; }
    .search-bar-container .search-bar-content {
      justify-content: left; }
    .search-bar-container .search-mobile {
      height: 50px;
      line-height: 50px;
      display: flex !important; }
      .search-bar-container .search-mobile i.icon {
        font-size: 24px;
        line-height: 55px; }
    .search-bar-container .clear {
      top: 0;
      right: 30px;
      padding: 25px 10px; }
    .search-bar-container form {
      display: flex;
      flex-flow: row;
      justify-content: space-between;
      width: 100%; } }

.checkout-menu {
  margin-top: 170px;
  margin-bottom: 70px;
  display: flex; }
  .checkout-menu:after {
    content: "";
    display: table;
    clear: both; }
  @media only screen and (max-width: 1199px) {
    .checkout-menu {
      width: calc(100% - 370px); } }
  @media only screen and (max-width: 991px) {
    .checkout-menu {
      width: 100%; } }
  .checkout-menu .title-container {
    margin: 0;
    overflow: visible; }
  .checkout-menu .title {
    letter-spacing: normal;
    font-family: "octin_college_regular", sans-serif;
    font-weight: normal;
    position: relative; }
    .checkout-menu .title strong {
      font-family: "octin_college_bold", sans-serif;
      font-weight: normal;
      padding-left: 12px; }
  .checkout-menu .menu-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap; }

.checkout-title {
  color: #ea393b;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif; }

.multiple-shipments .radio-circle,
.multiple-shipments label {
  display: inline-block;
  vertical-align: middle; }

.multiple-shipments .multiple-shipments-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px; }

.shipping-methods .radio-label {
  padding: 0 0 0 38px; }

.shipping-methods .input-radio {
  display: flex;
  height: 24px;
  align-items: center; }

.shipping-text-carrier {
  font-weight: 600; }

/* PAYMENT */
.braintree-dropin-react-form,
.button {
  position: relative;
  z-index: 0; }

.braintree-heading {
  height: 24px;
  color: #201e1e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px; }

.braintree-upper-container::before {
  background: none; }

.braintree-dropin-react-form {
  margin-bottom: 37px; }

.braintree-dropin-react-form.hasMbway {
  margin-bottom: 0px; }

.hasMbway .braintree-options {
  margin: 0; }

.hasMbway .braintree-options-list {
  padding-bottom: 0; }

.braintree-option__mbway {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 37px;
  box-sizing: border-box; }

.braintree-option__mbway.selected {
  margin-bottom: 0px; }

.braintree-option__mbway img {
  width: auto;
  max-height: 30px; }

.braintree-option__mb {
  position: relative;
  padding-bottom: 5px;
  box-sizing: border-box; }

.hidden {
  display: none; }

.braintree-option__mb img {
  width: auto;
  max-height: 30px; }

.custom-toggle {
  height: 60px;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  color: #000000;
  cursor: pointer;
  font-size: 14px;
  margin: 0 auto; }

.custom-toggle:hover {
  background: #fcfcfc;
  font-weight: 500; }

.custom-toggle span {
  font-family: "Barlow Condensed", sans-serif;
  font-display: swap;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  text-decoration: underline;
  line-height: 60px; }

.mbwayInput {
  width: 100%;
  box-shadow: initial;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
  border: none;
  font-size: 16px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0); }

.mbwayInput:focus {
  border: none;
  outline: 0; }

.braintree-method,
.braintree-method:last-child,
.braintree-method:first-child,
.braintree-methods--active .braintree-method--active,
.braintree-option,
.braintree-option:first-child,
.braintree-option:last-child {
  border-radius: 0;
  width: 100%; }

.mbway_info {
  background-color: white;
  margin-top: -6px;
  padding-top: 26px;
  padding-left: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05) !important; }
  .mbway_info .bold {
    color: #201e1e;
    font-weight: 600; }

.mbway_info p {
  color: rgba(0, 0, 0, 0.5) !important;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  padding-bottom: 20px;
  letter-spacing: 0.5px;
  z-index: -1; }

.payment_ongoing {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 16px;
  font-weight: 400; }

.braintree-methods {
  margin-bottom: 24px; }
  .braintree-methods--active .braintree-method--active {
    border-color: #37f899; }
    .braintree-methods--active .braintree-method--active .braintree-method__check {
      background: none; }
      .braintree-methods--active .braintree-method--active .braintree-method__check svg {
        fill: #37f899; }
  .braintree-methods-initial {
    margin-bottom: 0; }

.braintree-method,
.braintree-option {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.05);
  height: 60px; }
  .braintree-method:hover, .braintree-method:focus, .braintree-method.braintree-disabled:hover, .braintree-method.braintree-disabled:focus,
  .braintree-option:hover,
  .braintree-option:focus,
  .braintree-option.braintree-disabled:hover,
  .braintree-option.braintree-disabled:focus {
    outline: none; }
    .braintree-method:hover .braintree-method__label,
    .braintree-method:hover .braintree-option__label, .braintree-method:focus .braintree-method__label,
    .braintree-method:focus .braintree-option__label, .braintree-method.braintree-disabled:hover .braintree-method__label,
    .braintree-method.braintree-disabled:hover .braintree-option__label, .braintree-method.braintree-disabled:focus .braintree-method__label,
    .braintree-method.braintree-disabled:focus .braintree-option__label,
    .braintree-option:hover .braintree-method__label,
    .braintree-option:hover .braintree-option__label,
    .braintree-option:focus .braintree-method__label,
    .braintree-option:focus .braintree-option__label,
    .braintree-option.braintree-disabled:hover .braintree-method__label,
    .braintree-option.braintree-disabled:hover .braintree-option__label,
    .braintree-option.braintree-disabled:focus .braintree-method__label,
    .braintree-option.braintree-disabled:focus .braintree-option__label {
      font-weight: 600; }
  .braintree-method__check,
  .braintree-option__check {
    background: none; }
  .braintree-method__check-container::before,
  .braintree-option__check-container::before {
    display: none; }
  .braintree-method__label,
  .braintree-option__label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600; }

.braintree-form__label {
  color: #201e1e !important; }

.braintree-loaded .braintree-sheet__container {
  margin-bottom: 0; }

.braintree-toggle {
  height: 60px;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 0; }
  .braintree-toggle:focus {
    outline: 0; }
  .braintree-toggle span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    text-decoration: underline;
    line-height: 60px; }

.braintree-options {
  margin: 24px 0 0; }
  .braintree-options-initial {
    margin: 0; }

.braintree-option {
  border-color: rgba(0, 0, 0, 0.05); }

.braintree-upper-container:before {
  background: #fff;
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.05); }

.braintree-sheet {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.05);
  font-family: "Barlow Condensed", sans-serif; }
  .braintree-sheet__header {
    font-size: 20px;
    font-weight: 600;
    border-color: rgba(0, 0, 0, 0.05); }
  .braintree-sheet__content--form {
    padding: 0 12px 0 0; }
    .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label {
      color: rgba(0, 0, 0, 0.5) !important;
      font-size: 12px;
      line-height: 14px;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: 0.5px; }
      .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label .braintree-form__descriptor {
        color: inherit;
        font-size: inherit; }
    .braintree-sheet__content--form .braintree-form__field-group {
      padding-left: 12px;
      padding-top: 12px; }

.braintree-sheet__content--form
.braintree-form__field-group
.braintree-form__field-error {
  color: #ea393b;
  text-transform: uppercase;
  letter-spacing: 0.53px;
  font-weight: 600;
  font-size: 12px; }

.review .container-info {
  margin-bottom: 70px; }

.review .information-list,
.review .info {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  line-height: 30px; }
  .review .information-list:not(.info) span,
  .review .info:not(.info) span {
    font-weight: 600;
    padding-right: 10px; }

.review .payment {
  margin-top: 70px; }

.checkout.success,
.return-container .content.success {
  margin-top: 250px; }
  .checkout.success .title,
  .return-container .content.success .title {
    color: #201e1e;
    font-family: "octin_college_regular", sans-serif;
    font-size: 36px;
    line-height: 48px;
    text-shadow: 14px 10px 13px rgba(0, 0, 0, 0.07);
    margin-bottom: 36px; }
    .checkout.success .title span,
    .return-container .content.success .title span {
      background: #fff;
      border: 2px solid #37f899;
      padding: 0 5px;
      white-space: nowrap; }
  .checkout.success .text,
  .return-container .content.success .text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 48px; }
  .checkout.success .link,
  .return-container .content.success .link {
    margin-top: 36px;
    margin-bottom: 100px; }
    .checkout.success .link a,
    .return-container .content.success .link a {
      color: inherit;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      font-weight: 600;
      line-height: 14px;
      text-transform: uppercase;
      display: flex;
      justify-content: center;
      align-items: center; }
      .checkout.success .link a i,
      .return-container .content.success .link a i {
        margin-left: 6px;
        margin-top: 1px; }

.checkout.shipping .button span,
.return-container .content.shipping .button span {
  padding-left: 0;
  display: flex;
  align-items: center; }

.checkout.payment .button span,
.return-container .content.payment .button span {
  margin-left: 0; }

@media only screen and (max-width: 767px) {
  .checkout-menu {
    margin-top: 75px;
    margin-bottom: 36px; }
    .checkout-menu .title-container .title {
      white-space: nowrap;
      width: auto; }
      .checkout-menu .title-container .title:before {
        margin-right: 4px; }
      .checkout-menu .title-container .title:after {
        margin-left: 4px; }
      .checkout-menu .title-container .title strong {
        padding-left: 4px; }
    .checkout-menu .menu-wrapper {
      flex-flow: row;
      justify-content: space-between; }
  .checkout-menu-item .h1 {
    font-size: 16px; }
  .review .red-title {
    margin-bottom: 12px;
    font-size: 16px; }
  .review .information-list {
    margin-bottom: 36px; }
  .checkout.success {
    margin-top: 150px; }
  .review .container-info {
    margin-bottom: 0; } }

.css-vj8t7z {
  border: 1px solid rgba(32, 30, 30, 0.1) !important;
  border-radius: 0px !important; }

.css-vj8t7z:hover {
  border-color: #201e1e !important;
  cursor: pointer; }

.css-1g6gooi {
  height: 40px; }

.custom-select option,
.css-10nd86i {
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-display: swap;
  font-weight: 400;
  color: #201e1e; }

.css-10nd86i:focus {
  outline: none !important;
  border-color: #201e1e !important; }

span.css-d8oujb {
  display: none; }

.css-1hwfws3 {
  padding: 2px 8px 0 12px; }

.css-15k3avv {
  margin-top: 0 !important;
  border-radius: 0 !important; }

.css-2o5izw {
  border-radius: 0 !important;
  box-shadow: none !important;
  border-color: #201e1e !important; }

.css-2o5izw:hover {
  border-color: #201e1e !important; }

.css-2o5izw:focus {
  border-color: #201e1e !important; }

.error .css-10nd86i {
  border: 1px solid #ea393b !important; }

.success .css-19bqh2r {
  fill: #37f899 !important; }

.braintree-form__field-group.country_code {
  padding-right: 30px; }

.braintree-form__field-group.phone_number {
  padding-left: 30px; }

.braintree-option__mbway.selected .custom-toggle {
  margin-bottom: 37px; }

.braintree-dropin-react .mb37 {
  margin-bottom: 37px; }

.braintree-form__hosted-field.disabled input {
  background: #f1f1f1; }

.braintree-form__hosted-field.disabled {
  background: #f1f1f1;
  border: 1px solid #bfbfbf !important; }

.braintree-dropin-react .css-2o5izw,
.braintree-dropin-react .input-dropdown,
.braintree-dropin-react .css-10nd86i,
.braintree-dropin-react .css-vj8t7z {
  height: 100%; }

.braintree-dropin-react .css-2o5izw,
.braintree-dropin-react .css-vj8t7z {
  border: 1px solid #bfbfbf !important; }

.mbway-select {
  height: 46px;
  margin: 4px 0 0; }

.country_code .css-1hwfws3 {
  padding-top: 0;
  padding-bottom: 0; }

.country_code .css-162g8z5 {
  border-radius: 0; }

.country_code .label-focus {
  display: none !important; }

@media (max-height: 710px) {
  .checkout .sideDetails .sideContent > div {
    height: 100%; } }

.input-pickup {
  margin: 40px 0 16px 0 !important; }
  .input-pickup .css-151xaom-placeholder {
    color: #d8d8d8; }

.pickup-address {
  display: flex;
  flex-direction: column; }

.pickup-description {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 4px; }

.payment-data {
  display: flex;
  margin-bottom: 6px; }
  .payment-data p {
    flex: 1;
    font-size: 18px; }
    .payment-data p:first-child {
      font-weight: 600;
      text-align: right; }
    .payment-data p:last-child {
      text-align: left;
      margin-left: 10px; }

.payment-warning {
  margin: 20px 0 0 0;
  font-style: italic; }

.mb-message {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px; }

.braintree-option .braintree-option__logo {
  width: 50px;
  justify-content: center; }

.braintree-option .braintree-option__label {
  width: auto; }

.taxes-warning {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  margin-bottom: 0; }

.information-list-address {
  padding-left: 67px; }

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

.input-dropdown-city .css-151xaom-placeholder {
  color: #d8d8d8; }

.input-container.error-text .input-field {
  margin-bottom: 5px !important; }

.input-container.error-text p {
  font-size: 14px;
  color: #ea393b;
  font-family: Barlow Condensed, sans-serif;
  margin-bottom: 35px;
  font-weight: normal; }

.input-container:not(.error-text) p {
  display: none; }

.adyen-wrapper > button {
  margin-top: 40px; }

.adyen-wrapper .adyen-checkout__payment-method {
  border-radius: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important; }

.adyen-wrapper .adyen-checkout__voucher-result {
  border-radius: 0;
  border: none; }

.adyen-wrapper .adyen-checkout__voucher-result__details__item,
.adyen-wrapper .adyen-checkout__voucher-result__separator__inner {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important; }

.adyen-wrapper .adyen-checkout__voucher-result__separator {
  width: 100%; }
  .adyen-wrapper .adyen-checkout__voucher-result__separator::after, .adyen-wrapper .adyen-checkout__voucher-result__separator::before {
    display: none; }

.adyen-wrapper .adyen-checkout__voucher-result__top,
.adyen-wrapper .adyen-checkout__voucher-result__bottom {
  border-radius: 0;
  border: none; }

.adyen-wrapper .adyen-checkout__payment-method__header {
  padding-left: 16px !important; }

.adyen-wrapper .adyen-checkout__payment-method--selected {
  background-color: white !important;
  margin: 0 !important; }

.adyen-wrapper .selected-method li.adyen-checkout__payment-method:not(.adyen-checkout__payment-method--selected) {
  display: none; }

.adyen-wrapper .adyen-checkout__input:focus {
  caret-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border-color: white !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.adyen-wrapper .adyen-checkout__paywithgoogle div {
  display: flex;
  align-items: center; }

.adyen-wrapper .adyen-checkout__paywithgoogle button {
  margin-left: auto;
  margin-right: auto; }

.adyen-wrapper .adyen-checkout__paypal {
  width: 200px;
  padding: 0;
  margin-left: auto;
  margin-right: auto; }

.adyen-wrapper .adyen-checkout__voucher-result__code {
  padding-left: 0;
  padding-right: 0; }

.adyen-wrapper .last-card {
  margin-top: 50px; }

.faqs-container {
  margin-top: 170px; }
  .faqs-container .faq-list > li:not(.active) {
    display: none; }
  .faqs-container .faq-questions {
    background: #fff;
    margin-top: 36px; }
    .faqs-container .faq-questions > li {
      border: 1px solid rgba(32, 30, 30, 0.05); }
      .faqs-container .faq-questions > li:not(.active) .description {
        opacity: 0;
        height: 0;
        display: none; }
      .faqs-container .faq-questions > li .title {
        padding: 16px 24px 20px;
        display: flex;
        justify-content: space-between;
        line-height: 24px; }
        .faqs-container .faq-questions > li .title h5:focus, .faqs-container .faq-questions > li .title h5:hover,
        .faqs-container .faq-questions > li .title i:focus,
        .faqs-container .faq-questions > li .title i:hover {
          cursor: pointer; }
        .faqs-container .faq-questions > li .title h5 {
          font-family: "Barlow Condensed", sans-serif;
          font-size: 20px;
          font-weight: 600;
          max-width: calc(100% - 24px); }
    .faqs-container .faq-questions .description {
      color: rgba(32, 30, 30, 0.8);
      padding: 20px 24px;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 300;
      line-height: 24px; }
      .faqs-container .faq-questions .description ul {
        list-style-type: disc;
        padding-left: 20px; }
      .faqs-container .faq-questions .description h4 {
        padding: 12px 0;
        font-weight: 600;
        text-decoration: underline; }
      .faqs-container .faq-questions .description p {
        padding: 12px 0; }
      .faqs-container .faq-questions .description a {
        color: inherit; }
  .faqs-container .faq-list > li > .title {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ea393b;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; }

@media only screen and (max-width: 767px) {
  .faqs-container {
    margin-top: 0;
    padding-top: 100px;
    /* .mobile-menu is menu page */
    /* only inside opened faq page */ }
    .faqs-container .faq-list > li > .title {
      display: none; }
    .faqs-container .faq-questions > li {
      border: none;
      border-bottom: 1px solid rgba(32, 30, 30, 0.05); }
      .faqs-container .faq-questions > li .title {
        padding: 18px 0; }
      .faqs-container .faq-questions > li .description {
        padding: 20px 0; }
    .faqs-container .right-side {
      margin-left: 12px; }
    .faqs-container:not(.mobile-menu) {
      background: #fff; } }

.contacts-container {
  margin-top: 170px; }
  .contacts-container .sidebar {
    font-family: "Barlow Condensed", sans-serif; }
    .contacts-container .sidebar .text {
      margin-top: 60px;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px; }
    .contacts-container .sidebar .big {
      margin-top: 36px;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 24px; }
    .contacts-container .sidebar a {
      line-height: 24px;
      font-weight: 600;
      color: inherit; }
  .contacts-container .right-side h2 {
    color: #ea393b;
    font-family: "octin_college_bold", sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 36px; }
  .contacts-container .right-side .input-field input:read-only {
    opacity: 0.3; }
  .contacts-container .right-side .input-field.textarea {
    border: 1px solid transparent; }
    .contacts-container .right-side .input-field.textarea textarea {
      width: calc(100% - 26px);
      height: 145px;
      line-height: 19px;
      padding: 12px; }
      .contacts-container .right-side .input-field.textarea textarea:read-only {
        opacity: 0.3; }
      .contacts-container .right-side .input-field.textarea textarea:focus + label,
      .contacts-container .right-side .input-field.textarea textarea:not(:placeholder-shown) + label {
        transition: all 0.2s ease-out;
        bottom: 180px;
        left: 0; }
    .contacts-container .right-side .input-field.textarea label {
      bottom: 140px; }
  .contacts-container .right-side .input-field .dropdown .attribute {
    color: rgba(32, 30, 30, 0.2); }
    .contacts-container .right-side .input-field .dropdown .attribute.open {
      color: #201e1e; }
  .contacts-container .right-side .grid .cell:not(.right) .input-field {
    margin-right: 6px; }
  .contacts-container .right-side .grid .right .input-field {
    margin-left: 6px; }
  .contacts-container .right-side .grid:nth-child(2) .input-field {
    margin-bottom: 0; }
  .contacts-container .right-side .button {
    margin-top: 40px; }
  .contacts-container .right-side .form-checkbox {
    margin-top: 24px;
    display: flex;
    flex-flow: row;
    justify-content: space-between; }
    .contacts-container .right-side .form-checkbox .checkbox {
      width: 21px;
      height: 21px;
      border: 1px solid rgba(32, 30, 30, 0.1);
      text-align: center;
      line-height: 20px; }
      .contacts-container .right-side .form-checkbox .checkbox.selected, .contacts-container .right-side .form-checkbox .checkbox.selected.error {
        background: #201e1e;
        border: 1px solid rgba(32, 30, 30, 0.1); }
        .contacts-container .right-side .form-checkbox .checkbox.selected i, .contacts-container .right-side .form-checkbox .checkbox.selected.error i {
          color: #37f899; }
      .contacts-container .right-side .form-checkbox .checkbox.error {
        border: 1px solid #ea393b; }
      .contacts-container .right-side .form-checkbox .checkbox:not(.selected) i {
        display: none; }
    .contacts-container .right-side .form-checkbox .label {
      width: calc(100% - 35px);
      text-align: left;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px; }
      .contacts-container .right-side .form-checkbox .label a {
        text-transform: uppercase;
        color: inherit;
        font-weight: 600; }
  .contacts-container .right-side form .error-message {
    margin: 5px 0 12px;
    color: #ea393b;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px; }
    .contacts-container .right-side form .error-message p {
      margin-bottom: 5px; }
    .contacts-container .right-side form .error-message:first-of-type {
      margin-top: 22px; }

@media only screen and (max-width: 767px) {
  .contacts-container {
    margin-top: 100px; }
    .contacts-container .sidebar {
      display: flex;
      margin-bottom: 40px; }
      .contacts-container .sidebar .content.fixed {
        position: relative; }
      .contacts-container .sidebar .text {
        margin-top: 30px; }
      .contacts-container .sidebar .big {
        margin-top: 20px; }
    .contacts-container .right-side .grid .cell:not(.right) .input-field {
      margin-right: 0; }
    .contacts-container .right-side .grid .input-field {
      margin-bottom: 30px; }
    .contacts-container .right-side .grid .right .input-field {
      margin-left: 0;
      margin-bottom: 30px; }
    .contacts-container .right-side .grid:nth-child(2) .input-field {
      margin-bottom: 30px; }
    .contacts-container .right-side .grid.mt2 {
      margin-top: 0; }
    .contacts-container .input-field .dropdown {
      margin-top: 0; } }

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle; }

.btn {
  border: 1px solid rgba(32, 30, 30, 0.1);
  color: gray;
  background-color: white;
  padding: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-display: swap;
  font-size: 16px;
  color: #201e1e; }

.upload-btn-wrapper:hover .btn {
  border: 1px solid #201e1e;
  cursor: pointer; }

.upload-btn-wrapper input[type="file"] {
  width: 100%;
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0; }

.upload-btn-wrapper ~ span {
  padding-left: 15px;
  font-size: 13px;
  font-weight: normal; }

.contacts-button {
  width: 30%; }
  @media only screen and (max-width: 767px) {
    .contacts-button {
      width: 100%;
      margin-bottom: 30px; } }

.profile-container {
  margin-top: 170px; }
  .profile-container .sidebar .menu {
    margin: 36px 0 0; }
  .profile-container .sidebar .button {
    margin-top: 150px; }

@media only screen and (max-width: 767px) {
  .profile-container {
    margin-top: 100px; }
    .profile-container .sidebar .button {
      margin-top: 0; } }

.page-404-container {
  margin-top: 170px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 50vh; }
  .page-404-container .page-404 {
    align-self: center;
    text-align: center; }
    .page-404-container .page-404 .tip {
      font-family: "octin_college_bold", sans-serif;
      font-size: 60px;
      line-height: 77px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 60px;
      letter-spacing: 3px; }
      .page-404-container .page-404 .tip:before {
        content: "["; }
      .page-404-container .page-404 .tip:after {
        content: "]"; }
      .page-404-container .page-404 .tip:before, .page-404-container .page-404 .tip:after {
        color: #37f899;
        font-size: 92px;
        line-height: 28px; }
    .page-404-container .page-404 .title {
      font-family: "octin_college_bold", sans-serif;
      font-size: 24px;
      line-height: 28px;
      letter-spacing: 1px; }
    .page-404-container .page-404 .text {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 0.5px;
      margin: 24px 0 36px; }
    .page-404-container .page-404 .button {
      width: 200px;
      letter-spacing: 2px; }
      .page-404-container .page-404 .button a {
        margin-left: 0; }

.user-orders .order {
  background: #fff;
  margin-bottom: 24px; }
  .user-orders .order .head {
    line-height: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid rgba(32, 30, 30, 0.1); }
    .user-orders .order .head .left-side,
    .user-orders .order .head right-side {
      display: flex;
      flex-wrap: wrap; }
    .user-orders .order .head .reference {
      margin-right: 20px;
      font-family: "octin_college_bold", sans-serif; }
    .user-orders .order .head .state {
      display: flex;
      color: #ea393b;
      text-transform: uppercase; }
    .user-orders .order .head .date {
      color: rgba(32, 30, 30, 0.5); }
    .user-orders .order .head .state,
    .user-orders .order .head .date,
    .user-orders .order .head .right-side a {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px; }
    .user-orders .order .head .right-side a {
      margin-left: 24px;
      color: #201e1e;
      text-decoration: underline;
      text-transform: uppercase; }
  .user-orders .order .body {
    padding: 24px; }
  .user-orders .order .products .product:not(:last-child) {
    padding-bottom: 24px; }
  .user-orders .order .products .product .thumbnail {
    position: relative; }
  .user-orders .order .products .product .thumbnail img {
    width: 100%;
    display: block; }
  .user-orders .order .products .product .order_pre_sale {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    position: absolute;
    bottom: 8px;
    left: 0;
    background-color: #37f899;
    color: #201e1e;
    font-family: "octin_college_bold", sans-serif;
    text-transform: uppercase;
    line-height: 25px;
    font-size: 11px;
    text-align: center;
    letter-spacing: 1px; }
    @media only screen and (max-width: 991px) {
      .user-orders .order .products .product .order_pre_sale {
        width: 100%;
        bottom: 30px;
        font-size: 10px; } }
    @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
      .user-orders .order .products .product .order_pre_sale {
        font-size: 8px; } }
  .user-orders .order .products .product .details {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding-left: 12px; }
    .user-orders .order .products .product .details .name {
      font-family: "Barlow Condensed", sans-serif;
      line-height: 18px; }
    .user-orders .order .products .product .details .tracking-id {
      display: inline-block;
      margin: 0 20px;
      color: #000;
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase; }
      @media only screen and (max-width: 991px) {
        .user-orders .order .products .product .details .tracking-id {
          display: block;
          margin: 0; } }
    .user-orders .order .products .product .details .attributes,
    .user-orders .order .products .product .details .reference {
      color: rgba(32, 30, 30, 0.2);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase; }
    .user-orders .order .products .product .details .price {
      font-family: "octin_college_bold", sans-serif;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0.5px; }
    .user-orders .order .products .product .details .state {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      color: rgba(32, 30, 30, 0.8);
      margin: 15px 0; }
    .user-orders .order .products .product .details .state--red {
      display: flex;
      color: #ea393b;
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 600; }
  .user-orders .order .totals {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .user-orders .order .row {
    display: flex;
    justify-content: space-between;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase; }
    .user-orders .order .row:nth-child(1), .user-orders .order .row:nth-child(2) {
      margin-bottom: 6px; }
    .user-orders .order .row:nth-child(3) {
      margin-bottom: 3px; }
    .user-orders .order .row.shipping-method {
      color: rgba(32, 30, 30, 0.8);
      font-weight: 400;
      line-height: 14px;
      text-transform: none; }
    .user-orders .order .row .total-label {
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      font-size: 20px;
      line-height: 24px; }
    .user-orders .order .row .total-amount {
      font-family: "octin_college_bold", sans-serif;
      font-size: 20px;
      line-height: 20px;
      font-weight: normal; }

.user-orders .ongoing {
  margin-bottom: 48px; }

.user-orders .historic {
  margin-bottom: 72px; }

.user-orders.empty {
  height: 100%;
  font-family: "Barlow Condensed", sans-serif;
  color: rgba(32, 30, 30, 0.5);
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column; }
  .user-orders.empty img {
    margin-bottom: 24px; }
  @media only screen and (max-width: 767px) {
    .user-orders.empty {
      padding-top: 40px; } }

@media only screen and (max-width: 767px) {
  .user-orders .order .head,
  .user-orders .order .footer {
    line-height: 40px; }
  .user-orders .order .head .left-side {
    justify-content: space-between;
    width: 100%; }
  .user-orders .order .footer {
    border-top: 1px solid rgba(32, 30, 30, 0.1);
    display: flex;
    flex-flow: row;
    justify-content: center;
    text-align: center; }
    .user-orders .order .footer a {
      width: 50%;
      font-family: "Barlow Condensed", sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.3px;
      color: inherit;
      text-transform: uppercase; }
    .user-orders .order .footer span {
      border-right: 1px solid rgba(32, 30, 30, 0.1);
      height: 20px;
      margin-top: 10px; }
  .user-orders .order .totals {
    margin-top: 24px; }
  .user-orders .order .bottom .row {
    margin-top: 6px; } }

.filters-bar-container {
  width: 100vw;
  min-height: 480px;
  max-height: 80vh;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  transform: translateY(-100vh);
  z-index: 4;
  padding: 100px 0 0;
  transition: transform 0.8s ease-out; }
  @media only screen and (max-width: 767px) {
    .filters-bar-container {
      top: -200vh;
      overflow: auto;
      overflow-x: hidden;
      height: 100vh;
      max-height: none;
      z-index: 6;
      padding: 0;
      transform: none; } }
  @media only screen and (max-width: 767px) {
    .filters-bar-container:not(.open) .order-content {
      transform: translate3d(0, 0, 0); } }
  .filters-bar-container.open {
    top: 0;
    transform: translateY(0);
    transition: transform 0.8s ease-out; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container.open {
        transform: none; } }
    .filters-bar-container.open .content {
      opacity: 1;
      transition: opacity 0.4s 0.4s ease-out; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container.open .order-content .clear,
      .filters-bar-container.open .order-content .button {
        transform: translate3d(0, 0, 0); } }
  .filters-bar-container .content {
    opacity: 0;
    transition: opacity 0.3s ease-out; }
  .filters-bar-container .head {
    margin-bottom: 36px; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container .head {
        display: none; } }
  .filters-bar-container .title {
    font-family: "octin_college_bold", sans-serif;
    font-size: 36px;
    letter-spacing: 0.57px;
    line-height: 44px;
    text-shadow: 14px 10px 13px 0 rgba(0, 0, 0, 0.07); }
  .filters-bar-container .right-widgets {
    display: flex;
    margin-right: 9px; }
    .filters-bar-container .right-widgets:hover, .filters-bar-container .right-widgets:focus {
      cursor: pointer; }
  .filters-bar-container .remove {
    color: rgba(32, 30, 30, 0.5);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    letter-spacing: 0.53px;
    line-height: 16px;
    text-transform: uppercase;
    padding-right: 15px; }
  .filters-bar-container .close {
    padding-left: 15px;
    display: flex;
    align-items: center; }
    .filters-bar-container .close i {
      font-size: 16px; }
  .filters-bar-container .attribute-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container .attribute-name {
        font-size: 12px; } }
  @media only screen and (max-width: 767px) {
    .filters-bar-container .text-attribute {
      margin-bottom: 36px; } }
  .filters-bar-container .text-attribute .attribute-options {
    margin-top: 12px;
    color: rgba(32, 30, 30, 0.5);
    font-family: "octin_college_regular", sans-serif;
    font-size: 16px;
    line-height: 24px; }
    .filters-bar-container .text-attribute .attribute-options li {
      transition: color 0.5s ease, font-size 0.5s ease, line-height 0.5s ease, letter-spacing 0.5s ease; }
      .filters-bar-container .text-attribute .attribute-options li.active {
        color: #201e1e;
        font-family: "octin_college_bold", sans-serif;
        font-size: 20px;
        letter-spacing: 0.57px;
        line-height: 36px;
        transition: color 0.5s ease, font-size 0.5s ease, line-height 0.5s ease, letter-spacing 0.5s ease; }
      .filters-bar-container .text-attribute .attribute-options li a {
        color: inherit;
        text-decoration: none; }
  .filters-bar-container .text-attribute select {
    height: 50px;
    width: 100%;
    border: 1px solid rgba(32, 30, 30, 0.1);
    background-color: #fff;
    border-radius: 0;
    font-family: "octin_college_bold", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 19px;
    padding-left: 12px;
    color: black; }
    .filters-bar-container .text-attribute select:focus {
      outline: none; }
  .filters-bar-container .text-attribute i {
    position: absolute;
    right: 12px;
    top: 18px; }
  @media only screen and (max-width: 767px) {
    .filters-bar-container .color-attribute {
      margin-bottom: 36px; } }
  .filters-bar-container .color-attribute .attribute-options {
    color: rgba(32, 30, 30, 0.5);
    font-family: "Barlow Condensed", sans-serif;
    line-height: 18px; }
    .filters-bar-container .color-attribute .attribute-options li {
      position: relative;
      display: flex;
      margin: 10px 0;
      transition: color 0.5s ease; }
      .filters-bar-container .color-attribute .attribute-options li.active {
        color: #201e1e;
        transition: color 0.5s ease; }
        .filters-bar-container .color-attribute .attribute-options li.active span {
          height: 20px;
          width: 20px;
          left: 0;
          transition: border 0.2s ease, left 0.2s ease, height 0.2s ease, width 0.2s ease; }
    .filters-bar-container .color-attribute .attribute-options span {
      position: absolute;
      height: 18px;
      width: 18px;
      left: 1px;
      border: 1px solid transparent;
      transition: border 0.2s ease, left 0.2s ease, height 0.2s ease, width 0.2s ease; }
    .filters-bar-container .color-attribute .attribute-options div {
      margin-left: 35px; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .color-attribute .attribute-options div {
          margin-left: 25px;
          margin-right: 30px; } }
  @media only screen and (max-width: 767px) {
    .filters-bar-container .size-attribute {
      margin-bottom: 36px; } }
  .filters-bar-container .size-attribute .attribute-options {
    color: rgba(32, 30, 30, 0.5);
    font-family: "Barlow Condensed", sans-serif;
    line-height: 18px; }
    .filters-bar-container .size-attribute .attribute-options li {
      display: flex;
      margin: 10px 0;
      position: relative;
      transition: color 0.5s ease; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .size-attribute .attribute-options li {
          margin-right: 16px; } }
      .filters-bar-container .size-attribute .attribute-options li.active {
        color: #201e1e;
        transition: color 0.5s ease; }
        .filters-bar-container .size-attribute .attribute-options li.active span {
          background-color: #201e1e;
          color: #37f899;
          transition: background-color 0.5s ease, color 0.5s ease; }
    .filters-bar-container .size-attribute .attribute-options span {
      height: 16px;
      width: 16px;
      border: 1px solid #eee;
      margin-right: 12px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      left: -1px;
      color: #fff;
      background-color: transparent;
      transition: background-color 0.4s ease, color 0.4s ease; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .size-attribute .attribute-options span {
          margin-right: 5px; } }
      .filters-bar-container .size-attribute .attribute-options span i {
        text-align: center; }
  .filters-bar-container .order-attribute {
    margin-bottom: 24px; }
    .filters-bar-container .order-attribute .attribute-options {
      color: rgba(32, 30, 30, 0.5);
      font-family: "Barlow Condensed", sans-serif;
      line-height: 18px; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .order-attribute .attribute-options {
          font-size: 20px;
          text-transform: capitalize;
          flex-direction: column; } }
      .filters-bar-container .order-attribute .attribute-options li {
        display: flex;
        margin: 10px 0;
        transition: color 0.5s ease; }
        .filters-bar-container .order-attribute .attribute-options li.active {
          color: #201e1e;
          transition: color 0.5s ease; }
          .filters-bar-container .order-attribute .attribute-options li.active span {
            border: 1px solid #201e1e;
            transition: border 0.5s ease; }
            .filters-bar-container .order-attribute .attribute-options li.active span .red-ball {
              background: #ea393b;
              transition: background 0.4s ease; }
      .filters-bar-container .order-attribute .attribute-options span {
        height: 16px;
        width: 16px;
        border: 1px solid #eee;
        margin-right: 12px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        border-radius: 50%;
        transition: border 0.5s ease; }
        .filters-bar-container .order-attribute .attribute-options span i {
          text-align: center; }
        .filters-bar-container .order-attribute .attribute-options span .red-ball {
          border-radius: 50%;
          width: 12px;
          height: 12px;
          align-self: center;
          background: transparent;
          transition: background 0.1s ease; }
  @media only screen and (max-width: 767px) {
    .filters-bar-container .price-attribute {
      margin-bottom: 30px; } }
  .filters-bar-container .price-attribute .input-range {
    margin-top: 25px; }
    .filters-bar-container .price-attribute .input-range .input-range__track--background {
      left: 20px;
      right: 20px; }
    .filters-bar-container .price-attribute .input-range .input-range__label--min,
    .filters-bar-container .price-attribute .input-range .input-range__label--max {
      bottom: 0; }
    .filters-bar-container .price-attribute .input-range .input-range__track {
      height: 2px; }
    .filters-bar-container .price-attribute .input-range .input-range__slider {
      background: #201e1e;
      border: 1px solid #201e1e; }
    .filters-bar-container .price-attribute .input-range .input-range__label-container {
      display: none; }
    .filters-bar-container .price-attribute .input-range .input-range__track--active {
      background: #201e1e; }
    .filters-bar-container .price-attribute .input-range .input-range__slider {
      width: 10px;
      height: 10px;
      margin-top: -7px; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .price-attribute .input-range .input-range__slider {
          width: 100px;
          height: 100px;
          background: transparent;
          border: none;
          margin-top: -45px; } }
      .filters-bar-container .price-attribute .input-range .input-range__slider:active {
        transform: scale(1.2); }
        @media only screen and (max-width: 767px) {
          .filters-bar-container .price-attribute .input-range .input-range__slider:active {
            transform: none; }
            .filters-bar-container .price-attribute .input-range .input-range__slider:active:before {
              transform: scale(1.2); } }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .price-attribute .input-range .input-range__slider:before {
          content: "";
          position: absolute;
          bottom: 50%;
          left: 7px;
          width: 10px;
          height: 10px;
          border-radius: 50%;
          background: #201e1e; } }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .price-attribute .input-range .input-range__slider:focus {
          box-shadow: none;
          background: transparent;
          outline: none; } }
  .filters-bar-container .price-attribute .price-labels {
    color: rgba(32, 30, 30, 0.5);
    font-family: "octin_college_regular", sans-serif;
    font-size: 16px;
    line-height: 64px;
    width: 40px; }
  .filters-bar-container .attribute-options {
    max-height: 300px;
    margin-top: 20px; }
    .filters-bar-container .attribute-options:hover, .filters-bar-container .attribute-options:focus {
      cursor: pointer; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container .attribute-options {
        display: flex;
        flex-wrap: wrap; } }
  .filters-bar-container .special-column {
    border-left: 1px solid rgba(32, 30, 30, 0.1);
    padding-left: 23px; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container .special-column {
        border-left: none;
        padding-left: 0; } }
    .filters-bar-container .special-column:not(:last-child) {
      height: 322px;
      overflow: auto; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .special-column:not(:last-child) {
          height: auto; } }
    .filters-bar-container .special-column .last-row {
      position: relative; }
      @media only screen and (max-width: 767px) {
        .filters-bar-container .special-column .last-row {
          position: inherit; } }
  .filters-bar-container .order-content {
    height: 100%; }
  .filters-bar-container .button {
    width: 100%;
    float: right;
    margin-top: 30px;
    position: absolute; }
    @media only screen and (max-width: 767px) {
      .filters-bar-container .button {
        position: fixed;
        width: 50%;
        left: 50%;
        bottom: 0; }
        .filters-bar-container .button span {
          font-size: 12px; } }
  @media only screen and (max-width: 767px) {
    .filters-bar-container .mobile-md.head {
      display: flex;
      justify-content: space-between;
      height: 50px;
      line-height: 50px;
      position: relative;
      margin-bottom: 15px; }
      .filters-bar-container .mobile-md.head::after {
        content: "";
        border-bottom: 1px solid rgba(32, 30, 30, 0.1);
        position: absolute;
        bottom: 0;
        left: -12px;
        width: calc(100% + 24px); }
      .filters-bar-container .mobile-md.head .tabs {
        display: flex; }
        .filters-bar-container .mobile-md.head .tabs .tab {
          font-family: "octin_college_bold", sans-serif;
          font-size: 16px;
          letter-spacing: 0.57px;
          margin-right: 24px;
          color: rgba(32, 30, 30, 0.2);
          transition: color 0.4s ease; }
          .filters-bar-container .mobile-md.head .tabs .tab.active {
            position: relative;
            color: #201e1e;
            transition: color 0.7s ease; }
            .filters-bar-container .mobile-md.head .tabs .tab.active::before {
              content: "";
              border-bottom: 3px solid #ea393b;
              position: absolute;
              bottom: -1px;
              left: -12px;
              width: calc(100% + 24px);
              box-shadow: 0 2px 5px -1px #e9656c; }
            .filters-bar-container .mobile-md.head .tabs .tab.active::after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 30%;
              width: 40%;
              height: 3px;
              box-shadow: 0 2px 5px -1px #ef8489; }
      .filters-bar-container .mobile-md.head .close {
        padding: 0 12px;
        margin-right: -12px; }
    .filters-bar-container .mobile-md .clear {
      width: 50%;
      left: 0;
      bottom: 0;
      position: fixed;
      height: 50px;
      line-height: 50px;
      color: #ea393b;
      font-family: "octin_college_bold", sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      text-align: center;
      background: #eee; }
    .filters-bar-container .filter-padding-mobile {
      padding-bottom: 40%; }
    .filters-bar-container .scrollable-mobile {
      height: 100%; } }

.catalog-head .filters {
  display: inline-flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 767px) {
    .catalog-head .filters {
      position: fixed;
      bottom: 0;
      z-index: 3;
      width: 100%;
      left: 0; } }
  .catalog-head .filters .input {
    background: #fff;
    font-family: "octin_college_bold", sans-serif;
    border: 1px solid rgba(32, 30, 30, 0.1);
    letter-spacing: 2px;
    line-height: 40px;
    font-size: 12px;
    padding-left: 12px;
    padding-right: 18px;
    margin-left: 12px;
    height: 40px;
    cursor: pointer;
    white-space: nowrap;
    display: flex; }
    .catalog-head .filters .input.order {
      display: none; }
    @media only screen and (max-width: 767px) {
      .catalog-head .filters .input {
        width: 50%;
        margin-left: 0; }
        .catalog-head .filters .input.order {
          display: flex; } }
    .catalog-head .filters .input i {
      padding-left: 12px; }
  .catalog-head .filters .selected {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow-x: auto;
    overflow-y: hidden;
    height: 40px; }
    @media only screen and (max-width: 767px) {
      .catalog-head .filters .selected {
        position: absolute;
        max-width: calc(50% - 100px);
        left: 100px;
        bottom: 0;
        overflow: scroll; } }
    .catalog-head .filters .selected > div {
      display: flex; }
    .catalog-head .filters .selected .filter {
      background: rgba(32, 30, 30, 0.02);
      color: #201e1e;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      line-height: 30px;
      height: 30px;
      border-radius: 3px;
      margin-right: 12px;
      padding: 0 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap; }
      .catalog-head .filters .selected .filter i {
        opacity: 0.2;
        padding-left: 10px;
        cursor: pointer; }

.slider-products {
  /* RElATED PRODUCTS SECTION */ }
  .slider-products.related-products {
    padding-bottom: 166px;
    position: relative; }
    @media only screen and (max-width: 991px) {
      .slider-products.related-products {
        margin: 0;
        padding: 80px 0 100px; } }
    .slider-products.related-products .title-container {
      margin-top: 0; }
    .slider-products.related-products .container {
      position: relative; }
    .slider-products.related-products li,
    .slider-products.related-products .slick-slide {
      display: flex;
      /*h5,
      span {
        position: absolute;
        z-index: 1;
        color: $color-black;
        text-decoration: none;
        left: 0;
        text-align: center;
        width: 100%;
      }

      h5 {
        bottom: -28px;
        font-family: $font-secondary;
        line-height: 19px;
      }

      .price {
        position: absolute;
        bottom: -56px;
        left: 0;
        line-height: 19px;
        font-family: $font-extra-bold;
        width: 100%;
        display: flex;
        justify-content: center;
        color: $color-black;

        span{
          position: relative;
        }

        .promo {
          span {
            position: relative;
            bottom: 0;
            &:nth-child(1) {
              color: $color-grey-50;
              font-family: $font-extra-bold;
              font-size: 12px;
              line-height: 14px;
              padding-right: 6px;
              text-decoration: line-through;
            }
            &:nth-child(2) {
              color: $color-red;
            }
          }
        }
      }
      .tag {
        width: 60px;
        top: auto;
        left: -6px;
        bottom: 24px;
      }*/ }
      @media only screen and (max-width: 991px) {
        .slider-products.related-products li,
        .slider-products.related-products .slick-slide {
          margin: 0 6px;
          align-items: flex-start; } }
    .slider-products.related-products .slick-arrow.slick-prev, .slider-products.related-products .slick-arrow.slick-next {
      bottom: auto;
      top: 50%;
      transform: translateY(-50%);
      left: 100px; }
    .slider-products.related-products .slick-arrow.slick-next {
      left: auto;
      right: 100px; }
      @media only screen and (max-width: 991px) {
        .slider-products.related-products .slick-arrow.slick-next {
          right: 12px; } }
    @media only screen and (max-width: 991px) {
      .slider-products.related-products .slick-arrow.slick-prev {
        left: 12px; } }
    .slider-products.related-products .last .product {
      display: flex;
      align-items: center; }
    .slider-products.related-products .last .content {
      height: 80%; }
    .slider-products.related-products .last .product-images > a {
      padding: 0; }
    .slider-products.related-products .last .product-details a {
      padding-left: 20px; }
    .slider-products.related-products .product,
    .slider-products.related-products .content,
    .slider-products.related-products .product-images,
    .slider-products.related-products .product-images a {
      height: 100%; }
      @media only screen and (max-width: 991px) {
        .slider-products.related-products .product,
        .slider-products.related-products .content,
        .slider-products.related-products .product-images,
        .slider-products.related-products .product-images a {
          height: auto; } }
    .slider-products.related-products .product-images a {
      overflow: hidden; }
    @media only screen and (min-width: 992px) {
      .slider-products.related-products .product:hover .product-details:before, .slider-products.related-products .product:focus .product-details:before {
        height: calc(100% - 10px); } }
    @media only screen and (max-width: 991px) {
      .slider-products.related-products .product .content {
        position: relative; }
      .slider-products.related-products .product .h100 {
        position: absolute;
        bottom: -100px;
        left: 0;
        width: 100%; } }
    @media only screen and (min-width: 992px) {
      .slider-products.related-products .product-details {
        padding-bottom: 63px; }
        .slider-products.related-products .product-details:before {
          top: 0; } }

.infobar {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #000000;
  color: white;
  font-family: "Barlow Condensed";
  font-display: swap;
  font-size: 16px;
  line-height: 18px;
  transition: color 0.3s ease-in-out, top 0.5s ease-in-out, background 0.5s ease-in-out; }
  .infobar.black_white {
    background-color: #000000;
    color: #ffffff; }
    .infobar.black_white .link {
      color: #ffffff; }
  .infobar.red_white {
    background-color: #e43434;
    color: #ffffff; }
    .infobar.red_white .link {
      color: #ffffff; }
  .infobar.green_black {
    background-color: #25f191;
    color: #000000; }
    .infobar.green_black .link {
      color: #000000; }
  .infobar.white_black {
    background-color: #ffffff;
    color: #000000; }
    .infobar.white_black .link {
      color: #000000; }
  .infobar.mobile-info-bar .it {
    width: 100%;
    max-width: 100%;
    margin: 12px 24px; }
  .infobar.mobile-info-bar .title {
    margin-bottom: 3px;
    display: block; }
  .infobar.mobile-info-bar .hide {
    display: none; }
  .infobar.mobile-info-bar .show {
    display: inline; }
  .infobar .desc_and_link {
    transition: color 0.3s ease-in-out, top 0.5s ease-in-out, background 0.5s ease-in-out;
    display: inline; }
  .infobar .close_btn {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    font-size: 25px; }

.infobar .ct {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  flex-wrap: wrap;
  justify-content: center; }

.infobar .it {
  position: relative;
  box-sizing: border-box;
  margin: 12px 24px 15px; }

.infobar .title {
  padding-right: 17px;
  font-weight: 600;
  line-height: 18px; }

.infobar .desc {
  padding-right: 17px;
  font-weight: 200; }

.infobar .link {
  padding-left: 5px;
  font-weight: 400;
  text-decoration: underline; }

@media (min-width: 767px) {
  .hasInfoBar .side-bar {
    top: -62px !important; }
  .hasInfoBar.info-bar-open .side-bar {
    top: -72px !important; }
  .hasInfoBar.compressed .side-bar {
    top: 30px !important; }
  .infobar {
    z-index: 5; }
  .hasInfoBar.info-bar-open .bag-content .side-bar {
    top: -102px !important; } }

@media (max-width: 992px) {
  .container-has-infobar .checkout .sideDetails.open {
    z-index: 7; }
  .hasInfoBar.checkout-header {
    z-index: 6; }
  .hasInfoBar .bag-content .side-bar {
    top: -95px !important; }
  .hasInfoBar.compressed .side-bar,
  header.compressed .side-bar {
    top: -12px !important; }
  header.compressed .search-bar-container.open {
    top: -12px !important; }
  .container-has-infobar .checkout .sideContent {
    padding-top: 0 !important; } }

@media (max-width: 768px) {
  .hasInfoBar .bag-content .side-bar {
    top: 0px !important; }
  .hide-alert-mobile {
    display: none; } }

/* colors */
/* colors with transparency */
/* media sizes */
/* fonts */
/* weights */
.editorial-article-image {
  position: relative;
  height: 330px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (max-width: 1699px) {
    .editorial-article-image {
      height: 280px; } }
  @media only screen and (max-width: 1399px) {
    .editorial-article-image {
      height: 240px; } }
  @media only screen and (max-width: 991px) {
    .editorial-article-image {
      height: 216px; } }
  .editorial-article-image img {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%; }

.editorial-article-wrapper {
  padding: 0 20px;
  margin-bottom: 40px; }
  .editorial-article-wrapper a {
    text-decoration: none; }
  @media only screen and (max-width: 575px) {
    .editorial-article-wrapper {
      padding: 0; } }

.editorial-article-text {
  padding: 28px 24px;
  background: #fff; }

.editorial-article-datetag {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  height: 24px;
  justify-content: space-between; }

.editorial-article-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  letter-spacing: 0.75px;
  line-height: 29px;
  min-height: 87px;
  height: 87px;
  color: #201e1e;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; }

.article-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(32, 30, 30, 0.5); }

.article-tag {
  padding: 6px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  font-family: "octin_college_bold", sans-serif;
  letter-spacing: 1.2px;
  font-size: 12px;
  cursor: pointer; }

.outside-tag {
  position: absolute;
  top: 0;
  right: -34px; }

.article-detail-image {
  width: 100%;
  height: 85vh;
  position: relative;
  object-fit: cover;
  object-position: top center; }
  @media only screen and (max-width: 575px) {
    .article-detail-image {
      height: 330px; } }
  .article-detail-image-container {
    height: 720px;
    overflow: hidden; }
    @media only screen and (max-width: 575px) {
      .article-detail-image-container {
        height: 330px; } }

.article-detail-wrapper {
  padding: 0 150px;
  margin-top: -250px;
  position: relative; }
  @media only screen and (max-width: 991px) {
    .article-detail-wrapper {
      margin: 0;
      padding: 0; } }

.article-detail-center {
  padding: 0 !important;
  justify-content: center; }

.article-detail-slider {
  padding-left: 110px;
  margin-top: 36px; }
  @media only screen and (max-width: 991px) {
    .article-detail-slider {
      padding: 0 0 0 16px; } }
  .article-detail-slider .slick-slider {
    position: relative; }
    .article-detail-slider .slick-slider .slick-arrow {
      position: absolute;
      z-index: 999;
      top: 50%;
      cursor: pointer; }
      .article-detail-slider .slick-slider .slick-arrow i {
        font-size: 36px;
        line-height: 20px; }
    .article-detail-slider .slick-slider .slick-prev {
      left: 20px; }
    .article-detail-slider .slick-slider .slick-next {
      right: 20px; }
  .article-detail-slider .slick-list {
    width: calc(100% - 100px); }
    @media only screen and (max-width: 991px) {
      .article-detail-slider .slick-list {
        width: 100%; } }
    .article-detail-slider .slick-list .slick-active {
      opacity: 1 !important;
      position: relative; }
      @media only screen and (max-width: 991px) {
        .article-detail-slider .slick-list .slick-active {
          margin-left: 0; } }
    @media only screen and (max-width: 991px) {
      .article-detail-slider .slick-list {
        height: 410px; } }
    @media only screen and (max-width: 767px) {
      .article-detail-slider .slick-list {
        height: 260px; } }
    .article-detail-slider .slick-list .slick-slide {
      opacity: 0.4;
      height: 600px;
      transition: opacity 0.3s ease-in;
      overflow: hidden; }
      @media only screen and (max-width: 991px) {
        .article-detail-slider .slick-list .slick-slide {
          height: 400px; } }
      @media only screen and (max-width: 767px) {
        .article-detail-slider .slick-list .slick-slide {
          height: 260px; } }
  .article-detail-slider .slick-dots {
    display: flex !important;
    width: 80%;
    margin: 30px 0 0 0;
    padding: 0; }
    @media only screen and (max-width: 991px) {
      .article-detail-slider .slick-dots {
        width: calc(100% - 20px);
        margin: 20px 0 0 0; } }
    .article-detail-slider .slick-dots li {
      width: 200px;
      margin-right: 8px;
      cursor: pointer;
      flex: 1; }
      .article-detail-slider .slick-dots li:last-child {
        margin-right: 0; }
      .article-detail-slider .slick-dots li div {
        width: 100%;
        height: 2px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px; }
    .article-detail-slider .slick-dots .slick-active div {
      background: #201e1e; }
  .article-detail-slider .slick-arrow {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer; }
    .article-detail-slider .slick-arrow i {
      font-size: 36px;
      line-height: 20px; }
    .article-detail-slider .slick-arrow img {
      padding-top: 2px; }

.article-detail-element {
  padding: 40px 0;
  border-bottom: 1px solid rgba(32, 30, 30, 0.1); }
  .article-detail-element:last-child {
    padding: 40px 0 0 0;
    border-bottom: none; }

.article-detail-video {
  padding: 40px 110px !important; }
  @media only screen and (max-width: 991px) {
    .article-detail-video {
      padding: 40px 0 !important; } }
  .article-detail-video video {
    width: 100%; }

.article-detail-header {
  padding: 0 110px; }
  @media only screen and (max-width: 991px) {
    .article-detail-header {
      padding: 0;
      display: flex;
      flex-direction: column;
      margin: 0 16px;
      border-bottom: 1px solid rgba(32, 30, 30, 0.1); } }

.article-detail-content {
  background: #fff;
  padding: 70px 0; }
  .article-detail-content .editorial-article-datetag {
    margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .article-detail-content .editorial-article-datetag {
        margin: 0 0 16px 0 !important;
        padding: 0;
        order: 1; } }
  @media only screen and (max-width: 991px) {
    .article-detail-content {
      padding: 20px 0;
      display: flex;
      flex-direction: column; } }
  .article-detail-content > .article-detail-text {
    margin-top: 72px; }
    @media only screen and (max-width: 991px) {
      .article-detail-content > .article-detail-text {
        margin-top: 0; } }

.article-detail-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%); }

.article-detail-title {
  margin-top: 30px;
  font-family: "octin_college_bold", sans-serif;
  color: #000;
  line-height: 44px;
  font-size: 42px; }
  @media only screen and (max-width: 991px) {
    .article-detail-title {
      margin-top: 0;
      font-size: 24px;
      line-height: 26px;
      padding: 0;
      order: 2; } }

.article-detail-introduction {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 500;
  margin: 24px 0; }
  @media only screen and (max-width: 991px) {
    .article-detail-introduction {
      margin: 16px 0 30px 0;
      padding: 0;
      order: 3; } }

.article-detail-separator {
  height: 1px;
  width: 100%;
  float: left;
  background-color: rgba(32, 30, 30, 0.1);
  margin: 36px 0; }
  @media only screen and (max-width: 991px) {
    .article-detail-separator {
      margin: 0 16px 36px 16px;
      order: 4; } }

.article-detail-text p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 24px; }

.article-detail-text b {
  font-weight: bold !important; }

.article-detail-text i {
  font-style: italic !important; }

.article-detail-text a {
  text-decoration: none;
  color: #37f899; }

.article-detail-text img {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .article-detail-text img {
      height: 100%; } }

@media only screen and (max-width: 991px) {
  .article-detail-text {
    order: 5; } }

.article-detail-options {
  background: #fff;
  border-top: 1px solid rgba(32, 30, 30, 0.1);
  padding: 0 0 0 110px; }
  @media only screen and (max-width: 991px) {
    .article-detail-options {
      padding: 0; } }

.article-detail-related {
  padding: 60px 120px 60px 0;
  border-right: 1px solid rgba(32, 30, 30, 0.1); }
  @media only screen and (max-width: 991px) {
    .article-detail-related {
      border-right: none;
      padding: 40px 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid rgba(32, 30, 30, 0.1); } }
  @media only screen and (max-width: 767px) {
    .article-detail-related {
      padding: 40px; } }

.article-detail-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative; }
  .article-detail-list li::before {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    transform: translateY(50%);
    height: 6px;
    width: 6px;
    background: #37f899;
    font-size: 18px;
    display: inline-block; }
  .article-detail-list li p {
    margin-left: 20px; }

.article-detail-share {
  padding: 60px; }
  .article-detail-share .article-options-title {
    text-align: center; }

.article-detail-highlight {
  position: relative;
  margin: 30px 110px 0;
  padding: 7px 0 7px 32px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: 29px; }
  @media only screen and (max-width: 991px) {
    .article-detail-highlight {
      margin: 30px 16px 0; } }
  .article-detail-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: #37f899; }

.go-back-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #201e1e;
  text-decoration: none;
  cursor: pointer;
  display: flex; }
  .go-back-btn i {
    margin-right: 10px; }
  @media only screen and (max-width: 991px) {
    .go-back-btn {
      display: none; } }

.article-options-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  white-space: nowrap; }
  @media only screen and (max-width: 991px) {
    .article-options-title {
      text-align: center; } }

.social-icons {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  font-size: 24px;
  margin-top: 32px; }
  @media only screen and (max-width: 991px) {
    .social-icons {
      margin-top: 30px;
      justify-content: center; } }
  .social-icons a {
    color: #201e1e;
    transition: color 0.3s;
    padding: 0 12px; }
    .social-icons a:hover, .social-icons a:focus {
      color: #ea393b;
      transition: color 0.3s;
      cursor: pointer; }
    @media only screen and (max-width: 991px) {
      .social-icons a {
        margin: 0; } }

.article-related-tags {
  display: inline-block;
  margin-top: 32px; }
  .article-related-tags .article-tag {
    float: left;
    margin: 0 16px 16px 0;
    background: none;
    border: 1px solid #201e1e;
    color: #201e1e;
    transition: all 0.3s ease-in-out; }
    .article-related-tags .article-tag:hover {
      color: #fff;
      background: #201e1e; }
    .article-related-tags .article-tag:last-child {
      margin-right: 0; }
    @media only screen and (max-width: 991px) {
      .article-related-tags .article-tag {
        margin: 0 16px 16px 0; }
        .article-related-tags .article-tag:last-child {
          margin-right: 0; } }

.container-mobile {
  margin: 0; }

.detail-text-desktop {
  margin: 0 110px; }

.detail-text-mobile {
  padding: 30px 0;
  margin: 0 16px; }

.article-image-content {
  padding: 40px 110px 40px 0 !important; }
  @media only screen and (max-width: 991px) {
    .article-image-content {
      padding: 40px 0 !important; } }

.editorial-top-slider {
  margin: 50px 0; }
  .editorial-top-slider .slick-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer; }
    .editorial-top-slider .slick-arrow i {
      font-size: 36px;
      line-height: 20px; }
    @media only screen and (max-width: 767px) {
      .editorial-top-slider .slick-arrow {
        top: 170px;
        width: 35px;
        height: 30px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.8); } }
  .editorial-top-slider .slick-prev {
    left: -5%; }
    @media only screen and (max-width: 767px) {
      .editorial-top-slider .slick-prev {
        left: 5%;
        z-index: 2; } }
  .editorial-top-slider .slick-next {
    right: -5%; }
    @media only screen and (max-width: 767px) {
      .editorial-top-slider .slick-next {
        right: 5%;
        z-index: 2; } }
  @media only screen and (max-width: 767px) {
    .editorial-top-slider {
      margin: 0 -16px; } }
  .editorial-top-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin: 20px 0 0 0; }
    .editorial-top-slider .slick-dots li {
      margin-right: 6px;
      cursor: pointer; }
      .editorial-top-slider .slick-dots li:last-child {
        margin-right: 0; }
    .editorial-top-slider .slick-dots div {
      width: 2px;
      height: 20px;
      background: rgba(32, 30, 30, 0.1); }
    .editorial-top-slider .slick-dots .slick-active div {
      background: #201e1e; }

.editorial-top-item {
  height: 600px;
  max-height: 600px;
  overflow: hidden;
  position: relative; }
  .editorial-top-item img {
    width: 100%; }
  @media only screen and (max-width: 991px) {
    .editorial-top-item {
      height: auto;
      max-height: none; } }

.editorial-top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(109.53deg, rgba(32, 30, 30, 0.6) 0%, rgba(32, 30, 30, 0) 100%); }

.top-category {
  position: relative;
  margin-bottom: 24px; }
  @media only screen and (max-width: 991px) {
    .top-category {
      margin-bottom: 14px; } }
  .top-category:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 24px;
    background: #ea393b;
    left: 0;
    top: 0; }
    @media only screen and (max-width: 991px) {
      .top-category:before {
        display: none; } }
  .top-category p {
    margin-left: 12px;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    color: #fff; }
    @media only screen and (max-width: 991px) {
      .top-category p {
        color: #201e1e;
        font-size: 16px;
        margin: 0;
        letter-spacing: 0.7px; } }

.top-item-content {
  position: absolute;
  top: 0;
  left: 60px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; }
  @media only screen and (max-width: 991px) {
    .top-item-content {
      position: initial;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 0; } }

.top-item-title {
  text-transform: uppercase;
  color: #fff;
  font-size: 63px;
  letter-spacing: 1px;
  text-shadow: 14px 10px 13px 0 rgba(0, 0, 0, 0.07);
  width: 40vw;
  line-height: 74px;
  margin: 0 0 24px;
  word-wrap: break-word;
  font-family: "octin_college_bold", sans-serif;
  max-height: 218px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; }
  @media only screen and (max-width: 991px) {
    .top-item-title {
      width: 80vw;
      text-align: center;
      color: #201e1e;
      font-size: 24px;
      letter-spacing: 0.4px;
      line-height: 26px;
      margin-bottom: 0;
      -webkit-line-clamp: unset;
      overflow: visible; } }

.top-item-introduction {
  width: 30vw;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 24px;
  color: #fff;
  font-weight: 100; }
  @media only screen and (max-width: 991px) {
    .top-item-introduction {
      width: 80vw;
      font-size: 16px;
      text-align: center;
      color: rgba(32, 30, 30, 0.5);
      font-weight: 400;
      line-height: 18px;
      margin-top: 6px; } }

.top-item-link {
  padding: 12px 26px;
  background: #ea393b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: "octin_college_regular", sans-serif;
  float: left; }
  .top-item-link i {
    margin-left: 4px; }

@media only screen and (max-width: 991px) {
  .editorial-catalog-container {
    padding-top: 0; }
    .editorial-catalog-container.filters-open-mobile {
      z-index: 10; } }

.editorial-container {
  margin-bottom: 20px; }
  .editorial-container .breadcrumbs {
    height: 17px; }

.editorial-overlay-wrapper {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .editorial-overlay-wrapper {
      width: 100% !important;
      height: 340px !important;
      background-size: cover !important; } }

.empty-state-article {
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 300px 0; }
  @media only screen and (max-width: 991px) {
    .empty-state-article {
      padding: 130px 0; } }

.empty-state-message {
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  color: rgba(32, 30, 30, 0.5);
  line-height: 28px;
  margin-top: 30px; }

.editorial-filters .category-filters {
  width: 100%;
  position: relative;
  overflow: hidden; }
  .editorial-filters .category-filters .input {
    margin-left: 0; }

.editorial-filters-list {
  background: #fff;
  padding: 0 12px;
  text-transform: uppercase;
  font-family: "octin_college_bold", sans-serif;
  letter-spacing: 2px;
  font-size: 12px;
  position: absolute;
  top: 43px;
  left: 1px;
  min-width: 77%;
  letter-spacing: 1px;
  display: none;
  z-index: 2; }
  .editorial-filters-list li {
    margin: 10px 0;
    color: #cdcdcd;
    cursor: pointer;
    transition: all 0.3s ease-in; }
    .editorial-filters-list li:hover {
      color: #201e1e; }

.editorial-filters-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; }
  .editorial-filters-mobile .head {
    display: flex;
    justify-content: space-between;
    height: 50px;
    line-height: 50px;
    position: relative;
    margin-bottom: 15px; }
    .editorial-filters-mobile .head:after {
      content: "";
      border-bottom: 1px solid rgba(32, 30, 30, 0.1);
      position: absolute;
      bottom: 0;
      left: -12px;
      width: calc(100% + 24px); }
    .editorial-filters-mobile .head .close {
      display: flex;
      align-items: center; }
      .editorial-filters-mobile .head .close i {
        font-size: 16px; }
  .editorial-filters-mobile .tab {
    font-family: "octin_college_bold", sans-serif;
    font-size: 16px;
    letter-spacing: 0.57px; }
  .editorial-filters-mobile .grid .text-attribute {
    margin-bottom: 36px; }
  .editorial-filters-mobile .grid .mobile-md-relative {
    position: relative; }
    .editorial-filters-mobile .grid .mobile-md-relative i {
      position: absolute;
      right: 12px;
      top: 18px; }
  .editorial-filters-mobile .grid .attribute-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase; }
  .editorial-filters-mobile .grid select {
    height: 50px;
    width: 100%;
    border: 1px solid rgba(32, 30, 30, 0.1);
    background-color: #fff;
    border-radius: 0;
    font-family: "octin_college_bold", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 19px;
    padding-left: 12px; }
    .editorial-filters-mobile .grid select:focus {
      outline: none; }

.toggle-open {
  display: block; }

.editorial-head {
  position: initial !important;
  top: initial !important;
  left: initial !important;
  padding: 0 !important;
  width: 100% !important; }
  .editorial-head.compressed {
    position: fixed !important;
    margin: 0 !important;
    padding: 20px 100px !important;
    width: calc(100% - 200px) !important;
    left: 0 !important;
    z-index: 3 !important;
    top: 54px !important;
    background: #fff !important;
    -webkit-transition: background 0.5s ease-in-out 0.01s;
    -o-transition: 0.5s 0.01s background ease-in-out;
    transition: background 0.5s ease-in-out 0.01s; }
  .editorial-head .editorial-filters {
    overflow: unset !important; }

@media only screen and (max-width: 767px) {
  .editorial-catalog-head {
    position: fixed !important; } }

.editorial-filters-wrapper {
  position: relative;
  margin-right: 26px; }
  .editorial-filters-wrapper:last-child {
    margin-right: 0; }
  @media only screen and (max-width: 767px) {
    .editorial-filters-wrapper {
      flex: 1;
      margin-right: 0 !important; }
      .editorial-filters-wrapper .input {
        width: 100% !important; } }

.black-theme {
  color: #201e1e; }
  .black-theme p {
    color: #201e1e; }

.load-more-btn {
  padding: 12px 26px;
  background: #ea393b;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: "octin_college_regular", sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer; }

.load-more-wrapper {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center; }

.filters-mobile-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%; }
  .filters-mobile-wrapper select {
    color: black; }
  .filters-mobile-wrapper .category-filters {
    padding: 15px 24px;
    width: 90%;
    background: #fff;
    text-transform: uppercase;
    font-family: "octin_college_bold", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    white-space: nowrap; }
    .filters-mobile-wrapper .category-filters .input {
      display: flex;
      justify-content: space-between; }

.open-filter-mobile {
  display: block; }

.tag-catalog-list {
  margin-top: 120px;
  display: flex;
  flex-direction: column; }
  @media only screen and (max-width: 767px) {
    .tag-catalog-list {
      margin-top: 60px; } }

.breadcrumbs p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase; }

.none-selected,
.item-selected {
  color: #201e1e !important; }

.article-video-slider video {
  object-fit: fill; }
  @media only screen and (max-width: 991px) {
    .article-video-slider video {
      object-fit: unset; } }

.article-image-slider {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.editorial-container .filters-bar-container .button {
  margin-top: 44px; }

a {
  text-decoration: none; }

.smartSearchResults {
  width: 100%;
  height: 100%; }

.categoryItem {
  color: rgba(32, 30, 30, 0.5);
  cursor: pointer;
  text-transform: capitalize;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 25px;
  margin: 2px 0; }
  @media (max-width: 767px) {
    .categoryItem {
      text-transform: uppercase; } }

.categoryName {
  position: relative; }

.categoryName:hover::before {
  content: "";
  line-height: 0;
  height: 4px;
  width: 100%;
  background-color: rgba(55, 248, 153, 0.9);
  display: block;
  position: absolute;
  top: 12px;
  z-index: -1; }

.queryText {
  font-weight: 600;
  color: #201e1e; }

.categoryCount {
  margin-left: auto;
  font-weight: 400;
  letter-spacing: 0.88px; }

.categoryLine {
  display: flex;
  flex-direction: row; }

.spacer {
  display: none; }
  @media screen and (max-width: 768px) {
    .spacer {
      display: block;
      background-color: #eee;
      content: " ";
      height: 20px; } }

.seoWrapper {
  background-color: white;
  position: relative;
  z-index: 1;
  padding: 36px; }
  .seoWrapper p {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 24px; }
  .seoWrapper a {
    color: #37f899; }
  .seoWrapper .seoTitle {
    line-height: 20px; }
  .seoWrapper .content {
    margin-top: 15px;
    width: 100%;
    font-weight: 300; }
  .seoWrapper b {
    font-weight: bold; }
  .seoWrapper i {
    font-style: italic; }

.maintenance {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: barlow condensed; }
  @media only screen and (max-width: 767px) {
    .maintenance {
      padding-left: 60px;
      padding-right: 60px; }
      .maintenance img {
        width: 40px !important; }
      .maintenance .title {
        font-size: 25px !important;
        line-height: 25px !important;
        margin: 0 !important;
        margin-top: 10px !important;
        padding: 0 !important;
        padding-top: 10px !important; }
      .maintenance .pt {
        font-size: 15px !important;
        line-height: 18px !important; }
      .maintenance .en {
        font-size: 13px !important;
        line-height: 13px !important;
        margin: 0 !important; } }
  .maintenance div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 610px; }
    .maintenance div:first-child img {
      width: 70px; }
    .maintenance div:first-child .title {
      font-weight: bold;
      font-size: 63px;
      letter-spacing: 1px;
      line-height: 56px;
      margin: 30px 0 0;
      padding-top: 30px;
      border-top: 1px solid #00000010; }
    .maintenance div:first-child .pt {
      font-weight: 400;
      font-size: 30px;
      margin: 10px 0;
      opacity: 0.6; }
    .maintenance div:first-child .en {
      font-weight: 400;
      margin: 10px 0;
      opacity: 0.3;
      font-size: 20px; }

.maintenance-full {
  height: 100%; }
  .maintenance-full img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center; }

.countdown {
  display: flex;
  font-family: "Roboto", sans-serif;
  gap: 20px;
  margin-top: 20px; }
  @media screen and (max-width: 992px) {
    .countdown {
      gap: 5px; } }
  .countdown .time-segment {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .countdown .time-segment span {
      font-size: 70px;
      font-weight: bold;
      line-height: 1; }
      @media screen and (max-width: 992px) {
        .countdown .time-segment span {
          font-size: 25px; } }
    .countdown .time-segment .label {
      text-transform: uppercase;
      font-size: 13px !important;
      line-height: 13px !important;
      font-weight: 300;
      margin: 10px auto;
      opacity: 0.3; }
      .countdown .time-segment .label.extra {
        margin: -8px auto 0; }
  .countdown .separator {
    display: flex;
    font-size: 70px;
    font-weight: bold;
    position: relative;
    top: -5px; }
    @media screen and (max-width: 992px) {
      .countdown .separator {
        top: -2.5px;
        font-size: 25px; } }

.catalog-container .products-container .product .content.first-product .product-images .product-bg.second {
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in; }

.catalog-container .products-container .product .content .product-images img.second {
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in; }

.catalog-container .products-container .product:hover {
  z-index: 2;
  transition: z-index 0s; }
  @media only screen and (max-width: 767px) {
    .catalog-container .products-container .product:hover {
      z-index: 0 !important; } }
  .catalog-container .products-container .product:hover .content.first-product .product-images .product-bg {
    transform: scale(1.1);
    transition: transform 3s ease-in; }
    .catalog-container .products-container .product:hover .content.first-product .product-images .product-bg.second {
      opacity: 1;
      transition: transform 3s ease-in, opacity 0.3s ease-in;
      transition-delay: 0s, 0.7s; }
  .catalog-container .products-container .product:hover .content.first-product .product-details:before {
    height: calc(100% + 54px);
    transition: height 0.3s ease-out; }
  .catalog-container .products-container .product:hover .content.first-product .button {
    margin-top: 25px;
    opacity: 1;
    transition: opacity 0.3s ease-in, margin-top 0.5s ease-out;
    transition-delay: 0.1s; }
  .catalog-container .products-container .product:hover .content .product-images img {
    transform: scale(1.1);
    transition: transform 3s ease-in; }
    .catalog-container .products-container .product:hover .content .product-images img.second {
      opacity: 1;
      transition: transform 3s ease-in, opacity 0.3s ease-in;
      transition-delay: 0s, 0.7s; }
  .catalog-container .products-container .product:hover .product-details:before {
    box-shadow: 0 25px 15px -30px rgba(0, 0, 0, 0.5), 0 25px 30px -10px rgba(32, 30, 30, 0.1);
    height: calc(100% + 58px);
    transition: height 0.3s ease-out, box-shadow 3s ease-out; }
  .catalog-container .products-container .product:hover .product-details .swatches {
    margin-top: 0;
    opacity: 1;
    transition: opacity 0.3s ease-in, margin-top 0.5s ease-out;
    transition-delay: 0.1s; }
  .catalog-container .products-container .product:hover .product-details .button {
    margin-top: 23px;
    opacity: 1;
    transition: opacity 0.3s ease-in, margin-top 0.5s ease-out;
    transition-delay: 0.1s; }

.product-details:before {
  box-shadow: none;
  height: 0;
  transition: height 0.3s, box-shadow 0.3s ease-in; }

.product-details .swatches {
  margin-top: -13px;
  opacity: 0;
  transition: opacity 0.3s ease-in, margin-top 0.3s ease-in; }

.product-details .button {
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in, margin-top 0.3s ease-in; }

@media only screen and (max-width: 767px) {
  .catalog-container .products-container .product .product-details .swatches {
    margin-top: 0;
    transition: none; }
  .catalog-container .products-container .product:hover {
    transform: none;
    transition: none; }
    .catalog-container .products-container .product:hover .content .product-images img {
      opacity: 1;
      transform: none;
      transition: none; }
    .catalog-container .products-container .product:hover .content .product-details .swatches {
      margin-top: 0;
      transition: none; } }

@media only screen and (max-width: 767px) {
  .catalog-container .products-container .product .product-details .swatches {
    opacity: 1; } }

.sizes {
  opacity: 1;
  transition: opacity 2s;
  float: left;
  width: 100%; }
  .sizes.hidden {
    opacity: 0;
    transition: opacity 2s; }
  .sizes .size-container li {
    border: 2px solid #f3f3f3;
    transition: border 0.2s, opacity 1s; }
    .sizes .size-container li.active {
      border: 2px solid #37f899;
      transition: border 0.5s; }
    .sizes .size-container li.disabled {
      border-color: rgba(32, 30, 30, 0.05);
      color: rgba(32, 30, 30, 0.2);
      background: transparent; }
  .sizes.error .size-container li {
    border: 1px solid #ea393b; }

.productInfo .social-icons a {
  color: #201e1e;
  transition: color 0.3s; }
  .productInfo .social-icons a:hover, .productInfo .social-icons a:focus {
    color: #ea393b;
    transition: color 0.3s;
    cursor: pointer; }

.productInfo a {
  color: #201e1e; }
  .productInfo a:hover, .productInfo a:focus {
    text-decoration: none; }

.attributes {
  float: left;
  height: auto;
  width: 100% !important; }
  .attributes .dropdown {
    height: auto; }
    .attributes .dropdown .attribute {
      height: auto;
      border: 1px solid #f3f3f3;
      z-index: 0;
      transition: height 0.5s, border 0.5s, z-index 3s; }
      .attributes .dropdown .attribute.open {
        position: relative;
        width: 100%;
        border: 1px solid #201e1e;
        z-index: 1;
        transition: height 0.5s, border 0.5s; }
        .attributes .dropdown .attribute.open div {
          height: 40px;
          transition: height 0.5s; }
          .attributes .dropdown .attribute.open div span {
            opacity: 1;
            transition: opacity 0.2s; }
      .attributes .dropdown .attribute div {
        height: 0;
        transition: height 0.5s; }
        .attributes .dropdown .attribute div span {
          opacity: 0;
          transition: opacity 0.2s; }
        .attributes .dropdown .attribute div.selected {
          height: 40px;
          transition: height 0.5s; }
          .attributes .dropdown .attribute div.selected span {
            opacity: 1; }

.slider-products li {
  transition: transform 1s ease-in-out; }

.productInfo .social-icons a {
  color: #201e1e;
  transition: color 0.3s; }
  .productInfo .social-icons a:hover, .productInfo .social-icons a:focus {
    color: #ea393b;
    transition: color 0.3s;
    cursor: pointer; }

@media only screen and (max-width: 991px) {
  .productInfo .info.open .text,
  .productInfo .info.open .reference {
    height: auto;
    opacity: 1;
    padding: 15px 0 36px;
    transition: all 0.5s, opacity 1.5s; }
  .productInfo .info .text,
  .productInfo .info .reference {
    padding: 0;
    margin-top: 0;
    height: 0;
    opacity: 0;
    transition: all 0.5s; }
  .productInfo .info:not(.open) .text {
    display: none; }
  /* mobile attributes/sizes modals */
  .sideDetails .sideContent .sizes:not(.open),
  .sideDetails .sideContent .attributes:not(.open) {
    bottom: -50vh;
    transition: 0.5s bottom ease-in-out; }
  .sideDetails .sideContent .sizes.open,
  .sideDetails .sideContent .attributes.open {
    height: auto !important;
    bottom: 50px;
    transition: 0.5s bottom ease-in-out;
    width: 94% !important; } }

.stock-messages {
  display: block;
  color: #000000;
  font-family: "Barlow Condensed";
  font-display: swap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.35px;
  line-height: 17px;
  color: #000000;
  margin-bottom: 24px; }
  .stock-messages .title {
    color: #ea393b; }

.input-field input:not([type="submit"]) {
  -webkit-transform: translate3d(0, 0, 0);
  transition: border 0.2s ease-out;
  border: 1px solid rgba(32, 30, 30, 0.1);
  background-color: #fff; }

.input-field input::-webkit-date-and-time-value {
  text-align: left;
  color: #201e1e; }

.input-field input:hover, .input-field input:focus {
  transition: border 0.2s ease-out;
  border: 1px solid #201e1e; }

.input-field input:read-only {
  cursor: default;
  transition: none;
  border: 0; }

.input-field input:focus ~ label,
.input-field input:not(:placeholder-shown) ~ label {
  transition: all 0.2s ease-out;
  bottom: 55px;
  left: 0;
  color: rgba(32, 30, 30, 0.5);
  font-size: 12px;
  line-height: 14px; }

.input-field input:focus + label {
  bottom: 55px;
  left: 0; }

.input-field textarea {
  transition: border 0.2s ease-out;
  border: 1px solid rgba(32, 30, 30, 0.1);
  -webkit-transform: translate3d(0, 0, 0); }
  .input-field textarea:hover, .input-field textarea:focus {
    transition: border 0.2s ease-out;
    border: 1px solid #201e1e; }

.input-field label {
  transition: all 0.2s ease-out;
  bottom: 17px;
  left: 12px;
  color: rgba(32, 30, 30, 0.2);
  font-size: 16px;
  line-height: 19px; }
  .input-field label.label-focus {
    transition: all 0.2s ease-out;
    bottom: 55px;
    left: 0;
    color: rgba(32, 30, 30, 0.5);
    font-size: 12px;
    line-height: 14px; }

.input-field .dropdown .attribute.open {
  position: absolute;
  width: calc(100% - 2px);
  height: auto;
  border: 1px solid #201e1e;
  z-index: 1; }
  .input-field .dropdown .attribute.open div {
    height: 48px;
    transition: none; }
    .input-field .dropdown .attribute.open div span {
      opacity: 1; }
    .input-field .dropdown .attribute.open div.selected {
      position: relative;
      top: auto; }

.input-field .dropdown .attribute div {
  height: 0; }
  .input-field .dropdown .attribute div span {
    opacity: 0; }
  .input-field .dropdown .attribute div.selected, .input-field .dropdown .attribute div.default {
    height: 48px; }
    .input-field .dropdown .attribute div.selected span, .input-field .dropdown .attribute div.default span {
      opacity: 1; }
  .input-field .dropdown .attribute div.selected {
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box; }

.input-field select {
  border: 1px solid #eee;
  transition: border 0.5s; }
  .input-field select:hover, .input-field select:focus {
    border: 1px solid #201e1e;
    transition: border 0.5s; }

.homepage-nike .nike-slider li {
  width: 25%;
  transition: width 0.4s ease-in-out; }
  .homepage-nike .nike-slider li img {
    opacity: 0;
    width: 28vw;
    transform: translateX(50px);
    transition: width 0.4s ease-in-out, transform 0.4s ease-in-out, opacity 0.4s ease-in-out; }
  .homepage-nike .nike-slider li.selected {
    width: 50%; }
    .homepage-nike .nike-slider li.selected::before {
      width: 100%; }
    .homepage-nike .nike-slider li.selected img {
      opacity: 1;
      transform: translateX(0); }

.homepage-nike .separator:before {
  transition: width 0.4s; }

.homepage-nike .separator.first:before {
  width: 45vw; }

.homepage-nike .separator.second:before {
  width: 60vw; }

.homepage-nike .separator.third:before {
  width: 75vw; }

@media only screen and (max-width: 991px) {
  .homepage-nike {
    background: none;
    padding: 60px 0 80px;
    overflow: hidden;
    margin: 0; }
    .homepage-nike .separator.first:before {
      width: 25vw; }
    .homepage-nike .separator.second:before {
      width: 50vw; }
    .homepage-nike .separator.third:before {
      width: 100vw; }
    .homepage-nike .nike-slider {
      margin-left: -24px; }
      .homepage-nike .nike-slider li {
        position: absolute; }
        .homepage-nike .nike-slider li.selected {
          transform: translateX(0);
          animation: slideNext 0.4s;
          -webkit-animation: slideNext 0.4s;
          /* Safari 4+ */
          -moz-animation: slideNext 0.4s;
          /* Fx 5+ */
          -o-animation: slideNext 0.4s;
          /* Opera 12+ */ }
        .homepage-nike .nike-slider li.next {
          transform: translateX(85vw);
          animation: slideHiddenNext 0.4s;
          -webkit-animation: slideHiddenNext 0.4s;
          /* Safari 4+ */
          -moz-animation: slideHiddenNext 0.4s;
          /* Fx 5+ */
          -o-animation: slideHiddenNext 0.4s;
          /* Opera 12+ */ }
        .homepage-nike .nike-slider li.hiddenNext {
          transform: translateX(-85vw);
          animation: slideSelected 0.4s;
          -webkit-animation: slideSelected 0.4s;
          /* Safari 4+ */
          -moz-animation: slideSelected 0.4s;
          /* Fx 5+ */
          -o-animation: slideSelected 0.4s;
          /* Opera 12+ */ }
    .homepage-nike .titles-slider .titles.first, .homepage-nike .titles-slider .titles.second, .homepage-nike .titles-slider .titles.third {
      transition: transform 0.4s ease-in-out; }
    .homepage-nike .titles-slider .titles.pt.first {
      transform: translateX(0); }
    .homepage-nike .titles-slider .titles.pt.second {
      transform: translateX(-95px); }
    .homepage-nike .titles-slider .titles.pt.third {
      transform: translateX(-255px); }
    .homepage-nike .titles-slider .titles.en.first {
      transform: translateX(0); }
    .homepage-nike .titles-slider .titles.en.second {
      transform: translateX(-115px); }
    .homepage-nike .titles-slider .titles.en.third {
      transform: translateX(-296px); }
    .homepage-nike .titles-slider .titles li:not(.selected) {
      opacity: 0.2; } }

@keyframes slideHiddenNext {
  from {
    transform: translateX(170vw); }
  to {
    transform: translateX(85vw); } }

@-webkit-keyframes slideHiddenNext {
  from {
    transform: translateX(170vw); }
  to {
    transform: translateX(85vw); } }

@-moz-keyframes slideHiddenNext {
  from {
    transform: translateX(170vw); }
  to {
    transform: translateX(85vw); } }

@-o-keyframes slideHiddenNext {
  from {
    transform: translateX(170vw); }
  to {
    transform: translateX(85vw); } }

@keyframes slideNext {
  from {
    transform: translateX(85vw); }
  to {
    transform: translateX(0); } }

@-webkit-keyframes slideNext {
  from {
    transform: translateX(85vw); }
  to {
    transform: translateX(0); } }

@-moz-keyframes slideNext {
  from {
    transform: translateX(85vw); }
  to {
    transform: translateX(0); } }

@-o-keyframes slideNext {
  from {
    transform: translateX(85vw); }
  to {
    transform: translateX(0); } }

@keyframes slideSelected {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-85vw); } }

@-webkit-keyframes slideSelected {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-85vw); } }

@-moz-keyframes slideSelected {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-85vw); } }

@-o-keyframes slideSelected {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-85vw); } }

.grey-overlay {
  height: 0;
  width: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out; }
  .grey-overlay.visible {
    height: 100vh;
    width: 100vw;
    display: inline;
    opacity: 1;
    transition: opacity 0.5s ease-in-out; }

/* mobile version */
@media only screen and (max-width: 991px) {
  /* ONLY MOBILE */
  .modal-language-switch {
    bottom: -100vh;
    transition: bottom 0.5s ease-in-out; }
    .modal-language-switch.active {
      bottom: 0;
      transition: bottom 0.5s ease-in-out; } }

.search-bar-container {
  top: -110vh;
  height: 190px;
  transition: top 0.4s ease-in-out; }
  .search-bar-container.show-results {
    height: calc(100vh + 2px); }
  .search-bar-container.open {
    top: -55px;
    transition: top 0.4s ease-in-out; }

header.compressed .search-bar-container {
  top: -150vh; }
  header.compressed .search-bar-container.open {
    top: 30px;
    right: -98px; }
    @media only screen and (max-width: 991px) {
      header.compressed .search-bar-container.open {
        top: -30px !important;
        right: 4px; } }

header.compressed.search-open {
  transition-delay: 0.2s;
  transition-duration: 0.2s; }

.button {
  transition: background-color 1s cubic-bezier(0, 0, 0, 1); }
  .button i {
    margin-left: 15px;
    margin-right: 20px; }
  .button:not(.inactive):before {
    width: 100%;
    transition: background-color 1s cubic-bezier(0, 0, 0, 1); }
  .button:not(.inactive) i {
    transition: margin 0.5s cubic-bezier(0, 0, 0, 1); }
  .button:not(.inactive).hover:before {
    width: 40%;
    transition: width 0.2s cubic-bezier(0, 0, 0.1, 1); }
  .button:not(.inactive).hover i {
    margin-left: 20px;
    margin-right: 15px;
    transition: margin 0.2s ease-in-out; }
  .button:not(.inactive).hover.click:before {
    width: 0;
    transition: width 0.2s ease-out; }
  .button:not(.inactive).click:before {
    width: 100%;
    transition: width 1s cubic-bezier(0, 0, 0, 1); }
  .button:not(.inactive).inactive:before, .button:not(.inactive):disabled:before {
    width: 0%;
    transition: width 0.2s ease-out; }

@media only screen and (max-width: 991px) {
  .checkout .sideDetails {
    top: 100%;
    transition: top 0.5s ease-in-out; }
    .checkout .sideDetails.open {
      top: 0;
      transition: top 0.5s ease-in-out; } }

.mini-cart-appear {
  opacity: 0; }

.mini-cart-appear.mini-cart-appear-active {
  opacity: 1;
  transition: opacity 0.7s ease-in; }

.page-swap-enter {
  opacity: 0.01; }

.page-swap-enter.page-swap-enter-active {
  opacity: 1;
  transition: opacity 1s ease-in; }

.page-swap-leave {
  opacity: 1; }

.page-swap-leave.page-swap-leave-active {
  opacity: 0.01;
  transition: opacity 0.2s ease-in; }

.anim-appear.anim-appear-active {
  opacity: 1; }

.anim-appear {
  opacity: 0.01;
  transition: opacity 1s ease-in !important; }

@keyframes loading {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(90deg); }
  50% {
    transform: rotate(180deg); }
  75% {
    transform: rotate(270deg); }
  100% {
    transform: rotate(360deg); } }

.loader {
  height: 16px;
  width: 14px;
  margin-top: 2px;
  animation: loading 1s infinite; }

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  line-height: 10px;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center; }
  .spinner .loader {
    position: absolute;
    left: -50%;
    top: -50%;
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite; }
    .spinner .loader.white {
      border-color: #fff #fff transparent; }
    .spinner .loader:not(.white) {
      border-color: #000 #000 transparent; }

@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .spinner div {
    animation: loading 1s infinite;
    transform-origin: center center; }
  .spinner.is-small {
    font-size: 16px; }
  .spinner.is-medium {
    font-size: 20px; }
  .spinner.is-large {
    font-size: 24px; }

.button.loading.xbig .loader {
  height: 44px;
  width: 44px; }

.button.loading.big .loader {
  height: 36px;
  width: 36px; }

.button.loading.small .loader {
  height: 28px;
  width: 28px;
  line-height: 28px; }

header.compressed .spinner .loader {
  border-color: #000 #000 transparent !important; }

/*** * HOMEPAGE ANIMATION * ***/
.header-animation-appear {
  top: 0;
  opacity: 1; }

.header-animation-appear-active {
  top: -100px;
  opacity: 0.01;
  transition: top 2s ease-in-out, opacity 1s ease-in-out; }

.open-homepage-header-appear .line {
  height: 4px !important;
  background: #ea393b !important;
  width: 0; }

.open-homepage-header-appear.open-homepage-header-appear-active .line {
  height: 1px !important;
  width: 100%;
  transition: width 1s 2s ease-in-out, height 1s 2100ms ease-in; }

header .line {
  transition: background 500ms ease-in-out; }

.open-homepage {
  position: relative; }
  .open-homepage:before {
    content: "";
    height: 0;
    width: 100vw;
    z-index: 5;
    position: absolute;
    top: 100vh;
    left: 0;
    transition: height 1s ease-in-out, top 1s ease-in-out;
    background: #fff; }

.open-homepage-appear:before {
  height: 0;
  top: 100vh; }

.open-homepage-appear.open-homepage-appear-active:before {
  height: 100vh;
  top: 0;
  transition: none; }

.transition-grey-background-enter {
  height: 100vh;
  width: 100vw;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 2s 1s ease-in-out;
  background: #eee; }

.transition-grey-background-enter.example-enter-active {
  height: 0;
  top: 100vh; }

.banner-top-container {
  opacity: 1;
  transition: opacity 0.5s ease-in-out; }

.open-homepage-top-banner-appear {
  opacity: 0; }

.main-container .side-bar .payment .button {
  position: relative;
  bottom: initial;
  left: initial;
  right: initial; }

@media only screen and (max-width: 767px) {
  .main-container.android-mobile .scrollable {
    height: calc(100vh - 145px); }
  .main-container .side-bar {
    top: 0;
    padding-top: 0;
    height: 100vh; }
    .main-container .side-bar.open .cart-container .products {
      width: 100%;
      max-width: 100%;
      position: absolute;
      padding: 0; }
    .main-container .side-bar .cart-container .empty-cart {
      width: 100%; }
    .main-container .side-bar .cart-container .cart-resume:not(.empty):before {
      content: none; }
    .main-container .side-bar .cart-container .products .prices li {
      margin: 0; }
    .main-container .side-bar .cart-container .cart-bottom:before {
      content: "";
      border-top: 1px solid rgba(32, 30, 30, 0.1);
      width: calc(100% + 135px);
      position: absolute;
      top: 15px;
      left: -50px; }
    .main-container .side-bar .cart-container .scrollable {
      height: calc(100vh - 335px);
      position: relative;
      padding: 0 12px; }
    .main-container .side-bar .cart-container .cart-bottom {
      background-color: white;
      position: relative;
      bottom: 0;
      left: 0;
      right: 0;
      padding-top: 30px; }
    .main-container .side-bar .cart-container .cart-resume {
      position: relative; }
    .main-container .side-bar .cart-container .button.red {
      position: relative;
      left: initial;
      right: initial;
      bottom: initial;
      top: initial; }
    .main-container .side-bar .cart-container .promo-code {
      position: relative;
      bottom: 0;
      left: initial;
      right: initial;
      width: auto;
      padding: 0 12px; }
    .main-container .side-bar .cart-container .promo-form {
      flex-direction: row; }
      .main-container .side-bar .cart-container .promo-form .input-field {
        display: inline; }
    .main-container .side-bar .cart-container .promo-form .button {
      width: auto;
      padding: 0px 40px;
      position: relative;
      bottom: 0;
      left: 0;
      right: 0; }
    .main-container .side-bar .cart-container .cart-resume .button.red {
      position: relative;
      margin: 0 auto;
      bottom: initial;
      left: initial; }
    .main-container .side-bar .cart-container .cart-resume .button {
      width: 100%; }
    .main-container .side-bar .cart-container .cart-resume .prices {
      padding: 0 12px 12px 12px; }
    .main-container .side-bar .cart-container .promo-code .button {
      position: relative;
      margin: 0 auto;
      bottom: initial;
      left: initial; }
      .main-container .side-bar .cart-container .promo-code .button span {
        padding-left: 0; }
    .main-container .side-bar .cart-container .products {
      display: flex;
      padding-bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      overflow-y: auto; }
    .main-container .side-bar .cart-container .scrollable {
      display: flex;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      height: 100%;
      overflow: scroll; }
  .safari-mobile .checkout .cart .cart-bottom {
    margin-bottom: 40px; }
  .safari-mobile .cart-container .promo-form .button {
    padding: 2px 40px 3px !important; }
  .safari-mobile .cart-container .cart-bottom {
    margin-bottom: 72px; }
  .safari-mobile .register-container .body {
    position: relative;
    width: 100%;
    margin: 0 auto; }
  header.compressed .bag-content .side-bar {
    top: 0; } }

.main-container .cart-resume.empty .button {
  position: relative;
  bottom: initial;
  left: initial; }

.side-bar .cart-container .body {
  height: calc(100vh - 430px); }

.iOS-device .infobar {
  z-index: 6; }

.iOS-device .log-reg-is-open.infobar {
  z-index: 0; }

.filters-bar-container .text-attribute .attribute-options li.active {
  line-height: 24px; }

.payment .sideContent {
  justify-content: flex-start !important; }
  .payment .sideContent > div {
    height: 100% !important; }

.payment .sideDetails {
  justify-content: flex-start !important; }

.review .sideContent {
  justify-content: flex-start !important; }

@media only screen and (min-width: 768px) {
  .container-has-infobar .filters-bar-container.open {
    top: 42px; } }

@media only screen and (min-width: 991px) {
  .container-has-infobar .checkout .sideContent {
    top: 45px !important; }
  .container-has-infobar .checkout .cart {
    height: calc(100% - 90px); }
  .container-has-infobar .productsDetailsSection .sideDetails .sideContent {
    height: calc(100vh - 150px) !important;
    top: 150px !important; }
  .menu-is-compressed .productsDetailsSection .sideDetails .sideContent {
    height: calc(100vh - 80px) !important;
    top: 80px !important; }
  .productsDetailsSection .sideDetails .sideContent {
    height: calc(100vh - 110px) !important;
    top: 110px !important;
    overflow-x: hidden;
    transition: top 0.5s ease-in-out; }
  .productsDetailsSection .sideDetails .sideContent > div {
    padding-right: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 30px; } }

@media (max-height: 600px) {
  .cart-container .cart-resume {
    padding: 20px 0px; }
  .cart-container .cart-resume .prices .costs li,
  .cart-container .cart-resume .prices .values li {
    margin-top: 10px; }
  .cart-container .products .cart-resume li {
    margin: 10px 0px; }
  .cart-container .cart-resume .prices .total {
    margin-bottom: 10px; }
  .side-bar .cart-container .body {
    height: calc(100vh - 290px); } }

@media only screen and (max-width: 1199px) {
  .language-switch .input-field .dropdown .attribute i {
    right: -5px; }
  .menu-is-compressed .mobile-info-bar {
    background-color: #eee;
    color: #eee; } }

@media only screen and (max-width: 991px) {
  header.compressed.search-open .logo-link .logo-info {
    margin-top: 9px !important; }
  .container-has-infobar .checkout .sideContent {
    padding-top: 50px; }
  .language-switch .input-field .dropdown .attribute i {
    right: -10px; } }

@media only screen and (max-width: 767px) {
  .braintree-form__field-group.phone_number {
    padding-left: 12px; }
  .braintree-form__field-group.country_code {
    padding-right: 0px; }
  .braintree-sheet__content--form
.braintree-form__flexible-fields
.braintree-form__field-group {
    width: 100%;
    flex-basis: unset; } }

.review .sideContent {
  padding-bottom: 0; }

.sideContent .loading-button {
  background-color: #f48d8b; }

.sideContent .spinner .loader {
  border-color: #fff #fff transparent; }

.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block; }

.slick-loading .slick-slide,
.slick-loading .slick-track {
  visibility: hidden; }

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: auto;
  touch-action: auto;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: 0; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

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

.slick-track {
  top: 0;
  left: 0; }

.slick-track:after,
.slick-track:before {
  display: table;
  content: ""; }

.slick-track:after {
  clear: both; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[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-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

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

body,
html {
  overflow: hidden;
  height: 100%; }

body {
  font-family: "Roboto", sans-serif;
  background: #eee;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth; }

#app,
.main-container {
  height: 100%;
  width: 100%; }

.body-container {
  height: 100%; }

/* TODO: move this css to a proper file: */
section,
.body-container {
  overflow: hidden; }

.recover-password-wrapper {
  padding-top: 200px; }

.scroll-container > div {
  overflow-x: hidden !important;
  width: 100vw;
  height: 100vh; }
  .scroll-container > div:nth-child(3) {
    opacity: 0;
    z-index: 6; }

.css-vj8t7z {
  border: 1px solid rgba(32, 30, 30, 0.1) !important;
  border-radius: 0px !important; }

.css-vj8t7z:hover {
  border-color: #201e1e !important;
  cursor: pointer; }

.css-1g6gooi {
  height: 40px; }

.custom-select option,
.css-10nd86i {
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-display: swap;
  font-weight: 400;
  color: #201e1e; }

.css-10nd86i:focus {
  outline: none !important;
  border-color: #201e1e !important; }

span.css-d8oujb {
  display: none; }

.css-1hwfws3 {
  padding: 2px 8px 0 12px; }

.css-15k3avv {
  margin-top: 0 !important;
  border-radius: 0 !important; }

.css-2o5izw {
  border-radius: 0 !important;
  box-shadow: none !important;
  border-color: #201e1e !important; }

.css-2o5izw:hover {
  border-color: #201e1e !important; }

.css-2o5izw:focus {
  border-color: #201e1e !important; }

.error .css-10nd86i {
  border: 1px solid #ea393b !important; }

.success .css-19bqh2r {
  fill: #37f899 !important; }

button[aria-label="Aceitar todos"] {
  display: none; }

.flex-row-end {
  display: flex;
  flex-direction: row;
  justify-content: end; }
