@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@charset "UTF-8";
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

@font-face {
  font-family: 'SamsoniteSans-Expanded';
  src: url("../fonts/SamsoniteSans-Expanded.woff2") format("woff2"), url("../fonts/SamsoniteSans-Expanded.woff") format("woff"), url("../fonts/SamsoniteSans-Expanded.ttf") format("truetype"), url("../fonts/SamsoniteSans-Expanded.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'SamsoniteSans';
  src: url("../fonts/SamsoniteSans.woff2") format("woff2"), url("../fonts/SamsoniteSans.woff") format("woff"), url("../fonts/SamsoniteSans.ttf") format("truetype"), url("../fonts/SamsoniteSans.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Termina-Bold';
  src: url("../fonts/Termina-Bold.woff2") format("woff2"), url("../fonts/Termina-Bold.woff") format("woff"), url("../fonts/Termina-Bold.ttf") format("truetype"), url("../fonts/Termina-Bold.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Termina-Demi';
  src: url("../fonts/Termina-Demi.woff2") format("woff2"), url("../fonts/Termina-Demi.woff") format("woff"), url("../fonts/Termina-Demi.ttf") format("truetype"), url("../fonts/Termina-Demi.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Termina-Light';
  src: url("../fonts/Termina-Light.woff2") format("woff2"), url("../fonts/Termina-Light.woff") format("woff"), url("../fonts/Termina-Light.ttf") format("truetype"), url("../fonts/Termina-Light.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Termina-Medium';
  src: url("../fonts/Termina-Medium.woff2") format("woff2"), url("../fonts/Termina-Medium.woff") format("woff"), url("../fonts/Termina-Medium.ttf") format("truetype"), url("../fonts/Termina-Medium.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Termina-Regular';
  src: url("../fonts/Termina-Regular.woff2") format("woff2"), url("../fonts/Termina-Regular.woff") format("woff"), url("../fonts/Termina-Regular.ttf") format("truetype"), url("../fonts/Termina-Regular.eot") format("eot");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'RainerTestv04-Regular';
  src: url("../fonts/RainerTestv04-Regular.eot") format("eot"), url("../fonts/RainerTestv04-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/RainerTestv04-Regular.svg#RainerTestv04-Regular") format("svg"), url("../fonts/RainerTestv04-Regular.ttf") format("truetype"), url("../fonts/RainerTestv04-Regular.woff") format("woff"), url("../fonts/RainerTestv04-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'RainerTestv04-Medium';
  src: url("../fonts/RainerTestv04-Medium.eot") format("eot"), url("../fonts/RainerTestv04-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/RainerTestv04-Medium.svg#RainerTestv04-Medium") format("svg"), url("../fonts/RainerTestv04-Medium.ttf") format("truetype"), url("../fonts/RainerTestv04-Medium.woff") format("woff"), url("../fonts/RainerTestv04-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Proxon-Regular';
  src: url("../fonts/PROXONRegular.eot") format("eot"), url("../fonts/PROXONRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/PROXONRegular.svg#PROXONRegular") format("svg"), url("../fonts/PROXONRegular.ttf") format("truetype"), url("../fonts/PROXONRegular.woff") format("woff"), url("../fonts/PROXONRegular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gilroy-Light';
  src: url("../fonts/Gilroy-Light.eot") format("eot"), url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.svg#Gilroy-Light") format("svg"), url("../fonts/Gilroy-Light.ttf") format("truetype"), url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Gilroy-ExtraBold';
  src: url("../fonts/Gilroy-ExtraBold.eot") format("eot"), url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"), url("../fonts/Gilroy-ExtraBold.woff") format("woff"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'DIN-BoldAlternate';
  src: url("../fonts/DIN-BoldAlternate.eot") format("eot"), url("../fonts/DIN-BoldAlternate.eot?#iefix") format("embedded-opentype"), url("../fonts/DIN-BoldAlternate.svg#DIN-BoldAlternate") format("svg"), url("../fonts/DIN-BoldAlternate.ttf") format("truetype"), url("../fonts/DIN-BoldAlternate.woff") format("woff"), url("../fonts/DIN-BoldAlternate.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'GoboldHigh';
  src: url("../fonts/GoboldHigh.eot") format("eot"), url("../fonts/GoboldHigh.eot?#iefix") format("embedded-opentype"), url("../fonts/GoboldHigh.svg#GoboldHigh") format("svg"), url("../fonts/GoboldHigh.ttf") format("truetype"), url("../fonts/GoboldHigh.woff") format("woff"), url("../fonts/GoboldHigh.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
 *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2019 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative; }
  .slider.slider-horizontal {
    width: 210px;
    height: 20px; }
    .slider.slider-horizontal .slider-track {
      height: 10px;
      width: 100%;
      margin-top: -5px;
      top: 50%;
      left: 0; }
    .slider.slider-horizontal .slider-selection, .slider.slider-horizontal .slider-track-low, .slider.slider-horizontal .slider-track-high {
      height: 100%;
      top: 0;
      bottom: 0; }
    .slider.slider-horizontal .slider-tick,
    .slider.slider-horizontal .slider-handle {
      margin-left: -10px; }
      .slider.slider-horizontal .slider-tick.triangle,
      .slider.slider-horizontal .slider-handle.triangle {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        border-width: 0 10px 10px 10px;
        width: 0;
        height: 0;
        border-bottom-color: #036fa5;
        margin-top: 0; }
    .slider.slider-horizontal .slider-tick-container {
      white-space: nowrap;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
    .slider.slider-horizontal .slider-tick-label-container {
      white-space: nowrap;
      margin-top: 20px; }
      .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
        display: inline-block;
        text-align: center; }
    .slider.slider-horizontal.slider-rtl .slider-track {
      left: initial;
      right: 0; }
    .slider.slider-horizontal.slider-rtl .slider-tick,
    .slider.slider-horizontal.slider-rtl .slider-handle {
      margin-left: initial;
      margin-right: -10px; }
    .slider.slider-horizontal.slider-rtl .slider-tick-container {
      left: initial;
      right: 0; }
  .slider.slider-vertical {
    height: 210px;
    width: 20px; }
    .slider.slider-vertical .slider-track {
      width: 10px;
      height: 100%;
      left: 25%;
      top: 0; }
    .slider.slider-vertical .slider-selection {
      width: 100%;
      left: 0;
      top: 0;
      bottom: 0; }
    .slider.slider-vertical .slider-track-low, .slider.slider-vertical .slider-track-high {
      width: 100%;
      left: 0;
      right: 0; }
    .slider.slider-vertical .slider-tick,
    .slider.slider-vertical .slider-handle {
      margin-top: -10px; }
      .slider.slider-vertical .slider-tick.triangle,
      .slider.slider-vertical .slider-handle.triangle {
        border-width: 10px 0 10px 10px;
        width: 1px;
        height: 1px;
        border-left-color: #036fa5;
        margin-left: 0; }
    .slider.slider-vertical .slider-tick-label-container {
      white-space: nowrap; }
      .slider.slider-vertical .slider-tick-label-container .slider-tick-label {
        padding-left: 4px; }
    .slider.slider-vertical.slider-rtl .slider-track {
      left: initial;
      right: 25%; }
    .slider.slider-vertical.slider-rtl .slider-selection {
      left: initial;
      right: 0; }
    .slider.slider-vertical.slider-rtl .slider-tick.triangle,
    .slider.slider-vertical.slider-rtl .slider-handle.triangle {
      border-width: 10px 10px 10px 0; }
    .slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
      padding-left: initial;
      padding-right: 4px; }
  .slider.slider-disabled .slider-handle {
    background-color: #cfcfcf;
    background-image: linear-gradient(to bottom, #DFDFDF, #BEBEBE);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#DFDFDF', endColorstr='#BEBEBE',GradientType=0); }
  .slider.slider-disabled .slider-track {
    background-color: #e7e7e7;
    background-image: linear-gradient(to bottom, #E5E5E5, #E9E9E9);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E5E5E5', endColorstr='#E9E9E9',GradientType=0);
    cursor: not-allowed; }
  .slider input {
    display: none; }
  .slider .tooltip-inner {
    white-space: nowrap;
    max-width: none; }
  .slider .bs-tooltip-top .tooltip-inner,
  .slider .bs-tooltip-bottom .tooltip-inner {
    position: relative;
    left: -50%; }
  .slider.bs-tooltip-left .tooltip-inner, .slider.bs-tooltip-right .tooltip-inner {
    position: relative;
    top: -100%; }
  .slider .tooltip {
    pointer-events: none; }
    .slider .tooltip.bs-tooltip-top .arrow, .slider .tooltip.bs-tooltip-bottom .arrow {
      left: -.4rem; }
    .slider .tooltip.bs-tooltip-top {
      margin-top: -44px; }
    .slider .tooltip.bs-tooltip-bottom {
      margin-top: 2px; }
    .slider .tooltip.bs-tooltip-left, .slider .tooltip.bs-tooltip-right {
      margin-top: -14px; }
      .slider .tooltip.bs-tooltip-left .arrow, .slider .tooltip.bs-tooltip-right .arrow {
        top: 8px; }
  .slider .hide {
    display: none; }

.slider-track {
  background-color: #f7f7f7;
  background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F5F5F5', endColorstr='#F9F9F9',GradientType=0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: absolute;
  cursor: pointer; }

.slider-selection {
  background-color: #f7f7f7;
  background-image: linear-gradient(to bottom, #F9F9F9, #F5F5F5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F9F9F9', endColorstr='#F5F5F5',GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  border-radius: 4px;
  position: absolute; }

.slider-selection.tick-slider-selection {
  background-color: #46c1fe;
  background-image: linear-gradient(to bottom, #52c5ff, #3abcfd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd',GradientType=0); }

.slider-track-low, .slider-track-high {
  box-sizing: border-box;
  border-radius: 4px;
  position: absolute;
  background: transparent; }

.slider-handle {
  background-color: #0478b2;
  background-image: linear-gradient(to bottom, #0480BE, #036fa5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0480BE', endColorstr='#036fa5',GradientType=0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #0480BE;
  border: 0px solid transparent; }
  .slider-handle:hover {
    cursor: pointer; }
  .slider-handle.round {
    border-radius: 20px; }
  .slider-handle.triangle {
    background: transparent none; }
  .slider-handle.custom {
    background: transparent none; }
    .slider-handle.custom::before {
      line-height: 20px;
      font-size: 20px;
      content: '\2605';
      color: #726204; }

.slider-tick {
  background-color: #f7f7f7;
  background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F5F5F5', endColorstr='#F9F9F9',GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent; }
  .slider-tick.round {
    border-radius: 50%; }
  .slider-tick.triangle {
    background: transparent none; }
  .slider-tick.custom {
    background: transparent none; }
    .slider-tick.custom::before {
      line-height: 20px;
      font-size: 20px;
      content: '\2605';
      color: #726204; }
  .slider-tick.in-selection {
    background-color: #46c1fe;
    background-image: linear-gradient(to bottom, #52c5ff, #3abcfd);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52c5ff', endColorstr='#3abcfd',GradientType=0);
    opacity: 1; }

body.panel-opened {
  height: 100vh;
  overflow: hidden; }

.custom-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1030;
  background: #fff;
  padding: 22px 30px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.4s; }
  @media (min-width: 768px) {
    .custom-panel {
      max-width: 380px; } }
  @media (min-width: 1200px) {
    .custom-panel {
      overflow-x: auto; } }
  .panel-opened .custom-panel {
    opacity: 1;
    visibility: visible; }
  .custom-panel.right-panel {
    right: -100%; }
    .panel-opened .custom-panel.right-panel {
      right: 0; }
  .custom-panel.left-panel {
    left: -100%; }
    .panel-opened .custom-panel.left-panel {
      left: 0; }
  .custom-panel h2 {
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    font-size: 1.1501rem;
    margin-bottom: 30px;
    text-align: center; }
  .custom-panel .close {
    position: absolute;
    z-index: 1;
    top: 22px;
    right: 18px;
    opacity: 1;
    filter: alpha(opacity=1); }
    .custom-panel .close:hover, .custom-panel .close:focus {
      outline: 0;
      box-shadow: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #000;
  text-align: center;
  line-height: 35px;
  position: relative;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  z-index: 3;
  background-color: #f2f2f2;
  color: #fff;
  outline: 0; }
  @media (min-width: 992px) {
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
      width: 32px;
      height: 32px; } }
  @media (min-width: 1600px) {
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
      width: 34px;
      height: 34px; } }
  .owl-carousel .owl-nav .owl-prev .sa-icon,
  .owl-carousel .owl-nav .owl-next .sa-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .owl-carousel .owl-nav .owl-prev span,
  .owl-carousel .owl-nav .owl-next span {
    display: none; }
  .owl-carousel .owl-nav .owl-prev::before,
  .owl-carousel .owl-nav .owl-next::before {
    font-family: "Samsonite-icons";
    font-style: normal;
    font-weight: normal;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%; }

.owl-carousel .owl-nav .owl-prev {
  left: 0; }
  .owl-carousel .owl-nav .owl-prev::before {
    content: "\E902"; }

.owl-carousel .owl-nav .owl-next {
  right: 0; }
  .owl-carousel .owl-nav .owl-next::before {
    content: "\E903"; }

.product-tile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: 100%;
  position: relative;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .product-tile {
      padding-bottom: 36px; } }
  .product-tile .image-container {
    text-align: center;
    padding-top: 5px; }
    @media (min-width: 992px) {
      .product-tile .image-container {
        padding-top: 30px;
        overflow: hidden; }
        .product-tile .image-container:hover .tile-image, .product-tile .image-container:focus .tile-image {
          transform: scale(1.1); } }
    .product-tile .image-container a .tile-image {
      max-width: 65%;
      margin-left: auto;
      margin-right: auto;
      width: auto; }
      @media (min-width: 992px) {
        .product-tile .image-container a .tile-image {
          transition: ease-in 0.3s; } }
  .product-tile .tile-body {
    padding-top: 10px;
    padding-bottom: 0; }
    @media (min-width: 992px) {
      .product-tile .tile-body {
        padding-top: 27px; } }
    .product-grid .product-tile .tile-body {
      padding-bottom: 0.714rem;
      padding-top: 0.714rem; }
      @media (min-width: 1600px) {
        .product-grid .product-tile .tile-body {
          padding-top: 1.214rem;
          padding-bottom: 1.214rem; } }
    .product-tile .tile-body .price {
      font-family: "HelveticaNeue-Light", sans-serif;
      font-size: 1.107rem;
      font-weight: normal; }
      @media (min-width: 992px) {
        .product-tile .tile-body .price {
          font-size: 1.257rem; } }
      @media (min-width: 1600px) {
        .product-tile .tile-body .price {
          font-size: 1.5714rem; } }
      .product-tile .tile-body .price .sales {
        font-weight: normal; }
      .product-tile .tile-body .price .strike-through {
        font-size: 100%;
        margin-right: 0.2em;
        margin-left: 0;
        color: #000; }
        .product-tile .tile-body .price .strike-through ~ .sales {
          color: #c00; }
      .product-tile .tile-body .price .price-inner {
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex;
        white-space: nowrap; }
  .product-tile .tile-message {
    position: absolute;
    top: 0.5em;
    z-index: 1;
    font-size: 0.6681rem;
    text-transform: uppercase;
    font-family: "Gotham-Medium"; }
    .product-tile .tile-message .callout {
      width: 100%; }
    @media (min-width: 768px) {
      .product-tile .tile-message {
        font-size: 0.91432rem; } }
    @media (min-width: 1600px) {
      .product-tile .tile-message {
        font-size: 1.1429rem; } }
  .product-tile .tile-top-left {
    left: 0; }
    .owl-carousel .product-tile .tile-top-left {
      left: 1em; }
    .product-tile .tile-top-left > div {
      display: inline-block;
      margin-right: 10px; }
  .product-tile .tile-top-right {
    right: 0; }
    .owl-carousel .product-tile .tile-top-right {
      right: 1em; }
  .product-tile .product-sticker img {
    max-width: 30px;
    min-width: 20px; }
    @media (min-width: 992px) {
      .product-tile .product-sticker img {
        min-width: 30px; } }
    @media (min-width: 1600px) {
      .product-tile .product-sticker img {
        max-width: 35px; } }
  .product-tile .tile-body-field-group {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    position: relative; }
    .product-grid .product-tile .tile-body-field-group {
      padding-bottom: 1.429rem; }
      @media (min-width: 768px) {
        .product-grid .product-tile .tile-body-field-group {
          padding-bottom: 0; } }
    @media (min-width: 1600px) {
      .product-tile .tile-body-field-group {
        padding-bottom: 5px; } }
  .product-tile .tile-group-left {
    -ms-flex: 0 0 70%;
        flex: 0 0 70%;
    max-width: 70%; }
  .product-tile .tile-group-right {
    text-align: right;
    -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    max-width: 30%; }
    @media (min-width: 992px) {
      .product-tile .tile-group-right {
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-pack: justify;
            justify-content: space-between;
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex; } }
  .product-tile .product-collection {
    text-transform: uppercase;
    font-size: 1.2143rem;
    margin-bottom: 5px; }
    .product-tile .product-collection h4 {
      margin-bottom: 0;
      font-size: 1.2143rem; }
      @media (min-width: 992px) {
        .product-tile .product-collection h4 {
          font-size: 1.1429rem; } }
      @media (min-width: 1600px) {
        .product-tile .product-collection h4 {
          font-size: 1.4286rem; } }
  .product-tile .pdp-link {
    font-family: "Gotham-Medium", sans-serif;
    text-transform: uppercase;
    font-size: 0.714rem;
    margin-bottom: 5px;
    min-height: 2em; }
    @media (min-width: 992px) {
      .product-tile .pdp-link {
        font-size: 0.857rem; } }
    @media (min-width: 1600px) {
      .product-tile .pdp-link {
        font-size: 0.929rem; } }
  .product-tile .ratings {
    padding: 0;
    width: auto; }
    .product-tile .ratings .fa-star,
    .product-tile .ratings .fa-star-half-o {
      color: #094f8d; }
  .product-tile .tile-body-footer {
    display: block;
    margin: 0; }
  .product-tile .tile-actions {
    margin-left: -3px;
    margin-right: -3px; }
    .product-tile .tile-actions .col-6 {
      padding-left: 3px;
      padding-right: 3px; }
    .product-tile .tile-actions .apple-pay-pdp {
      display: none; }
  .product-tile .cart-and-ipay {
    padding-bottom: 0; }
  .product-tile .add-to-cart,
  .product-tile .add-to-cart-global {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    padding: 9px 3px;
    font-size: 2.3vw;
    line-height: 1;
    margin: 0;
    width: 100%; }
    .product-tile .add-to-cart:hover, .product-tile .add-to-cart:focus,
    .product-tile .add-to-cart-global:hover,
    .product-tile .add-to-cart-global:focus {
      background-color: #000; }
    @media (min-width: 768px) {
      .product-tile .add-to-cart,
      .product-tile .add-to-cart-global {
        font-size: 1rem; } }
    @media (min-width: 992px) {
      .product-tile .add-to-cart,
      .product-tile .add-to-cart-global {
        padding-top: 9px;
        padding-bottom: 9px;
        line-height: 1.2;
        font-size: 0.879rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 1600px) {
      .product-tile .add-to-cart,
      .product-tile .add-to-cart-global {
        font-size: 1.099rem;
        padding-top: 11px;
        padding-bottom: 11px; } }
    .product-tile .add-to-cart .fa,
    .product-tile .add-to-cart-global .fa {
      display: none; }
    .product-tile .add-to-cart:disabled,
    .product-tile .add-to-cart-global:disabled {
      opacity: 0.3; }
  .product-tile .btn-go-details {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    display: block;
    font-size: 2.3vw;
    padding: 9px 3px;
    line-height: 1;
    letter-spacing: 0.07em; }
    .product-tile .btn-go-details:hover, .product-tile .btn-go-details:focus {
      background-color: #000;
      color: #fff; }
    @media (min-width: 768px) {
      .product-tile .btn-go-details {
        font-size: 1rem; } }
    @media (min-width: 992px) {
      .product-tile .btn-go-details {
        padding-top: 9px;
        padding-bottom: 9px;
        line-height: 1.2;
        font-size: 0.879rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 1600px) {
      .product-tile .btn-go-details {
        font-size: 1.099rem;
        padding-top: 11px;
        padding-bottom: 11px; } }
  .product-tile .p-w-r {
    margin: 0; }
    @media (min-width: 992px) {
      .product-tile .p-w-r {
        padding-top: 10px; } }
    .product-tile .p-w-r .pr-category-snippet {
      display: block; }
    .product-tile .p-w-r .pr-snippet-rating-decimal {
      display: none; }
    .product-tile .p-w-r .pr-category-snippet__item {
      display: block; }
    .product-tile .p-w-r .pr-category-snippet__total.pr-category-snippet__item {
      display: none; }
    .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
      background: none;
      position: relative;
      width: 8px;
      height: 8px;
      padding: 0;
      margin-right: 0;
      margin-left: 2px; }
      .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
        font-family: 'FontAwesome';
        font-style: normal;
        font-weight: normal;
        content: '\F005';
        position: absolute;
        width: 100%;
        height: 100%;
        color: #c6c6c5;
        font-size: 8px;
        top: 0;
        left: 0; }
      @media (min-width: 992px) {
        .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
          width: 9px;
          height: 9px;
          margin-left: 2px; }
          .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
            font-size: 9px; } }
      @media (min-width: 1600px) {
        .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
          width: 10px;
          height: 10px;
          margin-left: 2px; }
          .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
            font-size: 10px; } }
    .product-tile .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-100-filled::before,
    .product-tile .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-50-filled::before {
      color: #094f8d; }
    .product-tile .p-w-r .pr-snippet .pr-snippet-stars-png {
      display: block; }
      .product-tile .p-w-r .pr-snippet .pr-snippet-stars-png .pr-rating-stars {
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex;
        -ms-flex-pack: end;
            justify-content: flex-end;
        padding-top: 1em; }
  .product-tile .attribute {
    margin-top: 0;
    margin-right: 0;
    padding-top: 5px;
    padding-right: 0;
    text-align: center; }
    @media (min-width: 992px) {
      .product-tile .attribute {
        padding-top: 0; } }
    .product-tile .attribute h4 {
      display: none; }
    .product-tile .attribute .attr-item {
      display: inline-block;
      margin-left: 2px;
      margin-right: 2px; }
      @media (min-width: 992px) {
        .product-tile .attribute .attr-item {
          padding-left: 3px;
          padding-right: 3px; } }
      @media (min-width: 1600px) {
        .product-tile .attribute .attr-item {
          padding-left: 4px;
          padding-right: 4px; } }
    .product-tile .attribute .owl-carousel {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex;
      -ms-flex-pack: center;
          justify-content: center; }
      .product-tile .attribute .owl-carousel .owl-stage {
        margin: 0 auto; }
    .product-tile .attribute .owl-loaded {
      display: block;
      margin-right: -10px;
      width: auto; }
      .product-tile .attribute .owl-loaded .attr-item {
        margin-left: 0;
        margin-right: 0; }
  .product-tile .tile-attribute {
    margin-bottom: 0.5rem; }
    @media (min-width: 992px) {
      .product-tile .tile-attribute {
        margin-bottom: 1rem; } }
    .product-tile .tile-attribute[data-attr="productSize"] {
      margin-bottom: 0; }
      .product-tile .tile-attribute[data-attr="productSize"].empty-size-selection {
        min-height: 29px; }
        @media (min-width: 1600px) {
          .product-tile .tile-attribute[data-attr="productSize"].empty-size-selection {
            min-height: 33px; } }
  .product-tile .color-swatchs {
    text-align: center; }
    @media (min-width: 992px) {
      .product-tile .color-swatchs {
        padding-top: 5px; } }
    .product-tile .color-swatchs .swatch-circle.color-value.selected::after {
      content: none; }
    .product-tile .color-swatchs .attr-item {
      border: 3px solid transparent;
      padding: 2px;
      max-width: 40px;
      border-radius: 50%; }
      @media (min-width: 992px) {
        .product-tile .color-swatchs .attr-item {
          max-width: 50px; } }
      .product-tile .color-swatchs .attr-item.selected, .product-tile .color-swatchs .attr-item:hover {
        border-color: #000; }
      .product-tile .color-swatchs .attr-item a {
        display: block;
        width: 27px;
        height: 27px; }
        @media (min-width: 992px) {
          .product-tile .color-swatchs .attr-item a {
            width: 35px;
            height: 35px; } }
        @media (min-width: 1600px) {
          .product-tile .color-swatchs .attr-item a {
            width: 40px;
            height: 40px; } }
        .product-tile .color-swatchs .attr-item a .swatch-circle {
          width: 100%;
          height: 100%;
          border: none;
          margin: 0;
          border-radius: 50%; }
  .product-tile .size-selection {
    font-size: 0.714rem; }
    @media (min-width: 992px) {
      .product-tile .size-selection {
        font-size: 0.914rem; } }
    @media (min-width: 1600px) {
      .product-tile .size-selection {
        font-size: 1.1429rem; } }
    .product-tile .size-selection .attr-item.selected a, .product-tile .size-selection .attr-item:hover a {
      color: #fff;
      background-color: #000;
      border-color: #000; }
    .product-tile .size-selection .attr-item a {
      display: block;
      padding: 4px 9px;
      border: 2px solid #e6e6e6;
      white-space: nowrap;
      border-radius: 5px; }
      @media (min-width: 992px) {
        .product-tile .size-selection .attr-item a {
          min-width: 84px;
          padding-top: 5px;
          padding-bottom: 5px; } }
      @media (min-width: 1600px) {
        .product-tile .size-selection .attr-item a {
          min-width: 95px;
          padding-top: 5px;
          padding-bottom: 5px; } }
    .product-tile .size-selection.owl-loaded .attr-item a {
      width: 47px; }
      @media (min-width: 992px) {
        .product-tile .size-selection.owl-loaded .attr-item a {
          min-width: 72px; } }
      @media (min-width: 1200px) {
        .product-tile .size-selection.owl-loaded .attr-item a {
          min-width: 67px; } }
      @media (min-width: 1600px) {
        .product-tile .size-selection.owl-loaded .attr-item a {
          min-width: 77px; } }
  .product-tile .product-comparition {
    position: absolute;
    left: 0;
    bottom: 0; }
    @media (min-width: 768px) {
      .product-tile .product-comparition {
        display: none; } }
    @media (min-width: 1200px) {
      .product-tile .product-comparition {
        display: block;
        position: static; } }
    .product-tile .product-comparition .checkbox {
      padding-left: 1.071rem;
      text-transform: uppercase;
      font-size: 0.7143rem; }
      @media (min-width: 1200px) {
        .product-tile .product-comparition .checkbox {
          padding-left: 0;
          font-size: 14px; } }
      .product-tile .product-comparition .checkbox::before {
        right: auto;
        left: 2px; }
        @media (min-width: 1200px) {
          .product-tile .product-comparition .checkbox::before {
            left: auto;
            right: 2px; } }
      .product-tile .product-comparition .checkbox::after {
        right: auto;
        left: 0; }
        @media (min-width: 1200px) {
          .product-tile .product-comparition .checkbox::after {
            right: 0;
            left: auto; } }
    @media (min-width: 1200px) {
      .product-tile .product-comparition {
        display: block;
        padding-bottom: 5px; }
        .product-tile .product-comparition .checkbox {
          font-size: 0.62848rem;
          text-transform: uppercase;
          cursor: pointer;
          padding-right: 22px; } }
    @media (min-width: 1600px) {
      .product-tile .product-comparition .checkbox {
        font-size: 0.7856rem; } }
  .product-tile .attr-item.watch-item.disable-click:hover {
    border-color: transparent; }
  .product-tile .attr-item.watch-item.disable-click a {
    pointer-events: none; }
  .product-tile .attr-item.size-item.disable-click:hover a, .product-tile .attr-item.size-item.disable-click:focus a, .product-tile .attr-item.size-item.disable-click:active a {
    background-color: transparent;
    color: #000;
    border: 2px solid #e6e6e6; }
  .product-tile .attr-item.size-item.disable-click a {
    pointer-events: none;
    opacity: 0.4; }
  .product-tile .attr-item.size-item.disable-click.selected:hover a {
    color: #fff;
    background-color: #000;
    border: 2px solid #000; }

.product-list-campaign .product-tile .tile-actions {
  margin-left: -3px;
  margin-right: -3px;
  position: absolute;
  bottom: 0;
  width: 100%; }
  @media (min-width: 992px) {
    .product-list-campaign .product-tile .tile-actions {
      width: auto;
      left: -3px;
      right: -3px; }
      .product-list-campaign .product-tile .tile-actions .pdp-link {
        min-height: 2.3em; } }
  .product-list-campaign .product-tile .tile-actions .col-6 {
    padding-left: 3px;
    padding-right: 3px; }
    @media (min-width: 992px) {
      .product-list-campaign .product-tile .tile-actions .col-6 {
        padding-left: 5px;
        padding-right: 5px; } }

.homepage-product-listing .product-tile .tile-body .price .strike-through {
  display: block; }

.homepage-product-listing .product-tile .tile-body .price .price-inner {
  display: block; }
  @media (min-width: 1200px) {
    .homepage-product-listing .product-tile .tile-body .price .price-inner {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex; } }

.sort-field {
  position: relative; }
  .sort-field.active .sort-block {
    opacity: 1;
    z-index: 10;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeIn; }
  .sort-field.ns .sort-block {
    opacity: 0;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeOut; }
  .sort-field label {
    font-family: "Gotham-Bold";
    text-transform: uppercase;
    font-size: 1.0714rem;
    position: relative;
    display: inline-block;
    padding: 8px 50px;
    margin-bottom: 0;
    cursor: pointer; }
    @media (min-width: 992px) {
      .sort-field label {
        font-size: 1rem; } }
    @media (min-width: 1600px) {
      .sort-field label {
        font-size: 1.1429rem; } }
    .sort-field label::before {
      position: absolute;
      z-index: 1;
      top: 50%;
      color: #094f8d;
      font-size: 18px;
      transform: translateY(-50%);
      font-family: "Samsonite-icons";
      font-style: normal;
      font-weight: normal; }
    .sort-field label::before {
      content: "\E901";
      right: 0;
      font-size: 14px; }
  .sort-field select.custom-select {
    display: none; }
  .sort-field .sort-block {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1;
    width: 350px;
    background-color: #fff;
    opacity: 0;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 30px;
    transition: all ease-in-out 0.5s; }
    .sort-field .sort-block ul {
      max-width: 220px; }
      .sort-field .sort-block ul li {
        border: none;
        font-size: 1.1429rem;
        padding-top: 0.5em;
        padding-bottom: 0.5em; }
        @media (min-width: 992px) {
          .sort-field .sort-block ul li {
            font-size: 1rem; } }
        @media (min-width: 1600px) {
          .sort-field .sort-block ul li {
            font-size: 1.1429rem; } }
        .sort-field .sort-block ul li::before {
          width: 8px;
          height: 8px; }

.sort-block ul {
  padding-left: 0;
  margin-bottom: 0; }
  .sort-block ul li {
    list-style: none;
    border-bottom: 1px solid #d8d8d8;
    font-size: 1rem;
    color: #999;
    padding: 15px 0;
    display: block;
    position: relative;
    cursor: pointer; }
    .sort-block ul li:hover {
      color: #000; }
    .sort-block ul li:last-child {
      border-bottom: none; }
    .sort-block ul li::before {
      content: '';
      width: 12px;
      height: 12px;
      background-color: #094f8d;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%) scale(0); }
    .sort-block ul li.selected::before {
      transform: translateY(-50%) scale(1); }

.section-search-banner .image-group {
  position: relative;
  background-color: #f7f8f6; }
  @media (min-width: 992px) {
    .section-search-banner .image-group {
      position: static;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
      max-width: 50%;
      margin-top: -14px; } }

.section-search-banner .image-field {
  width: 37%; }
  @media (min-width: 992px) {
    .section-search-banner .image-field {
      width: 100%; } }

@media (min-width: 992px) {
  .section-search-banner .category-banner {
    position: relative;
    background-color: #f7f8f6;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; } }

.section-search-banner .header-field {
  top: 48%;
  width: 60%;
  z-index: 2;
  text-align: center;
  position: absolute;
  transform: translate(65%, -50%); }
  @media (min-width: 768px) {
    .section-search-banner .header-field {
      left: 50%;
      text-align: unset;
      width: unset;
      right: unset;
      transform: translate(-50%, -50%); } }
  .section-search-banner .header-field h2 {
    font-size: 2.2rem;
    font-family: "HelveticaNeue-UltraLight", sans-serif;
    line-height: 0.8;
    white-space: nowrap;
    margin: 0; }
    @media (min-width: 768px) {
      .section-search-banner .header-field h2 {
        line-height: 1.2; } }
    @media (min-width: 992px) {
      .section-search-banner .header-field h2 {
        font-size: 4rem; } }
    @media (min-width: 1600px) {
      .section-search-banner .header-field h2 {
        font-size: 5rem; } }

.section-search-banner .description-action {
  text-align: center; }

@media (min-width: 992px) {
  .section-search-banner .banner-description {
    display: block;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; } }

.section-search-banner .banner-description .card {
  padding: 10px 25px;
  font-size: 1rem;
  font-family: "HelveticaNeue-Light", sans-serif;
  margin-bottom: 0;
  border: none;
  line-height: 1.2; }
  @media (min-width: 992px) {
    .section-search-banner .banner-description .card {
      background: none;
      padding-top: 50px;
      padding-bottom: 50px;
      padding-right: 80px;
      padding-left: 30%;
      font-size: 1.163rem; } }
  @media (min-width: 1600px) {
    .section-search-banner .banner-description .card {
      font-size: 1.454rem; } }

.section-search-banner .btn-read-more {
  border: none;
  background: none;
  font-size: 1rem;
  padding: 0 0.75rem; }
  .section-search-banner .btn-read-more:hover, .section-search-banner .btn-read-more:focus {
    outline: 0;
    box-shadow: none; }
  .section-search-banner .btn-read-more .sa-icon {
    font-size: 0.929rem; }
  .section-search-banner .btn-read-more .read-more {
    display: none; }
  .section-search-banner .btn-read-more.collapsed {
    margin-top: 5px; }
    .section-search-banner .btn-read-more.collapsed .read-more {
      display: inline-block; }
    .section-search-banner .btn-read-more.collapsed .read-close {
      display: none; }

@media (min-width: 1200px) {
  .refinement-wrapper {
    padding-top: 20px; } }

.refinement-wrapper .filter-header h2 {
  font-size: 1.0714rem;
  font-family: "Gotham-Bold";
  text-transform: uppercase;
  margin-bottom: 25px; }
  @media (min-width: 1200px) {
    .refinement-wrapper .filter-header h2 {
      letter-spacing: 0.1rem;
      font-size: 1rem;
      margin-bottom: 10px; } }
  @media (min-width: 1600px) {
    .refinement-wrapper .filter-header h2 {
      font-size: 1.0714rem; } }
  .custom-panel .refinement-wrapper .filter-header h2 {
    font-size: 1.1501rem; }

@media (min-width: 1200px) {
  .refinement-wrapper .refinement-clear-filter {
    margin-bottom: 38px;
    margin-top: -10px; } }

.refinement-wrapper .refinements {
  border: none;
  box-shadow: none;
  border-radius: 0; }
  @media (min-width: 1200px) {
    .refinement-wrapper .refinements {
      padding-top: 10px; } }
  .refinement-wrapper .refinements .card {
    border: none;
    margin-bottom: 1em; }
  .refinement-wrapper .refinements .card-header {
    padding: 0;
    border: none;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    font-size: 1rem;
    background: none; }
    .refinement-wrapper .refinements .card-header::after {
      content: none; }
    @media (min-width: 1200px) {
      .refinement-wrapper .refinements .card-header {
        font-size: 1rem;
        margin-bottom: 1em;
        letter-spacing: 0.1rem; } }
    @media (min-width: 1600px) {
      .refinement-wrapper .refinements .card-header {
        font-size: 1.1429rem; } }
  .refinement-wrapper .refinements .card-body {
    display: block;
    padding: 0; }
  .refinement-wrapper .refinements .content {
    display: block;
    padding: 0; }
    .refinement-wrapper .refinements .content li {
      list-style: none;
      padding-left: 0;
      padding-right: 0;
      border-bottom: 1px solid #d8d8d8;
      font-size: 1rem; }
      @media (min-width: 1200px) {
        .refinement-wrapper .refinements .content li {
          font-size: 1rem;
          border: none;
          padding-top: 0.4em;
          padding-bottom: 0.4em; } }
      @media (min-width: 1600px) {
        .refinement-wrapper .refinements .content li {
          font-size: 1.1429rem; } }
      .refinement-wrapper .refinements .content li.more-items {
        padding-top: 0; }
      .refinement-wrapper .refinements .content li:last-child {
        border-bottom: none; }
      .refinement-wrapper .refinements .content li .refinement-selection {
        color: #999;
        padding: 14px 0;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -ms-flex-align: center;
            align-items: center; }
        .refinement-wrapper .refinements .content li .refinement-selection:hover {
          color: #000; }
        @media (min-width: 1200px) {
          .refinement-wrapper .refinements .content li .refinement-selection {
            padding: 0; } }
  @media (min-width: 1200px) and (min-width: 1200px) {
    .refinement-wrapper .refinements .content li .refinement-selection.instock-selection.selected::before {
      left: 2px;
      right: auto; } }
        @media (min-width: 1200px) {
            .refinement-wrapper .refinements .content li .refinement-selection.instock-selection::after, .refinement-wrapper .refinements .content li .refinement-selection.instock-selection::before {
              content: '';
              right: auto;
              left: 0; }
            .refinement-wrapper .refinements .content li .refinement-selection.instock-selection span {
              margin-left: 30px; }
            .refinement-wrapper .refinements .content li .refinement-selection::after {
              content: '';
              width: 12px;
              height: 12px;
              border: 1px solid #6f6f6f;
              position: absolute;
              right: 0;
              top: 50%;
              transform: translateY(-50%); } }
        .refinement-wrapper .refinements .content li .refinement-selection::before {
          content: '';
          width: 12px;
          height: 12px;
          background-color: #094f8d;
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%) scale(0); }
        .refinement-wrapper .refinements .content li .refinement-selection.selected::before {
          transform: translateY(-50%) scale(1); }
        @media (min-width: 1200px) {
          .refinement-wrapper .refinements .content li .refinement-selection.selected::before {
            width: 8px;
            height: 8px;
            right: 2px; } }
      .refinement-wrapper .refinements .content li .see-more-link {
        color: #000;
        padding: 15px 0;
        display: block;
        position: relative;
        cursor: pointer; }
        @media (min-width: 1200px) {
          .refinement-wrapper .refinements .content li .see-more-link {
            padding-top: 11px;
            padding-bottom: 0; } }
        .refinement-wrapper .refinements .content li .see-more-link > span {
          position: relative;
          padding-right: 20px; }
          @media (min-width: 1200px) {
            .refinement-wrapper .refinements .content li .see-more-link > span {
              display: block; } }
          .refinement-wrapper .refinements .content li .see-more-link > span::before {
            font-family: "Samsonite-icons";
            font-style: normal;
            font-weight: normal;
            content: "\E917";
            position: absolute;
            right: 0;
            top: 50%;
            font-size: 7px;
            transform: translateY(-50%); }
        .refinement-wrapper .refinements .content li .see-more-link.active {
          display: none; }
          .refinement-wrapper .refinements .content li .see-more-link.active .see-more {
            display: none; }
          .refinement-wrapper .refinements .content li .see-more-link.active .see-less {
            display: inline-block; }
            @media (min-width: 1200px) {
              .refinement-wrapper .refinements .content li .see-more-link.active .see-less {
                display: block; } }
        .refinement-wrapper .refinements .content li .see-more-link .see-less {
          display: none; }
          .refinement-wrapper .refinements .content li .see-more-link .see-less::before {
            content: "\E916"; }
      .refinement-wrapper .refinements .content li .content {
        border-top: 1px solid #d8d8d8; }
      .refinement-wrapper .refinements .content li .feature-icon {
        max-height: 36px;
        width: auto;
        margin-right: 25px; }
        @media (min-width: 1200px) {
          .refinement-wrapper .refinements .content li .feature-icon {
            max-height: 27px;
            margin-right: 23px; } }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle {
    position: relative;
    padding-left: 30px; }
    .refinement-wrapper .refinements .refinement-colour li .swatch-circle::before {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      left: 0;
      top: 50%;
      border: 0.063em solid transparent;
      border-radius: 50%;
      transform: translateY(-50%); }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0120::before {
    border-color: #d1d1d1; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0010::before {
    background-color: #000; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0020::before {
    background-color: #3393d0; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0030::before {
    background-color: #81c341; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0040::before {
    background-color: #8f979d; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0050::before {
    background-color: #ef7922; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0060::before {
    background-color: #04559f; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0070::before {
    background-color: #c11c8a; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0080::before {
    background-color: #fe249a; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0090::before {
    background-color: #c00; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0100::before {
    background-color: #bdb8b8; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0110::before {
    background-color: #ffc012; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0120::before {
    background-color: #fff; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0130::before {
    background-color: #6ac6b1; }
  .refinement-wrapper .refinements .refinement-colour li .swatch-circle-0140::before {
    background-color: #f5f5dc; }
  @media (min-width: 1200px) {
    .refinement-wrapper .refinements .refinement-colour {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: justify;
          justify-content: space-between; }
      .refinement-wrapper .refinements .refinement-colour li {
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
        max-width: 50%; }
        .refinement-wrapper .refinements .refinement-colour li:nth-child(2n) {
          text-align: right; }
        .refinement-wrapper .refinements .refinement-colour li .refinement-selection {
          display: inline-block;
          width: 90%;
          text-align: left;
          height: 1.2em; }
        .refinement-wrapper .refinements .refinement-colour li .swatch-circle {
          display: inline-block;
          height: 1.2em;
          padding-left: 20px;
          padding-right: 12px; } }
  .refinement-wrapper .refinements .collapse-refinement {
    padding-left: 0; }
  @media (min-width: 1200px) {
    .refinement-wrapper .refinements .instock-refinement {
      margin-bottom: 20px; } }
  .refinement-wrapper .refinements .prices-refinement {
    display: none; }
  .refinement-wrapper .refinements .prices-refinement-slider {
    margin: 45px auto 25px; }
    .refinement-wrapper .refinements .prices-refinement-slider .slider-track {
      background-color: #f2f2f2;
      background-image: none; }
    .refinement-wrapper .refinements .prices-refinement-slider .slider.slider-horizontal {
      width: 90%;
      left: 50%;
      transform: translateX(-50%); }
    .refinement-wrapper .refinements .prices-refinement-slider .slider .tooltip .arrow::before {
      border-top-color: #f2f2f2;
      border-bottom-color: #f2f2f2; }
    .refinement-wrapper .refinements .prices-refinement-slider .slider .tooltip-inner {
      color: #000;
      background-color: #f2f2f2; }
    .refinement-wrapper .refinements .prices-refinement-slider .slider .slider-handle {
      margin-left: -4px;
      background-image: none;
      width: 8px;
      height: 15px;
      top: 2px;
      background-color: #d9d9d9; }
    .refinement-wrapper .refinements .prices-refinement-slider .slider-selection {
      background-color: #999;
      background-image: none; }

.refinement-wrapper .reset-filter,
.refinement-wrapper .reset {
  font-family: "Gotham-Bold", sans-serif;
  font-size: 0.857rem;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  border: 2px solid #000;
  color: #000;
  letter-spacing: 0.1em;
  border-radius: 0; }
  .refinement-wrapper .reset-filter:hover, .refinement-wrapper .reset-filter:focus,
  .refinement-wrapper .reset:hover,
  .refinement-wrapper .reset:focus {
    background-color: #000;
    color: #fff; }
  @media (min-width: 1200px) {
    .refinement-wrapper .reset-filter,
    .refinement-wrapper .reset {
      font-size: 0.857rem;
      padding-top: 0.7em;
      padding-bottom: 0.7em; } }
  @media (min-width: 1600px) {
    .refinement-wrapper .reset-filter,
    .refinement-wrapper .reset {
      font-size: 1rem; } }

.refinement-wrapper .reset-filter {
  display: none;
  background-color: #fff;
  margin-bottom: 1.714em; }

.refinement-wrapper .btn-apply-filter {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  border: 0;
  background: none;
  width: 72px;
  height: 72px;
  font-size: 70px;
  padding: 0;
  line-height: 70px;
  border: 3px solid #000;
  background-color: #fff;
  border-radius: 50%; }
  .refinement-wrapper .btn-apply-filter:focus {
    outline: 0; }

.product-grid {
  margin-left: -10px;
  margin-right: -10px; }
  .product-grid .product-tile-col {
    padding: 15px 10px;
    min-height: 340px;
    overflow: hidden; }
    @media (min-width: 992px) {
      .product-grid .product-tile-col {
        padding: 18px;
        min-height: 480px; } }
    @media (min-width: 1600px) {
      .product-grid .product-tile-col {
        min-height: 550px; } }
    .product-grid .product-tile-col:nth-child(2n + 1)::before {
      width: 2px;
      top: 10px;
      right: -1px;
      bottom: 10px; }
    .product-grid .product-tile-col::before, .product-grid .product-tile-col::after {
      content: '';
      position: absolute;
      z-index: 1;
      background-color: #d8d8d8; }
    .product-grid .product-tile-col::after {
      bottom: -1px;
      left: 10px;
      right: 10px;
      height: 2px; }
    @media (min-width: 768px) {
      .product-grid .product-tile-col::before {
        width: 2px;
        top: 10px;
        right: -1px;
        bottom: 10px; }
      .product-grid .product-tile-col:nth-child(3n + 3)::before {
        content: none; } }
  @media (min-width: 992px) {
    .product-grid .product-promotion-col {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .product-grid .product-promotion-col .content-asset {
    position: relative;
    height: 100%; }
    .product-grid .product-promotion-col .content-asset picture {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
    .product-grid .product-promotion-col .content-asset img {
      height: 100%;
      width: 100%; }
  .product-grid .promo-info {
    position: absolute;
    top: 22px;
    left: 15px;
    z-index: 2; }
    @media (min-width: 992px) {
      .product-grid .promo-info {
        top: 35px;
        left: 20px; } }
    .product-grid .promo-info h4 {
      font-size: 0.929rem;
      font-family: "Gotham-Light"; }
      @media (min-width: 992px) {
        .product-grid .promo-info h4 {
          font-size: 1.357rem; } }
    .product-grid .promo-info h3 {
      font-size: 2.714rem;
      font-family: "HelveticaNeue-UltraLight"; }
      @media (min-width: 992px) {
        .product-grid .promo-info h3 {
          font-size: 4.071rem;
          line-height: 1; } }
    .product-grid .promo-info .promo-link {
      display: inline-block;
      width: 21px;
      height: 21px;
      text-align: center;
      background-color: #fff;
      font-size: 0.786rem;
      line-height: 23px;
      border-radius: 50%; }
      @media (min-width: 992px) {
        .product-grid .promo-info .promo-link {
          font-size: 1rem;
          width: 30px;
          height: 30px;
          line-height: 31px; } }
  .product-grid .product {
    height: 100%; }
  .product-grid .content-asset p {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .product-grid.sorted-by-price .product-tile-col:nth-child(3n + 3)::before {
      content: ''; }
    .product-grid.sorted-by-price .product-tile-col.right-hand-side-tile::before {
      content: none; } }

@media (min-width: 1200px) {
  .product-list-campaign .product-grid .product-tile-col {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%; }
    .product-list-campaign .product-grid .product-tile-col:nth-child(3n + 3)::before {
      content: ''; }
    .product-list-campaign .product-grid .product-tile-col:nth-child(4n + 4)::before {
      content: none; } }

[data-querystring*="samsonite-red"] .search-results-head {
  display: none; }

@media (min-width: 992px) {
  [data-querystring*="samsonite-red"] .content-slot-wrapper.container {
    max-width: none; } }

.brand-sam-red .banner {
  margin-left: -15px;
  margin-right: -15px; }
  @media (min-width: 1200px) {
    .brand-sam-red .banner img {
      width: 100%; } }

.brand-sam-red .cat-list {
  background-color: #fbb03b;
  margin-left: -15px;
  margin-right: -15px; }
  .brand-sam-red .cat-list .cat-list-content {
    overflow: hidden; }
    @media (min-width: 992px) {
      .brand-sam-red .cat-list .cat-list-content {
        max-width: 940px;
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 1200px) {
      .brand-sam-red .cat-list .cat-list-content {
        max-width: 1140px; } }
    @media (min-width: 1600px) {
      .brand-sam-red .cat-list .cat-list-content {
        max-width: 1340px; } }
    .brand-sam-red .cat-list .cat-list-content > .row {
      -ms-flex-align: end;
          align-items: flex-end;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      width: 125vw; }
      @media (min-width: 768px) {
        .brand-sam-red .cat-list .cat-list-content > .row {
          width: auto; } }
      @media (min-width: 992px) {
        .brand-sam-red .cat-list .cat-list-content > .row {
          -ms-flex-pack: center;
              justify-content: center; } }
  .brand-sam-red .cat-list .col-4 {
    max-width: 31vw;
    -ms-flex: 0 0 31vw;
        flex: 0 0 31vw;
    padding-left: 0.9em;
    padding-right: 0.9em; }
    @media (min-width: 768px) {
      .brand-sam-red .cat-list .col-4 {
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
        max-width: 33.33%; } }
    .brand-sam-red .cat-list .col-4 .row {
      -ms-flex-align: center;
          align-items: center; }
  .brand-sam-red .cat-list .cat-item-title h3 {
    font-size: 1.0714rem;
    margin-bottom: 0;
    font-family: "HelveticaNeue-Light";
    padding-bottom: 0.5em;
    margin-left: 0.8em;
    display: inline-block; }
    @media (min-width: 992px) {
      .brand-sam-red .cat-list .cat-item-title h3 {
        font-size: 1.886rem; } }
    @media (min-width: 1600px) {
      .brand-sam-red .cat-list .cat-item-title h3 {
        font-size: 2.357rem; } }
  .brand-sam-red .cat-list .cat-item-title a {
    position: relative;
    display: inline-block; }
    .brand-sam-red .cat-list .cat-item-title a::before, .brand-sam-red .cat-list .cat-item-title a::after {
      width: 0;
      content: '';
      position: absolute;
      left: 50%;
      bottom: -5px;
      height: 2px;
      z-index: 2;
      width: 0;
      background-color: #000;
      transition: ease-in 0.3s;
      transform: translateX(-50%); }
    .brand-sam-red .cat-list .cat-item-title a::after {
      width: 100%;
      z-index: 1;
      background-color: #bc1e2c; }
    .brand-sam-red .cat-list .cat-item-title a:hover, .brand-sam-red .cat-list .cat-item-title a:focus {
      text-decoration: none;
      color: #000; }
      .brand-sam-red .cat-list .cat-item-title a:hover::before, .brand-sam-red .cat-list .cat-item-title a:focus::before {
        width: 100%; }

.brand-sam-red .section-info h4 {
  font-family: "Gotham-Light";
  font-size: 1.1429rem; }

.brand-sam-red .section-info h2 {
  font-family: "Gotham-Medium";
  font-size: 3.571rem;
  line-height: 1;
  margin-bottom: 0.5em; }
  @media (min-width: 768px) {
    .brand-sam-red .section-info h2 {
      font-size: 3.5652rem; } }
  @media (min-width: 1600px) {
    .brand-sam-red .section-info h2 {
      font-size: 4.1rem; } }

.brand-sam-red .section-info p {
  font-family: "HelveticaNeue-Light";
  font-size: 1.0714rem; }

.brand-sam-red .section-info .line {
  margin-top: 2.857em;
  margin-bottom: 2.857em; }
  .brand-sam-red .section-info .line span {
    width: 6.429em;
    display: inline-block;
    height: 1em; }
  .brand-sam-red .section-info .line .line-yellow {
    background-color: #fbb03b; }
  .brand-sam-red .section-info .line .line-red {
    background-color: #bc1e2c; }

.brand-sam-red .section-info .btn-view {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Gotham-Bold", sans-serif;
  padding: 5px 10px;
  border-radius: 0;
  min-width: 17.857em;
  font-size: 1rem;
  padding-bottom: 0.7em;
  padding-top: 0.7em; }
  .brand-sam-red .section-info .btn-view:hover, .brand-sam-red .section-info .btn-view:focus {
    color: #fff;
    background-color: #000; }

.brand-sam-red .list-generation {
  padding-left: 0;
  margin-bottom: 1.5em;
  font-family: "Gotham-Medium";
  font-size: 1.714rem; }
  .brand-sam-red .list-generation li {
    list-style: none;
    margin-bottom: 0.2em; }

@media (min-width: 1600px) {
  .brand-sam-red .section {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto; } }

@media (min-width: 992px) {
  .brand-sam-red .section-travel {
    position: relative;
    z-index: 1;
    margin-top: -7em; } }

.brand-sam-red .section-young-profesionals {
  margin-top: 2.143em; }
  @media (min-width: 992px) {
    .brand-sam-red .section-young-profesionals {
      margin-top: 3.714em;
      position: relative;
      z-index: 2; }
      .brand-sam-red .section-young-profesionals img {
        width: 100%; } }
  .brand-sam-red .section-young-profesionals .col-12 {
    margin-bottom: 2.143em; }
  @media (min-width: 992px) {
    .brand-sam-red .section-young-profesionals .col-lg-8 {
      padding-left: 5%; } }
  @media (min-width: 992px) {
    .brand-sam-red .section-young-profesionals .col-lg-4 {
      padding-top: 3em; } }
  @media (min-width: 1600px) {
    .brand-sam-red .section-young-profesionals .col-lg-4 {
      padding-top: 4em; } }

.brand-sam-red .section-modern-traveller {
  margin-top: 2.143em; }
  @media (min-width: 768px) {
    .brand-sam-red .section-modern-traveller {
      margin-top: 0; } }
  .brand-sam-red .section-modern-traveller .cat-item-image {
    margin-top: 1.429em;
    margin-left: -15px; }
    @media (min-width: 768px) {
      .brand-sam-red .section-modern-traveller .cat-item-image {
        margin-left: 0;
        padding-left: 15px;
        padding-right: 15px; } }
    @media (min-width: 992px) {
      .brand-sam-red .section-modern-traveller .cat-item-image {
        margin-left: -15px;
        padding-left: 0; } }
  .brand-sam-red .section-modern-traveller .section-info {
    margin-top: 2.143em; }
    @media (min-width: 768px) {
      .brand-sam-red .section-modern-traveller .section-info {
        margin-top: 0; } }
    @media (min-width: 992px) {
      .brand-sam-red .section-modern-traveller .section-info {
        padding-left: calc(5% + 15px); }
        .brand-sam-red .section-modern-traveller .section-info h2 {
          max-width: 70%; } }

.brand-sam-red .section-explore-the-world {
  padding-left: 15px; }
  @media (min-width: 992px) {
    .brand-sam-red .section-explore-the-world .section-info {
      padding-left: 38%;
      padding-top: 3.5em;
      max-width: 75%; } }
  @media (min-width: 992px) {
    .brand-sam-red .section-explore-the-world .cat-item-image {
      margin-right: -15px; } }

.brand-sam-red .section-gallery {
  margin-left: -15px;
  margin-right: -15px; }
  @media (min-width: 1600px) {
    .brand-sam-red .section-gallery {
      margin-left: auto;
      margin-right: auto; } }
  .brand-sam-red .section-gallery ul {
    padding-left: 0;
    margin-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; }
    .brand-sam-red .section-gallery ul li {
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
      max-width: 33.33%;
      list-style: none; }
      @media (min-width: 992px) {
        .brand-sam-red .section-gallery ul li {
          -ms-flex: 0 0 16.66%;
              flex: 0 0 16.66%;
          max-width: 16.66%; } }

.brand-sam-red .section-title-foot {
  padding-top: 1.429em;
  padding-bottom: 1.429em; }
  .brand-sam-red .section-title-foot h4 {
    font-family: "HelveticaNeue-Light";
    text-align: center;
    font-size: 1.1429rem; }

[data-querystring*="samsonite-black"] .search-results-head {
  display: none; }

@media (min-width: 992px) {
  [data-querystring*="samsonite-black"] .content-slot-wrapper.container {
    max-width: none; } }

.brand-sam-black-label .banner {
  margin-left: -15px;
  margin-right: -15px; }
  @media (min-width: 1200px) {
    .brand-sam-black-label .banner img {
      width: 100%; } }

.brand-sam-black-label .cat-list {
  background-color: #b3b3b3;
  margin-left: -15px;
  margin-right: -15px; }
  .brand-sam-black-label .cat-list .cat-list-content {
    overflow: auto; }
    @media (min-width: 992px) {
      .brand-sam-black-label .cat-list .cat-list-content {
        max-width: 940px;
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 1200px) {
      .brand-sam-black-label .cat-list .cat-list-content {
        max-width: 1140px; } }
    @media (min-width: 1600px) {
      .brand-sam-black-label .cat-list .cat-list-content {
        max-width: 1340px; } }
    .brand-sam-black-label .cat-list .cat-list-content > .row {
      -ms-flex-align: end;
          align-items: flex-end;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      width: 125vw; }
      @media (min-width: 768px) {
        .brand-sam-black-label .cat-list .cat-list-content > .row {
          width: auto; } }
      @media (min-width: 992px) {
        .brand-sam-black-label .cat-list .cat-list-content > .row {
          -ms-flex-pack: center;
              justify-content: center; } }
  .brand-sam-black-label .cat-list .col-4 {
    max-width: 40vw;
    -ms-flex: 0 0 40vw;
        flex: 0 0 40vw;
    padding-left: 0.9em;
    padding-right: 0.9em; }
    @media (min-width: 768px) {
      .brand-sam-black-label .cat-list .col-4 {
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
        max-width: 33.33%; } }
    .brand-sam-black-label .cat-list .col-4 .row {
      -ms-flex-align: center;
          align-items: center; }
  .brand-sam-black-label .cat-list .cat-item-title h3 {
    font-size: 1.0714rem;
    margin-bottom: 0;
    font-family: "HelveticaNeue-Light";
    padding-bottom: 0.3em;
    margin-left: 0.8em;
    display: inline-block; }
    @media (min-width: 992px) {
      .brand-sam-black-label .cat-list .cat-item-title h3 {
        font-size: 1.886rem;
        border-width: 3px; } }
    @media (min-width: 1600px) {
      .brand-sam-black-label .cat-list .cat-item-title h3 {
        font-size: 2.357rem; } }
  .brand-sam-black-label .cat-list .cat-item-title a {
    position: relative;
    display: inline-block; }
    .brand-sam-black-label .cat-list .cat-item-title a::before, .brand-sam-black-label .cat-list .cat-item-title a::after {
      width: 0;
      content: '';
      position: absolute;
      left: 50%;
      bottom: -5px;
      height: 2px;
      z-index: 2;
      width: 0;
      background-color: #000;
      transition: ease-in 0.3s;
      transform: translateX(-50%); }
    .brand-sam-black-label .cat-list .cat-item-title a::after {
      width: 100%;
      z-index: 1;
      background-color: #f15a24; }
    .brand-sam-black-label .cat-list .cat-item-title a:hover, .brand-sam-black-label .cat-list .cat-item-title a:focus {
      text-decoration: none;
      color: #000; }
      .brand-sam-black-label .cat-list .cat-item-title a:hover::before, .brand-sam-black-label .cat-list .cat-item-title a:focus::before {
        width: 100%; }

.brand-sam-black-label .bg-black {
  background-color: #000; }

.brand-sam-black-label .color-white {
  color: #fff; }

.brand-sam-black-label .brand-info {
  padding: 2.857em 1.786em; }
  @media (min-width: 992px) {
    .brand-sam-black-label .brand-info {
      position: absolute;
      top: 50%;
      left: 10em;
      right: 5.57em;
      z-index: 1;
      transform: translateY(-50%); } }
  .brand-sam-black-label .brand-info h4 {
    font-family: "Gotham-Light";
    font-size: 1.1429rem;
    margin-bottom: 0; }
    @media (min-width: 992px) {
      .brand-sam-black-label .brand-info h4 {
        font-size: 1.314rem; } }
    @media (min-width: 1600px) {
      .brand-sam-black-label .brand-info h4 {
        font-size: 1.643rem; } }
  .brand-sam-black-label .brand-info h2 {
    font-family: "HelveticaNeue-UltraLight";
    font-size: 3.857rem;
    line-height: 1;
    margin-bottom: 0.75em; }
    @media (min-width: 992px) {
      .brand-sam-black-label .brand-info h2 {
        font-size: 4.286rem; } }
    @media (min-width: 1600px) {
      .brand-sam-black-label .brand-info h2 {
        font-size: 5.357rem; } }
  .brand-sam-black-label .brand-info p {
    font-family: "HelveticaNeue-Light"; }
  .brand-sam-black-label .brand-info .btn {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    color: #fff;
    border-color: #fff;
    background-color: #000;
    min-width: 17.857em;
    padding-top: 0.714em;
    padding-bottom: 0.714em;
    margin-top: 1.8em; }
    .brand-sam-black-label .brand-info .btn:hover, .brand-sam-black-label .brand-info .btn:focus {
      color: #000;
      background-color: #fff; }
  .brand-sam-black-label .brand-info ul.typical {
    padding-left: 0;
    margin-bottom: 2.143em;
    font-family: "Gotham-Bold";
    font-size: 1.929rem; }
    @media (min-width: 992px) {
      .brand-sam-black-label .brand-info ul.typical {
        font-size: 1.829rem; } }
    @media (min-width: 1600px) {
      .brand-sam-black-label .brand-info ul.typical {
        font-size: 2.286rem; } }
    .brand-sam-black-label .brand-info ul.typical li {
      list-style: none;
      margin-bottom: 0.37em; }

.brand-sam-black-label .black-label-content {
  margin-left: -15px;
  margin-right: -15px; }
  @media (min-width: 1600px) {
    .brand-sam-black-label .black-label-content {
      max-width: 1600px;
      margin-left: auto;
      margin-right: auto; }
      .brand-sam-black-label .black-label-content picture,
      .brand-sam-black-label .black-label-content img {
        width: 100%; } }

.brand-sam-black-label .section-first .brand-info {
  padding-top: 6.429em;
  position: relative; }
  .brand-sam-black-label .section-first .brand-info::after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 1.786em;
    right: 1.786em;
    bottom: 0;
    height: 1px;
    background-color: #fff; }
  @media (min-width: 992px) {
    .brand-sam-black-label .section-first .brand-info {
      position: absolute; }
      .brand-sam-black-label .section-first .brand-info::after {
        content: none;
        position: static; } }

.brand-sam-black-label .section-second .brand-info {
  padding-bottom: 6.429em; }
  @media (min-width: 992px) {
    .brand-sam-black-label .section-second .brand-info {
      padding-bottom: 0;
      padding-top: 0; } }

.brand-sam-black-label .section-gallery {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 2.57em;
  padding-bottom: 1.143em; }
  @media (min-width: 992px) {
    .brand-sam-black-label .section-gallery {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media (min-width: 1600px) {
    .brand-sam-black-label .section-gallery {
      padding-top: 90px;
      padding-bottom: 90px; } }
  .brand-sam-black-label .section-gallery .row {
    margin-left: -12px;
    margin-right: -12px; }
  .brand-sam-black-label .section-gallery .col-6 {
    margin-bottom: 24px;
    padding-left: 12px;
    padding-right: 12px; }
    @media (min-width: 992px) {
      .brand-sam-black-label .section-gallery .col-6 {
        padding-left: 35px;
        padding-right: 35px; } }
    @media (min-width: 1600px) {
      .brand-sam-black-label .section-gallery .col-6 {
        padding-left: 45px;
        padding-right: 45px; } }

.brand-sam-black-label .section-title-foot {
  text-align: center;
  font-family: "HelveticaNeue-Light";
  font-size: 1.1429rem;
  margin-bottom: 2.143em; }

[data-querystring*="cgid=samsonite"] .search-results-head {
  display: none; }

@media (min-width: 992px) {
  [data-querystring*="cgid=samsonite"] .content-slot-wrapper.container {
    max-width: none; } }

.brand-samsonite .banner {
  margin-left: -15px;
  margin-right: -15px; }
  @media (min-width: 1200px) {
    .brand-samsonite .banner img {
      width: 100%; } }

.brand-samsonite .cat-list {
  background-color: #e3e3e3;
  margin-left: -15px;
  margin-right: -15px; }
  .brand-samsonite .cat-list .cat-list-content {
    overflow: auto; }
    @media (min-width: 992px) {
      .brand-samsonite .cat-list .cat-list-content {
        max-width: 940px;
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 1200px) {
      .brand-samsonite .cat-list .cat-list-content {
        max-width: 1140px; } }
    @media (min-width: 1600px) {
      .brand-samsonite .cat-list .cat-list-content {
        max-width: 1340px; } }
    .brand-samsonite .cat-list .cat-list-content > .row {
      -ms-flex-align: end;
          align-items: flex-end;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      width: 125vw; }
      @media (min-width: 768px) {
        .brand-samsonite .cat-list .cat-list-content > .row {
          width: auto; } }
      @media (min-width: 992px) {
        .brand-samsonite .cat-list .cat-list-content > .row {
          -ms-flex-pack: center;
              justify-content: center; } }
  .brand-samsonite .cat-list .col-4 {
    max-width: 40vw;
    -ms-flex: 0 0 40vw;
        flex: 0 0 40vw;
    padding-left: 0.9em;
    padding-right: 0.9em; }
    @media (min-width: 768px) {
      .brand-samsonite .cat-list .col-4 {
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
        max-width: 33.33%; } }
    .brand-samsonite .cat-list .col-4 .row {
      -ms-flex-align: center;
          align-items: center; }
  .brand-samsonite .cat-list .cat-item-title h3 {
    font-size: 1.0714rem;
    margin-bottom: 0;
    font-family: "HelveticaNeue-Light";
    padding-bottom: 0.3em;
    margin-left: 0.8em;
    display: inline-block; }
    @media (min-width: 992px) {
      .brand-samsonite .cat-list .cat-item-title h3 {
        font-size: 1.886rem;
        border-width: 3px; } }
    @media (min-width: 1600px) {
      .brand-samsonite .cat-list .cat-item-title h3 {
        font-size: 2.357rem; } }
  .brand-samsonite .cat-list .cat-item-title a {
    position: relative;
    display: inline-block; }
    .brand-samsonite .cat-list .cat-item-title a::before, .brand-samsonite .cat-list .cat-item-title a::after {
      width: 0;
      content: '';
      position: absolute;
      left: 50%;
      bottom: -5px;
      height: 2px;
      z-index: 2;
      width: 0;
      background-color: #b3b3b3;
      transition: ease-in 0.3s;
      transform: translateX(-50%); }
    .brand-samsonite .cat-list .cat-item-title a::after {
      width: 100%;
      z-index: 1;
      background-color: #000; }
    .brand-samsonite .cat-list .cat-item-title a:hover, .brand-samsonite .cat-list .cat-item-title a:focus {
      text-decoration: none;
      color: #000; }
      .brand-samsonite .cat-list .cat-item-title a:hover::before, .brand-samsonite .cat-list .cat-item-title a:focus::before {
        width: 100%; }

.brand-samsonite .section-content {
  margin-left: -15px;
  margin-right: -15px; }
  @media (min-width: 1600px) {
    .brand-samsonite .section-content {
      max-width: 1600px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1200px) {
    .brand-samsonite .section-content picture,
    .brand-samsonite .section-content img {
      width: 100%; } }

.brand-samsonite .brand-info {
  padding: 2.857em 2.143em; }
  .brand-samsonite .brand-info h4 {
    font-family: "Gotham-Light";
    font-size: 1.1429rem;
    margin-bottom: 0; }
    @media (min-width: 992px) {
      .brand-samsonite .brand-info h4 {
        font-size: 1.314rem; } }
    @media (min-width: 1600px) {
      .brand-samsonite .brand-info h4 {
        font-size: 1.643rem; } }
  .brand-samsonite .brand-info h2 {
    font-family: "HelveticaNeue-UltraLight";
    font-size: 3.857rem;
    line-height: 1;
    margin-bottom: 0.75em; }
    @media (min-width: 992px) {
      .brand-samsonite .brand-info h2 {
        font-size: 4.286rem; } }
    @media (min-width: 1600px) {
      .brand-samsonite .brand-info h2 {
        font-size: 5.357rem; } }
  .brand-samsonite .brand-info p {
    font-family: "HelveticaNeue-Light"; }
  .brand-samsonite .brand-info .btn {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    min-width: 17.857em;
    padding-top: 0.714em;
    padding-bottom: 0.714em;
    margin-top: 1.8em;
    background: none; }
    .brand-samsonite .brand-info .btn:hover, .brand-samsonite .brand-info .btn:focus {
      color: #fff;
      background-color: #000; }

.brand-samsonite .section-first {
  background-color: #faf8f7; }
  @media (min-width: 992px) {
    .brand-samsonite .section-first .brand-info {
      position: absolute;
      top: 50%;
      left: 5%;
      right: 5%;
      transform: translateY(-50%); } }
  @media (min-width: 992px) {
    .brand-samsonite .section-first .col-image {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: end;
          align-items: flex-end; } }

.brand-samsonite .section-second {
  position: relative; }
  .brand-samsonite .section-second .section-title {
    font-family: "HelveticaNeue-UltraLight";
    font-size: 2.857rem;
    line-break: normal;
    position: absolute;
    top: 1em;
    right: 0.8em;
    line-height: 1.5; }
    @media (min-width: 992px) {
      .brand-samsonite .section-second .section-title {
        top: 50%;
        right: 21%;
        font-size: 4.286em;
        transform: translateY(-50%); } }

.brand-samsonite .section-third {
  position: relative;
  z-index: 1; }
  .brand-samsonite .section-third .brand-info {
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-bottom: 7em; }
    @media (min-width: 768px) {
      .brand-samsonite .section-third .brand-info {
        padding-bottom: 12em; } }
    @media (min-width: 992px) {
      .brand-samsonite .section-third .brand-info {
        position: absolute;
        z-index: 1;
        left: 8%;
        top: 18%;
        padding-bottom: 0;
        padding-top: 0;
        max-width: 37%; } }

.brand-samsonite .section-gallery {
  position: relative;
  z-index: 2;
  padding-left: 10px;
  padding-right: 10px;
  transform: translateY(-50%); }
  @media (min-width: 992px) {
    .brand-samsonite .section-gallery {
      transform: translateY(-2.57em);
      padding-left: 3.714em;
      padding-right: 3.714em; } }
  @media (min-width: 1600px) {
    .brand-samsonite .section-gallery {
      transform: translateY(-3.214em);
      padding-left: 4.643em;
      padding-right: 4.643em; } }
  .brand-samsonite .section-gallery .row {
    margin-left: -3px;
    margin-right: -3px; }
    @media (min-width: 992px) {
      .brand-samsonite .section-gallery .row {
        margin-left: -12px;
        margin-right: -12px; } }
  .brand-samsonite .section-gallery .col-4 {
    padding-left: 3px;
    padding-right: 3px; }
    @media (min-width: 992px) {
      .brand-samsonite .section-gallery .col-4 {
        padding-left: 12px;
        padding-right: 12px; } }

.brand-samsonite .section-title-foot {
  text-align: center;
  font-size: 1.214rem;
  font-family: "HelveticaNeue-Light"; }
  @media (min-width: 992px) {
    .brand-samsonite .section-title-foot {
      font-size: 1.314em;
      margin-top: 2.286em; } }
  @media (min-width: 1600px) {
    .brand-samsonite .section-title-foot {
      font-size: 1.643em;
      margin-top: 2.857em; } }

.collection-banner {
  position: relative; }
  .collection-banner .image-field {
    width: 100%; }
    .collection-banner .image-field picture,
    .collection-banner .image-field img {
      max-width: 75%; }
  .collection-banner .image-right {
    text-align: right; }

.collection-points {
  padding: 0.857em 0.857em 0;
  overflow: hidden;
  font-family: "Gotham-Bold"; }
  .collection-points ul {
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 0.857em;
    overflow: auto;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; }
    @media (min-width: 768px) {
      .collection-points ul {
        -ms-flex-pack: center;
            justify-content: center; } }
    .collection-points ul li {
      list-style: none;
      margin-right: 4.286em;
      white-space: nowrap; }
      @media (min-width: 992px) {
        .collection-points ul li {
          margin-right: 6em; } }
      @media (min-width: 992px) {
        .collection-points ul li {
          margin-right: 8em; } }
      @media (min-width: 1600px) {
        .collection-points ul li {
          margin-right: 10em; } }
      .collection-points ul li:last-child {
        margin-right: 0; }

.collection-page {
  padding-bottom: 12.143em;
  padding-top: 1.429em; }
  @media (min-width: 992px) {
    .collection-page .collection-banner {
      display: block; } }

.collection-content {
  padding-left: 15px;
  padding-right: 15px; }
  .collection-content .collection-item {
    border-bottom: 1px solid #d8d8d8; }
    @media (min-width: 768px) {
      .collection-content .collection-item {
        border-bottom: 0; } }
  .collection-content .item-content {
    padding-left: 1.43em;
    padding-right: 2.143em;
    padding-top: 2.5em;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; }
    @media (min-width: 768px) {
      .collection-content .item-content {
        border-bottom: 1px solid #d8d8d8;
        padding-left: 1em;
        padding-right: 1em; } }
    @media (min-width: 1200px) {
      .collection-content .item-content {
        padding-left: 1.43em;
        padding-right: 1.43em; } }
  .collection-content .category-name,
  .collection-content .category-thumb {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
  .collection-content .category-name {
    font-size: 1.4286rem;
    text-transform: uppercase; }
    @media (min-width: 992px) {
      .collection-content .category-name {
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
        max-width: 40%;
        font-size: 1rem; } }
    @media (min-width: 1200px) {
      .collection-content .category-name {
        font-size: 1.2857rem; } }
    @media (min-width: 1600px) {
      .collection-content .category-name {
        font-size: 1.4286rem; } }
    .collection-content .category-name a {
      padding-top: 1em;
      display: block; }
  @media (min-width: 992px) {
    .collection-content .category-thumb {
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
      max-width: 60%; } }
  .collection-content .category-thumb.collection-type-luggage {
    height: 85px;
    overflow: hidden; }
    @media (min-width: 1200px) {
      .collection-content .category-thumb.collection-type-luggage {
        height: 105px; } }
    @media (min-width: 1600px) {
      .collection-content .category-thumb.collection-type-luggage {
        height: 127px; } }
    @media (min-width: 768px) {
      .collection-content .category-thumb.collection-type-luggage img {
        margin-top: -5%; } }
  .collection-content .category-thumb.collection-type-backpack-bag {
    height: 85px;
    overflow: hidden; }
    @media (min-width: 1200px) {
      .collection-content .category-thumb.collection-type-backpack-bag {
        height: 105px; } }
    @media (min-width: 1600px) {
      .collection-content .category-thumb.collection-type-backpack-bag {
        height: 127px; } }
    .collection-content .category-thumb.collection-type-backpack-bag img {
      margin-top: -40%; }
  .collection-content .category-thumb.collection-type-accessories {
    height: 85px;
    overflow: hidden; }
    @media (min-width: 1200px) {
      .collection-content .category-thumb.collection-type-accessories {
        height: 105px; } }
    @media (min-width: 1600px) {
      .collection-content .category-thumb.collection-type-accessories {
        height: 127px; } }
    .collection-content .category-thumb.collection-type-accessories img {
      margin-top: -50%; }

@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes zoomOutElement {
  from {
    transform: scale(1) translate(0, 0); }
  to {
    transform: scale(4) translate(30px, -30px); } }

[data-querystring*="cgid=eco-friendly"] .search-results-head {
  display: none; }

[data-querystring*="cgid=eco-friendly"] .content-slot-wrapper.container {
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 992px) {
    [data-querystring*="cgid=eco-friendly"] .content-slot-wrapper.container {
      max-width: none; } }

.eco-collection-page .has-animation.load-animation .info-content h4,
.eco-collection-page .has-animation.load-animation .info-content h2,
.eco-collection-page .has-animation.load-animation .info-content p {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: customFadeInUp;
  opacity: 1;
  filter: alpha(opacity=1); }

.eco-collection-page .has-animation.load-animation .info-content h2 {
  animation-delay: 0.2s; }

.eco-collection-page .has-animation.load-animation .info-content h4 {
  animation-delay: 0.4s; }

.eco-collection-page .has-animation.load-animation .info-content p {
  animation-delay: 0.6s; }

.eco-collection-page .has-animation .info-content h4,
.eco-collection-page .has-animation .info-content h2,
.eco-collection-page .has-animation .info-content p {
  opacity: 0;
  filter: alpha(opacity=0); }

.eco-collection-page .info-content h4 {
  font-family: "Gotham-Light";
  font-size: 1.1429rem;
  margin-bottom: 0; }
  @media (min-width: 992px) {
    .eco-collection-page .info-content h4 {
      font-size: 1.314rem; } }
  @media (min-width: 1600px) {
    .eco-collection-page .info-content h4 {
      font-size: 1.643rem; } }

.eco-collection-page .info-content h2 {
  font-family: "HelveticaNeue-UltraLight";
  font-size: 3.857rem;
  line-height: 1;
  margin-bottom: 0.75em; }
  @media (min-width: 992px) {
    .eco-collection-page .info-content h2 {
      font-size: 4.286rem; } }
  @media (min-width: 1600px) {
    .eco-collection-page .info-content h2 {
      font-size: 5.357rem; } }

.eco-collection-page .banner .info-content {
  padding-top: 6.429em;
  color: #fff;
  padding-left: 1.429em;
  padding-right: 1.429em; }
  @media (min-width: 992px) {
    .eco-collection-page .banner .info-content h2 {
      margin-bottom: 0; } }

.eco-collection-page .banner .eco-logo {
  margin-bottom: 0.714em; }
  @media (min-width: 1600px) {
    .eco-collection-page .banner .eco-logo img {
      width: 85%; } }

.eco-collection-page .banner .col-image {
  text-align: center; }
  @media (min-width: 992px) {
    .eco-collection-page .banner .col-image {
      text-align: left; } }
  @media (min-width: 768px) {
    .eco-collection-page .banner .col-image img {
      max-width: 70%;
      margin: 0 auto; } }

@media (min-width: 992px) {
  .eco-collection-page .banner .info-wrapper {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center; } }

@media (min-width: 992px) {
  .eco-collection-page .banner .col-info {
    margin-top: -4em; } }

@media (min-width: 1600px) {
  .eco-collection-page .banner .col-info {
    margin-top: -7em; } }

.eco-collection-page .section-first {
  background-color: #e8f4ed;
  padding-bottom: 2.857em; }
  @media (min-width: 992px) {
    .eco-collection-page .section-first {
      padding-top: 6.857em;
      padding-bottom: 6.857em; } }
  @media (min-width: 992px) {
    .eco-collection-page .section-first .row {
      -ms-flex-align: center;
          align-items: center; } }
  .eco-collection-page .section-first .col-image {
    text-align: center;
    padding-top: 3.571em;
    padding-bottom: 3.571em; }
    @media (min-width: 992px) {
      .eco-collection-page .section-first .col-image {
        text-align: right;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 6em; } }
    .eco-collection-page .section-first .col-image img {
      max-width: 12.143em; }
      @media (min-width: 992px) {
        .eco-collection-page .section-first .col-image img {
          max-width: 14.914em; } }
      @media (min-width: 1600px) {
        .eco-collection-page .section-first .col-image img {
          max-width: 20em; } }
  .eco-collection-page .section-first .info-content p {
    margin-bottom: 0; }
  .eco-collection-page .section-first h2 {
    color: #3f8d2d; }

.eco-collection-page .section-second {
  position: relative; }
  .eco-collection-page .section-second.has-animation .section-description p {
    opacity: 0;
    filter: alpha(opacity=0); }
  .eco-collection-page .section-second.load-animation .section-description p {
    animation-duration: 0.5s;
    animation-name: customFadeInUp;
    opacity: 1;
    filter: alpha(opacity=1); }
  .eco-collection-page .section-second .section-description {
    position: absolute;
    left: 0;
    right: 0;
    top: 20%;
    color: #fff;
    font-family: "HelveticaNeue-Thin";
    color: #fff;
    font-size: 3.057em;
    text-align: center;
    padding-left: 1.429em;
    padding-right: 1.429em; }
    @media (min-width: 768px) {
      .eco-collection-page .section-second .section-description {
        padding-left: 1em;
        padding-right: 1em; } }
    @media (min-width: 992px) {
      .eco-collection-page .section-second .section-description {
        max-width: 11em;
        left: 50%;
        top: 30%;
        font-size: 3.429rem;
        transform: translateX(-50%); } }
    @media (min-width: 1600px) {
      .eco-collection-page .section-second .section-description {
        font-size: 5rem; } }
    .eco-collection-page .section-second .section-description p {
      opacity: 0;
      filter: alpha(opacity=0); }
  @media (min-width: 992px) {
    .eco-collection-page .section-second img {
      width: 100%; } }

.eco-collection-page .section-third {
  padding-top: 2.5em;
  position: relative; }
  @media (min-width: 1600px) {
    .eco-collection-page .section-third {
      padding-bottom: 4.5em; } }
  .eco-collection-page .section-third h2 {
    color: #3f8d2d; }
  .eco-collection-page .section-third .info-content p {
    max-width: 60%; }
  .eco-collection-page .section-third .bottom-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
    .eco-collection-page .section-third .bottom-image img {
      width: 100%; }
  .eco-collection-page .section-third .col-info {
    z-index: 2; }
    @media (min-width: 992px) {
      .eco-collection-page .section-third .col-info {
        padding-top: 4em; } }
  .eco-collection-page .section-third .col-image {
    text-align: right;
    z-index: 1;
    margin-top: -5.357em; }
    @media (min-width: 992px) {
      .eco-collection-page .section-third .col-image {
        margin-top: 0; } }
    .eco-collection-page .section-third .col-image .image {
      margin-right: -15px; }

.eco-collection-page .section-fourth {
  color: #3f8d2d;
  text-align: center;
  font-family: "HelveticaNeue-Thin"; }
  .eco-collection-page .section-fourth.has-animation .col-info {
    opacity: 0;
    filter: alpha(opacity=0); }
  .eco-collection-page .section-fourth.load-animation .col-info {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: customFadeInUp;
    opacity: 1;
    filter: alpha(opacity=1); }
  @media (min-width: 992px) {
    .eco-collection-page .section-fourth img {
      width: 100%; } }
  .eco-collection-page .section-fourth .col-info {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
    font-size: 2rem;
    padding-left: 0.714em;
    padding-right: 0.714em; }
    @media (min-width: 992px) {
      .eco-collection-page .section-fourth .col-info {
        padding-left: 3em;
        padding-right: 3em; } }
    @media (min-width: 1600px) {
      .eco-collection-page .section-fourth .col-info {
        font-size: 2.857rem;
        padding-top: 1.5em;
        padding-bottom: 1.5em; } }
    .eco-collection-page .section-fourth .col-info .number {
      font-size: 4.286rem; }
      @media (min-width: 992px) {
        .eco-collection-page .section-fourth .col-info .number {
          font-size: 6.057rem; } }
      @media (min-width: 1600px) {
        .eco-collection-page .section-fourth .col-info .number {
          font-size: 7.571rem; } }

.eco-collection-page .section-fifth {
  background-color: #e8f4ed;
  padding-top: 2.143em;
  padding-bottom: 2.143em;
  text-align: center;
  color: #3f8d2d;
  font-family: "HelveticaNeue-Thin"; }
  @media (min-width: 992px) {
    .eco-collection-page .section-fifth {
      padding-top: 4.11em;
      padding-bottom: 4.11em; } }
  .eco-collection-page .section-fifth h3 {
    font-size: 2.786rem;
    line-height: 1;
    margin: 0; }
    @media (min-width: 992px) {
      .eco-collection-page .section-fifth h3 {
        font-size: 4rem; } }
    @media (min-width: 1600px) {
      .eco-collection-page .section-fifth h3 {
        font-size: 5rem; } }
  .eco-collection-page .section-fifth h2 {
    font-size: 10.357rem;
    line-height: 1;
    margin: 0; }
    @media (min-width: 992px) {
      .eco-collection-page .section-fifth h2 {
        font-size: 18.571rem; } }
    @media (min-width: 1600px) {
      .eco-collection-page .section-fifth h2 {
        font-size: 14.857rem; } }
    .eco-collection-page .section-fifth h2 + h3 {
      margin-top: -0.3em; }
  .eco-collection-page .section-fifth p {
    font-size: 2.286rem;
    margin-top: 1rem; }
    @media (min-width: 992px) {
      .eco-collection-page .section-fifth p {
        font-size: 4rem; } }
    @media (min-width: 1600px) {
      .eco-collection-page .section-fifth p {
        font-size: 3.2rem; } }
  .eco-collection-page .section-fifth img {
    max-width: 270px;
    margin: 0 auto; }
  @media (min-width: 992px) {
    .eco-collection-page .section-fifth .item {
      max-width: 60%;
      margin: 0 auto; }
      .eco-collection-page .section-fifth .item .row {
        -ms-flex-align: center;
            align-items: center; } }
  .eco-collection-page .section-fifth .owl-nav {
    display: none; }
    @media (min-width: 992px) {
      .eco-collection-page .section-fifth .owl-nav {
        display: block; } }
    .eco-collection-page .section-fifth .owl-nav button.owl-prev, .eco-collection-page .section-fifth .owl-nav button.owl-next {
      width: 26px;
      height: 26px;
      background-color: #000;
      color: #fff;
      font-size: 10px;
      position: absolute;
      z-index: 10;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 50%; }
      @media (min-width: 992px) {
        .eco-collection-page .section-fifth .owl-nav button.owl-prev, .eco-collection-page .section-fifth .owl-nav button.owl-next {
          width: 30px;
          height: 30px;
          font-size: 0.857rem; } }
      @media (min-width: 1600px) {
        .eco-collection-page .section-fifth .owl-nav button.owl-prev, .eco-collection-page .section-fifth .owl-nav button.owl-next {
          width: 40px;
          height: 40px;
          font-size: 1.0714rem; } }
    .eco-collection-page .section-fifth .owl-nav button::before {
      content: "\E903";
      position: absolute;
      left: 50%;
      top: 50%;
      font-family: "Samsonite-icons";
      font-style: normal;
      font-weight: normal;
      transform: translate(-50%, -50%); }
    .eco-collection-page .section-fifth .owl-nav button.owl-prev {
      background-color: #000; }
      .eco-collection-page .section-fifth .owl-nav button.owl-prev::before {
        content: "\E902"; }
      @media (min-width: 992px) {
        .eco-collection-page .section-fifth .owl-nav button.owl-prev {
          left: 3.429em; } }
    .eco-collection-page .section-fifth .owl-nav button.owl-next {
      left: auto;
      background-color: #000; }
      .eco-collection-page .section-fifth .owl-nav button.owl-next::before {
        content: "\E903"; }
      @media (min-width: 992px) {
        .eco-collection-page .section-fifth .owl-nav button.owl-next {
          right: 3.429em; } }
    .eco-collection-page .section-fifth .owl-nav span {
      display: none; }

@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes zoomOutElement {
  from {
    transform: scale(1) translate(0, 0); }
  to {
    transform: scale(4) translate(30px, -30px); } }

[data-querystring*="cgid=smart-function"] .search-results-head {
  display: none; }

[data-querystring*="cgid=smart-function"] .content-slot-wrapper.container {
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 992px) {
    [data-querystring*="cgid=smart-function"] .content-slot-wrapper.container {
      max-width: none; } }

.smart-feature-page {
  font-family: "HelveticaNeue-Light"; }
  .smart-feature-page .section,
  .smart-feature-page .section-inner {
    position: relative; }
    .smart-feature-page .section .icon,
    .smart-feature-page .section-inner .icon {
      max-width: 5em;
      margin-bottom: 1.1em; }
  .smart-feature-page .icon-title {
    font-size: 0.643rem;
    font-family: "Gotham-Bold";
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 0.5em;
    text-align: center; }
  @media (min-width: 1600px) {
    .smart-feature-page .image img {
      width: 100%; } }
  .smart-feature-page .btn-default-1 {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    min-width: 14.286em;
    background: none;
    font-size: 1rem; }
    .smart-feature-page .btn-default-1:hover, .smart-feature-page .btn-default-1:focus {
      color: #fff;
      background-color: #000; }
  .smart-feature-page .has-animation.load-animation .info-content .icon,
  .smart-feature-page .has-animation.load-animation .info-content h3,
  .smart-feature-page .has-animation.load-animation .info-content h2,
  .smart-feature-page .has-animation.load-animation .info-content p,
  .smart-feature-page .has-animation.load-animation .info-content .btn-default-1 {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: customFadeInUp;
    opacity: 1;
    filter: alpha(opacity=1); }
  .smart-feature-page .has-animation.load-animation .info-content h2 {
    animation-delay: 0.2s; }
  .smart-feature-page .has-animation.load-animation .info-content h3 {
    animation-delay: 0.4s; }
  .smart-feature-page .has-animation.load-animation .info-content p {
    animation-delay: 0.6s; }
  .smart-feature-page .has-animation.load-animation .info-content .btn-default-1 {
    animation-delay: 0.8s; }
  .smart-feature-page .has-animation .info-content .icon,
  .smart-feature-page .has-animation .info-content h3,
  .smart-feature-page .has-animation .info-content h2,
  .smart-feature-page .has-animation .info-content p,
  .smart-feature-page .has-animation .info-content .btn-default-1 {
    opacity: 0;
    filter: alpha(opacity=0); }
  .smart-feature-page .info-content h2 {
    font-family: "HelveticaNeue-UltraLight";
    font-size: 3.471rem;
    line-height: 1;
    margin-bottom: 0; }
    @media (min-width: 768px) {
      .smart-feature-page .info-content h2 {
        font-size: 3.671rem; } }
    @media (min-width: 992px) {
      .smart-feature-page .info-content h2 {
        font-size: 2.7rem; } }
    @media (min-width: 1200px) {
      .smart-feature-page .info-content h2 {
        font-size: 3.143rem; } }
    @media (min-width: 1600px) {
      .smart-feature-page .info-content h2 {
        font-size: 3.929rem; } }
  .smart-feature-page .info-content h3 {
    font-family: "Gotham-Light";
    font-size: 1.429rem; }
    @media (min-width: 992px) {
      .smart-feature-page .info-content h3 {
        font-size: 1.32rem; } }
    @media (min-width: 1200px) {
      .smart-feature-page .info-content h3 {
        font-size: 1.52rem; } }
    @media (min-width: 1600px) {
      .smart-feature-page .info-content h3 {
        font-size: 1.9rem; } }
  .smart-feature-page .info-content p {
    margin-top: 1.429em; }
  .smart-feature-page .info-content .btn-default-1 {
    margin-top: 1em; }
  .smart-feature-page .section-first .info-content {
    position: absolute;
    left: 1.786em;
    bottom: 4.286em;
    z-index: 1; }
    @media (min-width: 992px) {
      .smart-feature-page .section-first .info-content {
        left: 20%;
        max-width: 35em;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%); } }
    @media (min-width: 992px) {
      .smart-feature-page .section-first .info-content img {
        max-width: 90px; } }
    @media (min-width: 1600px) {
      .smart-feature-page .section-first .info-content img {
        max-width: none; } }
    .smart-feature-page .section-first .info-content h2 {
      font-size: 4.071rem; }
      @media (min-width: 992px) {
        .smart-feature-page .section-first .info-content h2 {
          font-size: 3.8rem; } }
      @media (min-width: 1200px) {
        .smart-feature-page .section-first .info-content h2 {
          font-size: 4.171rem; } }
      @media (min-width: 1600px) {
        .smart-feature-page .section-first .info-content h2 {
          font-size: 5.214rem; } }
    .smart-feature-page .section-first .info-content p {
      max-width: 70%; }
  .smart-feature-page .section-second.has-animation.load-animation .col-4 {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: customFadeInUp;
    opacity: 1;
    filter: alpha(opacity=1);
    animation-delay: 0.2s; }
  .smart-feature-page .section-second.has-animation .col-4 {
    opacity: 0;
    filter: alpha(opacity=0); }
  .smart-feature-page .section-second .info-content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 70%;
    transform: translate(-50%, -50%); }
    @media (min-width: 992px) {
      .smart-feature-page .section-second .info-content {
        max-width: 37.143em; } }
    @media (min-width: 1200px) {
      .smart-feature-page .section-second .info-content {
        max-width: 45em; } }
    @media (min-width: 1600px) {
      .smart-feature-page .section-second .info-content {
        max-width: 52em; } }
  .smart-feature-page .section-second .col-4 {
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
    margin-bottom: 24px; }
    @media (min-width: 1600px) {
      .smart-feature-page .section-second .col-4 {
        margin-bottom: 3em; } }
    @media (min-width: 1200px) {
      .smart-feature-page .section-second .col-4 img {
        width: 100px; } }
    @media (min-width: 1600px) {
      .smart-feature-page .section-second .col-4 img {
        width: 120px; } }
  .smart-feature-page .section-third .info-content,
  .smart-feature-page .section-fifth .info-content {
    position: absolute;
    left: 1.786em;
    right: 1.786em;
    bottom: 3.214em;
    z-index: 1; }
    @media (min-width: 992px) {
      .smart-feature-page .section-third .info-content,
      .smart-feature-page .section-fifth .info-content {
        left: 60%;
        right: auto;
        max-width: 23em;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%); } }
  .smart-feature-page .section-fourth .info-content {
    position: absolute;
    left: 1.786em;
    right: 1.786em;
    top: 1.786em;
    z-index: 1; }
    @media (min-width: 992px) {
      .smart-feature-page .section-fourth .info-content {
        position: static; } }
    @media (min-width: 992px) {
      .smart-feature-page .section-fourth .info-content h2 {
        font-size: 2.3em; } }
    @media (min-width: 1200px) {
      .smart-feature-page .section-fourth .info-content h2 {
        font-size: 3.143rem; } }
    @media (min-width: 1600px) {
      .smart-feature-page .section-fourth .info-content h2 {
        font-size: 3.929rem; } }
  @media (min-width: 992px) {
    .smart-feature-page .section-fourth .col-lg-6 {
      padding-left: 15px;
      padding-right: 15px; } }
  .smart-feature-page .section-fourth .col-first .info-content {
    left: 35%; }
  @media (min-width: 992px) {
    .smart-feature-page .section-fourth .col-second h2 br:nth-child(1) {
      display: none; } }
  @media (min-width: 992px) {
    .smart-feature-page .section-fourth .info-content-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 50%;
      transform: translate(-50%, -50%); } }
  .smart-feature-page .section-fifth .info-content p {
    max-width: 70%; }
  .smart-feature-page .section-sixth .info-content,
  .smart-feature-page .section-seventh .info-content,
  .smart-feature-page .section-eighth .info-content {
    position: absolute;
    left: 1.786em;
    right: 1.786em;
    top: 1.786em;
    z-index: 1; }
    @media (min-width: 992px) {
      .smart-feature-page .section-sixth .info-content,
      .smart-feature-page .section-seventh .info-content,
      .smart-feature-page .section-eighth .info-content {
        top: 50%;
        transform: translateY(-50%); } }
  @media (min-width: 992px) {
    .smart-feature-page .section-sixth .info-content,
    .smart-feature-page .section-eighth .info-content {
      right: auto;
      left: 60%; } }
  .smart-feature-page .section-seventh .col-12 {
    margin-bottom: 2.857em; }
    @media (min-width: 992px) {
      .smart-feature-page .section-seventh .col-12 {
        margin-bottom: 0;
        padding-bottom: 2.5em; }
        .smart-feature-page .section-seventh .col-12 .btn-default-1 {
          position: absolute;
          bottom: 0;
          left: 15px; } }
    .smart-feature-page .section-seventh .col-12:last-child {
      margin-bottom: 0; }
  .smart-feature-page .section-seventh .info-content {
    top: 2.5em; }
    @media (min-width: 768px) {
      .smart-feature-page .section-seventh .info-content {
        top: 50%;
        transform: translateY(-50%); } }
    @media (min-width: 992px) {
      .smart-feature-page .section-seventh .info-content .col-lg-3 {
        padding-left: 15px;
        padding-right: 15px; } }
  .smart-feature-page .section-ninth .info-content {
    position: static;
    padding: 2.857em 1.786em; }
    @media (min-width: 992px) {
      .smart-feature-page .section-ninth .info-content {
        position: absolute;
        left: 20%;
        top: 50%;
        width: 35%;
        padding-left: 0;
        transform: translateY(-50%); } }

.compare-bar-wrapper {
  position: absolute;
  z-index: 5;
  background-color: #fff;
  text-align: center;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: none; }
  .sticky-header .compare-bar-wrapper {
    position: fixed; }
  .compare-bar-wrapper .compare-bar {
    position: relative; }
  .compare-bar-wrapper .compare-text {
    font-family: "HelveticaNeue-UltraLight";
    font-size: 1.7143rem;
    margin-top: 1.071rem; }
    @media (min-width: 992px) {
      .compare-bar-wrapper .compare-text {
        margin: 0.6286em 0 0; } }
    @media (min-width: 1600px) {
      .compare-bar-wrapper .compare-text {
        font-size: 2.36rem; } }
  .compare-bar-wrapper .action {
    margin-top: 1rem;
    margin-bottom: 1rem; }
    @media (min-width: 1200px) {
      .compare-bar-wrapper .action {
        margin: 0.8rem 0 0;
        height: 2.5rem; } }
    @media (min-width: 1600px) {
      .compare-bar-wrapper .action {
        margin: 1rem 0 0;
        height: 3rem; } }
    .compare-bar-wrapper .action .select-another-product {
      margin-bottom: 0; }
      @media (min-width: 1200px) {
        .compare-bar-wrapper .action .select-another-product {
          font-size: 1.1429rem; } }
      @media (min-width: 1600px) {
        .compare-bar-wrapper .action .select-another-product {
          font-size: 1.2857rem; } }
    .compare-bar-wrapper .action .btn_compare {
      color: #000;
      background-color: #fff;
      border: 2px solid #000;
      display: inline-block;
      text-transform: uppercase;
      font-family: "Gotham-Bold", sans-serif;
      padding: 5px 10px;
      border-radius: 0;
      background-color: #000;
      color: #fff;
      padding: 0.643rem 1.5rem;
      font-size: 2.3vw;
      line-height: 1;
      display: none;
      margin: 0 auto;
      cursor: pointer; }
      .compare-bar-wrapper .action .btn_compare:hover, .compare-bar-wrapper .action .btn_compare:focus {
        background-color: #000; }
      @media (min-width: 1200px) {
        .compare-bar-wrapper .action .btn_compare {
          width: 8.8rem;
          height: 2.5rem;
          font-size: 0.8571rem; } }
      @media (min-width: 1600px) {
        .compare-bar-wrapper .action .btn_compare {
          width: 11rem;
          height: 3rem;
          font-size: 1.0714rem; } }
  .compare-bar-wrapper .product-slots {
    text-align: left;
    -ms-flex-pack: center;
        justify-content: center; }
    @media (min-width: 992px) {
      .compare-bar-wrapper .product-slots {
        margin: 0 5% 0 18%;
        -ms-flex-align: center;
            align-items: center; } }
    @media (min-width: 1200px) {
      .compare-bar-wrapper .product-slots {
        width: 52rem; } }
    @media (min-width: 1600px) {
      .compare-bar-wrapper .product-slots {
        width: 65rem;
        margin: 0 auto; } }
    .compare-bar-wrapper .product-slots .selected-product {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex;
      border-radius: 10px;
      padding: 1.071rem 0.5rem;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
      max-width: 30%;
      margin: 0 0.429rem;
      border: 1px solid #ededed; }
      @media (min-width: 1200px) {
        .compare-bar-wrapper .product-slots .selected-product {
          margin: 0.8rem 0 1.7857rem;
          padding: 0;
          -ms-flex-pack: unset;
              justify-content: unset;
          -ms-flex-align: unset;
              align-items: unset;
          -ms-flex: 0 0 33.33%;
              flex: 0 0 33.33%;
          border: none;
          max-width: 33.33%;
          border-radius: 0; } }
      @media (min-width: 1600px) {
        .compare-bar-wrapper .product-slots .selected-product {
          margin: 0.8rem 0 1.9429rem; } }
      .compare-bar-wrapper .product-slots .selected-product.empty-slots {
        -ms-flex-pack: unset;
            justify-content: unset; }
      .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-collection h4,
      .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-collection p,
      .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-name h4,
      .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-name p {
        white-space: nowrap;
        width: 60px;
        overflow: hidden;
        text-overflow: ellipsis; }
        @media (min-width: 1200px) {
          .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-collection h4,
          .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-collection p,
          .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-name h4,
          .compare-bar-wrapper .product-slots .selected-product:not(.empty-slots) .product-name p {
            white-space: normal;
            width: auto;
            overflow: unset;
            text-overflow: unset; } }
      @media (min-width: 1200px) {
        .compare-bar-wrapper .product-slots .selected-product .number-slot {
          width: 2.4rem;
          height: 2.4rem;
          margin-right: 0.8rem;
          border-radius: 50%;
          position: relative;
          -ms-flex-pack: center;
              justify-content: center;
          border: 2px solid #000; } }
      @media (min-width: 1600px) {
        .compare-bar-wrapper .product-slots .selected-product .number-slot {
          width: 3rem;
          height: 3rem;
          margin-right: 1rem; } }
      .compare-bar-wrapper .product-slots .selected-product .number-slot .number-text {
        margin-bottom: 0;
        font-size: 1.4286rem;
        padding-right: 0.714rem; }
        @media screen and (max-width: 375px) {
          .compare-bar-wrapper .product-slots .selected-product .number-slot .number-text {
            font-size: 1rem;
            padding-right: 0.5rem; } }
        @media (min-width: 1200px) {
          .compare-bar-wrapper .product-slots .selected-product .number-slot .number-text {
            font-size: 1.3714rem;
            top: 50%;
            left: 50%;
            position: absolute;
            line-height: 1;
            padding-right: 0;
            transform: translate(-50%, -50%); } }
        @media (min-width: 1600px) {
          .compare-bar-wrapper .product-slots .selected-product .number-slot .number-text {
            font-size: 1.7143rem; } }
    .compare-bar-wrapper .product-slots .product-attribute .product-collection h4 {
      line-height: 1;
      font-size: 0.857rem;
      margin-bottom: 0;
      font-weight: bold; }
      @media screen and (max-width: 375px) {
        .compare-bar-wrapper .product-slots .product-attribute .product-collection h4 {
          font-size: 0.7143rem; } }
      @media (min-width: 1200px) {
        .compare-bar-wrapper .product-slots .product-attribute .product-collection h4 {
          margin-bottom: 0.2368em;
          font-size: 1.1429rem;
          font-weight: inherit; } }
      @media (min-width: 1600px) {
        .compare-bar-wrapper .product-slots .product-attribute .product-collection h4 {
          font-size: 1.5714rem; } }
    .compare-bar-wrapper .product-slots .product-attribute .product-collection .select-product {
      text-transform: uppercase;
      color: #c2c2c2;
      font-weight: normal; }
    .compare-bar-wrapper .product-slots .product-attribute .product-name p {
      line-height: 1;
      margin-bottom: 0;
      font-family: "Gotham-Medium";
      font-size: 0.571rem;
      margin-top: 0.286rem; }
      @media (min-width: 1200px) {
        .compare-bar-wrapper .product-slots .product-attribute .product-name p {
          font-size: 0.7429rem;
          margin-top: 0; } }
      @media (min-width: 1600px) {
        .compare-bar-wrapper .product-slots .product-attribute .product-name p {
          font-size: 0.9286rem; } }
  .compare-bar-wrapper .clear-all-compare {
    display: none; }
    @media (min-width: 1200px) {
      .compare-bar-wrapper .clear-all-compare {
        position: absolute;
        top: 62%;
        right: 5%;
        display: block; } }
    .compare-bar-wrapper .clear-all-compare .btn-clear {
      border: none;
      cursor: pointer;
      background: none;
      outline: none; }
      .compare-bar-wrapper .clear-all-compare .btn-clear .icon-ico-close::before {
        color: #000;
        font-weight: bold; }
        @media (min-width: 1200px) {
          .compare-bar-wrapper .clear-all-compare .btn-clear .icon-ico-close::before {
            font-size: 12px; } }
        @media (min-width: 1600px) {
          .compare-bar-wrapper .clear-all-compare .btn-clear .icon-ico-close::before {
            font-size: 1rem; } }
      .compare-bar-wrapper .clear-all-compare .btn-clear .clear-text {
        margin-left: 5px;
        text-decoration: underline;
        text-transform: uppercase; }
        @media (min-width: 1200px) {
          .compare-bar-wrapper .clear-all-compare .btn-clear .clear-text {
            font-size: 1rem; } }
        @media (min-width: 1600px) {
          .compare-bar-wrapper .clear-all-compare .btn-clear .clear-text {
            font-size: 1.2857rem; } }
  .compare-bar-wrapper .btn-clear-mobile {
    background-color: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    padding: 0 0 0 0.5rem; }
    .compare-bar-wrapper .btn-clear-mobile i::before {
      color: #000;
      font-size: 0.7143rem; }
  .compare-bar-wrapper .ord-1 {
    -ms-flex-order: 1;
        order: 1; }
  .compare-bar-wrapper .ord-2 {
    -ms-flex-order: 2;
        order: 2; }
    @media (min-width: 1200px) {
      .compare-bar-wrapper .ord-2 {
        -ms-flex-order: 3;
            order: 3; } }
  .compare-bar-wrapper .ord-3 {
    -ms-flex-order: 3;
        order: 3; }
    @media (min-width: 1200px) {
      .compare-bar-wrapper .ord-3 {
        -ms-flex-order: 2;
            order: 2; } }

.compare-page-wrapper {
  margin: 0 auto;
  overflow-x: scroll;
  margin-top: 3.214rem; }
  @media (min-width: 1200px) {
    .compare-page-wrapper {
      overflow-x: unset;
      margin-top: 0; } }
  .compare-page-wrapper .col-border {
    border-top: solid #d8d8d8 2px; }
  @media (min-width: 1200px) {
    .compare-page-wrapper {
      max-width: 960px; } }
  @media (min-width: 1600px) {
    .compare-page-wrapper {
      max-width: 1200px; } }
  .compare-page-wrapper .compare-page-header h1 {
    font-family: "HelveticaNeue-UltraLight";
    text-align: center;
    display: none; }
    @media (min-width: 1200px) {
      .compare-page-wrapper .compare-page-header h1 {
        font-size: 2rem;
        display: block; } }
    @media (min-width: 1600px) {
      .compare-page-wrapper .compare-page-header h1 {
        font-size: 2.5rem; } }
  .compare-page-wrapper .product-comparison {
    min-width: 630px; }
    @media (min-width: 1200px) {
      .compare-page-wrapper .product-comparison {
        min-width: auto; } }
    .compare-page-wrapper .product-comparison .center {
      -ms-flex-pack: center;
          justify-content: center;
      padding: 0 25px; }
      @media (min-width: 1200px) {
        .compare-page-wrapper .product-comparison .center {
          padding: 0; } }
      @media (min-width: 1200px) {
        .compare-page-wrapper .product-comparison .center .tile-body {
          margin-bottom: 3.4286rem; } }
      @media (min-width: 1600px) {
        .compare-page-wrapper .product-comparison .center .tile-body {
          margin-bottom: 4.2857rem; } }
      .compare-page-wrapper .product-comparison .center .product-detail:nth-child(2) .tile-body-field-group::before {
        content: "1"; }
      .compare-page-wrapper .product-comparison .center .product-detail:nth-child(3) .tile-body-field-group::before {
        content: "2"; }
      .compare-page-wrapper .product-comparison .center .product-detail:nth-child(4) .tile-body-field-group::before {
        content: "3"; }
      .compare-page-wrapper .product-comparison .center .product-detail .tile-body-field-group::before {
        border: 2px solid #000;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        padding-top: 4px;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        width: 27px;
        height: 27px; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .product-detail .tile-body-field-group::before {
            font-size: 1.3714rem;
            width: 2.4rem;
            height: 2.4rem; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-comparison .center .product-detail .tile-body-field-group::before {
            font-size: 1.7143rem;
            width: 3rem;
            height: 3rem; } }
      .compare-page-wrapper .product-comparison .center .product-detail .tile-body-field-group .brand-link {
        display: none; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .product-detail .tile-body-field-group .brand-link {
            display: block; } }
      .compare-page-wrapper .product-comparison .center .product-detail .product-tile .tile-group-left {
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
        margin-left: 5px; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .product-detail .product-tile .tile-group-left {
            margin-left: 0.8rem; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-comparison .center .product-detail .product-tile .tile-group-left {
            margin-left: 1rem; } }
      .compare-page-wrapper .product-comparison .center .product-detail .product-tile .image-container a .tile-image {
        max-width: 100%;
        width: 100%;
        height: auto; }
      .compare-page-wrapper .product-comparison .center .product-detail .product-tile .product-collection h4 {
        line-height: 1;
        margin-bottom: 0.2368em;
        font-size: 14px; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .product-detail .product-tile .product-collection h4 {
            font-size: 1.3714rem; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-comparison .center .product-detail .product-tile .product-collection h4 {
            font-size: 1.7143rem; } }
      .compare-page-wrapper .product-comparison .center .product-detail .product-tile .pdp-link a {
        line-height: 1;
        margin-bottom: 0;
        font-family: "Gotham-Medium"; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .product-detail .product-tile .pdp-link a {
            font-size: 0.7429rem; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-comparison .center .product-detail .product-tile .pdp-link a {
            font-size: 0.9286rem; } }
      .compare-page-wrapper .product-comparison .center .attribute-name {
        font-family: "Gotham-Bold";
        text-transform: uppercase;
        margin: 1.071rem 0;
        font-size: 0.857rem; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .attribute-name {
            margin: 2.2857rem 0; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-comparison .center .attribute-name {
            font-size: 1.0714rem;
            margin: 2.8571rem 0; } }
      .compare-page-wrapper .product-comparison .center .special-features,
      .compare-page-wrapper .product-comparison .center .compare-value {
        position: relative; }
        .compare-page-wrapper .product-comparison .center .special-features .attribute-name,
        .compare-page-wrapper .product-comparison .center .special-features .empty-value,
        .compare-page-wrapper .product-comparison .center .compare-value .attribute-name,
        .compare-page-wrapper .product-comparison .center .compare-value .empty-value {
          position: absolute;
          top: 50%;
          margin: 0;
          transform: translateY(-50%); }
      .compare-page-wrapper .product-comparison .center .attribute-value {
        margin: 1.071rem 0;
        font-size: 0.857rem; }
        @media (min-width: 1200px) {
          .compare-page-wrapper .product-comparison .center .attribute-value {
            font-size: 0.929rem;
            margin: 2.2857rem 0; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-comparison .center .attribute-value {
            font-size: 1.1429rem;
            margin: 2.8571rem 0; } }
      .compare-page-wrapper .product-comparison .center .watch-item {
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
        .compare-page-wrapper .product-comparison .center .watch-item .attr-selector {
          border-radius: 50%;
          width: 25px;
          height: 25px; }
          @media (min-width: 1200px) {
            .compare-page-wrapper .product-comparison .center .watch-item .attr-selector {
              width: 32px;
              height: 32px; } }
          @media (min-width: 1600px) {
            .compare-page-wrapper .product-comparison .center .watch-item .attr-selector {
              width: 40px;
              height: 40px; } }
      .compare-page-wrapper .product-comparison .center .feature-item {
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
        @media (min-width: 992px) {
          .compare-page-wrapper .product-comparison .center .feature-item {
            margin-left: -2.1em;
            margin-right: -0.1em;
            padding-left: 1px;
            padding-right: 1.2em; } }
        .compare-page-wrapper .product-comparison .center .feature-item .feature-icon {
          margin: 0.71rem 0;
          padding: 0; }
          @media (min-width: 1200px) {
            .compare-page-wrapper .product-comparison .center .feature-item .feature-icon {
              margin: 20px 0; } }
        .compare-page-wrapper .product-comparison .center .feature-item .feature-image,
        .compare-page-wrapper .product-comparison .center .feature-item .feature-text {
          padding-left: 0.1em;
          padding-right: 0.1em;
          text-align: center;
          margin-right: 0; }
        .compare-page-wrapper .product-comparison .center .feature-item .feature-image {
          margin-bottom: 1.429em; }
          .compare-page-wrapper .product-comparison .center .feature-item .feature-image svg {
            width: 50px;
            height: 50px;
            margin-left: auto;
            margin-right: auto;
            display: block; }
            @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
              .compare-page-wrapper .product-comparison .center .feature-item .feature-image svg {
                max-height: 3.571rem; } }
            .compare-page-wrapper .product-comparison .center .feature-item .feature-image svg path {
              fill: #272727 !important; }
        .compare-page-wrapper .product-comparison .center .feature-item .feature-text {
          font-size: 0.786rem; }
          @media (min-width: 1200px) {
            .compare-page-wrapper .product-comparison .center .feature-item .feature-text {
              font-size: 14px; } }
    .compare-page-wrapper .product-comparison .monogrammable .attribute-name {
      width: 55px;
      white-space: normal;
      text-overflow: ellipsis;
      overflow: hidden; }
      @media (min-width: 1200px) {
        .compare-page-wrapper .product-comparison .monogrammable .attribute-name {
          white-space: normal;
          width: auto;
          overflow: unset;
          text-overflow: unset; } }
  .compare-page-wrapper .product-action {
    margin: 0 0 2.7429rem;
    padding-top: 2rem; }
    @media (min-width: 1200px) {
      .compare-page-wrapper .product-action {
        padding-top: 4rem; } }
    @media (min-width: 1600px) {
      .compare-page-wrapper .product-action {
        margin: 0 0 3.4286rem;
        padding-top: 5rem; } }
    .compare-page-wrapper .product-action .product-tile {
      padding-bottom: 0;
      min-height: auto; }
      .compare-page-wrapper .product-action .product-tile .add-to-cart {
        padding: 7px 17px;
        width: auto; }
        @media (min-width: 992px) {
          .compare-page-wrapper .product-action .product-tile .add-to-cart {
            padding-top: 9px;
            padding-bottom: 9px; } }
        @media (min-width: 1600px) {
          .compare-page-wrapper .product-action .product-tile .add-to-cart {
            padding-top: 11px;
            padding-bottom: 11px; } }
    .compare-page-wrapper .product-action .product-detail .center {
      padding-right: 0;
      -ms-flex-pack: unset;
          justify-content: unset; }
      @media (min-width: 1200px) {
        .compare-page-wrapper .product-action .product-detail .center {
          -ms-flex-pack: center;
              justify-content: center; } }
  .compare-page-wrapper .custom-col-1 {
    -ms-flex: 0 0 15%;
        flex: 0 0 15%;
    max-width: 15%; }
    @media (min-width: 1200px) {
      .compare-page-wrapper .custom-col-1.col-3 {
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
        max-width: 25%; }
      .compare-page-wrapper .custom-col-1.col-2 {
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
        max-width: 16.66667%; } }
  .compare-page-wrapper .custom-col-2 {
    -ms-flex: 0 0 28.33%;
        flex: 0 0 28.33%;
    max-width: 28.33%;
    padding: 0 20px; }
    @media (min-width: 1200px) {
      .compare-page-wrapper .custom-col-2.col-3 {
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
        max-width: 25%; }
      .compare-page-wrapper .custom-col-2.col-1 {
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
        max-width: 8.33333%; } }
  .compare-page-wrapper .last-col {
    display: none; }
    @media (min-width: 1200px) {
      .compare-page-wrapper .last-col {
        display: block; } }
  .compare-page-wrapper .product-details .center {
    padding: 0; }

.tile-body-footer .compare {
  display: none; }

.game-section {
  background-color: #b0212e;
  padding: 4rem 0.71428rem; }
  .game-section h2,
  .game-section h3,
  .game-section p,
  .game-section a,
  .game-section button {
    font-family: Gotham-Black;
    color: #fff; }
  .game-section .show-desktop {
    display: none; }
    @media (min-width: 992px) {
      .game-section .show-desktop {
        display: block; } }
  .game-section .show-mobile {
    display: block; }
    @media (min-width: 992px) {
      .game-section .show-mobile {
        display: none; } }
  .game-section .game-body {
    position: relative;
    border: 5px solid #fff;
    border-radius: 20px;
    padding: 0 1.33929rem; }
    @media (min-width: 992px) {
      .game-section .game-body {
        width: 85%;
        margin: auto;
        padding-bottom: 2rem; } }
    @media (min-width: 1400px) {
      .game-section .game-body {
        max-width: 82rem; } }
    .game-section .game-body .game-title {
      position: absolute;
      width: 75%;
      background-color: #b0212e;
      top: -24px;
      left: 50%;
      text-align: center;
      transform: translateX(-50%); }
      @media (min-width: 768px) {
        .game-section .game-body .game-title {
          width: 50%;
          top: -28px; } }
      @media (min-width: 992px) {
        .game-section .game-body .game-title {
          width: 35%;
          top: -28px; } }
      .game-section .game-body .game-title h2 {
        text-transform: uppercase;
        font-size: 2.35rem; }
        @media (min-width: 768px) {
          .game-section .game-body .game-title h2 {
            font-size: 3rem; } }
  .game-section .game-main {
    margin: 3rem 0 0; }
    @media (min-width: 992px) {
      .game-section .game-main {
        margin: 2rem 0 0; } }
    .game-section .game-main .segment {
      padding: 5px;
      position: relative; }
      .game-section .game-main .segment.active .overlay-active {
        display: block; }
      .game-section .game-main .segment.active .overlay {
        display: none; }
      .game-section .game-main .segment.show .overlay-active {
        transform: rotateY(-180deg);
        transition: transform 1500ms ease; }
      .game-section .game-main .segment .gift-result,
      .game-section .game-main .segment .overlay-active {
        display: none; }
      .game-section .game-main .segment #coupon-text {
        position: absolute;
        text-transform: uppercase;
        left: 26%;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        font-size: 0.65rem;
        display: none; }
        @media (min-width: 576px) {
          .game-section .game-main .segment #coupon-text {
            left: 28%;
            font-size: 1.25rem; } }
        @media (min-width: 768px) {
          .game-section .game-main .segment #coupon-text {
            font-size: 1.5rem; } }
        @media (min-width: 992px) {
          .game-section .game-main .segment #coupon-text {
            font-size: 0.75rem;
            left: 30%; } }
        @media (min-width: 1400px) {
          .game-section .game-main .segment #coupon-text {
            font-size: 1rem; } }
      .game-section .game-main .segment #discount-text {
        position: absolute;
        top: 50%;
        right: 0;
        width: 4em;
        line-height: 15px;
        text-align: center;
        font-size: 1rem;
        display: none;
        text-transform: uppercase;
        transform: translateY(-50%); }
        .game-section .game-main .segment #discount-text.unlucky {
          right: 6%;
          font-size: 0.8rem; }
          @media (min-width: 576px) {
            .game-section .game-main .segment #discount-text.unlucky {
              line-height: 24px;
              font-size: 1.4rem; } }
          @media (min-width: 768px) {
            .game-section .game-main .segment #discount-text.unlucky {
              line-height: 26px;
              font-size: 1.5rem;
              right: 10%; } }
          @media (min-width: 992px) {
            .game-section .game-main .segment #discount-text.unlucky {
              font-size: 0.85rem;
              right: 8%;
              line-height: 18px; } }
          @media (min-width: 1200px) {
            .game-section .game-main .segment #discount-text.unlucky {
              font-size: 1rem; } }
          @media (min-width: 1400px) {
            .game-section .game-main .segment #discount-text.unlucky {
              font-size: 1.25rem;
              right: 6.5%; } }
        @media (min-width: 576px) {
          .game-section .game-main .segment #discount-text {
            line-height: 27px;
            font-size: 1.75rem; } }
        @media (min-width: 768px) {
          .game-section .game-main .segment #discount-text {
            line-height: 30px;
            font-size: 2rem; } }
        @media (min-width: 992px) {
          .game-section .game-main .segment #discount-text {
            line-height: 20px;
            font-size: 1.25rem; } }
        @media (min-width: 1400px) {
          .game-section .game-main .segment #discount-text {
            font-size: 1.5rem;
            line-height: 25px;
            right: 3%; } }
    .game-section .game-main .play-now-section.active .stop-btn {
      display: block; }
    .game-section .game-main .play-now-section.active .play-now-btn {
      display: none; }
    .game-section .game-main .play-now-section.stop-active .segment-content {
      background-color: #f06464; }
    .game-section .game-main .play-now-section.stop-active .stop-btn {
      pointer-events: none; }
    .game-section .game-main .play-now-section.play-now-active .segment-content {
      background-color: #f06464; }
    .game-section .game-main .play-now-section.play-now-active .play-now-btn {
      pointer-events: none; }
    .game-section .game-main .play-now-section .stop-btn {
      display: none; }
    .game-section .game-main .play-now-section .play-now-btn {
      display: block; }
    .game-section .game-main .play-now-section .segment-content {
      position: absolute;
      width: 21vw;
      height: 21vw;
      background-color: #d83938;
      border: 3px solid #960300;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media (min-width: 992px) {
        .game-section .game-main .play-now-section .segment-content {
          width: 80%;
          height: 55%;
          border-radius: 20px; } }
    .game-section .game-main .play-now-section a {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 1rem;
      position: absolute;
      top: 50%;
      left: 50%;
      text-transform: uppercase;
      padding: 32% 0;
      transform: translate(-50%, -50%); }
      @media (min-width: 768px) {
        .game-section .game-main .play-now-section a {
          font-size: 2rem; } }
      @media (min-width: 992px) {
        .game-section .game-main .play-now-section a {
          padding: 0;
          font-size: 0.75rem; } }
      @media (min-width: 1400px) {
        .game-section .game-main .play-now-section a {
          font-size: 1.15rem; } }
  .game-section .game-guideline {
    margin-top: 2.5rem; }
    .game-section .game-guideline button {
      position: relative;
      width: 100%;
      height: 3rem;
      background-color: #cc3241;
      border: none;
      outline: none;
      text-transform: uppercase;
      text-align: left;
      padding-left: 1.5rem; }
      @media (min-width: 768px) {
        .game-section .game-guideline button {
          height: 4rem;
          font-size: 1.5rem; } }
      .game-section .game-guideline button::before {
        position: absolute;
        font-style: normal;
        font-weight: 400;
        content: '\F0DD';
        position: absolute;
        right: 5%;
        top: 50%;
        height: 1.7857rem;
        font-size: 1.42857rem;
        transform: translateY(-50%);
        font-family: 'FontAwesome';
        font-style: normal;
        font-weight: normal; }
        @media (min-width: 768px) {
          .game-section .game-guideline button::before {
            height: 2.7857rem; } }
      .game-section .game-guideline button[aria-expanded=true]::before {
        content: '\F0DE';
        height: 0.7857rem; }
        @media (min-width: 768px) {
          .game-section .game-guideline button[aria-expanded=true]::before {
            height: 1rem; } }
    .game-section .game-guideline #guideline-content {
      margin-top: 1rem; }
      .game-section .game-guideline #guideline-content p {
        font-size: 1rem;
        font-family: Gotham-Book !important; }
        @media (min-width: 768px) {
          .game-section .game-guideline #guideline-content p {
            font-size: 1.5rem; } }
  @media (min-width: 992px) {
    .game-section .game-guideline-desktop {
      margin: 2rem 0 0; } }
  @media (min-width: 992px) {
    .game-section .game-guideline-desktop h3 {
      text-transform: uppercase;
      font-size: 1.5rem; } }
  @media (min-width: 1400px) {
    .game-section .game-guideline-desktop h3 {
      font-size: 2rem; } }
  @media (min-width: 992px) {
    .game-section .game-guideline-desktop p {
      font-size: 0.85rem; } }
  @media (min-width: 1400px) {
    .game-section .game-guideline-desktop p {
      font-size: 1rem; } }
  .game-section .game-guideline-desktop img {
    position: absolute; }
    @media (min-width: 992px) {
      .game-section .game-guideline-desktop img {
        width: 30%;
        right: -8%;
        bottom: 16%; } }
    @media (min-width: 1200px) {
      .game-section .game-guideline-desktop img {
        width: 40%;
        bottom: 7%; } }
    @media (min-width: 1400px) {
      .game-section .game-guideline-desktop img {
        width: 35%;
        right: -6%;
        bottom: 11%; } }
  @media (min-width: 992px) {
    .game-section .game-result-section {
      position: static; } }
  .game-section .game-result {
    margin-top: 2rem;
    position: relative; }
    .game-section .game-result .prize-title {
      text-transform: uppercase;
      font-size: 1.25rem;
      text-align: center; }
      @media (min-width: 768px) {
        .game-section .game-result .prize-title {
          font-size: 2.25rem; } }
      @media (min-width: 992px) {
        .game-section .game-result .prize-title {
          font-size: 1.5rem; } }
      @media (min-width: 1400px) {
        .game-section .game-result .prize-title {
          font-size: 2rem; } }
    .game-section .game-result .coupon-code {
      width: 100%;
      padding: 0.35rem 0;
      height: 3rem;
      background-color: #f06464;
      border: none;
      outline: none;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      font-size: 2rem;
      margin-top: 1rem; }
      @media (min-width: 768px) {
        .game-section .game-result .coupon-code {
          height: 4rem;
          padding: 0.5rem 0;
          font-size: 2.5rem; } }
      @media (min-width: 992px) {
        .game-section .game-result .coupon-code {
          height: 2.5rem;
          font-size: 1.25rem; } }
      @media (min-width: 1400px) {
        .game-section .game-result .coupon-code {
          height: 3rem;
          font-size: 1.25rem; } }
    .game-section .game-result .share-email,
    .game-section .game-result .copy-coupon {
      display: block;
      margin-top: 1rem;
      text-transform: uppercase;
      text-align: center;
      font-size: 0.875rem;
      width: 100%;
      padding: 0.75rem;
      border: solid 1px #fff;
      pointer-events: none; }
      .game-section .game-result .share-email:focus,
      .game-section .game-result .copy-coupon:focus {
        background-color: #f06464; }
      .game-section .game-result .share-email.enable,
      .game-section .game-result .copy-coupon.enable {
        pointer-events: auto; }
      @media (min-width: 768px) {
        .game-section .game-result .share-email,
        .game-section .game-result .copy-coupon {
          font-size: 1.15rem;
          padding: 1rem; } }
      @media (min-width: 992px) {
        .game-section .game-result .share-email,
        .game-section .game-result .copy-coupon {
          font-size: 0.75rem;
          padding: 0.75rem; } }
      @media (min-width: 1400px) {
        .game-section .game-result .share-email,
        .game-section .game-result .copy-coupon {
          font-size: 1rem;
          padding: 0.85rem; } }
    .game-section .game-result .copy-coupon.copied::before {
      content: '';
      position: absolute;
      z-index: 1;
      bottom: -9px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      background: rgba(0, 0, 0, 0.72); }
    .game-section .game-result .copy-coupon.copied::after {
      content: 'Copied!';
      position: absolute;
      z-index: 1;
      bottom: -45px;
      left: 50%;
      transform: translateX(-50%);
      width: 114px;
      height: 36px;
      text-transform: none;
      color: #fff;
      font-size: 14px;
      line-height: 36px;
      text-align: center;
      background: rgba(0, 0, 0, 0.72);
      border-radius: 3px; }
  .game-section .game-info {
    padding-top: 2.5rem;
    width: 13.5rem;
    margin: auto; }
    @media (min-width: 768px) {
      .game-section .game-info {
        width: 16.5rem; } }
    @media (min-width: 992px) {
      .game-section .game-info {
        padding-top: 1rem;
        width: 12rem; } }
    @media (min-width: 1400px) {
      .game-section .game-info {
        width: 14rem; } }
    .game-section .game-info .item {
      text-align: center; }
    .game-section .game-info p {
      text-align: center;
      font-size: 1rem; }
      @media (min-width: 768px) {
        .game-section .game-info p {
          font-size: 1.25rem; } }
      @media (min-width: 992px) {
        .game-section .game-info p {
          font-size: 0.85rem; } }
      @media (min-width: 1400px) {
        .game-section .game-info p {
          font-size: 1rem; } }
    .game-section .game-info a {
      text-decoration: underline; }
      @media (min-width: 992px) {
        .game-section .game-info a {
          font-size: 0.85rem; } }
      @media (min-width: 1400px) {
        .game-section .game-info a {
          font-size: 1rem; } }
  .game-section .social-share {
    padding-top: 2.5rem;
    width: 15.5rem;
    margin: auto; }
    @media (min-width: 768px) {
      .game-section .social-share {
        width: 16.5rem; } }
    @media (min-width: 992px) {
      .game-section .social-share {
        position: absolute;
        width: 12rem;
        left: 3px;
        bottom: 0; } }
    @media (min-width: 1400px) {
      .game-section .social-share {
        width: 13rem;
        left: 1.25em;
        bottom: 1.25em; } }
    .game-section .social-share .item-right {
      text-align: right; }
      @media (min-width: 992px) {
        .game-section .social-share .item-right {
          text-align: center; } }
      @media (min-width: 1200px) {
        .game-section .social-share .item-right {
          text-align: left; } }
    .game-section .social-share .item-left {
      text-align: left; }
      @media (min-width: 992px) {
        .game-section .social-share .item-left {
          text-align: center; } }
    .game-section .social-share img {
      max-width: 50px;
      margin: 1rem 0 2rem; }
      @media (min-width: 992px) {
        .game-section .social-share img {
          max-width: 30px; } }
      @media (min-width: 1400px) {
        .game-section .social-share img {
          max-width: 35px; } }
    .game-section .social-share p {
      text-align: center;
      font-size: 1rem; }
      @media (min-width: 768px) {
        .game-section .social-share p {
          font-size: 1.25rem; } }
      @media (min-width: 992px) {
        .game-section .social-share p {
          font-size: 0.75rem;
          margin: 0; } }
      @media (min-width: 1400px) {
        .game-section .social-share p {
          font-size: 1rem; } }
  .game-section .game-popup {
    width: 96vw;
    position: fixed;
    top: 25%;
    left: 50%;
    background-color: #a82936;
    border: 5px solid #fff;
    border-radius: 20px;
    display: none;
    z-index: 3;
    transform: translateX(-50%); }
    @media (min-width: 768px) {
      .game-section .game-popup.small {
        width: 28rem; } }
    @media (min-width: 768px) {
      .game-section .game-popup.small .popup-main {
        max-height: 40rem; } }
    @media (min-width: 992px) {
      .game-section .game-popup {
        width: 60vw;
        top: 50%;
        transform: translate(-50%, -50%); } }
    .game-section .game-popup .popup-wrapper {
      position: relative; }
      .game-section .game-popup .popup-wrapper .btn-close-popup {
        position: absolute;
        right: 10px;
        top: -30px;
        width: 20px;
        height: 20px; }
        .game-section .game-popup .popup-wrapper .btn-close-popup::before, .game-section .game-popup .popup-wrapper .btn-close-popup::after {
          position: absolute;
          left: 8px;
          content: ' ';
          height: 20px;
          width: 3px;
          background-color: #fff; }
        .game-section .game-popup .popup-wrapper .btn-close-popup::before {
          transform: rotate(45deg); }
        .game-section .game-popup .popup-wrapper .btn-close-popup::after {
          transform: rotate(-45deg); }
    .game-section .game-popup .popup-main {
      padding: 0 20px 0 15px;
      margin: 40px 0 0 15px;
      overflow-x: hidden;
      overflow-y: scroll;
      max-height: 60vh;
      position: relative;
      direction: rtl; }
      @media (min-width: 992px) {
        .game-section .game-popup .popup-main {
          max-height: 40vh; } }
      .game-section .game-popup .popup-main .popup-content {
        direction: ltr;
        display: none; }
      .game-section .game-popup .popup-main::-webkit-scrollbar {
        width: 10px;
        position: relative; }
        .game-section .game-popup .popup-main::-webkit-scrollbar::after {
          position: absolute;
          width: 2px;
          background-color: #fff;
          height: 100%;
          left: 50%;
          transform: translateX(-50%); }
      .game-section .game-popup .popup-main::-webkit-scrollbar-thumb {
        background-color: #fff; }
      .game-section .game-popup .popup-main .game-tnc h3 {
        text-transform: uppercase;
        font-size: 1.5rem;
        margin-bottom: 0.75em; }
      .game-section .game-popup .popup-main .game-tnc p {
        font-size: 0.95rem;
        margin-bottom: 3em; }
      .game-section .game-popup .popup-main .game-result p {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 4rem; }
      .game-section .game-popup .popup-main .share-email-content {
        min-height: 300px;
        position: relative; }
        .game-section .game-popup .popup-main .share-email-content input {
          width: 90%;
          padding: 0.5rem;
          height: 3rem;
          background-color: #f06464;
          border: none;
          outline: none;
          text-align: left;
          color: #fff;
          font-size: 1rem;
          margin-bottom: 2em; }
        .game-section .game-popup .popup-main .share-email-content h3 {
          margin-bottom: 20px;
          font-size: 1.5em; }
        .game-section .game-popup .popup-main .share-email-content p {
          position: absolute;
          bottom: 18%;
          font-size: 1rem;
          color: #0f0;
          display: none; }
          .game-section .game-popup .popup-main .share-email-content p.error {
            color: #f00; }
          .game-section .game-popup .popup-main .share-email-content p.invalid-feedback {
            color: #f00;
            display: block; }
        .game-section .game-popup .popup-main .share-email-content .send-email {
          display: block;
          text-transform: uppercase;
          text-align: center;
          font-size: 0.875rem;
          width: 90%;
          padding: 0.75rem;
          border: solid 1px #fff;
          margin-top: 1.5rem;
          cursor: pointer;
          background-color: transparent; }
        .game-section .game-popup .popup-main .share-email-content .form-group {
          position: inherit; }

.overlay-popup {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
  display: none; }

.promotion-wrapper .firstly-content .block-head-category {
  width: 95%;
  margin: auto;
  padding-bottom: 1rem; }
  .promotion-wrapper .firstly-content .block-head-category ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0; }
    .promotion-wrapper .firstly-content .block-head-category ul li {
      display: inline-block;
      padding: 0;
      vertical-align: top;
      font-size: 1rem;
      margin-bottom: 0.53125rem;
      box-sizing: border-box; }
      @media (min-width: 768px) {
        .promotion-wrapper .firstly-content .block-head-category ul li {
          padding: 0 15px; } }
      .promotion-wrapper .firstly-content .block-head-category ul li a {
        border: 1px solid #000;
        display: block;
        padding: 1.0714rem 1.1428rem; }
  @media (min-width: 768px) {
    .promotion-wrapper .firstly-content .block-head-category {
      margin: 0 auto; } }

.promotion-wrapper .product-list-campaign .product-listing-group {
  max-width: 100% !important; }
  .promotion-wrapper .product-list-campaign .product-listing-group .block-head-category {
    padding: 0.25rem; }
    .promotion-wrapper .product-list-campaign .product-listing-group .block-head-category ul {
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0; }
      .promotion-wrapper .product-list-campaign .product-listing-group .block-head-category ul li {
        border: 1px solid #000;
        display: inline-block;
        vertical-align: top;
        font-size: 0.75rem;
        margin-right: 0.53125rem;
        margin-bottom: 0.53125rem;
        box-sizing: border-box; }
        @media (min-width: 768px) {
          .promotion-wrapper .product-list-campaign .product-listing-group .block-head-category ul li.col-md-3 {
            max-width: 30%; } }
        .promotion-wrapper .product-list-campaign .product-listing-group .block-head-category ul li a {
          display: block;
          padding: 1.0714rem 1.1428rem; }
      @media (max-width: 991.98px) {
        .promotion-wrapper .product-list-campaign .product-listing-group .block-head-category ul li:last-child {
          margin-bottom: 0; } }
  .promotion-wrapper .product-list-campaign .product-listing-group .sub-cat-title {
    background-color: #333;
    padding: 1rem 1.1875rem 0.875rem;
    color: #fff;
    width: 95%;
    margin: auto; }
    @media (min-width: 768px) {
      .promotion-wrapper .product-list-campaign .product-listing-group .sub-cat-title {
        width: calc(95% - 30px); } }
    .promotion-wrapper .product-list-campaign .product-listing-group .sub-cat-title h2 {
      font-size: 1rem;
      margin-bottom: 0; }
  .promotion-wrapper .product-list-campaign .product-listing-group .product-grid-wrapper {
    margin-bottom: 35px; }
  .promotion-wrapper .product-list-campaign .product-listing-group .show-more {
    padding-bottom: 35px; }
    @media (min-width: 992px) {
      .promotion-wrapper .product-list-campaign .product-listing-group .show-more {
        padding-bottom: 60px; } }
    .promotion-wrapper .product-list-campaign .product-listing-group .show-more .sub-cat-view-more {
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%); }
      .promotion-wrapper .product-list-campaign .product-listing-group .show-more .sub-cat-view-more a {
        border: 2px solid #000;
        display: inline-block;
        text-transform: uppercase;
        font-family: "Gotham-Bold";
        border-radius: 0;
        background-color: #000;
        color: #fff;
        font-size: 2.3vw;
        line-height: 1;
        padding: 15px 50px;
        white-space: nowrap; }
        @media (min-width: 768px) {
          .promotion-wrapper .product-list-campaign .product-listing-group .show-more .sub-cat-view-more a {
            padding: 15px 70px; } }
        @media (min-width: 992px) {
          .promotion-wrapper .product-list-campaign .product-listing-group .show-more .sub-cat-view-more a {
            line-height: 1.2;
            font-size: 0.879rem;
            letter-spacing: 0.05rem;
            padding: 15px 90px; } }
        @media (min-width: 1600px) {
          .promotion-wrapper .product-list-campaign .product-listing-group .show-more .sub-cat-view-more a {
            font-size: 1.099rem;
            padding-top: 11px;
            padding-bottom: 11px; } }

.promotion-page .block-head-category {
  margin: 0 auto;
  padding: 0 15px 20px; }
  @media (min-width: 768px) {
    .promotion-page .block-head-category {
      padding-left: 0;
      padding-right: 0; } }
  @media (min-width: 1200px) {
    .promotion-page .block-head-category {
      display: block;
      -ms-flex: 0 0 calc(100% - 10em);
          flex: 0 0 calc(100% - 10em);
      max-width: calc(100% - 10em); } }
  @media (min-width: 1600px) {
    .promotion-page .block-head-category {
      -ms-flex: 0 0 calc(100% - 18.786em);
          flex: 0 0 calc(100% - 18.786em);
      max-width: calc(100% - 18.786em); } }
  .promotion-page .block-head-category ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .promotion-page .block-head-category ul li {
      display: inline-block;
      padding: 0;
      margin-bottom: 0.53125rem; }
      @media (min-width: 768px) {
        .promotion-page .block-head-category ul li {
          padding: 0 15px; } }
      .promotion-page .block-head-category ul li a {
        border: 1px solid #000;
        display: block;
        padding: 10px 20px; }
        .promotion-page .block-head-category ul li a i::before {
          background-color: #000;
          color: #fff;
          font-size: 10px;
          border-radius: 50%;
          padding: 4px; }

.promotion-page .sub-categories {
  margin: 0 auto;
  padding: 0 15px 50px; }
  @media (min-width: 1200px) {
    .promotion-page .sub-categories {
      display: block;
      -ms-flex: 0 0 calc(100% - 10em);
          flex: 0 0 calc(100% - 10em);
      max-width: calc(100% - 10em); } }
  @media (min-width: 1600px) {
    .promotion-page .sub-categories {
      -ms-flex: 0 0 calc(100% - 18.786em);
          flex: 0 0 calc(100% - 18.786em);
      max-width: calc(100% - 18.786em); } }
  .promotion-page .sub-categories .sub-category-name {
    background-color: #000;
    color: #fff;
    font-family: "Gotham-Bold";
    font-size: 1.1429rem;
    padding: 10px;
    margin-top: 20px;
    text-transform: uppercase; }
  @media (min-width: 1200px) {
    .promotion-page .sub-categories .product-grid .product-tile-col {
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
      max-width: 25%; }
      .promotion-page .sub-categories .product-grid .product-tile-col:nth-child(3n + 3)::before {
        content: ''; }
      .promotion-page .sub-categories .product-grid .product-tile-col:nth-child(4n + 4)::before {
        content: none; } }
  .promotion-page .sub-categories .product-grid .tile-actions {
    left: -3px;
    right: -3px;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    bottom: 0; }
    @media (min-width: 992px) {
      .promotion-page .sub-categories .product-grid .tile-actions {
        left: -5px;
        right: -5px; } }
    .promotion-page .sub-categories .product-grid .tile-actions .col-6 {
      padding-left: 3px;
      padding-right: 3px; }
      @media (min-width: 992px) {
        .promotion-page .sub-categories .product-grid .tile-actions .col-6 {
          padding-left: 5px;
          padding-right: 5px; } }

.promotion-page .show-more {
  margin-top: 50px; }
  @media (min-width: 992px) {
    .promotion-page .show-more {
      margin-top: 60px; } }
  .promotion-page .show-more .btn-outline-primary {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    height: 40px;
    min-width: 170px;
    width: auto;
    outline: 0; }
    .promotion-page .show-more .btn-outline-primary:hover, .promotion-page .show-more .btn-outline-primary:focus {
      background-color: #000; }
    .promotion-page .show-more .btn-outline-primary:hover, .promotion-page .show-more .btn-outline-primary:focus, .promotion-page .show-more .btn-outline-primary:active {
      border-color: #000; }
    @media (min-width: 992px) {
      .promotion-page .show-more .btn-outline-primary {
        height: 3.333em;
        min-width: 14.1663em;
        font-size: 1.0286rem; } }
    @media (min-width: 1600px) {
      .promotion-page .show-more .btn-outline-primary {
        font-size: 1.2857rem; } }

@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes zoomOutElement {
  from {
    transform: scale(1) translate(0, 0); }
  to {
    transform: scale(4) translate(30px, -30px); } }

.claw-machine-main {
  position: relative;
  margin: auto;
  width: 360px;
  height: 460px; }
  .claw-machine-main .toys {
    top: 210px;
    left: 102px;
    width: 231px;
    height: 121px;
    background-size: contain;
    background-image: url("../images/clawmachine/gifts_bg.png"); }
  .claw-machine-main .toy {
    width: 50px;
    height: 50px;
    background-image: url("../images/clawmachine/gift.png");
    background-size: contain; }
  .claw-machine-main .toy-pickup {
    top: 35px;
    left: 6px; }
    .claw-machine-main .toy-pickup.pickup {
      z-index: 100;
      animation: zoomOutElement 1s 1 linear;
      transform: scale(4) translate(30px, -30px); }
  .claw-machine-main .move-container {
    top: 343px;
    left: 102px;
    width: 231px;
    height: 36px;
    background: #fff;
    border-radius: 20px; }
  .claw-machine-main .move-control {
    top: 0;
    left: -2px;
    width: 36px;
    height: 36px;
    background: #01a897;
    border-radius: 50%;
    cursor: pointer; }
  .claw-machine-main .claw-container {
    top: 65px;
    left: 30px;
    width: 60px;
    height: 260px; }
  .claw-machine-main .claw-vertical-bar {
    top: 20px;
    left: 27px;
    width: 6px;
    height: 15px;
    background: #01a897; }
  .claw-machine-main .claw-crossbar {
    top: 0;
    left: 10px;
    width: 40px;
    height: 20px;
    background: #01a897;
    border-radius: 5px; }
  .claw-machine-main .claw-crane {
    top: 0;
    left: 0;
    width: 60px; }
  .claw-machine-main .claw-ball {
    top: 31px;
    left: 21px;
    width: 6px;
    height: 6px;
    border: 6px solid #01a897;
    border-radius: 50%;
    box-sizing: initial; }
  .claw-machine-main .left-claw {
    transform: rotate(-30deg);
    transform-origin: top right;
    left: 3px;
    border-left: 4px solid #01a897; }
  .claw-machine-main .right-claw {
    transform: rotate(30deg);
    transform-origin: top left;
    right: 3px;
    border-right: 4px solid #01a897; }
  .claw-machine-main .claw-item {
    top: 36px;
    width: 16px;
    height: 25px;
    border-top: 8px solid #01a897;
    box-sizing: initial; }
    .claw-machine-main .claw-item.opened {
      transform: rotate(0deg); }
  .claw-machine-main .btn-drop {
    cursor: pointer; }
  .claw-machine-main svg {
    top: 0;
    left: 0; }

#chooseBonusProductModal {
  right: 0;
  left: 0;
  width: auto;
  overflow: visible; }
  @media (min-width: 768px) {
    #chooseBonusProductModal {
      width: 28.429em;
      left: 50%;
      right: auto;
      transform: translateX(-50%); } }
  @media (min-width: 1200px) {
    #chooseBonusProductModal {
      left: auto;
      right: 6.786em;
      padding-right: 0 !important;
      transform: translateX(0); } }
  @media (min-width: 1600px) {
    #chooseBonusProductModal {
      width: 31.786em;
      right: 7.857em; } }
  #chooseBonusProductModal.gwp-modal .modal-header {
    padding-top: 0.6em; }
  #chooseBonusProductModal.gwp-modal .modal-body {
    padding-bottom: 0.5em; }
  #chooseBonusProductModal.gwp-modal .modal-content {
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden; }
    #chooseBonusProductModal.gwp-modal .modal-content::-webkit-scrollbar-track {
      border-radius: 0;
      background-color: #d8d8d8; }
    #chooseBonusProductModal.gwp-modal .modal-content::-webkit-scrollbar {
      width: 8px;
      background-color: #d8d8d8; }
    #chooseBonusProductModal.gwp-modal .modal-content::-webkit-scrollbar-thumb {
      border-radius: 0;
      background-color: #000; }
    @media (min-width: 1200px) {
      #chooseBonusProductModal.gwp-modal .modal-content {
        max-height: 90vh; } }
    @media (min-width: 1600px) {
      #chooseBonusProductModal.gwp-modal .modal-content {
        max-height: 85vh; } }
  #chooseBonusProductModal.gwp-modal .modal-footer {
    padding-bottom: 1.8em;
    padding-top: 0.5em; }
  #chooseBonusProductModal.gwp-modal .tile-image {
    margin-bottom: 0; }
  #chooseBonusProductModal .close {
    color: #094f8d;
    position: absolute;
    top: 0.2em;
    right: 0.2em;
    font-size: 2em;
    opacity: 1;
    filter: alpha(opacity=1); }
  #chooseBonusProductModal .modal-dialog {
    margin: 0; }
    @media (min-width: 1200px) {
      #chooseBonusProductModal .modal-dialog {
        margin-top: 3em; } }
  #chooseBonusProductModal .modal-header {
    background: none;
    border: 0;
    text-align: center;
    font-family: "HelveticaNeue-Light";
    font-size: 1.4286rem;
    padding-top: 2.5em;
    -ms-flex-pack: center;
        justify-content: center;
    border-radius: 0; }
  #chooseBonusProductModal .modal-content {
    border: 0;
    display: block;
    border-radius: 0; }
  #chooseBonusProductModal .modal-body {
    max-height: none;
    padding-left: 2em;
    padding-right: 2em;
    -ms-flex: auto;
        flex: auto;
    overflow: visible; }
    #chooseBonusProductModal .modal-body.d-flex {
      -ms-flex-pack: center;
          justify-content: center; }
  #chooseBonusProductModal .modal-footer {
    padding-bottom: 2em;
    text-align: center;
    display: block; }
  #chooseBonusProductModal .bonus-header {
    padding: 0.5em 1em;
    text-align: center; }
  #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev,
  #chooseBonusProductModal .owl-carousel .owl-nav .owl-next {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    text-align: center;
    line-height: 35px;
    position: relative;
    border-radius: 50%;
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    width: 30px;
    height: 30px;
    z-index: 3;
    background-color: #000;
    color: #fff;
    outline: 0; }
    @media (min-width: 992px) {
      #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev,
      #chooseBonusProductModal .owl-carousel .owl-nav .owl-next {
        width: 32px;
        height: 32px; } }
    @media (min-width: 1600px) {
      #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev,
      #chooseBonusProductModal .owl-carousel .owl-nav .owl-next {
        width: 34px;
        height: 34px; } }
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev .sa-icon,
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-next .sa-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev.disabled,
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-next.disabled {
      opacity: 0.6;
      filter: alpha(opacity=0.6); }
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev span,
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-next span {
      display: none; }
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev::before,
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-next::before {
      font-family: "Samsonite-icons";
      font-style: normal;
      font-weight: normal;
      transform: translate(-50%, -50%);
      position: absolute;
      left: 50%;
      top: 50%; }
  #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev {
    left: 0.2em; }
    @media (min-width: 768px) {
      #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev {
        left: 0.4em; } }
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-prev::before {
      content: "\E902"; }
  #chooseBonusProductModal .owl-carousel .owl-nav .owl-next {
    right: 0.2em; }
    @media (min-width: 768px) {
      #chooseBonusProductModal .owl-carousel .owl-nav .owl-next {
        right: 0.4em; } }
    #chooseBonusProductModal .owl-carousel .owl-nav .owl-next::before {
      content: "\E903"; }
  #chooseBonusProductModal .attributes,
  #chooseBonusProductModal .selected-bonus-products {
    display: none; }
  #chooseBonusProductModal .align-items-end {
    -ms-flex-pack: center;
        justify-content: center; }
  #chooseBonusProductModal .bonus-product-price {
    text-align: left;
    font-size: 0.929rem;
    margin-top: 0.5em; }
    #chooseBonusProductModal .bonus-product-price .regular-price {
      text-decoration: line-through; }
    #chooseBonusProductModal .bonus-product-price .bonus-price {
      color: #c00; }
  #chooseBonusProductModal .tile-image {
    margin-bottom: 0.5em; }
  #chooseBonusProductModal .product-name {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    margin-top: 0.8em;
    min-height: 1em; }
  #chooseBonusProductModal .bonus-product-selection {
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center; }
  #chooseBonusProductModal .select-bonus-product {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    font-size: 0.786rem;
    display: block; }
    @media (min-width: 1200px) {
      #chooseBonusProductModal .select-bonus-product {
        font-size: 0.857rem; } }
    @media (min-width: 1600px) {
      #chooseBonusProductModal .select-bonus-product {
        font-size: 0.929rem; } }
    #chooseBonusProductModal .select-bonus-product.selected {
      background-color: #000;
      color: #fff; }
  #chooseBonusProductModal .product-detail {
    padding-bottom: 3.1em;
    position: relative; }
  #chooseBonusProductModal .bonus-product-item {
    width: 50%;
    padding-left: 0.571em;
    padding-right: 0.571em; }
  #chooseBonusProductModal .add-bonus-products {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    font-size: 0.857rem;
    padding: 0.7em 2em; }
    #chooseBonusProductModal .add-bonus-products:hover, #chooseBonusProductModal .add-bonus-products:focus {
      background-color: #000; }
    @media (min-width: 1200px) {
      #chooseBonusProductModal .add-bonus-products {
        font-size: 0.929rem; } }
  #chooseBonusProductModal .gwp-product {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%; }
    #chooseBonusProductModal .gwp-product .product-detail {
      padding-bottom: 0; }
    #chooseBonusProductModal .gwp-product .tile-image {
      max-width: 75%;
      display: block;
      margin-left: auto;
      margin-right: auto; }
    #chooseBonusProductModal .gwp-product .select-bonus-product {
      display: inline-block;
      width: auto;
      min-width: 11em; }
  #chooseBonusProductModal .edit-gwp-product .product-detail {
    padding-bottom: 1.3em; }
  #chooseBonusProductModal .bonus-product-qty-section {
    text-align: center;
    margin-top: 0.8em;
    position: relative; }
    #chooseBonusProductModal .bonus-product-qty-section .increase-bonus-qty,
    #chooseBonusProductModal .bonus-product-qty-section .decrease-bonus-qty {
      border: none;
      top: 50%;
      position: absolute;
      width: 1.28571em;
      height: 1.28571em;
      border-radius: 2rem;
      text-align: center;
      background: #000;
      color: #fff;
      display: inline-block;
      transform: translateY(-60%); }
      @media (min-width: 1200px) {
        #chooseBonusProductModal .bonus-product-qty-section .increase-bonus-qty,
        #chooseBonusProductModal .bonus-product-qty-section .decrease-bonus-qty {
          transform: translateY(-50%); } }
      #chooseBonusProductModal .bonus-product-qty-section .increase-bonus-qty.disabled,
      #chooseBonusProductModal .bonus-product-qty-section .decrease-bonus-qty.disabled {
        opacity: 0.6; }
    #chooseBonusProductModal .bonus-product-qty-section .increase-bonus-qty {
      right: 2em; }
      #chooseBonusProductModal .bonus-product-qty-section .increase-bonus-qty:hover {
        cursor: pointer; }
      #chooseBonusProductModal .bonus-product-qty-section .increase-bonus-qty::before {
        font-size: 0.6rem;
        content: "\E903";
        font-family: "Samsonite-icons";
        font-style: normal;
        font-weight: normal;
        position: absolute;
        left: 54%;
        top: 50%;
        transform: translate(-50%, -50%); }
    #chooseBonusProductModal .bonus-product-qty-section .decrease-bonus-qty {
      left: 2em; }
      #chooseBonusProductModal .bonus-product-qty-section .decrease-bonus-qty:hover {
        cursor: pointer; }
      #chooseBonusProductModal .bonus-product-qty-section .decrease-bonus-qty::before {
        font-size: 0.6rem;
        content: "\E902";
        font-family: "Samsonite-icons";
        font-style: normal;
        font-weight: normal;
        position: absolute;
        left: 45%;
        top: 50%;
        transform: translate(-50%, -50%); }
    #chooseBonusProductModal .bonus-product-qty-section .bonus-product-qty {
      width: 2em;
      font-size: 1.2857rem;
      text-align: center;
      border: 0;
      background: #fff;
      opacity: 1;
      padding: 0;
      font-family: "Gotham-Book" !important; }
  #chooseBonusProductModal .owl-item .bonus-product-item {
    width: 100%; }

html.show-bonus-product-popup {
  overflow: hidden;
  height: 100%; }
  @supports (-webkit-touch-callout: none) {
    html.show-bonus-product-popup body {
      position: fixed; } }

.double-eleven-banner {
  position: relative;
  min-height: 145vw; }
  @media (min-width: 768px) {
    .double-eleven-banner {
      min-height: 40vw; } }
  .double-eleven-banner img {
    width: 100%; }
  .double-eleven-banner .content {
    color: #fff;
    text-transform: uppercase; }
  .double-eleven-banner .middle-content {
    position: absolute;
    top: 27%;
    left: 51%;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    transform: rotate(-7deg) translateX(-50%); }
    @media (min-width: 768px) {
      .double-eleven-banner .middle-content {
        top: 41%;
        left: 50%; } }
    .double-eleven-banner .middle-content .main-title {
      font-family: "RainerTestv04-Medium";
      font-size: 18vw;
      text-shadow: -2px 3px 5px #fbbba9, -2px 7px 2px #e5587e, -5px 7px 5px #e5587e; }
      @media (min-width: 768px) {
        .double-eleven-banner .middle-content .main-title {
          font-size: 7vw; } }
    .double-eleven-banner .middle-content .middle-text {
      font-size: 9.5vw;
      text-shadow: -2px 3px 5px #fbbba9, -2px 7px 2px #e5587e, -5px 7px 5px #e5587e; }
      @media (min-width: 768px) {
        .double-eleven-banner .middle-content .middle-text {
          font-size: 4vw; } }
  .double-eleven-banner .main-content {
    position: absolute;
    text-shadow: 0 0 10px #9999ff, 0 0 15px #9999ff, 0 0 20px #9999ff; }
  .double-eleven-banner .left-content {
    font-family: "RainerTestv04-Medium";
    bottom: 17%;
    left: 15%;
    line-height: 0.87;
    font-size: 21vw;
    width: 30%; }
    @media (min-width: 768px) {
      .double-eleven-banner .left-content {
        width: 15%;
        font-size: 10vw;
        bottom: 19%;
        left: 16%; } }
  .double-eleven-banner .right-content {
    right: 10%;
    bottom: 6%;
    width: 25%;
    line-height: 0.82; }
    @media (min-width: 768px) {
      .double-eleven-banner .right-content {
        top: 11%;
        right: 15%;
        width: 10%; } }
    .double-eleven-banner .right-content .right-text-top {
      font-family: "Gilroy-ExtraBold";
      font-size: 3vw;
      margin-bottom: -0.5vw; }
      @supports (-webkit-touch-callout: none) {
        .double-eleven-banner .right-content .right-text-top {
          margin-bottom: 0.8vw; } }
      @media (min-width: 768px) {
        .double-eleven-banner .right-content .right-text-top {
          font-size: 1.3vw; }
          @supports (-webkit-touch-callout: none) {
            .double-eleven-banner .right-content .right-text-top {
              margin-bottom: 1vw; } } }
    .double-eleven-banner .right-content .sale-right-text {
      font-family: "RainerTestv04-Medium";
      font-size: 21vw; }
      @media (min-width: 768px) {
        .double-eleven-banner .right-content .sale-right-text {
          font-size: 10vw; } }
      .double-eleven-banner .right-content .sale-right-text p {
        white-space: nowrap;
        margin: 0; }
      .double-eleven-banner .right-content .sale-right-text .text-content {
        font-size: 28vw; }
        @media (min-width: 768px) {
          .double-eleven-banner .right-content .sale-right-text .text-content {
            font-size: 13vw; } }
      .double-eleven-banner .right-content .sale-right-text .percent-letter {
        font-family: "GoboldHigh";
        font-size: 17.25vw;
        margin-left: -2vw; }
        @media (min-width: 768px) {
          .double-eleven-banner .right-content .sale-right-text .percent-letter {
            font-size: 8.25vw;
            margin-left: -1vw; } }

.double-eleven-flash-deals,
.double-eleven-summary-offer,
.double-eleven-add-on-offer,
.double-eleven-lucky-draw-game,
.double-eleven-iconic-first,
.double-eleven-iconic-second,
.double-eleven-support {
  margin-top: -1px;
  position: relative; }
  .double-eleven-flash-deals picture img,
  .double-eleven-summary-offer picture img,
  .double-eleven-add-on-offer picture img,
  .double-eleven-lucky-draw-game picture img,
  .double-eleven-iconic-first picture img,
  .double-eleven-iconic-second picture img,
  .double-eleven-support picture img {
    width: 100%; }
  .double-eleven-flash-deals .content,
  .double-eleven-summary-offer .content,
  .double-eleven-add-on-offer .content,
  .double-eleven-lucky-draw-game .content,
  .double-eleven-iconic-first .content,
  .double-eleven-iconic-second .content,
  .double-eleven-support .content {
    position: absolute;
    text-align: center;
    color: #fff;
    width: 100%; }

.double-eleven-flash-deals .content {
  top: 2%;
  width: 57%;
  left: 50%;
  transform: translateX(-50%); }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content {
      width: 65%; } }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content .title-section {
      width: 31%;
      float: left;
      margin-top: 3%; } }
  .double-eleven-flash-deals .content .title-section .title {
    font-family: "RainerTestv04-Medium";
    font-size: 14vw;
    margin-top: -5vw;
    margin-bottom: -2vw;
    text-shadow: 0 2px 3px #9999ff; }
    @supports (-webkit-touch-callout: none) {
      .double-eleven-flash-deals .content .title-section .title {
        margin-top: -3.5vw;
        margin-bottom: -3vw; } }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .title-section .title {
        font-size: 5vw;
        margin-top: -1.75vw;
        margin-bottom: -0.75vw; }
        @supports (-webkit-touch-callout: none) {
          .double-eleven-flash-deals .content .title-section .title {
            margin-top: -1vw;
            margin-bottom: -1vw; } } }
  .double-eleven-flash-deals .content .product-section {
    font-family: "RainerTestv04-Medium";
    line-height: 0.9;
    letter-spacing: 2px;
    margin: 12% auto; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .product-section {
        float: right;
        width: 65%;
        padding-top: 5%;
        margin: 0; } }
    .double-eleven-flash-deals .content .product-section .sale-text {
      font-size: 20vw;
      line-height: 0.8;
      text-align: left;
      text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff, 0 0 30px #9999ff; }
      @media (min-width: 768px) {
        .double-eleven-flash-deals .content .product-section .sale-text {
          font-size: 16vw;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          margin-top: -5%; }
          @supports (-webkit-touch-callout: none) {
            .double-eleven-flash-deals .content .product-section .sale-text {
              margin-top: 0; } } }
      .double-eleven-flash-deals .content .product-section .sale-text p {
        white-space: nowrap;
        margin: 0; }
      .double-eleven-flash-deals .content .product-section .sale-text .text-content {
        font-size: 27vw;
        display: block; }
        @media (min-width: 768px) {
          .double-eleven-flash-deals .content .product-section .sale-text .text-content {
            font-size: 16vw; } }
      .double-eleven-flash-deals .content .product-section .sale-text .percent-letter {
        font-family: "GoboldHigh";
        font-size: 16.5vw;
        margin-left: -2vw; }
        @media (min-width: 768px) {
          .double-eleven-flash-deals .content .product-section .sale-text .percent-letter {
            font-size: 13vw;
            margin-right: 1.5vw; } }
  .double-eleven-flash-deals .content .info-section {
    padding: 6% 0; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .info-section {
        width: 31%;
        padding: 18% 0; } }
  .double-eleven-flash-deals .content .title {
    text-transform: uppercase; }
  .double-eleven-flash-deals .content .main-product {
    padding: 0 18px; }
    .double-eleven-flash-deals .content .main-product .product-image img {
      transform: scale(1.4); }
    .double-eleven-flash-deals .content .main-product .sale-text {
      padding-left: 7%; }
  .double-eleven-flash-deals .content .countdown {
    color: #000;
    font-family: "Proxon-Regular";
    font-size: 13vw; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .countdown {
        font-size: 4vw; } }
    .double-eleven-flash-deals .content .countdown.time-out {
      display: none; }
    .double-eleven-flash-deals .content .countdown .colon-letter {
      margin: 0 -3vw; }
      @media (min-width: 768px) {
        .double-eleven-flash-deals .content .countdown .colon-letter {
          margin: 0 -1vw; } }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content.coming-soon-section .title-section {
      width: 50%;
      float: none;
      margin: 0 auto; } }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content.coming-soon-section .title-section .title {
      font-size: 8vw; } }
  .double-eleven-flash-deals .content.coming-soon-section .main-content {
    position: relative; }
    .double-eleven-flash-deals .content.coming-soon-section .main-content .coming-soon {
      font-family: "Gotham-Bold";
      text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff, 0 0 20px #9999ff;
      position: absolute;
      font-size: 8vw;
      padding-top: 18vw;
      left: 50%;
      transform: translateX(-50%); }
      @media (min-width: 768px) {
        .double-eleven-flash-deals .content.coming-soon-section .main-content .coming-soon {
          font-size: 3.5vw;
          padding-top: 0; } }
      .double-eleven-flash-deals .content.coming-soon-section .main-content .coming-soon span {
        display: block;
        white-space: nowrap;
        padding-bottom: 10vw; }
        @media (min-width: 768px) {
          .double-eleven-flash-deals .content.coming-soon-section .main-content .coming-soon span {
            padding-bottom: 0; } }
  .double-eleven-flash-deals .content .product-name {
    font-family: "Gotham-Bold";
    font-size: 5vw;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 0; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .product-name {
        font-size: 2vw;
        margin: 5% auto; } }
  .double-eleven-flash-deals .content .product-info {
    font-family: "HelveticaNeue";
    font-size: 3vw;
    padding: 4% 0;
    margin: 0; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .product-info {
        font-size: 0.9vw;
        padding: 2% 0; } }
    @media (min-width: 1200px) {
      .double-eleven-flash-deals .content .product-info {
        font-size: 0.9vw;
        padding: 5% 0; } }
  .double-eleven-flash-deals .content .product-price {
    font-family: "Gotham-Bold"; }
    .double-eleven-flash-deals .content .product-price .regular-price {
      position: absolute;
      left: 9%;
      font-size: 3vw;
      margin-top: 1%; }
      @media (min-width: 768px) {
        .double-eleven-flash-deals .content .product-price .regular-price {
          font-size: 0.8vw;
          left: 5%;
          margin-top: 0.4%; } }
      .double-eleven-flash-deals .content .product-price .regular-price::before {
        content: '';
        display: block;
        position: absolute;
        height: 0.12em;
        width: 115%;
        background-color: #fff;
        top: 50%;
        left: -4px;
        transform: rotate(5deg); }
    .double-eleven-flash-deals .content .product-price .sale-price {
      font-size: 6vw;
      text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff, 0 0 30px #9999ff; }
      @media (min-width: 768px) {
        .double-eleven-flash-deals .content .product-price .sale-price {
          font-size: 2vw; } }
  .double-eleven-flash-deals .content .shop-now-section {
    font-family: "Gotham-Bold";
    width: 60%;
    margin: 5% auto;
    background-color: #fff;
    border-radius: 0.5rem; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .shop-now-section {
        width: 40%; } }
    .double-eleven-flash-deals .content .shop-now-section .shop-now-btn {
      color: #a067bb; }
      @media (min-width: 768px) {
        .double-eleven-flash-deals .content .shop-now-section .shop-now-btn {
          font-size: 1vw; } }

.double-eleven-flash-deals .sold-out-section .title-section,
.double-eleven-flash-deals .sold-out-section .main-product,
.double-eleven-flash-deals .sold-out-section .info-section {
  opacity: 0.5;
  filter: alpha(opacity=0.5); }

.double-eleven-flash-deals .sold-out-section .countdown.sale-time {
  display: none; }

.double-eleven-flash-deals .sold-out-section .countdown.time-out {
  display: block; }

@media (min-width: 768px) {
  .double-eleven-flash-deals .sold-out-section .product-section {
    padding-top: 2%; } }

.double-eleven-flash-deals .sold-out-section .sold-out {
  display: block !important;
  position: absolute;
  z-index: 1;
  margin-left: -22%;
  width: 144%; }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .sold-out-section .sold-out {
      margin-left: 0;
      width: auto; } }

.double-eleven-summary-offer .content {
  top: 10%; }

.double-eleven-summary-offer .title-section {
  font-family: "Gilroy-ExtraBold";
  font-size: 7vw;
  margin: 2% 0 10%;
  text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff; }
  @media (min-width: 768px) {
    .double-eleven-summary-offer .title-section {
      font-size: 4vw;
      margin: 5% 0 4%; } }

.double-eleven-summary-offer .summary-section {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex; }
  .double-eleven-summary-offer .summary-section .summary-item {
    width: 47%;
    position: relative;
    margin-bottom: 12%; }
    @media (min-width: 768px) {
      .double-eleven-summary-offer .summary-section .summary-item {
        width: 24%;
        margin-bottom: 0; } }
    .double-eleven-summary-offer .summary-section .summary-item:first-child {
      left: 5%; }
      @media (min-width: 768px) {
        .double-eleven-summary-offer .summary-section .summary-item:first-child {
          left: 1%; } }
    .double-eleven-summary-offer .summary-section .summary-item a {
      color: #fff; }
  .double-eleven-summary-offer .summary-section .main-content {
    position: absolute;
    top: 18%;
    left: 7%;
    width: 50%;
    font-family: "RainerTestv04-Medium";
    line-height: 0.81;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 0 8px #9999ff, 0 0 5px #9999ff; }
    @media (min-width: 768px) {
      .double-eleven-summary-offer .summary-section .main-content {
        left: 5%;
        top: 8%; } }
    .double-eleven-summary-offer .summary-section .main-content .top-content {
      font-size: 7vw; }
      @supports (-webkit-touch-callout: none) {
        .double-eleven-summary-offer .summary-section .main-content .top-content {
          margin-bottom: 1vw; } }
      @media (min-width: 768px) {
        .double-eleven-summary-offer .summary-section .main-content .top-content {
          font-size: 3vw; } }
    .double-eleven-summary-offer .summary-section .main-content .sale-content {
      font-size: 17vw; }
      @media (min-width: 768px) {
        .double-eleven-summary-offer .summary-section .main-content .sale-content {
          font-size: 10vw; } }
      .double-eleven-summary-offer .summary-section .main-content .sale-content p {
        margin: 0;
        white-space: nowrap; }
      .double-eleven-summary-offer .summary-section .main-content .sale-content .text-content {
        font-size: 25vw; }
        @media (min-width: 768px) {
          .double-eleven-summary-offer .summary-section .main-content .sale-content .text-content {
            font-size: 13vw; } }
      .double-eleven-summary-offer .summary-section .main-content .sale-content .percent-letter {
        font-family: "GoboldHigh";
        font-size: 14vw;
        margin-left: -1.5vw; }
        @media (min-width: 768px) {
          .double-eleven-summary-offer .summary-section .main-content .sale-content .percent-letter {
            font-size: 8.25vw;
            margin-left: -1vw; } }
  .double-eleven-summary-offer .summary-section .second-summary .main-content {
    top: 33%;
    left: -8%; }
    @media (min-width: 768px) {
      .double-eleven-summary-offer .summary-section .second-summary .main-content {
        top: 20%;
        left: -4%; } }
    .double-eleven-summary-offer .summary-section .second-summary .main-content .sale-content {
      font-size: 21vw;
      line-height: 0.85; }
      @media (min-width: 768px) {
        .double-eleven-summary-offer .summary-section .second-summary .main-content .sale-content {
          font-size: 11.5vw; } }

.double-eleven-add-on-offer .content {
  top: 0; }
  @media (min-width: 768px) {
    .double-eleven-add-on-offer .content {
      top: 3%; } }

.double-eleven-add-on-offer .title-section {
  font-family: "Gilroy-ExtraBold";
  margin-bottom: 7%;
  text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff; }
  @media (min-width: 768px) {
    .double-eleven-add-on-offer .title-section {
      margin-bottom: 2%; } }
  .double-eleven-add-on-offer .title-section .title {
    text-transform: uppercase;
    font-size: 8vw; }
    @media (min-width: 768px) {
      .double-eleven-add-on-offer .title-section .title {
        font-size: 4vw; } }
  .double-eleven-add-on-offer .title-section .title-message {
    font-size: 3vw; }
    @media (min-width: 768px) {
      .double-eleven-add-on-offer .title-section .title-message {
        font-size: 1.2vw; } }

@media (min-width: 768px) {
  .double-eleven-add-on-offer .image-section {
    width: 85%;
    max-width: 1360px;
    margin: 0 auto; } }

.double-eleven-lucky-draw-game .content {
  top: 0; }

.double-eleven-lucky-draw-game .title-section {
  width: 52%;
  margin: 2% auto; }
  @media (min-width: 768px) {
    .double-eleven-lucky-draw-game .title-section {
      width: 28%;
      margin: 2% 35%; } }
  .double-eleven-lucky-draw-game .title-section .title {
    font-family: "RainerTestv04-Medium";
    font-size: 12.5vw;
    margin: -4.5vw 0 -1.5vw;
    text-transform: uppercase;
    text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff; }
    @supports (-webkit-touch-callout: none) {
      .double-eleven-lucky-draw-game .title-section .title {
        margin: -3.5vw 0 -2.8vw; } }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .title-section .title {
        font-size: 7vw;
        margin: -2.5vw 0 -1.2vw; }
        @supports (-webkit-touch-callout: none) {
          .double-eleven-lucky-draw-game .title-section .title {
            margin: -1.5vw 0 -2vw; } } }

.double-eleven-lucky-draw-game .game-main {
  position: relative;
  min-height: 65vw; }
  @media (min-width: 768px) {
    .double-eleven-lucky-draw-game .game-main {
      min-height: 30vw; } }
  .double-eleven-lucky-draw-game .game-main .play-now-section.active .play-now-btn {
    pointer-events: none; }
  .double-eleven-lucky-draw-game .game-main .play-now-btn {
    position: absolute;
    font-family: "RainerTestv04-Regular";
    background-color: #474486;
    color: #fff;
    font-size: 10vw;
    height: 12vw;
    width: 12vw;
    line-height: 1.1;
    left: 50%;
    top: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 20px #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%); }
    @supports (-webkit-touch-callout: none) {
      .double-eleven-lucky-draw-game .game-main .play-now-btn {
        line-height: 1.3; } }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .game-main .play-now-btn {
        font-size: 5vw;
        height: 6vw;
        width: 6vw; } }
  .double-eleven-lucky-draw-game .game-main .segment.active .overlay-active {
    display: block; }
  .double-eleven-lucky-draw-game .game-main .segment.active .overlay {
    display: none; }
  .double-eleven-lucky-draw-game .game-main .gift-result,
  .double-eleven-lucky-draw-game .game-main .overlay-active {
    display: none; }
  .double-eleven-lucky-draw-game .game-main .lucky-draw {
    width: 37%;
    position: absolute; }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .game-main .lucky-draw {
        width: 20%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.first-item {
      top: 28%;
      left: 18%; }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.first-item {
          top: 23%;
          left: 33%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.second-item {
      top: 4%;
      left: 28%;
      transform: rotate(90deg); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.second-item {
          top: -4%;
          left: 38.25%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.third-item {
      top: 18%;
      left: 45%;
      transform: rotate(180deg); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.third-item {
          top: 13%;
          left: 46.5%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.fourth-item {
      top: 42%;
      left: 35%;
      transform: rotate(270deg); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.fourth-item {
          top: 41%;
          left: 41.5%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.first-shadow-item {
      top: 29%;
      left: 17%;
      opacity: 0.5;
      filter: alpha(opacity=0.5); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.first-shadow-item {
          top: 25.5%;
          left: 32.5%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.second-shadow-item {
      top: 6%;
      left: 28%;
      opacity: 0.5;
      filter: alpha(opacity=0.5);
      transform: rotate(90deg); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.second-shadow-item {
          top: -2%;
          left: 37.75%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.third-shadow-item {
      top: 20%;
      left: 44%;
      opacity: 0.5;
      filter: alpha(opacity=0.5);
      transform: rotate(180deg); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.third-shadow-item {
          left: 46%;
          top: 16%; } }
    .double-eleven-lucky-draw-game .game-main .lucky-draw.fourth-shadow-item {
      top: 45%;
      left: 35%;
      opacity: 0.5;
      filter: alpha(opacity=0.5);
      transform: rotate(270deg); }
      @media (min-width: 768px) {
        .double-eleven-lucky-draw-game .game-main .lucky-draw.fourth-shadow-item {
          top: 44%;
          left: 41%; } }

.double-eleven-lucky-draw-game .main-content {
  color: #000;
  font-family: "DIN-BoldAlternate"; }
  .double-eleven-lucky-draw-game .main-content .game-text {
    text-transform: uppercase;
    margin: 3% 0 2%; }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .main-content .game-text {
        margin: 2% 0 1%;
        font-size: 2vw; } }
  .double-eleven-lucky-draw-game .main-content .coupon-message {
    font-family: "HelveticaNeue-Medium";
    color: #6a6a6a;
    font-size: 3vw;
    margin-bottom: 2%; }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .main-content .coupon-message {
        font-size: 1.3vw;
        margin-bottom: 1%; } }
  .double-eleven-lucky-draw-game .main-content .game-quota {
    font-family: "HelveticaNeue-Medium";
    font-size: 3vw;
    text-decoration: underline;
    margin-bottom: 2%; }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .main-content .game-quota {
        font-size: 1.3vw;
        margin-bottom: 1%; } }
  .double-eleven-lucky-draw-game .main-content .game-info-btn {
    margin: 0 3%;
    padding: 0 2%;
    border: solid 1px #000;
    background: none;
    border-radius: 0.3rem; }
    @supports (-webkit-touch-callout: none) {
      .double-eleven-lucky-draw-game .main-content .game-info-btn {
        line-height: unset; } }
    @media (min-width: 768px) {
      .double-eleven-lucky-draw-game .main-content .game-info-btn {
        margin: 0 1%;
        padding: 0 0.75%;
        font-size: 1.5vw; } }

.double-eleven-iconic-first .content,
.double-eleven-iconic-second .content {
  top: 5%; }

.double-eleven-iconic-first .title-section,
.double-eleven-iconic-second .title-section {
  font-family: "RainerTestv04-Medium";
  text-transform: uppercase;
  font-size: 10vw;
  letter-spacing: 0.75px;
  text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff; }
  @media (min-width: 768px) {
    .double-eleven-iconic-first .title-section,
    .double-eleven-iconic-second .title-section {
      font-size: 6vw; } }

.double-eleven-iconic-first .main-content,
.double-eleven-iconic-second .main-content {
  position: relative; }
  .double-eleven-iconic-first .main-content .tile-item .info-section,
  .double-eleven-iconic-second .main-content .tile-item .info-section {
    text-align: left; }
    .double-eleven-iconic-first .main-content .tile-item .info-section .sale-text,
    .double-eleven-iconic-second .main-content .tile-item .info-section .sale-text {
      font-family: "RainerTestv04-Medium";
      color: #e41518;
      font-size: 7vw; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item .info-section .sale-text,
        .double-eleven-iconic-second .main-content .tile-item .info-section .sale-text {
          font-size: 3vw; } }
      .double-eleven-iconic-first .main-content .tile-item .info-section .sale-text .percent-letter,
      .double-eleven-iconic-second .main-content .tile-item .info-section .sale-text .percent-letter {
        font-family: "GoboldHigh";
        font-size: 5.75vw;
        margin-left: -0.5vw; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item .info-section .sale-text .percent-letter,
          .double-eleven-iconic-second .main-content .tile-item .info-section .sale-text .percent-letter {
            font-size: 2.5vw;
            margin-left: -0.25vw; } }
    .double-eleven-iconic-first .main-content .tile-item .info-section .product-name,
    .double-eleven-iconic-second .main-content .tile-item .info-section .product-name {
      font-family: "Gotham-Bold";
      color: #000;
      letter-spacing: 0.5px;
      font-size: 4.5vw;
      line-height: 0.75; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item .info-section .product-name,
        .double-eleven-iconic-second .main-content .tile-item .info-section .product-name {
          font-size: 2vw; } }
    .double-eleven-iconic-first .main-content .tile-item .info-section .product-description,
    .double-eleven-iconic-second .main-content .tile-item .info-section .product-description {
      color: #000;
      font-family: "HelveticaNeue-Medium";
      font-size: 2.5vw;
      text-align: justify; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item .info-section .product-description,
        .double-eleven-iconic-second .main-content .tile-item .info-section .product-description {
          font-size: 0.8vw; } }
    .double-eleven-iconic-first .main-content .tile-item .info-section .product-price,
    .double-eleven-iconic-second .main-content .tile-item .info-section .product-price {
      font-family: "Gotham-Bold";
      text-align: center; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item .info-section .product-price,
        .double-eleven-iconic-second .main-content .tile-item .info-section .product-price {
          padding-left: 35%; } }
      .double-eleven-iconic-first .main-content .tile-item .info-section .product-price .regular-price,
      .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .regular-price {
        position: absolute;
        font-size: 2.5vw;
        margin-top: 0.5vw; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item .info-section .product-price .regular-price,
          .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .regular-price {
            font-size: 0.8vw;
            margin-top: 0.25vw; } }
        .double-eleven-iconic-first .main-content .tile-item .info-section .product-price .regular-price::before,
        .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .regular-price::before {
          content: '';
          display: block;
          position: absolute;
          height: 0.12em;
          width: 115%;
          background-color: #fff;
          top: 50%;
          left: -2.5px;
          transform: rotate(5deg); }
      .double-eleven-iconic-first .main-content .tile-item .info-section .product-price .sale-price,
      .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .sale-price {
        font-size: 4.5vw;
        text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item .info-section .product-price .sale-price,
          .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .sale-price {
            font-size: 2.25vw; } }
    .double-eleven-iconic-first .main-content .tile-item .info-section .shop-now-section,
    .double-eleven-iconic-second .main-content .tile-item .info-section .shop-now-section {
      font-family: "Gotham-Bold";
      text-align: center;
      margin: 5% auto;
      background-color: #000;
      padding: 2% 10%;
      border-radius: 0.3rem; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item .info-section .shop-now-section,
        .double-eleven-iconic-second .main-content .tile-item .info-section .shop-now-section {
          border-radius: 0.5rem; } }
      .double-eleven-iconic-first .main-content .tile-item .info-section .shop-now-section .shop-now-btn,
      .double-eleven-iconic-second .main-content .tile-item .info-section .shop-now-section .shop-now-btn {
        padding: 2%;
        font-size: 3vw; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item .info-section .shop-now-section .shop-now-btn,
          .double-eleven-iconic-second .main-content .tile-item .info-section .shop-now-section .shop-now-btn {
            font-size: 1vw; } }

.double-eleven-iconic-first .main-content {
  padding: 0 10%; }
  @media (min-width: 768px) {
    .double-eleven-iconic-first .main-content {
      padding: 2% 10%; } }
  @media (min-width: 768px) {
    .double-eleven-iconic-first .main-content .image-section .all-item-img {
      width: 65%;
      margin: 0 auto; } }
  .double-eleven-iconic-first .main-content .tile-item {
    margin-top: 3%; }
    @media (min-width: 768px) {
      .double-eleven-iconic-first .main-content .tile-item {
        position: absolute;
        width: 16%; } }
    .double-eleven-iconic-first .main-content .tile-item .info-section {
      padding-top: 5%;
      min-width: 35%; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item .info-section {
          width: 75%; } }
      .double-eleven-iconic-first .main-content .tile-item .info-section .product-description {
        margin: 10% 0; }
      .double-eleven-iconic-first .main-content .tile-item .info-section .product-price .regular-price {
        left: 6%; }
      .double-eleven-iconic-first .main-content .tile-item .info-section .shop-now-section {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content; }
    .double-eleven-iconic-first .main-content .tile-item .image-section {
      width: 250%; }
    .double-eleven-iconic-first .main-content .tile-item.second-tile .image-section, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .image-section {
      margin-left: -10%; }
    .double-eleven-iconic-first .main-content .tile-item.second-tile .info-section, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section {
      padding-top: 0; }
      .double-eleven-iconic-first .main-content .tile-item.second-tile .info-section .product-price .regular-price, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section .product-price .regular-price {
        left: 60%; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item.second-tile .info-section .product-price .regular-price, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section .product-price .regular-price {
            left: 7%; } }
      .double-eleven-iconic-first .main-content .tile-item.second-tile .info-section .product-price .sale-price, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section .product-price .sale-price {
        padding-left: 15%; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item.second-tile .info-section .product-price .sale-price, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section .product-price .sale-price {
            padding-left: 0; } }
    @media (min-width: 768px) {
      .double-eleven-iconic-first .main-content .tile-item.first-tile {
        top: 4%;
        left: 13%; } }
    .double-eleven-iconic-first .main-content .tile-item.first-tile .shop-now-btn {
      color: #b3a1d8; }
    .double-eleven-iconic-first .main-content .tile-item.second-tile {
      margin-top: 0; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item.second-tile {
          top: 15%;
          right: 13%; } }
      .double-eleven-iconic-first .main-content .tile-item.second-tile .image-section {
        width: 300%; }
      .double-eleven-iconic-first .main-content .tile-item.second-tile .shop-now-btn {
        color: #dd9ad5; }
        @media (min-width: 768px) {
          .double-eleven-iconic-first .main-content .tile-item.second-tile .shop-now-btn {
            color: #b3a1d8; } }
    .double-eleven-iconic-first .main-content .tile-item.third-tile .product-price .regular-price {
      left: 9%; }
    @media (min-width: 768px) {
      .double-eleven-iconic-first .main-content .tile-item.third-tile {
        top: 51%;
        left: 13%; } }
    .double-eleven-iconic-first .main-content .tile-item.third-tile .image-section {
      margin-top: -5%;
      transform: scale(1.2); }
    @media (min-width: 768px) {
      .double-eleven-iconic-first .main-content .tile-item.third-tile .info-section .product-price {
        padding-left: 25%; } }
    .double-eleven-iconic-first .main-content .tile-item.third-tile .shop-now-btn {
      color: #dd9ad5; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item.third-tile .shop-now-btn {
          color: #ca97cb; } }
    @media (min-width: 768px) {
      .double-eleven-iconic-first .main-content .tile-item.fourth-tile {
        top: 61%;
        right: 13%; } }
    .double-eleven-iconic-first .main-content .tile-item.fourth-tile .image-section {
      width: 200%; }
    .double-eleven-iconic-first .main-content .tile-item.fourth-tile .shop-now-btn {
      color: #b3a1d8; }
      @media (min-width: 768px) {
        .double-eleven-iconic-first .main-content .tile-item.fourth-tile .shop-now-btn {
          color: #dd9ad5; } }

@media (min-width: 768px) {
  .double-eleven-iconic-second .content {
    top: 0; } }

.double-eleven-iconic-second .main-content {
  padding-top: 10%; }
  @media (min-width: 768px) {
    .double-eleven-iconic-second .main-content {
      padding-top: 2%; } }
  .double-eleven-iconic-second .main-content .image-section {
    transform: scale(0.9); }
    @media (min-width: 768px) {
      .double-eleven-iconic-second .main-content .image-section {
        transform: scale(1); } }
    .double-eleven-iconic-second .main-content .image-section .all-item-img {
      width: 90%; }
      @media (min-width: 768px) {
        .double-eleven-iconic-second .main-content .image-section .all-item-img {
          width: 50%; } }
  .double-eleven-iconic-second .main-content .tile-item {
    position: absolute;
    width: 25%; }
    @media (min-width: 768px) {
      .double-eleven-iconic-second .main-content .tile-item {
        width: 12%; } }
    .double-eleven-iconic-second .main-content .tile-item .info-section .product-description {
      margin: 8% 0; }
    .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .regular-price {
      left: 9%; }
      @media (min-width: 768px) {
        .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .regular-price {
          left: 20%; } }
    .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .sale-price {
      padding-left: 25%; }
      @media (min-width: 768px) {
        .double-eleven-iconic-second .main-content .tile-item .info-section .product-price .sale-price {
          padding-left: 0; } }
    @media (min-width: 768px) {
      .double-eleven-iconic-second .main-content .tile-item .info-section .shop-now-section {
        width: 80%; } }
    .double-eleven-iconic-second .main-content .tile-item .info-section .shop-now-section .shop-now-btn {
      color: #b3a1d8; }
    .double-eleven-iconic-second .main-content .tile-item.first-tile {
      top: 4%;
      left: 10%; }
      @media (min-width: 768px) {
        .double-eleven-iconic-second .main-content .tile-item.first-tile {
          top: 47%;
          left: 17%; } }
    .double-eleven-iconic-second .main-content .tile-item.second-tile {
      top: 68%;
      right: 12%; }
      @media (min-width: 768px) {
        .double-eleven-iconic-second .main-content .tile-item.second-tile {
          top: 47%;
          right: 13%; } }
      .double-eleven-iconic-second .main-content .tile-item.second-tile .shop-now-btn {
        color: #dd9ad5; }
        @media (min-width: 768px) {
          .double-eleven-iconic-second .main-content .tile-item.second-tile .shop-now-btn {
            color: #b3a1d8; } }

.double-eleven-support .content {
  top: 5%;
  color: #000;
  width: 80%;
  left: 50%;
  transform: translateX(-50%); }
  @media (min-width: 768px) {
    .double-eleven-support .content {
      top: 20%; } }

.double-eleven-support .support-item {
  border-bottom: 2px solid #000;
  padding: 10% 5%; }
  @media (min-width: 768px) {
    .double-eleven-support .support-item {
      border-bottom: none;
      border-right: 2px solid #000;
      padding: 3% 5% 0; } }
  .double-eleven-support .support-item:last-child {
    border-bottom: none; }
    @media (min-width: 768px) {
      .double-eleven-support .support-item:last-child {
        border-right: none; } }
  .double-eleven-support .support-item .title {
    font-family: "Gotham-Bold";
    text-transform: uppercase;
    font-size: 5vw;
    letter-spacing: 0.05rem;
    padding-bottom: 20px; }
    @media (min-width: 768px) {
      .double-eleven-support .support-item .title {
        font-size: 1.2vw; } }
  @media (min-width: 768px) {
    .double-eleven-support .support-item .icon-img {
      max-height: 25%;
      max-width: 30%; } }
  .double-eleven-support .support-item .icon-img.shipping-icon {
    width: 25%; }
    @media (min-width: 768px) {
      .double-eleven-support .support-item .icon-img.shipping-icon {
        width: auto; } }
  .double-eleven-support .support-item .icon-img.return-exchange-icon {
    width: 18%; }
    @media (min-width: 768px) {
      .double-eleven-support .support-item .icon-img.return-exchange-icon {
        width: auto; } }
  .double-eleven-support .support-item .icon-img.warranty-icon {
    width: 15%; }
    @media (min-width: 768px) {
      .double-eleven-support .support-item .icon-img.warranty-icon {
        width: auto; } }
  .double-eleven-support .support-item .info-content {
    font-family: "HelveticaNeue-Medium";
    font-size: 3vw;
    padding-top: 8%; }
    @media (min-width: 768px) {
      .double-eleven-support .support-item .info-content {
        font-size: 0.8vw; } }
  @media (min-width: 768px) {
    .double-eleven-support .support-item:first-child .info-content {
      padding-top: 14%; } }

.double-eleven-faq .modal,
.double-eleven-tnc .modal {
  width: 90%;
  left: 50%;
  transform: translateX(-50%); }
  .double-eleven-faq .modal .modal-content,
  .double-eleven-tnc .modal .modal-content {
    padding: 4%;
    border-radius: 25px; }
    .double-eleven-faq .modal .modal-content .modal-wrapper,
    .double-eleven-tnc .modal .modal-content .modal-wrapper {
      border: 2px solid #000;
      position: relative;
      border-radius: 25px; }
    .double-eleven-faq .modal .modal-content .modal-header,
    .double-eleven-tnc .modal .modal-content .modal-header {
      border: none;
      -ms-flex-pack: center;
          justify-content: center;
      background-color: #fff;
      width: 30%;
      margin: -1% auto;
      padding: 0; }
      .double-eleven-faq .modal .modal-content .modal-header .modal-title,
      .double-eleven-tnc .modal .modal-content .modal-header .modal-title {
        font-family: "DIN-BoldAlternate";
        border: 1px solid #000;
        font-size: 5vw;
        width: auto;
        line-height: 1.2;
        padding: 0 1rem;
        border-radius: 5px; }
        @media (min-width: 768px) {
          .double-eleven-faq .modal .modal-content .modal-header .modal-title,
          .double-eleven-tnc .modal .modal-content .modal-header .modal-title {
            font-size: 2vw; } }
      .double-eleven-faq .modal .modal-content .modal-header .btn-close-popup,
      .double-eleven-tnc .modal .modal-content .modal-header .btn-close-popup {
        right: 1%;
        top: 0;
        font-size: 1.7857rem; }
        @supports (-webkit-touch-callout: none) {
          .double-eleven-faq .modal .modal-content .modal-header .btn-close-popup,
          .double-eleven-tnc .modal .modal-content .modal-header .btn-close-popup {
            right: -2%; } }
    .double-eleven-faq .modal .modal-content .modal-body,
    .double-eleven-tnc .modal .modal-content .modal-body {
      font-family: "HelveticaNeue-Medium";
      font-size: 2.8vw; }
      @media (min-width: 768px) {
        .double-eleven-faq .modal .modal-content .modal-body,
        .double-eleven-tnc .modal .modal-content .modal-body {
          font-size: 0.857rem; } }
      @media (min-width: 1600px) {
        .double-eleven-faq .modal .modal-content .modal-body,
        .double-eleven-tnc .modal .modal-content .modal-body {
          font-size: 1rem; } }
      .double-eleven-faq .modal .modal-content .modal-body p,
      .double-eleven-tnc .modal .modal-content .modal-body p {
        margin-bottom: 3%; }

.double-eleven-lucky-game-popup .modal {
  width: 85%;
  left: 50%;
  transform: translateX(-50%); }
  .double-eleven-lucky-game-popup .modal .game-result textarea {
    position: absolute;
    bottom: 0; }
  .double-eleven-lucky-game-popup .modal .modal-content {
    text-align: center;
    border-radius: 25px; }
    .double-eleven-lucky-game-popup .modal .modal-content .modal-header {
      display: block;
      width: 90%;
      border: none;
      margin: 0 auto;
      padding: 1.5rem 1rem 0.5rem; }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-header .modal-title {
        font-family: "RainerTestv04-Medium";
        font-size: 16vw;
        color: #fff;
        line-height: 0.5;
        padding-bottom: 4%;
        text-transform: uppercase;
        text-shadow: 0 0 10px #9999ff, 0 0 20px #9999ff; }
        @supports (-webkit-touch-callout: none) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-header .modal-title {
            line-height: 0.65;
            padding-bottom: 0; } }
        @media (min-width: 768px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-header .modal-title {
            font-size: 7.5rem; } }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-header .btn-close-popup {
        top: 3px;
        right: 8px;
        font-size: 1.7143rem; }
        @supports (-webkit-touch-callout: none) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-header .btn-close-popup {
            right: 0; } }
        @media (min-width: 768px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-header .btn-close-popup {
            font-size: 2.5rem; } }
    .double-eleven-lucky-game-popup .modal .modal-content .modal-body {
      font-family: "DIN-BoldAlternate";
      padding: 0 1rem 2rem; }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body p {
        margin-bottom: 0; }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .prize-text {
        font-size: 6vw; }
        @media (min-width: 768px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .prize-text {
            font-size: 3vw; } }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-detail {
        font-family: "GoboldHigh";
        padding-top: 0.5rem;
        font-size: 10vw;
        min-height: 6vw;
        color: #a6d9e8;
        text-transform: uppercase; }
        @media (min-width: 768px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-detail {
            font-size: 8vw; } }
        @media (min-width: 992px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-detail {
            font-size: 6vw; } }
        @media (min-width: 1200px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-detail {
            font-size: 4.5vw; } }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-code {
        font-family: "RainerTestv04-Regular";
        font-size: 9vw;
        box-shadow: 0 4px 10px #a6d9e8;
        width: 65%;
        margin: 0 auto 5%;
        padding: 3%;
        border-radius: 10px; }
        @media (min-width: 768px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-code {
            font-size: 7vw; } }
        @media (min-width: 992px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-code {
            font-size: 5vw; } }
        @media (min-width: 1200px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-code {
            font-size: 3vw; } }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .share-email,
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon {
        display: block;
        border: 1px solid #000;
        margin: 3% auto;
        width: 65%;
        padding: 1%;
        font-size: 3.5vw;
        border-radius: 3px; }
        @media (min-width: 768px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .share-email,
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon {
            font-size: 2vw; } }
        @media (min-width: 1200px) {
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .share-email,
          .double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon {
            font-size: 1.2vw; } }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon.copied::before {
        content: '';
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        background: rgba(0, 0, 0, 0.72); }
      .double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon.copied::after {
        content: 'Copied!';
        position: absolute;
        z-index: 1;
        bottom: 7px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 25px;
        text-transform: none;
        color: #fff;
        font-size: 0.857rem;
        line-height: 26px;
        text-align: center;
        background: rgba(0, 0, 0, 0.72);
        border-radius: 3px; }

.double-eleven-game-result-popup .modal-content {
  padding: 2%;
  border-radius: 25px; }
  .double-eleven-game-result-popup .modal-content .modal-body {
    font-family: "DIN-BoldAlternate";
    border: 2px solid #000;
    text-align: center;
    border-radius: 25px; }
    .double-eleven-game-result-popup .modal-content .modal-body .game-result-msg {
      margin: 1.5rem;
      text-align: left; }
    .double-eleven-game-result-popup .modal-content .modal-body .btn-close-popup {
      top: 0;
      right: 5px;
      font-size: 1.5714rem; }

.share-email-popup .modal {
  width: 85%;
  left: 50%;
  transform: translateX(-50%); }
  .share-email-popup .modal .modal-content {
    border: 2px solid #000;
    font-family: "DIN-BoldAlternate";
    border-radius: 25px; }
    .share-email-popup .modal .modal-content .modal-header {
      border: none;
      padding: 0.5rem; }
      .share-email-popup .modal .modal-content .modal-header .btn-close-popup {
        top: 2px;
        right: 8px;
        font-size: 1.7143rem; }
        @media (min-width: 768px) {
          .share-email-popup .modal .modal-content .modal-header .btn-close-popup {
            font-size: 2.1429rem; } }
    .share-email-popup .modal .modal-content .modal-body {
      padding: 5% 10%; }
      .share-email-popup .modal .modal-content .modal-body .input-group {
        display: block;
        width: 100%; }
        .share-email-popup .modal .modal-content .modal-body .input-group input {
          font-family: "Gotham-Book";
          width: 100%;
          margin-bottom: 1rem;
          padding: 0.5rem;
          border: 1px solid; }
          @media (min-width: 768px) {
            .share-email-popup .modal .modal-content .modal-body .input-group input {
              width: 90%; } }
      .share-email-popup .modal .modal-content .modal-body .btn-close-popup {
        right: 15px;
        top: 0;
        font-size: 2.1429rem; }
      .share-email-popup .modal .modal-content .modal-body h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem; }
        @media (min-width: 768px) {
          .share-email-popup .modal .modal-content .modal-body h3 {
            font-size: 1.1429rem; } }
      .share-email-popup .modal .modal-content .modal-body .send-email {
        display: block;
        text-align: center;
        font-size: 1rem;
        width: 100%;
        border: none;
        margin-top: 3.5rem;
        padding: 0.5rem;
        cursor: pointer;
        background-color: transparent;
        box-shadow: 0 4px 10px #a6d9e8; }
        @media (min-width: 768px) {
          .share-email-popup .modal .modal-content .modal-body .send-email {
            font-size: 1.1429rem;
            width: 90%; } }
      .share-email-popup .modal .modal-content .modal-body p {
        position: absolute;
        font-family: "HelveticaNeue-Medium";
        font-size: 1rem;
        color: #008827;
        display: none;
        bottom: 25%; }
        .share-email-popup .modal .modal-content .modal-body p.error {
          color: #c00; }
        .share-email-popup .modal .modal-content .modal-body p.invalid-feedback {
          color: #c00;
          display: block;
          bottom: 12%;
          overflow-wrap: break-word; }

.btn-close-popup {
  position: absolute;
  background: none;
  border: none;
  outline: none;
  z-index: 1; }
  .btn-close-popup:focus {
    outline: none; }

.page[data-action="Search-Show"] .head-page-title {
  display: none; }

.search-results > .container {
  padding-left: 10px;
  padding-right: 10px; }
  @media (min-width: 768px) {
    .search-results > .container {
      padding-left: 15px;
      padding-right: 15px; } }
  .search-results > .container .row {
    margin-left: -10px;
    margin-right: -10px; }
    @media (min-width: 768px) {
      .search-results > .container .row {
        margin-left: -15px;
        margin-right: -15px; } }
  .search-results > .container [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px; }
    @media (min-width: 768px) {
      .search-results > .container [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px; } }
  @media (min-width: 992px) {
    .search-results > .container .product-tile-col {
      padding-left: 18px;
      padding-right: 18px; } }
  .search-results > .container .tile-actions {
    left: -3px;
    right: -3px;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    bottom: 0; }
    @media (min-width: 992px) {
      .search-results > .container .tile-actions {
        left: -5px;
        right: -5px; } }
    .search-results > .container .tile-actions .col-6 {
      padding-left: 3px;
      padding-right: 3px; }
      @media (min-width: 992px) {
        .search-results > .container .tile-actions .col-6 {
          padding-left: 5px;
          padding-right: 5px; } }
  @media (min-width: 992px) {
    .search-results > .container .search-result-content {
      margin: 0; }
      .search-results > .container .search-result-content .refinement-bar {
        padding-right: 15px;
        padding-left: 0; }
      .search-results > .container .search-result-content .product-grid-wrapper {
        padding-left: 0;
        padding-right: 0; }
      .search-results > .container .search-result-content .product-grid {
        margin: 0; } }

.search-results-wrapper {
  padding-bottom: 35px; }
  @media (min-width: 992px) {
    .search-results-wrapper {
      padding-bottom: 60px; } }
  @media (min-width: 768px) {
    .search-results-wrapper .container {
      max-width: none; } }
  @media (min-width: 992px) {
    .search-results-wrapper .container {
      max-width: 1140px;
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1600px) {
    .search-results-wrapper .container {
      max-width: 1355px; } }
  .search-results-wrapper .search-results .result-count {
    text-align: right;
    font-size: 1.0714rem; }
    @media (min-width: 992px) {
      .search-results-wrapper .search-results .result-count {
        padding-right: 30px;
        padding-left: 30px;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
            align-items: center; } }
  .search-results-wrapper .search-results-head {
    margin-bottom: 20px;
    margin-top: 5px;
    -ms-flex-align: end;
        align-items: flex-end; }
    @media (min-width: 992px) {
      .search-results-wrapper .search-results-head {
        margin-top: 10px;
        margin-bottom: 20px;
        -ms-flex-align: center;
            align-items: center; } }
  .search-results-wrapper .results-head-right {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-line-pack: center;
        align-content: center; }
  .search-results-wrapper .search-results-sort-filter .btn-primary {
    background: none;
    color: #000;
    text-transform: uppercase;
    font-size: 1.0714rem;
    font-family: "Gotham-Bold";
    border: 0; }
    @media (min-width: 768px) {
      .search-results-wrapper .search-results-sort-filter .btn-primary {
        width: auto;
        padding: 8px 25px; } }
    .search-results-wrapper .search-results-sort-filter .btn-primary:hover, .search-results-wrapper .search-results-sort-filter .btn-primary:focus, .search-results-wrapper .search-results-sort-filter .btn-primary:active {
      background: none !important;
      color: #000;
      border-color: transparent !important;
      box-shadow: none !important; }
    .search-results-wrapper .search-results-sort-filter .btn-primary .sa-icon {
      margin-left: 15px;
      font-size: 1rem; }
  .search-results-wrapper .search-results-sort-filter .filter-button {
    text-align: right; }
  .search-results-wrapper .refinement-bar {
    display: none; }
    @media (min-width: 992px) {
      .search-results-wrapper .refinement-bar {
        display: block;
        -ms-flex: 0 0 15.029em;
            flex: 0 0 15.029em;
        max-width: 15.029em; } }
    @media (min-width: 1600px) {
      .search-results-wrapper .refinement-bar {
        -ms-flex: 0 0 18.786em;
            flex: 0 0 18.786em;
        max-width: 18.786em; } }
  @media (min-width: 1200px) {
    .search-results-wrapper .product-grid-wrapper {
      display: block;
      -ms-flex: 0 0 calc(100% - 15.029em);
          flex: 0 0 calc(100% - 15.029em);
      max-width: calc(100% - 15.029em); } }
  @media (min-width: 1600px) {
    .search-results-wrapper .product-grid-wrapper {
      -ms-flex: 0 0 calc(100% - 18.786em);
          flex: 0 0 calc(100% - 18.786em);
      max-width: calc(100% - 18.786em); } }
  .search-results-wrapper .show-more {
    margin-top: 50px; }
    @media (min-width: 992px) {
      .search-results-wrapper .show-more {
        margin-top: 60px; } }
    .search-results-wrapper .show-more .btn-outline-primary {
      color: #000;
      background-color: #fff;
      border: 2px solid #000;
      display: inline-block;
      text-transform: uppercase;
      font-family: "Gotham-Bold", sans-serif;
      padding: 5px 10px;
      border-radius: 0;
      background-color: #000;
      color: #fff;
      height: 40px;
      min-width: 170px;
      width: auto;
      outline: 0; }
      .search-results-wrapper .show-more .btn-outline-primary:hover, .search-results-wrapper .show-more .btn-outline-primary:focus {
        background-color: #000; }
      .search-results-wrapper .show-more .btn-outline-primary:hover, .search-results-wrapper .show-more .btn-outline-primary:focus, .search-results-wrapper .show-more .btn-outline-primary:active {
        border-color: #000; }
      @media (min-width: 992px) {
        .search-results-wrapper .show-more .btn-outline-primary {
          height: 3.333em;
          min-width: 14.1663em;
          font-size: 1.0286rem; } }
      @media (min-width: 1600px) {
        .search-results-wrapper .show-more .btn-outline-primary {
          font-size: 1.2857rem; } }
  .search-results-wrapper .grid-footer {
    padding-left: 10px;
    padding-right: 10px; }
    @media (min-width: 768px) {
      .search-results-wrapper .grid-footer {
        padding-left: 15px;
        padding-right: 15px; } }
    .search-results-wrapper .grid-footer .scroll-loading-amimation {
      margin: 0 auto;
      display: block; }
  .search-results-wrapper .owl-carousel .owl-nav .owl-prev,
  .search-results-wrapper .owl-carousel .owl-nav .owl-next {
    color: #fff;
    background-color: #000; }

.promotion-wrapper.search-results-wrapper .search-results-head {
  margin-top: 10px;
  margin-bottom: 20px; }

.pr-star-v4-50-filled::before {
  content: "\F123" !important; }

.product-recommendations.slider {
  display: block; }

@media (min-width: 1200px) {
  .product-tile .product-comparition .checkbox {
    font-size: 0.8rem; } }

@media (min-width: 1600px) {
  .product-tile .product-comparition .checkbox {
    font-size: 1rem; } }

.double-eleven-banner .content .middle-content .main-title {
  font-family: "RainerTestv04-Medium" !important; }

.double-eleven-banner .content .left-content {
  font-family: "RainerTestv04-Medium" !important; }

.double-eleven-banner .content .right-content .sale-right-text p {
  font-family: "RainerTestv04-Medium" !important; }

.double-eleven-banner .content .right-content .sale-right-text .percent-letter {
  font-family: "GoboldHigh" !important; }

.double-eleven-banner .content .right-content .right-text-top {
  font-family: "Gilroy-ExtraBold" !important; }

.double-eleven-flash-deals .content .title-section .title {
  font-size: 12vw; }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content .title-section .title {
      font-size: 4vw; } }

.double-eleven-flash-deals .content .countdown {
  margin-top: -5%; }
  @supports (-webkit-touch-callout: none) {
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .countdown {
        margin-top: -7%; } } }
  .double-eleven-flash-deals .content .countdown span {
    font-family: "Proxon-Regular" !important; }

.double-eleven-flash-deals .content .product-section .sale-text {
  font-family: "RainerTestv04-Medium" !important;
  line-height: 0.9; }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content .product-section .sale-text {
      font-size: 12vw; } }
  .double-eleven-flash-deals .content .product-section .sale-text .text-content {
    font-size: 22vw; }
    @media (min-width: 768px) {
      .double-eleven-flash-deals .content .product-section .sale-text .text-content {
        font-size: 12vw; } }

.double-eleven-flash-deals .content .product-info {
  font-family: "HelveticaNeue" !important; }
  @media (min-width: 1200px) {
    .double-eleven-flash-deals .content .product-info {
      padding: 2% 0; } }

.double-eleven-flash-deals .content .product-name {
  font-family: "Gotham-Bold" !important; }

.double-eleven-flash-deals .content .product-price .regular-price,
.double-eleven-flash-deals .content .product-price .sale-price {
  font-family: "Gotham-Bold" !important; }

@media (min-width: 768px) {
  .double-eleven-flash-deals .content.coming-soon-section .title-section {
    width: 45%; } }

@media (min-width: 768px) {
  .double-eleven-flash-deals .content.coming-soon-section .title-section .title {
    font-size: 6vw; } }

.double-eleven-flash-deals .content.coming-soon-section .main-content {
  position: relative; }
  @media (min-width: 768px) {
    .double-eleven-flash-deals .content.coming-soon-section .main-content .coming-soon {
      font-size: 3vw;
      padding-top: 1%; } }

.double-eleven-summary-offer .title-section {
  font-weight: bold; }

.double-eleven-summary-offer .summary-section .main-content .top-content {
  font-family: "RainerTestv04-Regular" !important; }

.double-eleven-summary-offer .summary-section .main-content .sale-content {
  font-family: "RainerTestv04-Regular" !important; }
  .double-eleven-summary-offer .summary-section .main-content .sale-content p {
    font-family: "RainerTestv04-Regular" !important; }
  .double-eleven-summary-offer .summary-section .main-content .sale-content .percent-letter {
    font-family: "GoboldHigh" !important; }

.double-eleven-add-on-offer .title-section {
  font-weight: bold; }

.double-eleven-lucky-draw-game .title-section .title {
  font-family: "RainerTestv04-Medium" !important; }

.double-eleven-lucky-draw-game .main-content .game-text,
.double-eleven-lucky-draw-game .main-content .game-quota,
.double-eleven-lucky-draw-game .main-content .game-info-btn {
  font-weight: bold; }

.double-eleven-lucky-draw-game .main-content .coupon-message {
  margin-bottom: 0; }

.double-eleven-iconic-first .title-section,
.double-eleven-iconic-second .title-section {
  font-weight: bold; }

.double-eleven-iconic-first .main-content .tile-item .info-section .sale-text,
.double-eleven-iconic-second .main-content .tile-item .info-section .sale-text {
  font-family: "RainerTestv04-Medium" !important; }
  .double-eleven-iconic-first .main-content .tile-item .info-section .sale-text .text-content,
  .double-eleven-iconic-second .main-content .tile-item .info-section .sale-text .text-content {
    font-family: "RainerTestv04-Medium" !important; }
  .double-eleven-iconic-first .main-content .tile-item .info-section .sale-text .percent-letter,
  .double-eleven-iconic-second .main-content .tile-item .info-section .sale-text .percent-letter {
    font-family: "GoboldHigh" !important; }

.double-eleven-iconic-first .main-content .tile-item .info-section .product-name,
.double-eleven-iconic-second .main-content .tile-item .info-section .product-name {
  font-family: "Gotham-Bold" !important; }

.double-eleven-iconic-first .main-content .tile-item .info-section .product-price .regular-price,
.double-eleven-iconic-first .main-content .tile-item .info-section .product-price .sale-price,
.double-eleven-iconic-second .main-content .tile-item .info-section .product-price .regular-price,
.double-eleven-iconic-second .main-content .tile-item .info-section .product-price .sale-price {
  font-family: "Gotham-Bold" !important; }

.double-eleven-iconic-first .main-content .tile-item.second-tile .info-section .product-price .sale-price, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section .product-price .sale-price {
  padding-left: 25%; }
  @media (min-width: 768px) {
    .double-eleven-iconic-first .main-content .tile-item.second-tile .info-section .product-price .sale-price, .double-eleven-iconic-first .main-content .tile-item.fourth-tile .info-section .product-price .sale-price {
      padding-left: 0; } }

.double-eleven-support .support-item .title {
  font-weight: bold; }

.double-eleven-faq .modal .modal-content .modal-header,
.double-eleven-tnc .modal .modal-content .modal-header {
  width: 45%; }
  .double-eleven-faq .modal .modal-content .modal-header .modal-title,
  .double-eleven-tnc .modal .modal-content .modal-header .modal-title {
    font-weight: bold; }

.double-eleven-lucky-game-popup .modal .modal-content .modal-header .modal-title {
  font-family: "RainerTestv04-Medium" !important; }

.double-eleven-lucky-game-popup .modal .modal-content .modal-body .prize-text {
  font-weight: bold; }

.double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-detail {
  font-family: "GoboldHigh" !important; }

.double-eleven-lucky-game-popup .modal .modal-content .modal-body .coupon-code {
  font-family: "RainerTestv04-Regular" !important; }

.double-eleven-lucky-game-popup .modal .modal-content .modal-body .share-email,
.double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon {
  font-weight: bold; }

.double-eleven-lucky-game-popup .modal .modal-content .modal-body .copy-coupon.copied::after {
  content: 'Copied!'; }

.double-eleven-game-result-popup .modal-content .modal-body {
  font-weight: bold; }

.share-email-popup .modal .modal-content .modal-body .modal-title,
.share-email-popup .modal .modal-content .modal-body .send-email,
.share-email-popup .modal .modal-content .modal-body .share-msg {
  font-weight: bold; }
