@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;
  }
}
.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.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;-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;-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;-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 .owl-carousel{display:block}.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-height{transition:height 500ms ease-in-out}.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 .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%}#pr-write{padding-top:2.857em;padding-bottom:2.857em}#pr-write .p-w-r{font-family:"CamphorW01-Regular";font-size:1rem}#pr-write .p-w-r .pr-header-title{font-size:1.2857rem;font-family:"CamphorW01-Regular"}#pr-write .p-w-r .pr-header-product-name{font-size:1rem;font-family:"CamphorW01-Regular"}#pr-write .p-w-r .pr-header-product-name a{color:#272727}@media (min-width: 768px){#pr-write .p-w-r .pr-war{max-width:none}}#pr-write .p-w-r .form-group.pr-bestuses-form-group,#pr-write .p-w-r .form-group.pr-bottomline-form-group,#pr-write .p-w-r .form-group.pr-location-form-group,#pr-write .p-w-r .form-group.pr-wasthisagift-form-group,#pr-write .p-w-r .form-group.pr-describeyourself-form-group,#pr-write .p-w-r .form-group.pr-travelfrequency-form-group,#pr-write .p-w-r .form-group.pr-primaryuse-form-group,#pr-write .p-w-r .form-group.pr-旅行频率-form-group,#pr-write .p-w-r .form-group.pr-主要用途-form-group{display:none}#pr-write .p-w-r .form-group .pr-control-label{color:#999;letter-spacing:0.5px;margin-bottom:0.714em;font-size:1.1429rem;font-family:"Eina01-Bold"}#pr-write .p-w-r .form-group .form-control{box-shadow:none;padding:0.2857em 0.1429em;border:none;border-bottom:1px solid #cecece;border-radius:0;background-color:transparent;height:2em}#pr-write .p-w-r .form-group .form-control:focus{outline:none;box-shadow:none}#pr-write .p-w-r .form-group .pr-facebook-btn{display:none}#pr-write .p-w-r .form-group .pr-instagram-btn{display:none}#pr-write .p-w-r #pr-rating{text-align:center}@media (min-width: 992px){#pr-write .p-w-r #pr-rating{text-align:left}}#pr-write .p-w-r .pr-rating-stars [class^="pr-star"]{background:none;position:relative;width:1.429em;height:1.429em;padding:0;margin-right:0;margin-left:0;margin-right:0.357em;margin-left:0}#pr-write .p-w-r .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:1.4286rem;top:0;left:0}@media (min-width: 992px){#pr-write .p-w-r .pr-rating-stars .pr-star-v4-100-filled::before,#pr-write .p-w-r .pr-rating-stars .pr-star-v4-50-filled::before{font-size:1.4286rem}}#pr-write .p-w-r .pr-rating-stars .pr-star-v4-100-filled::before,#pr-write .p-w-r .pr-rating-stars .pr-star-v4-50-filled::before{color:#d11e47}#pr-write .p-w-r .pr-rating-stars .pr-star-v4-100-filled:hover,#pr-write .p-w-r .pr-rating-stars .pr-star-v4-50-filled:hover{width:1.429em;height:1.429em;margin-right:0.357em}#pr-write .p-w-r .tag-group .pr-cb-tag-container{margin-bottom:0;margin-right:0}@media (min-width: 992px){#pr-write .p-w-r .tag-group .pr-cb-tag-container{width:33.33%}#pr-write .p-w-r .tag-group .pr-cb-tag-container:nth-child(odd){margin-right:0}}#pr-write .p-w-r .tag-group .checkbox{margin-bottom:0}#pr-write .p-w-r .tag-group .checkbox::after{content:none}#pr-write .p-w-r .tag-group .pr-label-control{border:0;background:none;color:#272727;padding-left:0;position:relative;border-radius:0}#pr-write .p-w-r .tag-group .pr-label-control span{color:#272727}#pr-write .p-w-r .tag-group .pr-label-control:focus{outline:0;box-shadow:none}#pr-write .p-w-r .tag-group .pr-label-control::after{content:'';width:15px;height:15px;border:1px solid #6b6b6b;position:absolute;right:0;top:50%;transform:translateY(-50%);border-radius:50%}#pr-write .p-w-r .tag-group .pr-label-control::before{content:'';width:9px;height:9px;right:2px;background-color:#d11e47;position:absolute;top:50%;transition:ease-in 0.3s;transform:translateY(-50%) scale(0);border-radius:50%}@media (min-width: 992px){#pr-write .p-w-r .tag-group .pr-label-control{display:inline-block;padding-left:2em;padding-right:0}#pr-write .p-w-r .tag-group .pr-label-control::after{right:auto;left:0}#pr-write .p-w-r .tag-group .pr-label-control::before{left:3px;right:auto}}#pr-write .p-w-r .tag-group .pr-label-control.checked{background:none}#pr-write .p-w-r .tag-group .pr-label-control.checked span{color:#272727}#pr-write .p-w-r .tag-group .pr-label-control.checked::before{transform:translateY(-50%) scale(1)}@media (min-width: 768px){#pr-write .p-w-r .input-add-tag{max-width:33.33%}}@media (min-width: 992px){#pr-write .p-w-r .input-add-tag{max-width:none}}#pr-write .p-w-r .input-add-tag .input-group-btn .pr-btn{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;color:#fff;background-color:#272727;border-color:#272727;padding:0.857em 1.429em 0.9em;padding-top:0;padding-bottom:0;line-height:35px}#pr-write .p-w-r .input-add-tag .input-group-btn .pr-btn:hover,#pr-write .p-w-r .input-add-tag .input-group-btn .pr-btn:focus{cursor:pointer}#pr-write .p-w-r .input-add-tag .input-group-btn .pr-btn:hover{color:#272727;background-color:#fff;border-color:transparent;box-shadow:0 2px 7px -2px #333}#pr-write .p-w-r .form-group .btn-group-radio-vertical,#pr-write .p-w-r .form-group .btn-group-radio-horizontal{border:0}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn{position:relative;line-height:1;padding-left:2em;border:0;background:none;color:#272727;padding-top:1em;padding-bottom:1em;text-align:left}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn::before,#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn::after,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn::before,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn::after{position:absolute;display:block;content:''}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn:focus,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn:focus{outline:0}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn::before,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn::before{top:50%;left:0;width:1.57143em;height:1.57143em;-webkit-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;border-radius:50%;border:1px solid #272727;transform:translateY(-50%)}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn::after,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn::after{top:50%;left:0.2957em;width:1em;height:1em;background-color:#272727;border-radius:50%;transition:ease-in 0.3s;transform:translateY(-50%) scale(0)}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn.active,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn.active{color:#272727}#pr-write .p-w-r .form-group .btn-group-radio-vertical .pr-btn.active::after,#pr-write .p-w-r .form-group .btn-group-radio-horizontal .pr-btn.active::after{transform:translateY(-50%) scale(1)}#pr-write .p-w-r .pr-accessible-btn{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;color:#fff;background-color:#272727;border-color:#272727;padding:0.857em 2em 0.9em}#pr-write .p-w-r .pr-accessible-btn:hover,#pr-write .p-w-r .pr-accessible-btn:focus{cursor:pointer}#pr-write .p-w-r .pr-accessible-btn:hover{color:#272727;background-color:#fff;border-color:transparent;box-shadow:0 2px 7px -2px #333}#pr-write .p-w-r .pr-btn-add-tag{margin-top:1em}#pr-write .p-w-r .pr-btn-add-tag a{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;padding:0.714em 1.071em 0.8em;min-width:10.714em;text-align:center}#pr-write .p-w-r .pr-btn-add-tag a:hover,#pr-write .p-w-r .pr-btn-add-tag a:focus{cursor:pointer}#pr-write .p-w-r .pr-btn-add-tag a:hover{color:#fff;background-color:#272727;border-color:#272727}#pr-write .p-w-r .pr-btn-add-tag a::after{content:none}#pr-write .p-w-r .pr-clear-all-radios{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;padding:0.714em 1.071em 0.8em}#pr-write .p-w-r .pr-clear-all-radios:hover,#pr-write .p-w-r .pr-clear-all-radios:focus{cursor:pointer}#pr-write .p-w-r .pr-clear-all-radios:hover{color:#fff;background-color:#272727;border-color:#272727}#pr-write .p-w-r .pr-accessibly-hidden-file-input+label{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;padding:0.714em 1.071em 0.8em;min-width:10.714em;text-align:center}#pr-write .p-w-r .pr-accessibly-hidden-file-input+label:hover,#pr-write .p-w-r .pr-accessibly-hidden-file-input+label:focus{cursor:pointer}#pr-write .p-w-r .pr-accessibly-hidden-file-input+label:hover{color:#fff;background-color:#272727;border-color:#272727}#pr-write .p-w-r .pr-accessibly-hidden-file-input+label span{color:#272727}#pr-write .p-w-r .pr-accessibly-hidden-file-input+label span::after{content:none}#pr-write .p-w-r .pr-subscript{font-size:1rem;line-height:1}#pr-write .p-w-r .pr-footer{padding-top:0;border-top:0;font-size:1rem}#pr-write .p-w-r .pr-submit a{font-size:.857rem;color:#dfdfdf;text-decoration:underline}#pr-write .p-w-r .thank-you-page h1.title{font-family:"CamphorW01-Regular";font-size:1.7857rem}#pr-write .p-w-r .thank-you-page .header{border-bottom:0;text-align:center}#pr-write .p-w-r .thank-you-page .header .title,#pr-write .p-w-r .thank-you-page .header .subtitle{text-align:center}#pr-write .p-w-r .thank-you-page .header h5{text-align:center}#pr-write .p-w-r .thank-you-page .header h5 a{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;padding:0.714em 1.071em 0.8em}#pr-write .p-w-r .thank-you-page .header h5 a:hover,#pr-write .p-w-r .thank-you-page .header h5 a:focus{cursor:pointer}#pr-write .p-w-r .thank-you-page .header h5 a:hover{color:#fff;background-color:#272727;border-color:#272727}#pr-write .p-w-r .thank-you-page .header h5 a:hover,#pr-write .p-w-r .thank-you-page .header h5 a:focus{text-decoration:none}#pr-write .p-w-r .thank-you-page .pr-rating-number{display:none}#pr-write .p-w-r .thank-you-page .pr-rating-stars{float:none;text-align:center;display:block}#pr-write #pr-war-form{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}#pr-write #pr-war-form .pr-pros-form-group{-ms-flex-order:1;order:1}#pr-write #pr-war-form .pr-cons-form-group{-ms-flex-order:2;order:2}.product-tile{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:flex-end;height:100%;position:relative;padding:35px 0 0}@media (min-width: 1200px){.product-tile{padding:1.8vw 0 0}}.product-tile .image-container{text-align:center;top:-45px;-ms-flex-positive:1;flex-grow:1}@media (min-width: 992px){.product-tile .image-container{overflow:hidden}.product-tile .image-container:hover .tile-image,.product-tile .image-container:focus .tile-image{transform:scale(1.1);transition:ease-in 0.3s}}.product-tile .image-container a{padding:0;height:100%;display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:flex-end}.product-tile .image-container a .tile-image{margin-left:auto;margin-right:auto;width:auto;object-fit:cover;min-height:200px;background-image:url("../../../images/spinner-red-2-organe_199-300.svg");background-repeat:no-repeat;background-position:50% 75%}@media (min-width: 1200px){.product-tile .image-container a{padding:1.6vw !important}}.product-tile .tile-message{display:none}.product-tile .product-sticker-wrapper{margin-top:0.714rem}.product-tile .product-sticker-wrapper ul{padding-left:0}.product-tile .product-sticker{display:inline-block;list-style:none}.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-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;font-weight:400}@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 .tile-body-footer{display:block;margin:0}.product-tile .tile-actions .apple-pay-pdp{display:none}.product-tile .cart-and-ipay{padding-bottom:0}.product-tile .notify-me,.product-tile .add-to-cart,.product-tile .add-to-cart-global,.product-tile .customize-your-set,.product-tile .unavailable-product-set{color:#000;background-color:#fff;border:2px solid #000;display:inline-block;text-transform:uppercase;font-weight:700;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 .notify-me:hover,.product-tile .notify-me:focus,.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,.product-tile .customize-your-set:hover,.product-tile .customize-your-set:focus,.product-tile .unavailable-product-set:hover,.product-tile .unavailable-product-set:focus{background-color:#000}@media (min-width: 768px){.product-tile .notify-me,.product-tile .add-to-cart,.product-tile .add-to-cart-global,.product-tile .customize-your-set,.product-tile .unavailable-product-set{font-size:1rem}}@media (min-width: 992px){.product-tile .notify-me,.product-tile .add-to-cart,.product-tile .add-to-cart-global,.product-tile .customize-your-set,.product-tile .unavailable-product-set{padding-top:9px;padding-bottom:9px;line-height:1.2;font-size:0.879rem;letter-spacing:0.05rem}}@media (min-width: 1600px){.product-tile .notify-me,.product-tile .add-to-cart,.product-tile .add-to-cart-global,.product-tile .customize-your-set,.product-tile .unavailable-product-set{font-size:1.099rem;padding-top:11px;padding-bottom:11px}}.product-tile .notify-me .fa,.product-tile .add-to-cart .fa,.product-tile .add-to-cart-global .fa,.product-tile .customize-your-set .fa,.product-tile .unavailable-product-set .fa{display:none}.product-tile .notify-me:disabled,.product-tile .add-to-cart:disabled,.product-tile .add-to-cart-global:disabled,.product-tile .customize-your-set:disabled,.product-tile .unavailable-product-set:disabled{opacity:0.3}.product-tile .notify-me,.product-tile .unavailable-product-set{opacity:0.3}.product-tile .unavailable-product-set{cursor:initial}.product-tile .p-w-r{margin:0}.is-b2b-customer ~ .page .product-tile .p-w-r{display:none !important}@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:#408ebf}.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}.product-tile .tile-body .attribute{margin-top:0;margin-right:0;padding-top:5px;padding-right:0;text-align:center}@media (min-width: 992px){.product-tile .tile-body .attribute{padding-top:0}}.product-tile .tile-body .attribute h4{display:none}.product-tile .tile-body .attribute .attr-item{display:inline-block;margin-left:2px;margin-right:2px}@media (min-width: 992px){.product-tile .tile-body .attribute .attr-item{padding-left:3px;padding-right:3px}}@media (min-width: 1600px){.product-tile .tile-body .attribute .attr-item{padding-left:4px;padding-right:4px}}.product-tile .tile-body .attribute .owl-carousel{display:-ms-flexbox;display:flex;display:-ms-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.product-tile .tile-body .attribute .owl-carousel .owl-stage{margin:0 auto}.product-tile .tile-body .attribute .owl-loaded{display:block;margin-right:-10px;width:auto}.product-tile .tile-body .attribute .owl-loaded .attr-item{margin-left:0;margin-right:0}.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item{margin-right:calc(((100vw / 2 / 4.5) - 37px) - 2px) !important}@media (min-width: 768px){.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item{margin-right:6px !important}}@media (min-width: 992px){.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item{margin-right:2px !important}}@media (min-width: 1200px){.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item{margin-right:5px !important}}@media (min-width: 1600px){.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item{margin-right:0 !important}.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item:nth-last-child(n+6),.product-tile .tile-body .attribute .owl-loaded.color-swatchs .owl-item:nth-last-child(n+6) ~ .owl-item{margin-right:8px !important}}.product-tile .tile-body .attribute .color-swatchs{min-height:2.2vw;padding:0}.product-tile .tile-attribute[data-attr="productSize"]{display:none}.product-tile .color-attribute[data-attr="color"] .color-quantity{display:none}.product-tile .color-attribute .color-swatchs{text-align:center}@media (min-width: 992px){.product-tile .color-attribute .color-swatchs{padding-top:5px}}.product-tile .color-attribute .color-swatchs .swatch-circle.color-value.selected::after{content:none}.product-tile .color-attribute .color-swatchs .attr-item{border:1px solid transparent;padding:2px;border-radius:50%}.product-tile .color-attribute .color-swatchs .attr-item a{display:block;width:22px;height:22px}@media (min-width: 1200px){.product-tile .color-attribute .color-swatchs .attr-item a{width:1.2vw;height:1.2vw}}.product-tile .color-attribute .color-swatchs .attr-item a .swatch-circle{width:100%;height:100%;border:none;margin:0;border-radius:50%}.product-tile .color-attribute .color-swatchs .attr-item.selected{border-color:#000}.product-tile .color-attribute .color-swatchs .attr-item.selected a{width:28px;height:28px}@media (min-width: 1200px){.product-tile .color-attribute .color-swatchs .attr-item.selected a{width:1.5vw;height:1.5vw}}.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:.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-tile .tile-go-detail{display:none}.product-tile .tile-body{padding-top:0;position:relative;text-align:center}@media (min-width: 1200px){.product-tile .tile-body{padding-bottom:1.4vw}}.product-tile .tile-body .tile-message{display:none}.product-tile .tile-body .tile-body-field-group{display:-ms-flexbox;display:flex;display:-ms-flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:flex-end;height:100%;max-width:195px;margin:0 auto;padding:13px 6px 11px;border-radius:15px;position:relative;background:linear-gradient(270deg, #f37a21, #d31e47)}.product-tile .tile-body .tile-body-field-group.black-2-white{background:#585858}.product-tile .tile-body .tile-body-field-group.gray-2-white{background:#f2f2f2}.product-tile .tile-body .tile-body-field-group.pink-2-red{background:#ee99b4}.product-tile .tile-body .tile-body-field-group.red-2-orange{background:#d31e47}.product-tile .tile-body .tile-body-field-group.orange-2-red{background:#f37a21}.product-tile .tile-body .tile-body-field-group.yellow-2-green{background:#ffc113}.product-tile .tile-body .tile-body-field-group.green-2-yellow{background:#81c341}.product-tile .tile-body .tile-body-field-group.teal-2-blue{background:#6ac6b1}.product-tile .tile-body .tile-body-field-group.blue-2-teal{background:#3393d0}.product-tile .tile-body .tile-body-field-group.navy-2-purple{background:#04559f}.product-tile .tile-body .tile-body-field-group.purple-2-navy{background:#a23db7}.product-grid .product-tile .tile-body .tile-body-field-group{padding-bottom:1.429rem}@media (min-width: 768px){.product-grid .product-tile .tile-body .tile-body-field-group{padding-bottom:0}}.product-tile .tile-body .tile-body-field-group .swatch-row{position:absolute;top:-50px;left:50%;transform:translateX(-50%);min-height:42px}.product-tile .tile-body .tile-body-field-group .product-collection,.product-tile .tile-body .tile-body-field-group .pdp-link{margin-bottom:0;font-size:12px;line-height:normal}.product-tile .tile-body .tile-body-field-group .product-collection a,.product-tile .tile-body .tile-body-field-group .pdp-link a{display:block;font-family:"Eina01-SemiBold";color:#fff;font-size:12px;font-weight:400;overflow:hidden}.product-tile .tile-body .tile-body-field-group .product-collection a{font-size:13px}.product-tile .tile-body .tile-body-field-group .pdp-link{margin-top:3px}.product-tile .tile-body .tile-body-field-group .price{margin-bottom:0;margin-top:3px}.product-tile .tile-body .tile-body-field-group .price .price{margin-bottom:0;margin-top:0}.product-tile .tile-body .tile-body-field-group .price .strike-through{margin-right:0.2em;margin-left:0;padding:0;font-size:12px;color:#fff}@media (min-width: 768px){.product-tile .tile-body .tile-body-field-group .price .strike-through{font-size:18px;line-height:20px}}.product-tile .tile-body .tile-body-field-group .price .price-inner{display:-ms-flexbox;display:flex;display:-ms-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;white-space:nowrap;gap:10px;min-height:1.1vw}.product-tile .tile-body .tile-body-field-group .price .price-inner .value,.product-tile .tile-body .tile-body-field-group .price .price-inner .sales{font-family:"Eina01-SemiBold";color:#fff;font-size:12px;font-weight:400}.product-tile .tile-body .tile-body-field-group .promotions-below-price{display:none}.product-tile .tile-body .tile-body-field-group.black-text .product-collection a,.product-tile .tile-body .tile-body-field-group.black-text .pdp-link a{color:#000}.product-tile .tile-body .tile-body-field-group.black-text .price .price-inner .value,.product-tile .tile-body .tile-body-field-group.black-text .price .price-inner .sales,.product-tile .tile-body .tile-body-field-group.black-text .price .price-inner .strike-through{color:#000}@media (min-width: 768px){.product-tile .tile-body .tile-body-field-group{padding:15px 16px 14px;max-width:300px;border-radius:30px}.product-tile .tile-body .tile-body-field-group .product-collection,.product-tile .tile-body .tile-body-field-group .pdp-link{line-height:normal}.product-tile .tile-body .tile-body-field-group .product-collection a,.product-tile .tile-body .tile-body-field-group .pdp-link a{font-size:16px}.product-tile .tile-body .tile-body-field-group .pdp-link a{font-size:14px}.product-tile .tile-body .tile-body-field-group .price .price-inner .value,.product-tile .tile-body .tile-body-field-group .price .price-inner .sales{font-size:14px}}@media (min-width: 1200px){.product-tile .tile-body .tile-body-field-group{padding:0.7vw 0.8vw 0.6vw;max-width:15.8vw}.product-tile .tile-body .tile-body-field-group .product-collection a,.product-tile .tile-body .tile-body-field-group .pdp-link a{font-size:14px}.product-tile .tile-body .tile-body-field-group .pdp-link a{font-size:12.8px}.product-tile .tile-body .tile-body-field-group .price .price-inner .value,.product-tile .tile-body .tile-body-field-group .price .price-inner .sales{font-size:12.8px}}@media (min-width: 1600px){.product-tile .tile-body .tile-body-field-group{margin-top:4px}}.product-tile .tile-body .tile-body-field-group div[data-pwr-itemid]{display:none}.product-tile .tile-body .rating-star{display:none}.product-tile .tile-bottom .quantity{display:none}.product-tile .tile-bottom .tile-actions-color-attributes{position:initial}.product-tile .tile-bottom .tile-add-to-cart .add-to-cart,.product-tile .tile-bottom .tile-add-to-cart .btn-go-details{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-weight:400;line-height:normal;padding:0;width:145px;height:40px;font-size:15px;margin:8px auto 0;font-family:"Eina01-SemiBold";font-weight:400;color:#fff;background:linear-gradient(270deg, #f37a21, #d31e47);border:none;transition:color 0.2s ease-in, background-color 0.2s ease-in, border-color 0.2s ease-in, box-shadow 0.2s ease-in;border-radius:48px;text-transform:capitalize}.product-tile .tile-bottom .tile-add-to-cart .add-to-cart i,.product-tile .tile-bottom .tile-add-to-cart .btn-go-details i{display:none}@media (min-width: 768px){.product-tile .tile-bottom .tile-add-to-cart .add-to-cart,.product-tile .tile-bottom .tile-add-to-cart .btn-go-details{width:213px;height:60px;font-size:20px;margin:10px auto 0}}@media (min-width: 1200px){.product-tile .tile-bottom .tile-add-to-cart .add-to-cart,.product-tile .tile-bottom .tile-add-to-cart .btn-go-details{width:170px;height:48px;font-size:16px;margin:8px auto 0}}.product-tile .tile-bottom .tile-add-to-cart .add-to-cart:hover,.product-tile .tile-bottom .tile-add-to-cart .btn-go-details:hover{background:#fff;color:#f37a21;border:2px solid #f37a21}.product-tile .has-more-color-icon{display:inline-block;margin-left:5px;font-family:"Eina01-SemiBold";font-size:16px}.tile-body.tile-body-top-right{display:none}.swiper-wrapper{position:relative;width:100%;height:auto;z-index:1;display:-ms-flexbox;display:flex;transition-property:transform;box-sizing:content-box}.swiper-slide{-ms-flex-negative:0;flex-shrink:0;width:100%;height:auto;position:relative;transition-property:transform}.swiper-grid-column>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.swiper{position:relative;overflow:hidden}.swiper.swiper-grid .swiper-wrapper{display:-ms-grid;display:grid;-ms-grid-rows:1fr 1fr;grid-template-rows:1fr 1fr;grid-auto-flow:column}.swiper .swiper-slide{-ms-flex-negative:0;flex-shrink:0;padding:12px 10px;width:100%}@media (min-width: 1200px){.swiper .swiper-slide{padding:0 20px}}.swiper .swiper-slide .product{height:100%}.swiper .swiper-button-prev,.swiper .swiper-button-next{background-color:#f37a21;position:absolute;outline:none;border-radius:50%;bottom:50%;transform:translateY(100%);left:0;width:40px;height:40px;cursor:pointer;z-index:30}.swiper .swiper-button-prev span,.swiper .swiper-button-next span{display:none}.swiper .swiper-button-prev.disabled,.swiper .swiper-button-next.disabled{background-color:#999;cursor:default}.swiper .swiper-button-prev::before,.swiper .swiper-button-next::before{font-family:"AT-icons" !important;content:"\E90D";font-size:16px;color:#fff;display:block;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.swiper .swiper-button-prev::after,.swiper .swiper-button-next::after{display:none}@media (min-width: 1200px){.swiper .swiper-button-prev,.swiper .swiper-button-next{left:-20px}}.swiper .swiper-button-next{left:initial;right:0}.swiper .swiper-button-next::before{content:"\E90E"}@media (min-width: 1200px){.swiper .swiper-button-next{left:initial;right:-20px}}.home-product-list{padding-top:20px;position:relative}.home-product-list .swiper-button-prev,.home-product-list .swiper-button-next{background-color:#f37a21;position:absolute;outline:none;border-radius:50%;bottom:50%;transform:translateY(100%);left:0;width:40px;height:40px;cursor:pointer;z-index:30}.home-product-list .swiper-button-prev span,.home-product-list .swiper-button-next span{display:none}.home-product-list .swiper-button-prev.disabled,.home-product-list .swiper-button-next.disabled{background-color:#999;cursor:default}.home-product-list .swiper-button-prev::before,.home-product-list .swiper-button-next::before{font-family:"AT-icons" !important;content:"\E90D";font-size:16px;color:#fff;display:block;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}.home-product-list .swiper-button-prev::after,.home-product-list .swiper-button-next::after{display:none}@media (min-width: 1200px){.home-product-list .swiper-button-prev,.home-product-list .swiper-button-next{left:-35px}}.home-product-list .swiper-button-prev.disable-swiper-nav,.home-product-list .swiper-button-next.disable-swiper-nav{display:none}.home-product-list .swiper-button-next{left:initial;right:0}.home-product-list .swiper-button-next::before{content:"\E90E"}@media (min-width: 1200px){.home-product-list .swiper-button-next{left:initial;right:-35px}}.section-hero-slider{position:relative;min-height:120vw;max-height:120vw}@media (min-width: 992px){.section-hero-slider{min-height:41vw;max-height:41vw}}.section-hero-slider .container-fluid{padding-left:0;padding-right:0}.section-hero-slider .container-fluid .owl-item>div:first-child>a{min-width:100%;min-height:120vw}@media (min-width: 992px){.section-hero-slider .container-fluid .owl-item>div:first-child>a{min-height:41vw}}.section-hero-slider .container-fluid .owl-item>div:first-child>a img{min-height:120vw}@media (min-width: 992px){.section-hero-slider .container-fluid .owl-item>div:first-child>a img{min-height:41vw}}.section-hero-slider .container-fluid .owl-item>div:first-child>iframe{min-height:120vw}@media (min-width: 992px){.section-hero-slider .container-fluid .owl-item>div:first-child>iframe{min-height:41vw}}.section-hero-slider .btn-down{position:absolute;z-index:3;bottom:1rem;left:50%;color:#fff;height:auto;line-height:1;border:none;font-weight:normal;padding:0;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;animation-direction:alternate;-webkit-animation-direction:alternate;transform:translateX(-50%);animation-name:customBounceUpDown;animation-duration:.7s}@media (min-width: 992px){.section-hero-slider .btn-down{bottom:1.429rem}}.section-hero-slider .btn-down::before{content:"\E90B";font-family:"AT-icons";position:absolute;z-index:2;display:block;left:50%;bottom:0;font-size:14px;transform:translateX(-50%)}.hero-banner{background-color:#fff;overflow:hidden}@media (min-width: 768px){.hero-banner{max-height:121vw}}@media (min-width: 992px){.hero-banner{max-height:42vw}}@media (min-width: 1200px){.hero-banner{max-height:41.2vw}}.hero-banner img,.hero-banner picture{max-width:100%}.hero-banner.owl-carousel{display:block}.hero-banner.owl-carousel:not(.owl-loaded) div a{min-width:100%;min-height:120vw}@media (min-width: 992px){.hero-banner.owl-carousel:not(.owl-loaded) div a{min-height:41vw}}.hero-banner.owl-carousel:not(.owl-loaded) div a img{min-height:120vw}@media (min-width: 992px){.hero-banner.owl-carousel:not(.owl-loaded) div a img{min-height:41vw}}.hero-banner.owl-carousel:not(.owl-loaded) div iframe{min-height:120vw}@media (min-width: 992px){.hero-banner.owl-carousel:not(.owl-loaded) div iframe{min-height:41vw}}.hero-banner.owl-loaded{overflow:initial}.hero-banner.owl-loaded .hero-banner-info{display:block}.hero-banner .owl-item.active .hero-banner-info h2,.hero-banner .owl-item.active .hero-banner-info p,.hero-banner .owl-item.active .hero-banner-info .btn-more{animation-duration:.4s;animation-fill-mode:both;animation-name:customFadeInUp}.hero-banner .owl-item.active .hero-banner-info h2{animation-delay:.7s}.hero-banner .owl-item.active .hero-banner-info p{animation-delay:.8s}.hero-banner .owl-item.active .hero-banner-info .btn-more{animation-delay:.9s}.hero-banner .hero-banner-info{position:absolute;z-index:5;color:#fff;display:none}.hero-banner .hero-banner-info.center-info{top:70%;left:50%;text-align:center;transform:translate(-50%, -50%)}@media (min-width: 768px){.hero-banner .hero-banner-info.center-info{top:63%}}@media (min-width: 992px){.hero-banner .hero-banner-info.center-info{top:73%}}@media (min-width: 1200px){.hero-banner .hero-banner-info.center-info{top:70%}}.hero-banner .hero-banner-info.left-info{left:2.5em;top:9em}@media (min-width: 768px){.hero-banner .hero-banner-info.left-info{top:50%;left:8%;transform:translateY(-50%)}}.hero-banner .hero-banner-info.right-info{right:2.5em;top:9em;text-align:right}@media (min-width: 768px){.hero-banner .hero-banner-info.right-info{top:50%;right:8%;transform:translateY(-50%)}}.hero-banner .hero-banner-info h2{font-size:2.643rem;color:#fff;margin-bottom:0.5em;font-family:"Eina01-Bold";white-space:nowrap}@media (min-width: 992px){.hero-banner .hero-banner-info h2{font-size:2.8571rem}}@media (min-width: 1600px){.hero-banner .hero-banner-info h2{font-size:3.7143rem}}.hero-banner .hero-banner-info p{margin-bottom:2.514em}@media (min-width: 1600px){.hero-banner .hero-banner-info p{font-size:1.1429rem}}.hero-banner .btn-more{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;min-width:7em;line-height:0.305rem;font-family:"Eina01-Bold";font-size:1.0714rem}.hero-banner .btn-more:hover,.hero-banner .btn-more:focus{cursor:pointer}.hero-banner .btn-more:hover{color:#fff;background-color:#272727;border-color:#272727}@media (min-width: 1200px){.hero-banner .btn-more{font-size:1.2143rem}}@media (min-width: 1600px){.hero-banner .btn-more{font-size:1.4286rem}}.hero-banner .owl-dots{position:absolute;left:0;right:0;bottom:3.571rem;z-index:2;text-align:center}@media (min-width: 992px){.hero-banner .owl-dots{bottom:4.286rem}}.hero-banner .owl-dots .owl-dot{display:inline-block;height:3px;width:20px;background:#fff;margin-left:0.357em;margin-right:0.357em;opacity:0.5;border-radius:10px}@media (min-width: 992px){.hero-banner .owl-dots .owl-dot{width:1.786rem;height:0.357rem}}@media (min-width: 1600px){.hero-banner .owl-dots .owl-dot{width:30px;height:6px;margin:1em 0.814em}}.hero-banner .owl-dots .owl-dot.active{opacity:1}.hero-banner .fadeInSlide{animation-duration:.5s;animation-fill-mode:both;animation-name:fadeInSlide}.hero-banner .fadeOut{animation-duration:.5s}.hero-banner .fadeOut .hero-banner-info h2,.hero-banner .fadeOut .hero-banner-info p,.hero-banner .fadeOut .hero-banner-info .btn-more{animation-duration:.5s;animation-fill-mode:both;animation-name:customFadeOutUp}.hero-banner .owl-stage{display:-ms-flexbox;display:flex;display:-ms-flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.hero-banner .owl-item>div{display:-ms-flexbox;display:flex;display:-ms-flex;-ms-flex-pack:center;justify-content:center;overflow:hidden;width:100%}.hero-banner .owl-item>div>div:first-child{width:100%}@media (min-width: 1600px){.hero-banner .owl-item img{width:auto}}.hero-banner .owl-item .video{position:relative;z-index:-1;width:100vw;height:101%;pointer-events:none;min-width:300vw;min-height:120vw}@media (min-width: 992px){.hero-banner .owl-item .video{min-width:100vw;min-height:41vw}}@media (min-width: 1600px){.hero-banner .owl-item .video{min-width:101vw}}.section-hero-slider{position:relative;z-index:1}.section-hero-slider .container-fluid{overflow:hidden}.section-hero-slider .swiper-slide figure{margin-bottom:0}.section-hero-slider .swiper-slide figure img{width:100%}.section-hero-slider .swiper-slide .hero-banner-info{display:block}.section-hero-slider .swiper-slide.swiper-slide-active .hero-banner-info h2,.section-hero-slider .swiper-slide.swiper-slide-active .hero-banner-info p,.section-hero-slider .swiper-slide.swiper-slide-active .hero-banner-info .btn-more{animation-duration:.4s;animation-fill-mode:both;animation-name:customFadeInUp}.section-hero-slider .swiper-slide.swiper-slide-active .hero-banner-info h2{animation-delay:.7s}.section-hero-slider .swiper-slide.swiper-slide-active .hero-banner-info p{animation-delay:.8s}.section-hero-slider .swiper-slide.swiper-slide-active .hero-banner-info .btn-more{animation-delay:.9s}.section-hero-slider .swiper-slide .has-video figure{width:100%;height:100%;position:absolute;left:0;top:0;z-index:0}.section-hero-slider .hero-banner{position:relative}.section-hero-slider .swiper-pagination-bullets{position:absolute;bottom:47px;left:0;z-index:5;width:100%;display:-ms-flexbox;display:flex;background-color:transparent;-ms-flex-pack:center;justify-content:center;gap:15px}@media (min-width: 768px){.section-hero-slider .swiper-pagination-bullets{gap:20px}}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet{width:18px;height:18px;border-radius:50%;border:3px solid transparent;position:relative;cursor:pointer}@media (min-width: 768px){.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet{width:20px;height:20px}}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:first-child,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(12){border-color:#d31e47}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(12).swiper-pagination-bullet-active{background-color:#d31e47}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2),.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(11){border-color:#f37a21}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2).swiper-pagination-bullet-active,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(11).swiper-pagination-bullet-active{background-color:#f37a21}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3),.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(10){border-color:#ffc113}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(10).swiper-pagination-bullet-active{background-color:#ffc113}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(4),.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(9){border-color:#81c341}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(9).swiper-pagination-bullet-active{background-color:#81c341}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5),.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(8){border-color:#6ac6b1}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(8).swiper-pagination-bullet-active{background-color:#6ac6b1}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5),.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(7){border-color:#04559f}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(7).swiper-pagination-bullet-active{background-color:#04559f}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(6){border-color:#c21c8a}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet:nth-child(6).swiper-pagination-bullet-active{background-color:#c21c8a}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon::after{content:"";width:0;height:0;display:block;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #d31e47;position:absolute;left:50%;top:50%;transform:translate(-30%, -50%);transition:all 0.5s ease;z-index:40}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:first-child::after,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(12)::after{border-left-color:#d31e47}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(2)::after,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(11)::after{border-left-color:#f37a21}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(3)::after,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(10)::after{border-left-color:#ffc113}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(4)::after,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(9)::after{border-left-color:#81c341}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(5)::after,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(8)::after{border-left-color:#6ac6b1}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(5)::after,.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(7)::after{border-left-color:#04559f}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.video-icon:nth-child(6)::after{border-left-color:#c21c8a}.section-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active.video-icon::after{border-left-color:#fff}.section-hero-slider .homepage-banner{height:119vw;background-color:#fff}@media (min-width: 992px){.section-hero-slider .homepage-banner{height:42vw}}@media (min-width: 1200px){.section-hero-slider .homepage-banner{height:41vw}}.section-hero-slider .homepage-banner .video-wrapper{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;width:100%;overflow:hidden;position:relative;z-index:3}.section-hero-slider .homepage-banner .video{min-height:123vw;top:0;left:0;height:101%;width:100vw;pointer-events:none;border:none;min-width:300vw}@media (min-width: 768px){.section-hero-slider .homepage-banner .video{min-height:121vw}}@media (min-width: 992px){.section-hero-slider .homepage-banner .video{height:42.2vw;min-height:unset}}@media (min-width: 1600px){.section-hero-slider .homepage-banner .video{height:41.6vw}}.section-new-arrivals{margin-bottom:51px;margin-top:8px}@media (min-width: 768px){.section-new-arrivals{margin-top:0}}@media (min-width: 1200px){.section-new-arrivals{margin-top:0;margin-bottom:2vw}}@media (min-width: 1200px){.section-new-arrivals .container{padding-left:0;padding-right:0}}@media (min-width: 1200px){.section-new-arrivals .container{max-width:1170px}}@media (min-width: 1600px){.section-new-arrivals .container{max-width:1280px}}.section-new-arrivals h2.heading-title{text-align:center;margin:0 auto;max-width:360px;height:254px;top:-154px;margin-bottom:-154px;display:-ms-flexbox;display:flex;position:relative;padding:20px 10px 50px;color:#fff;font-family:"Eina01-Bold";font-size:26pt;border-radius:50%;background-color:#f37a21;-ms-flex-pack:center;justify-content:center;-ms-flex-align:end;align-items:flex-end;z-index:0}@media (min-width: 992px){.section-new-arrivals h2.heading-title{border-radius:0 0 600px 600px;padding:35px 10px 60px;max-width:700px;height:460px;top:-321px;margin-bottom:-321px}}@media (min-width: 1200px){.section-new-arrivals h2.heading-title{border-radius:0 0 25vw 25vw;padding:1.4vw 8px 1.7vw;max-width:29.4vw;height:19.3vw;top:-15vw;margin-bottom:-15vw;font-size:1.4vw}}.section-new-arrivals .list-new-arrivals{margin-top:20px;position:relative}@media (min-width: 1200px){.section-new-arrivals .list-new-arrivals{padding:0 20px;margin-top:0}}@media (min-width: 1600px){.section-new-arrivals .list-new-arrivals{padding:0 20px;margin-top:20px}}.section-new-arrivals .list-new-arrivals .home-product-list{position:unset;margin-bottom:-1vw}.section-new-arrivals .list-new-arrivals .btn-viewall{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-weight:400;line-height:normal;padding:0;width:145px;height:40px;font-size:15px;margin:0 auto;font-family:"Eina01-SemiBold";font-weight:400;color:#fff;background:linear-gradient(270deg, #f37a21, #d31e47);border:none;transition:color 0.2s ease-in, background-color 0.2s ease-in, border-color 0.2s ease-in, box-shadow 0.2s ease-in;border-radius:48px;text-transform:capitalize}@media (min-width: 768px){.section-new-arrivals .list-new-arrivals .btn-viewall{width:213px;height:60px;font-size:20px}}@media (min-width: 1200px){.section-new-arrivals .list-new-arrivals .btn-viewall{width:8.3vw;height:2.2vw;font-size:12.8px;margin-top:0.8vw}}.section-new-arrivals .list-new-arrivals .btn-viewall:hover{background:#fff;color:#f37a21;border:2px solid #f37a21}.section-new-arrivals .home-revamp-products-w{opacity:0}.section-new-arrivals .home-revamp-products-w .home-revamp-products-w-owl{padding-left:10px;padding-right:10px}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.section-best-sellers .title-head{font-family:"Eina01-Bold";background-color:#f37a21;padding:57px 0 17px;margin-bottom:0;position:relative;font-size:26pt;font-weight:bold;text-transform:capitalize;color:#fff;text-align:center}.section-best-sellers .title-head::before{background-color:#d31e47;height:14px;display:block;content:"";width:100%;position:absolute;top:0;left:0}.section-best-sellers .title-head::after{background-color:#e15741;display:block;content:"";height:30px;width:100%;position:absolute;top:14px;left:0}@media (min-width: 768px){.section-best-sellers .title-head{padding:101px 0 30px}.section-best-sellers .title-head::before{height:27px}.section-best-sellers .title-head::after{position:absolute;top:27px;height:55px}}@media (min-width: 1200px){.section-best-sellers .title-head{font-size:20pt;padding:40px 0 15px}.section-best-sellers .title-head::before{height:8.8px}.section-best-sellers .title-head::after{position:absolute;top:8.8px;height:20px}}.section-best-sellers .video-wrapper{width:100%;overflow:hidden;box-shadow:3px 3px 10px 0 rgba(157,157,157,0.3);position:relative;height:56vw;border-radius:0 0 100px 100px}.section-best-sellers .video-wrapper img{width:100%;height:56vw;object-fit:cover}.section-best-sellers .video-wrapper .thumb-video{width:100%;height:100%}.section-best-sellers .video-wrapper .thumb-video .video-best-sellers{top:0;left:0;width:100%;position:absolute}.section-best-sellers .video-wrapper .thumb-video .video-best-sellers.mobile,.section-best-sellers .video-wrapper .thumb-video .video-best-sellers.tablet{display:none}.section-best-sellers .video-wrapper .thumb-video .iframe-best-sellers{top:0;left:0;width:100%;height:56vw;position:absolute}.section-best-sellers .video-wrapper .thumb-video .iframe-best-sellers.mobile,.section-best-sellers .video-wrapper .thumb-video .iframe-best-sellers.tablet{display:none}.section-best-sellers .video-wrapper .btn-controls-video{width:100%;height:100%;position:absolute;top:0;left:0;background-color:#fff0;border:none;z-index:3;cursor:pointer;outline:none;border-radius:0 0 100px 100px}.section-best-sellers .video-wrapper .btn-controls-video span{display:none}.section-best-sellers .video-wrapper .btn-controls-video.isPaused::after{content:url("../../../images/play-btn-mobile.svg");display:block;position:absolute;top:40%;left:50%;transform:translate(-50%, -50%)}@media (min-width: 768px){.section-best-sellers .video-wrapper,.section-best-sellers .video-wrapper img,.section-best-sellers .video-wrapper .iframe-best-sellers{height:42vw}.section-best-sellers .video-wrapper .thumb-video .video-best-sellers{top:-16%}}@media (min-width: 1200px){.section-best-sellers .video-wrapper,.section-best-sellers .video-wrapper img,.section-best-sellers .video-wrapper .iframe-best-sellers{height:18.8vw}.section-best-sellers .video-wrapper,.section-best-sellers .video-wrapper .btn-controls-video{border-radius:0 0 234px 234px}.section-best-sellers .video-wrapper .thumb-video .video-best-sellers{top:-65%}}.section-best-sellers .home-best-seller-wrapper{position:relative;padding-bottom:331px;border-radius:0 0 100px 100px;box-shadow:0 9px 10px 0 rgba(208,208,208,0.3)}.section-best-sellers .home-best-seller-wrapper .home-best-seller{width:320px;margin:0 auto;position:absolute;bottom:0;left:50%;transform:translate(-50%, -12%)}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper .home-best-seller{width:450px}}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller{transform:translate(-50%, 0);width:360px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper.swiper{overflow:initial}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-wrapper{display:-ms-flexbox;display:flex}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-wrapper .swiper-slide{-ms-flex-negative:0;flex-shrink:0;padding:0 10px;width:100%;position:relative;z-index:1}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-wrapper .swiper-slide.swiper-slide-active{z-index:2}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-wrapper .swiper-slide:not(:first-child){opacity:0}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next{bottom:162px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev.disabled,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next.disabled{background-color:#f37a21;cursor:pointer}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev::before,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next::before{font-family:"AT-icons" !important;content:"\E90D";font-size:16px;color:#fff;display:block;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next{left:-25px;bottom:200px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev::before,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next::before{font-size:20px}}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next{width:32px;height:32px;bottom:160px;left:-20px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-prev::before,.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next::before{font-size:16px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next{left:initial;right:0}.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next::before{content:"\E90E"}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .bestSellerSwiper .swiper-button-next{right:-20px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations h2.title{display:none}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile{padding-top:36px;padding-bottom:17px;-ms-flex-pack:end;justify-content:flex-end}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container{position:relative;top:10px;z-index:2}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container .tile-image{max-width:165px;min-height:247px}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container{top:40px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container .tile-image{max-width:245px}}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container{padding:0}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container a{padding:30px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container .tile-image{max-width:80%}}@media (min-width: 1600px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .image-container .tile-image{max-width:100%}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .tile-body-field-group div[data-pwr-itemid]{display:block}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .tile-body-field-group{max-width:240px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star{display:block;-ms-flex-order:-1;order:-1;margin:0 auto 11px;max-height:28px;top:8px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star:has(section.pr-no-reviews){display:none;margin:0}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .p-w-r{padding-top:0}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .p-w-r+.p-w-r{display:none !important}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-snippet{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;min-width:154px;height:28px;padding:0 6px;position:relative;background:#fff;border-radius:9px;box-shadow:0 3px 3px 0 rgba(0,0,0,0.16)}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-rating-stars{display:none}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-snippet-rating-decimal{display:block;border:none;color:#999;font-size:13px;font-family:'Eina01-SemiBold';padding-right:20px;position:relative}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-snippet-rating-decimal::after{content:url("../../../images/star-rating.svg");display:block;width:18px;height:18px;position:absolute;right:0;top:50%;transform:translateY(-50%)}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-snippet-rating-decimal{font-size:12px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-category-snippet__total{display:block;font-family:"Eina01-SemiBold";position:relative;color:#999;padding:4px;font-size:13px;-ms-flex-negative:0;flex-shrink:0;margin-left:5px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-category-snippet__total::before{content:"(";position:absolute;display:block;left:0;top:4px}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-category-snippet__total::after{content:")";position:absolute;display:block;right:0;top:4px}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-category-snippet__total{font-size:12px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-no-reviews .pr-snippet{display:block}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-no-reviews .pr-snippet .pr-snippet-stars-png{display:none}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-no-reviews .pr-category-snippet__total{font-family:"Eina01-SemiBold";font-size:14px;margin-left:0}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-no-reviews .pr-category-snippet__total{font-size:12px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-no-reviews .pr-category-snippet__total::before,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star .pr-no-reviews .pr-category-snippet__total::after{display:none}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .rating-star{top:0}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .product-collection,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body .pdp-link{position:relative;z-index:3}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-body{padding-bottom:10px}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .quantity{display:none}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-actions-color-attributes{position:initial}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .add-to-cart,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .notify-me,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .btn-go-details{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-weight:400;line-height:normal;padding:0;width:145px;height:40px;font-size:15px;margin:8px auto 0;font-family:"Eina01-SemiBold";font-weight:400;color:#fff;background:linear-gradient(270deg, #f37a21, #d31e47);border:none;transition:color 0.2s ease-in, background-color 0.2s ease-in, border-color 0.2s ease-in, box-shadow 0.2s ease-in;border-radius:48px;text-transform:capitalize;box-shadow:none;opacity:1}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .add-to-cart i,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .notify-me i,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .btn-go-details i{display:none}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .add-to-cart,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .notify-me,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .btn-go-details{width:213px;height:50px;font-size:20px;margin:5px auto 0}}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .add-to-cart,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .notify-me,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .btn-go-details{width:8.3vw;height:2vw;font-size:12.8px;margin:0.3vw auto 0}}.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .add-to-cart:hover,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .notify-me:hover,.section-best-sellers .home-best-seller-wrapper .home-best-seller .product-recommendations .product-tile .tile-bottom .tile-add-to-cart .btn-go-details:hover{background:#fff;color:#f37a21;border:2px solid #f37a21}@media (min-width: 768px){.section-best-sellers .home-best-seller-wrapper{padding-bottom:460px}}@media (min-width: 1200px){.section-best-sellers .home-best-seller-wrapper{padding-bottom:13.8vw;border-radius:0 0 12.3vw 12.3vw}}@media (min-width: 1600px){.section-best-sellers .home-best-seller-wrapper{padding-bottom:16.8vw}}.section-category-plps{position:relative;top:15px}@media (min-width: 768px){.section-category-plps{top:60px}}@media (min-width: 992px){.section-category-plps{top:0;padding-top:166px;padding-bottom:94px}}@media (min-width: 1200px){.section-category-plps{padding-top:132.8px;padding-bottom:75.2px}}@media (min-width: 992px){.section-category-plps__container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:40px;max-width:960px;margin-left:auto;margin-right:auto}}@media (min-width: 1200px){.section-category-plps__container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:40px;max-width:1140px;margin-left:auto;margin-right:auto;max-width:1170px;width:100%}}@media (min-width: 1600px){.section-category-plps__container{max-width:1280px}}.section-category-plps__heading{color:#d31e47;text-align:center;font-size:32pt;font-family:"Eina01-Bold";font-weight:400;line-height:1.2;margin-top:15px}@media (min-width: 768px){.section-category-plps__heading{font-size:40pt;font-weight:400;line-height:1.14;margin-top:0}}@media (min-width: 992px){.section-category-plps__heading{text-align:left;-ms-flex-negative:0;flex-shrink:0;max-width:23%;font-size:26pt;margin-right:45px}}@media (min-width: 1200px){.section-category-plps__heading{font-size:20pt}}.section-category-plps__list{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;margin-top:10px;margin-bottom:-35px}@media (min-width: 992px){.section-category-plps__list{-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-negative:0;flex-shrink:0;width:calc(76% - 40px);margin-bottom:0}}.section-category-plps__item{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;width:40%;height:201px;padding:25px 20px;gap:8px;border-radius:25px}@media (min-width: 768px){.section-category-plps__item{height:360px}}@media (min-width: 992px){.section-category-plps__item{width:33.3%;border-radius:43px;-ms-flex-pack:end;justify-content:flex-end;gap:30px}}@media (min-width: 1600px){.section-category-plps__item{height:370px}}.section-category-plps__item:first-child{background-color:#e15741;position:relative;z-index:1;transform:translate(95%, 65%) rotate(-10deg)}.section-category-plps__item:first-child.animateFanOut{animation-name:animateFanOutTop;animation-duration:2s;animation-iteration-count:1;animation-fill-mode:both}@media (min-width: 992px){.section-category-plps__item:first-child{transform:translate(95%, -25%) rotate(-5deg)}.section-category-plps__item:first-child.animateFanOut{animation-name:animateFanOutLeft;animation-duration:2s;animation-iteration-count:1;animation-fill-mode:both}}.section-category-plps__item:nth-child(2){background-color:#f37a21;z-index:2;-ms-flex-item-align:end;align-self:flex-end;position:relative;transform:translate(-50%, -30%) rotate(0deg);transform:translate(-26%, -30%) rotate(6deg)}@media (min-width: 992px){.section-category-plps__item:nth-child(2){transform:translateY(-20%) rotate(0deg)}.section-category-plps__item:nth-child(2).animateFanOut{animation-name:animateFanOutCenter;animation-duration:2s;animation-iteration-count:1;animation-fill-mode:both}}.section-category-plps__item:last-child{background-color:#d31e47;transform:translate(105%, -135%) rotate(10deg);position:relative;z-index:1}.section-category-plps__item:last-child.animateFanOut{animation-name:animateFanOutBottom;animation-duration:2s;animation-iteration-count:1;animation-fill-mode:both}@media (min-width: 992px){.section-category-plps__item:last-child{transform:translate(-95%, -25%) rotate(5deg)}.section-category-plps__item:last-child.animateFanOut{animation-name:animateFanOutRight;animation-duration:2s;animation-iteration-count:1;animation-fill-mode:both;z-index:3}}.section-category-plps__thumb{width:100%;height:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}@media (min-width: 992px){.section-category-plps__thumb__first{transform:rotate(0deg)}.section-category-plps__thumb__first:hover img{transform:scale(1.1)}.section-category-plps__thumb__middle{transform:rotate(0deg)}.section-category-plps__thumb__middle:hover img{transform:scale(1.1)}.section-category-plps__thumb__last{transform:rotate(0deg)}.section-category-plps__thumb__last:hover img{transform:scale(1.1)}}.section-category-plps__img{object-fit:cover;height:auto;width:75%;margin:auto;display:block;transition:ease 0.2s}@media (min-width: 992px){.section-category-plps__img{max-width:75%;width:initial}}@media (min-width: 1600px){.section-category-plps__img{max-width:80%}}.section-category-plps__name{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;position:relative;gap:6px}@media (min-width: 768px){.section-category-plps__name{gap:12px}}.section-category-plps__name span{font-family:"Eina01-SemiBold";color:#fff;font-size:10px;text-transform:uppercase;font-weight:400}@media (min-width: 768px){.section-category-plps__name span{font-size:20px}}@media (min-width: 992px){.section-category-plps__name span{font-size:25px}}@media (min-width: 992px){.section-category-plps__name span{font-size:16px}}@media (min-width: 1600px){.section-category-plps__name span{font-size:20px}}.section-category-plps__icon{width:20px;height:20px;border-radius:50%;background-color:#d31e47;position:relative}.section-category-plps__icon::after{font-family:"AT-icons" !important;content:"\E90E";color:#fff;display:block;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%)}@media (min-width: 768px){.section-category-plps__icon{width:40px;height:40px}}@media (min-width: 1200px){.section-category-plps__icon{width:32px;height:32px}}.section-category-plps__icon__last{background-color:#f37a21}@keyframes animateFanOutLeft{from{transform:translate(95%, -25%) rotate(-5deg)}to{transform:translate(5%, -10%) rotate(-18.948deg)}}@keyframes animateFanOutCenter{from{transform:translateY(-20%) rotate(0deg)}to{transform:translateY(-20%) rotate(5.247deg)}}@keyframes animateFanOutRight{from{transform:translate(-95%, -25%) rotate(5deg)}to{transform:translateX(-10%) rotate(20.344deg)}}@keyframes animateFanOutTop{from{transform:translate(95%, 65%) rotate(-10deg)}to{transform:translate(25%, 15%) rotate(-20deg)}}@keyframes animateFanOutMiddle{from{transform:translate(-50%, -30%) rotate(0deg)}to{transform:translate(-35%, -30%) rotate(6deg)}}@keyframes animateFanOutBottom{from{transform:translate(105%, -135%) rotate(10deg)}to{transform:translate(40%, -60%) rotate(-10deg)}}.section-editorials{position:relative}@media (min-width: 992px){.section-editorials{height:22vw;margin-bottom:76px}}.section-editorials .editorials-list{width:100%;overflow:hidden}@media (min-width: 992px){.section-editorials .content-box{position:absolute;top:10%;padding:0 12%}}@media (min-width: 1200px){.section-editorials .content-box{top:12%}}.section-editorials .editorial-content a{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.section-editorials .editorial-content a .thumb{height:77vw;-ms-flex-negative:0;flex-shrink:0;background-image:var(--background);background-position:center;background-size:169%;background-repeat:no-repeat}@media (min-width: 992px){.section-editorials .editorial-content a .thumb{height:22vw;background-size:cover}}.section-editorials .content-box{box-shadow:0 4.1px 6.3px -1.9px rgba(105,104,104,0.38);margin-bottom:30px}@media (min-width: 992px){.section-editorials .content-box{box-shadow:none;margin-bottom:0}}.section-editorials .main-content{margin-top:25px}@media (min-width: 768px){.section-editorials .main-content{max-width:400px;margin:50px auto 0}}@media (min-width: 992px){.section-editorials .main-content{margin-top:14px;padding:1.5vw 15px 2vw;background:rgba(255,255,255,0.5755);border-radius:35px;position:relative;margin-left:0;max-width:320px}}.section-editorials .main-content .desc{color:#3b3b3b;font-family:"Eina01-SemiBold";font-size:12px;line-height:1.25;max-width:300px;margin:auto;text-align:left;display:block;display:-webkit-box;-webkit-line-clamp:6;overflow:hidden;text-overflow:ellipsis}@media (min-width: 768px){.section-editorials .main-content .desc{line-height:1.35;max-width:360px;font-size:20px}}@media (min-width: 992px){.section-editorials .main-content .desc{font-size:12px;max-width:288px}}@media (min-width: 1200px){.section-editorials .main-content .desc{font-size:13px}}.section-editorials .sub-content{position:absolute;top:3%;left:0;padding:0 6%}@media (min-width: 992px){.section-editorials .sub-content{position:initial;padding:0 0 0 15px;max-width:550px}}@media (min-width: 1200px){.section-editorials .sub-content{max-width:440px}}.section-editorials .sub-content p{color:#fff;font-family:"Eina01-SemiBold";display:block;display:-webkit-box;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis}.section-editorials .sub-content p.order-number{font-size:16px}@media (min-width: 768px){.section-editorials .sub-content p.order-number{font-size:32px}}@media (min-width: 992px){.section-editorials .sub-content p.order-number{font-size:1vw}}.section-editorials .sub-content p.name{font-size:25px;text-shadow:0 3px 3px rgba(0,0,0,0.16);font-family:"Eina01-Bold"}@media (min-width: 768px){.section-editorials .sub-content p.name{font-size:50px}}@media (min-width: 992px){.section-editorials .sub-content p.name{font-size:1.67vw}}.section-editorials .editorials-swiper.swiper .swiper-wrapper .swiper-slide{padding:0}.section-editorials .editorials-swiper.swiper .swiper-button-prev,.section-editorials .editorials-swiper.swiper .swiper-button-next{top:26%;bottom:initial}@media (min-width: 768px){.section-editorials .editorials-swiper.swiper .swiper-button-prev,.section-editorials .editorials-swiper.swiper .swiper-button-next{width:50px;height:50px}}@media (min-width: 992px){.section-editorials .editorials-swiper.swiper .swiper-button-prev,.section-editorials .editorials-swiper.swiper .swiper-button-next{top:calc(50% - 50px)}}@media (min-width: 1200px){.section-editorials .editorials-swiper.swiper .swiper-button-prev,.section-editorials .editorials-swiper.swiper .swiper-button-next{width:40px;height:40px}}.section-editorials .editorials-swiper.swiper .swiper-button-prev{left:5%}.section-editorials .editorials-swiper.swiper .swiper-button-next{right:5%}.section-editorials .editorial-btn{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;margin:25px auto;width:145px;height:40px;font-family:"Eina01-Bold";font-size:15px;color:#fff;border:none;outline:none;border-radius:48px;background:linear-gradient(270deg, #f37a21, #d31e47);cursor:pointer}.section-editorials .editorial-btn:hover{background:#fff;color:#f37a21;border:2px solid #f37a21}@media (min-width: 768px){.section-editorials .editorial-btn{height:60px;width:213px;font-size:20px}}@media (min-width: 992px){.section-editorials .editorial-btn{width:8.3vw;height:2.2vw;font-size:12.8px;position:absolute;bottom:-1.1vw;left:50%;transform:translateX(-50%);margin:0}}.section-stay-social{margin-bottom:80px;min-height:165px}@media (min-width: 1200px){.section-stay-social{margin-top:7.6vw;margin-bottom:6.7vw}}@media (min-width: 1600px){.section-stay-social{margin-top:144px;margin-bottom:128px}}@media (min-width: 1200px){.section-stay-social .container{width:100%;max-width:1024px}}@media (min-width: 1600px){.section-stay-social .container{max-width:1280px}}.section-stay-social .main-content{padding:0 15px;position:relative}@media (min-width: 1200px){.section-stay-social .main-content{border-radius:41px;background:#efefef;box-shadow:10px 10px 5px 0 rgba(0,0,0,0.16)}}.section-stay-social .title{margin-left:-5px;font-family:"Eina01-Bold";color:#fff;font-size:22px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;border-radius:40px;background:#f37a21;width:250px;height:47px;margin-bottom:0}@media (min-width: 1200px){.section-stay-social .title{font-size:1.2vw;width:16vw;height:2.5vw;position:absolute;top:-4.2vw;left:-6vw}}@media (min-width: 1600px){.section-stay-social .title{font-size:18pt;width:340px;height:48px;position:absolute;top:-80px;left:-6vw}}.section-stay-social .sub-title{height:47px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;color:#ffc113;font-family:"Eina01-Bold";font-size:22px;background-color:#d31e47;border-radius:40px;position:relative;padding:0 15px}@media (min-width: 1200px){.section-stay-social .sub-title{font-size:1.2vw;height:2.5vw;position:absolute;top:-1.7vw;left:-4vw;padding:0 1.7vw}}@media (min-width: 1600px){.section-stay-social .sub-title{font-size:18pt;height:48px;position:absolute;top:-32px;left:-4vw;padding:0 32px}}@media (min-width: 1200px){.section-stay-social .sub-title span:first-of-type{height:2.5vw;line-height:2.4vw}}@media (min-width: 1600px){.section-stay-social .sub-title span:first-of-type{height:48px;line-height:42px}}.section-stay-social .email-tag{margin-left:auto;margin-top:-30px}@media (min-width: 1200px){.section-stay-social .email-tag{top:initial;left:initial;right:-6vw;bottom:-2.5vw}}@media (min-width: 1600px){.section-stay-social .email-tag{bottom:-48px}}.section-stay-social .social-tag{display:-ms-inline-flexbox;display:inline-flex;color:#ffc113;font-family:"Eina01-Bold";-ms-flex-pack:center;justify-content:center;border-radius:40px;height:47px;color:#fff;gap:5px;font-size:12px;position:absolute;right:10px;bottom:-47px;background:#f37a21;padding:0 30px;-ms-flex-align:center;align-items:center}@media (min-width: 1200px){.section-stay-social .social-tag{height:2.5vw;font-size:0.8vw;left:0;bottom:-2.5vw;right:unset;padding:0 1.5vw}}@media (min-width: 1600px){.section-stay-social .social-tag{height:48px;font-size:12.8px;left:0;bottom:-48px;right:unset;padding:0 32px}}.section-stay-social .social-tag img{height:30px}@media (min-width: 1200px){.section-stay-social .social-tag img{height:1.5vw}}@media (min-width: 1600px){.section-stay-social .social-tag img{height:28px}}.section-shop-products{margin-bottom:60px}@media (min-width: 1200px){.section-shop-products{margin-bottom:0;-webkit-user-select:none;-ms-user-select:none;user-select:none}}@media (min-width: 1600px){.section-shop-products{margin-bottom:32px}}.section-shop-products .slide-fade{opacity:0}@media (min-width: 1200px){.section-shop-products .container{padding-left:0;padding-right:0;max-width:1170px}}@media (min-width: 1600px){.section-shop-products .container{max-width:1280px}}.section-shop-products .title-heading{margin-bottom:0;font-family:"Eina01-Bold";color:#d31e47;font-size:26pt;font-weight:400;text-align:center}@media (min-width: 1200px){.section-shop-products .title-heading{font-size:20pt}}.section-shop-products .nav-tabs{margin:26px auto 10px;border-radius:40px;background:#efefef;width:100%;max-width:800px;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;border:none;gap:9px}@media (min-width: 768px){.section-shop-products .nav-tabs{margin-top:45px}}@media (min-width: 992px){.section-shop-products .nav-tabs{gap:19px}}@media (min-width: 1200px){.section-shop-products .nav-tabs{max-width:33vw;margin-top:1.2vw;gap:1vw}}@media (min-width: 1600px){.section-shop-products .nav-tabs{gap:14px;margin-top:36px;max-width:640px}}.section-shop-products .nav-tabs li{width:calc(33% - 5px)}@media (min-width: 992px){.section-shop-products .nav-tabs li{width:calc(33% - 10px)}}.section-shop-products .nav-tabs li .home-products-tab{font-family:"Eina01-SemiBold";color:#bfbfbf;font-size:11px;padding:10px 2px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;border-radius:40px;transition:0.2s ease}.section-shop-products .nav-tabs li .home-products-tab:hover{color:#d31e47}.section-shop-products .nav-tabs li .home-products-tab.active{color:#fff;background-color:#d31e47;box-shadow:1.5px 1.5px 1px 0 rgba(110,110,110,0.78)}@media (min-width: 768px){.section-shop-products .nav-tabs li .home-products-tab{font-size:20px}}@media (min-width: 992px){.section-shop-products .nav-tabs li .home-products-tab{padding:16px 5px;font-size:24px}.section-shop-products .nav-tabs li .home-products-tab.active{box-shadow:3px 3px 1.5px 0 rgba(110,110,110,0.78)}}@media (min-width: 1200px){.section-shop-products .nav-tabs li .home-products-tab{font-size:1vw;padding:0.7vw 0.3px}}.section-shop-products .section-content{position:relative}@media (min-width: 1200px){.section-shop-products .section-content{margin-top:20px}}.section-shop-products .section-content .home-product-list{display:block;visibility:hidden;opacity:0;position:absolute;left:0;right:0;top:0;bottom:0;transition:0.3s ease-in}@media (min-width: 1200px){.section-shop-products .section-content .home-product-list{padding:0 20px}}.section-shop-products .section-content .home-product-list.tab-pane.active{visibility:visible;opacity:1;position:static}.section-shop-products .section-content .home-product-list.tab-pane.active img{animation-duration:1s;animation-fill-mode:both;animation-name:aniFadeIn}.section-shop-products .section-content .home-product-list .image-container .tile-image{transition:0.3s ease-in}@media (min-width: 768px){.swiper .tile-item-slide{height:100%}}.section-home-footer{padding-top:5%}.section-home-footer .home-why-shop-with-us{position:relative;z-index:1}.section-home-footer .home-why-shop-with-us::before{content:'';display:block;width:100%;height:100%;position:absolute;z-index:-1;left:0;top:0;background:linear-gradient(to right, #d11e47,#ef7922);background:-webkit-gradient(to right, #d11e47,#ef7922);background:-o-linear-gradient(to right, #d11e47,#ef7922);transform:skew(0deg, 4.7deg)}.section-home-footer .home-why-shop-with-us .container-fluid{padding-left:0;padding-right:0}.section-home-footer .home-why-shop-with-us .content{font-family:"CamphorW01-Regular";color:#fff;padding-top:2rem}@media (min-width: 992px){.section-home-footer .home-why-shop-with-us .content{padding-top:4rem;padding-bottom:2rem}}.section-home-footer .home-why-shop-with-us .content .image{margin-bottom:1em;padding-left:25px;padding-right:25px}.section-home-footer .home-why-shop-with-us .content .image img{height:60px;width:auto;max-width:70px}@media (min-width: 1600px){.section-home-footer .home-why-shop-with-us .content .image img{height:70px;max-width:80px}}.section-home-footer .home-why-shop-with-us .content h6{font-size:1.0714rem;font-family:"Eina01-Bold";margin-bottom:0.588em}@media (min-width: 1600px){.section-home-footer .home-why-shop-with-us .content h6{font-size:1.2857rem}}.section-home-footer .home-why-shop-with-us .content p{font-size:1rem;text-align:center}@media (min-width: 1600px){.section-home-footer .home-why-shop-with-us .content p{font-size:1.036rem}}@media (min-width: 992px){.section-home-footer .home-why-shop-with-us .item-skew{padding-bottom:1.5rem}}@media (min-width: 1200px){.section-home-footer .home-why-shop-with-us .item-skew{margin:0 auto;padding-top:1rem;padding-bottom:2.5rem}}.section-home-footer .home-why-shop-with-us .item-skew.has-animation.load-animation .image,.section-home-footer .home-why-shop-with-us .item-skew.has-animation.load-animation h6,.section-home-footer .home-why-shop-with-us .item-skew.has-animation.load-animation p{opacity:1;filter:alpha(opacity=1);animation-name:customFadeInUp;animation-duration:1s;animation-fill-mode:both}.section-home-footer .home-why-shop-with-us .item-skew.has-animation.load-animation .image{animation-delay:.2s}.section-home-footer .home-why-shop-with-us .item-skew.has-animation.load-animation h6{animation-delay:.5s}.section-home-footer .home-why-shop-with-us .item-skew.has-animation.load-animation p{animation-delay:.8s}.section-home-footer .home-why-shop-with-us .item-skew.has-animation .image,.section-home-footer .home-why-shop-with-us .item-skew.has-animation h6,.section-home-footer .home-why-shop-with-us .item-skew.has-animation p{opacity:0;filter:alpha(opacity=0)}.section-home-footer .home-why-shop-with-us ul{padding-left:0;margin-bottom:0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}@media (min-width: 992px){.section-home-footer .home-why-shop-with-us ul{position:relative;top:-2.5em}}.section-home-footer .home-why-shop-with-us ul li{list-style:none;text-align:center;margin-bottom:1.786em;position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}@media (min-width: 768px){.section-home-footer .home-why-shop-with-us ul li{padding-left:6rem;padding-right:6rem}}@media (min-width: 992px){.section-home-footer .home-why-shop-with-us ul li{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%;margin-bottom:0;padding-left:2em;padding-right:2em}.section-home-footer .home-why-shop-with-us ul li:nth-child(2){top:2.5em}.section-home-footer .home-why-shop-with-us ul li:nth-child(3){top:4.5em}.section-home-footer .home-why-shop-with-us ul li:nth-child(4){top:6.5em}}@media (min-width: 1600px){.section-home-footer .home-why-shop-with-us ul li{padding-left:4.2rem;padding-right:4.2rem}}.section-home-footer.homepage-revamp{padding-top:0;padding-left:20px;padding-right:20px}@media (min-width: 1200px){.section-home-footer.homepage-revamp{padding-left:0;padding-right:0}}.section-home-footer.homepage-revamp .home-why-shop-with-us::before{display:none}.section-home-footer.homepage-revamp .home-why-shop-with-us .content{padding-top:0;padding-bottom:0}@media (min-width: 1400px){.section-home-footer.homepage-revamp .home-why-shop-with-us .container{max-width:1250px}}.section-home-footer.homepage-revamp .home-why-shop-with-us .item-skew{background:#f37a21;border-radius:25px 25px 0 0;padding-top:42px;padding-bottom:20px}@media (min-width: 1200px){.section-home-footer.homepage-revamp .home-why-shop-with-us .item-skew{border-radius:78px 78px 0 0;padding-top:1.8vw;padding-bottom:1.4vw}}.section-home-footer.homepage-revamp .home-why-shop-with-us ul{top:0}.section-home-footer.homepage-revamp .home-why-shop-with-us ul li:nth-child(2),.section-home-footer.homepage-revamp .home-why-shop-with-us ul li:nth-child(3),.section-home-footer.homepage-revamp .home-why-shop-with-us ul li:last-child{top:0}.section-home-footer.homepage-revamp .home-why-shop-with-us ul li h6{font-size:16px}@media (min-width: 1200px){.section-home-footer.homepage-revamp .home-why-shop-with-us ul li h6{font-size:20px}}.section-home-footer.homepage-revamp .home-why-shop-with-us ul li p{font-size:12px;font-family:"Eina01-SemiBold"}@media (min-width: 1200px){.section-home-footer.homepage-revamp .home-why-shop-with-us ul li p{font-size:12.8px}}.section-brand-story{width:100%;position:relative;overflow:hidden}.section-brand-story .brand-story{padding:0}.section-brand-story .brand-story img{width:100%;max-width:100%;height:58vw;object-fit:cover}@media (min-width: 768px){.section-brand-story .brand-story img{height:22vw;object-position:0% 20%}}.section-brand-story .brand-story .brand-info{position:absolute;color:#fff;bottom:10px;left:20px;transform:initial;padding:0;top:10px}@media (min-width: 1200px){.section-brand-story .brand-story .brand-info{max-width:415px;top:unset;bottom:50px;left:14%}}.section-brand-story .brand-story .brand-info .brand-title{font-family:"Eina01-Bold";font-size:25px;letter-spacing:0;text-align:left}@media (min-width: 1200px){.section-brand-story .brand-story .brand-info .brand-title{font-size:32pt}}.section-brand-story .brand-story .brand-info .brand-text-details{margin-top:5px;font-family:"Eina01-SemiBold";font-size:12px;line-height:1.33;max-width:210px;text-align:left}@media (min-width: 1200px){.section-brand-story .brand-story .brand-info .brand-text-details{margin-top:8px;max-width:230px;font-size:12.8px;line-height:1.25}}.section-brand-story .brand-story .brand-info .brand-button{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;margin-right:auto;width:125px;height:40px;font-family:"Eina01-Bold";font-size:15px;color:#fff;border:none;outline:none;border-radius:48px;background:linear-gradient(270deg, #f37a21, #d31e47);cursor:pointer;position:absolute;bottom:0}.section-brand-story .brand-story .brand-info .brand-button:hover{background:#fff;color:#f37a21;border:2px solid #f37a21}@media (min-width: 1200px){.section-brand-story .brand-story .brand-info .brand-button{margin-top:10px;width:8.3vw;height:2.2vw;font-size:12.8px;position:relative}}.gwp-modal{padding-right:0 !important}.choose-bonus-product-dialog{right:0;position:absolute;max-width:100%;width:100%;overflow:visible;margin:0}@media (min-width: 768px){.choose-bonus-product-dialog{margin:0;max-width:29.25rem}}@media (min-width: 992px){.choose-bonus-product-dialog{max-width:32.143rem}}@media (min-width: 992px){.choose-bonus-product-dialog{margin-top:1em}}@media (min-width: 1600px){.choose-bonus-product-dialog{max-width:37.143rem}}.choose-bonus-product-dialog .modal-content{border:0}.choose-bonus-product-dialog .modal-header{background-color:#fff;border:0;padding:2.143rem 0 0;display:block;text-align:center;position:relative}@media (min-width: 1600px){.choose-bonus-product-dialog .modal-header{padding-top:3.286rem}}.choose-bonus-product-dialog .modal-header .close{float:none;margin:0;padding:0;position:absolute;color:#fff;text-shadow:none;line-height:normal;font-size:unset;top:1.071rem;right:1.071rem;outline:none;opacity:1;filter:alpha(opacity=1)}@media (min-width: 1200px){.choose-bonus-product-dialog .modal-header .close{top:auto;bottom:1.071rem;right:1.5rem}}@media (min-width: 1600px){.choose-bonus-product-dialog .modal-header .close{top:1.5rem;bottom:auto}}.choose-bonus-product-dialog .modal-header .close::before{content:"\E904";position:absolute;font-size:14px;background:linear-gradient(to right, #d11e47,#ef7922);background:-webkit-gradient(to right, #d11e47,#ef7922);background:-o-linear-gradient(to right, #d11e47,#ef7922);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent;font-family:"AT-icons";font-style:normal;font-weight:normal}.red-2-orange .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #d11e47,#ef7922);background:-webkit-gradient(to right, #d11e47,#ef7922);background:-o-linear-gradient(to right, #d11e47,#ef7922);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.yellow-2-green .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #ffc012,#80c242);background:-webkit-gradient(to right, #ffc012,#80c242);background:-o-linear-gradient(to right, #ffc012,#80c242);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.teal-2-blue .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #6ac5b0,#3292cf);background:-webkit-gradient(to right, #6ac5b0,#3292cf);background:-o-linear-gradient(to right, #6ac5b0,#3292cf);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.navy-2-purple .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #02549d,#c11c8a);background:-webkit-gradient(to right, #02549d,#c11c8a);background:-o-linear-gradient(to right, #02549d,#c11c8a);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.orange-2-red .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #d11e47,#ef7922);background:-webkit-gradient(to right, #d11e47,#ef7922);background:-o-linear-gradient(to right, #d11e47,#ef7922);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.green-2-yellow .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #ffc012,#80c242);background:-webkit-gradient(to right, #ffc012,#80c242);background:-o-linear-gradient(to right, #ffc012,#80c242);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.blue-2-teal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #6ac5b0,#3292cf);background:-webkit-gradient(to right, #6ac5b0,#3292cf);background:-o-linear-gradient(to right, #6ac5b0,#3292cf);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.purple-2-navy .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(to right, #02549d,#c11c8a);background:-webkit-gradient(to right, #02549d,#c11c8a);background:-o-linear-gradient(to right, #02549d,#c11c8a);display:initial;-webkit-background-clip:text;-webkit-text-fill-color:transparent}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.choose-bonus-product-dialog .modal-header .close::before{background:none !important;-webkit-text-fill-color:inherit}.logo-red .choose-bonus-product-dialog .modal-header .close::before{color:#d11e47}.logo-orange .choose-bonus-product-dialog .modal-header .close::before{color:#ef7922}.logo-yellow .choose-bonus-product-dialog .modal-header .close::before{color:#ffc012}.logo-green .choose-bonus-product-dialog .modal-header .close::before{color:#80c242}.logo-teal .choose-bonus-product-dialog .modal-header .close::before{color:#6ac5b0}.logo-blue .choose-bonus-product-dialog .modal-header .close::before{color:#3292cf}.logo-navy .choose-bonus-product-dialog .modal-header .close::before{color:#02549d}.logo-purple .choose-bonus-product-dialog .modal-header .close::before{color:#c11c8a}}.choose-bonus-product-dialog .modal-header span{font-size:1.5714rem;font-family:"Eina01-Bold"}@media (min-width: 1600px){.choose-bonus-product-dialog .modal-header span{font-size:1.4286rem}}.choose-bonus-product-dialog .bonus-header{text-align:center;padding-top:0.5rem}@media (min-width: 1600px){.choose-bonus-product-dialog .bonus-header{font-size:1.1429rem}}.choose-bonus-product-dialog .product-detail .product-name{font-size:14px;text-align:center;margin-top:0.8em;margin-bottom:0.5em}@media (min-width: 992px){.choose-bonus-product-dialog .product-detail .product-name::before{content:none}}.choose-bonus-product-dialog .product-detail .attributes{display:none}.choose-bonus-product-dialog .product-detail .attributes .bonus-product-price{margin-top:0 !important;padding-bottom:0.714rem}.choose-bonus-product-dialog .product-detail .bonus-product-price{margin-top:0 !important}.choose-bonus-product-dialog .product-detail .bonus-product-price .regular-price{text-decoration:line-through}.choose-bonus-product-dialog .product-detail .bonus-product-price .bonus-price{color:#d11e47}.choose-bonus-product-dialog .btn{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;padding:0.214rem 0.857rem;min-width:auto;width:auto;font-size:.857rem;margin-top:0;min-width:105px}.choose-bonus-product-dialog .btn:hover,.choose-bonus-product-dialog .btn:focus{cursor:pointer}@media (min-width: 1200px){.choose-bonus-product-dialog .btn{padding:0.314rem 0.957rem;min-width:107px}.choose-bonus-product-dialog .btn:hover{color:#fff;background-color:#272727;border-color:#272727}}@media (min-width: 1600px){.choose-bonus-product-dialog .btn{font-size:1rem;min-width:120px}}.choose-bonus-product-dialog .btn.selected{background-color:#272727;color:#fff;border-color:#272727}.choose-bonus-product-dialog .btn:disabled{cursor:default}@media (min-width: 1200px){.choose-bonus-product-dialog .btn:disabled:hover{background-color:#fff;color:#272727;border-color:#fff}}.choose-bonus-product-dialog .bonus-product-selection{padding-left:0.357rem;padding-bottom:0.357rem;text-align:center}.choose-bonus-product-dialog .modal-body{padding:1rem 2.2em 0.5rem;-ms-flex:auto;flex:auto;overflow:hidden;max-height:none}@media (min-width: 1200px){.choose-bonus-product-dialog .modal-body{max-height:none}}.choose-bonus-product-dialog .modal-body.d-flex{-ms-flex-pack:center;justify-content:center}.choose-bonus-product-dialog .modal-body .owl-nav .owl-prev,.choose-bonus-product-dialog .modal-body .owl-nav .owl-next{background-color:rgba(39,39,39,0.7);width:60px;height:60px;border-radius:50%}.choose-bonus-product-dialog .modal-body .owl-nav .owl-prev.disabled,.choose-bonus-product-dialog .modal-body .owl-nav .owl-next.disabled{background-color:rgba(39,39,39,0.4)}.choose-bonus-product-dialog .modal-body .owl-nav .owl-prev::before,.choose-bonus-product-dialog .modal-body .owl-nav .owl-next::before{font-family:"AT-icons" !important;color:#fff;left:auto;transform:translateY(-50%)}.choose-bonus-product-dialog .modal-body .owl-nav .owl-prev{left:-2.286rem}.choose-bonus-product-dialog .modal-body .owl-nav .owl-prev::before{content:"\E90D";right:1.429rem}.choose-bonus-product-dialog .modal-body .owl-nav .owl-next{right:-2.286rem;left:auto}.choose-bonus-product-dialog .modal-body .owl-nav .owl-next::before{content:"\E90E";left:1.429rem}.choose-bonus-product-dialog .modal-body .product-wrapper{text-align:center}@media (min-width: 992px){.choose-bonus-product-dialog .modal-body .product-wrapper{padding-top:0}.choose-bonus-product-dialog .modal-body .product-wrapper::before{content:none}}.choose-bonus-product-dialog .modal-body .product-wrapper img{display:inline-block}@media (min-width: 992px){.choose-bonus-product-dialog .modal-body .product-wrapper img{max-width:85%}}@media (min-width: 1400px){.choose-bonus-product-dialog .modal-body .product-wrapper img{max-width:100%}}.choose-bonus-product-dialog .modal-footer{display:block;text-align:center;background-color:#f6f7f9;padding:1.143rem 0 1.857rem}@media (min-width: 1600px){.choose-bonus-product-dialog .modal-footer{font-size:1.1429rem}}.choose-bonus-product-dialog .modal-footer .selected-bonus-products{display:none}.choose-bonus-product-dialog .modal-footer .gwp-modal-footer{padding-top:0.7rem}@media (min-width: 768px){.choose-bonus-product-dialog .modal-footer .gwp-modal-footer{margin:0 auto}}.choose-bonus-product-dialog .modal-footer .add-bonus-products{line-height:normal;padding:0.714rem 3.429rem;outline:none;max-width:none;text-transform:uppercase}@media (min-width: 1600px){.choose-bonus-product-dialog .modal-footer .add-bonus-products{font-size:1.2143rem;padding:0.75rem 6.3rem}}.choose-bonus-product-dialog .bonus-product-qty-section{text-align:center;margin-top:0.8em;position:relative}.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{border:none;top:0.12em;position:absolute;width:1.28571em;height:1.28571em;border-radius:2rem;text-align:center;background:#000;color:#fff;display:inline-block}@supports (-webkit-touch-callout: none){.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{top:0}}.red-2-orange .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.red-2-orange .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #d11e47,#ef7922);background:-webkit-gradient(to right, #d11e47,#ef7922);background:-o-linear-gradient(to right, #d11e47,#ef7922)}.yellow-2-green .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.yellow-2-green .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #ffc012,#80c242);background:-webkit-gradient(to right, #ffc012,#80c242);background:-o-linear-gradient(to right, #ffc012,#80c242)}.teal-2-blue .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.teal-2-blue .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #6ac5b0,#3292cf);background:-webkit-gradient(to right, #6ac5b0,#3292cf);background:-o-linear-gradient(to right, #6ac5b0,#3292cf)}.navy-2-purple .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.navy-2-purple .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #02549d,#c11c8a);background:-webkit-gradient(to right, #02549d,#c11c8a);background:-o-linear-gradient(to right, #02549d,#c11c8a)}.orange-2-red .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.orange-2-red .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #ef7922,#d11e47);background:-webkit-gradient(to right, #ef7922,#d11e47);background:-o-linear-gradient(to right, #ef7922,#d11e47)}.green-2-yellow .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.green-2-yellow .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #80c242,#ffc012);background:-webkit-gradient(to right, #80c242,#ffc012);background:-o-linear-gradient(to right, #80c242,#ffc012)}.blue-2-teal .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.blue-2-teal .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #3292cf,#6ac5b0);background:-webkit-gradient(to right, #3292cf,#6ac5b0);background:-o-linear-gradient(to right, #3292cf,#6ac5b0)}.purple-2-navy .choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty,.purple-2-navy .choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{background:linear-gradient(to right, #c11c8a,#02549d);background:-webkit-gradient(to right, #c11c8a,#02549d);background:-o-linear-gradient(to right, #c11c8a,#02549d)}.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty.disabled,.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty.disabled{opacity:0.6}.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty{right:2.3em}@media (min-width: 768px){.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty{right:3.2em}}@media (min-width: 992px){.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty{right:3.6em}}@media (min-width: 1600px){.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty{right:4em}}.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty:hover{cursor:pointer}.choose-bonus-product-dialog .bonus-product-qty-section .increase-bonus-qty::before{font-size:0.5rem;content:'\F067';position:absolute;left:50%;top:50%;font-family:'FontAwesome';font-style:normal;font-weight:normal;transform:translate(-50%, -50%)}.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{left:2.9em}@media (min-width: 768px){.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{left:3.6em}}@media (min-width: 992px){.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{left:4.2em}}@media (min-width: 1600px){.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty{left:4.8em}}.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty:hover{cursor:pointer}.choose-bonus-product-dialog .bonus-product-qty-section .decrease-bonus-qty::before{font-size:0.5rem;content:'\F068';position:absolute;left:50%;top:50%;font-family:'FontAwesome';font-style:normal;font-weight:normal;transform:translate(-50%, -50%)}.choose-bonus-product-dialog .bonus-product-qty-section .bonus-product-qty{position:relative;width:2em;font-size:1.2857rem;text-align:center;border:0;background:#fff;left:0.32em;padding:0}.choose-bonus-product-dialog .bonus-product-item{width:50%}.choose-bonus-product-dialog .owl-item .bonus-product-item{width:100%}#chooseBonusProductModal .bonus-product-qty{font-family:"CamphorW01-Regular" !important}html.show-bonus-product-popup{overflow:hidden;height:100vh}@supports (-webkit-touch-callout: none){html.show-bonus-product-popup body{position:fixed;-ms-touch-action:none;touch-action:none}}#chooseBonusProductModal .choose-bonus-product-dialog{right:0;position:absolute;max-width:100%;width:100%;overflow:visible;margin:0}@media (min-width: 768px){#chooseBonusProductModal .choose-bonus-product-dialog{margin:0;max-width:29.25rem}}@media (min-width: 992px){#chooseBonusProductModal .choose-bonus-product-dialog{max-width:32.143rem}}@media (min-width: 992px){#chooseBonusProductModal .choose-bonus-product-dialog{margin-top:1em}}@media (min-width: 1600px){#chooseBonusProductModal .choose-bonus-product-dialog{max-width:37.143rem}}.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #ee99b4, #d31e47);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #d31e47, #f37a21);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #f37a21, #d31e47);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #ffc113, #81c341);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #81c341, #ffc113);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #6ac6b1, #3393d0);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #3393d0, #6ac6b1);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #04559f, #c21c8a);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .modal-header .close::before{background:linear-gradient(90deg, #a23db7, #04559f);-webkit-background-clip:text;-webkit-text-fill-color:transparent}#chooseBonusProductModal .choose-bonus-product-dialog .modal-content{border:0}#chooseBonusProductModal .choose-bonus-product-dialog .owl-carousel .owl-nav .owl-prev,#chooseBonusProductModal .choose-bonus-product-dialog .owl-carousel .owl-nav .owl-next{display:inline-block;color:#fff;text-align:center;position:relative;border-radius:50%;transform:translateY(-50%);position:absolute;top:50%;z-index:3;outline:0}#chooseBonusProductModal .choose-bonus-product-dialog .owl-carousel .owl-nav .owl-prev span,#chooseBonusProductModal .choose-bonus-product-dialog .owl-carousel .owl-nav .owl-next span{display:none}#chooseBonusProductModal .choose-bonus-product-dialog .btn{display:inline-block;font-family:"Eina01-Bold";font-size:1.0714rem;padding:1em 1.67em;min-width:9em;border-radius:1.7em;transition:color 0.2s ease-in,background-color 0.2s ease-in,border-color 0.2s ease-in,box-shadow 0.2s ease-in;box-shadow:0 2px 7px -2px #333;color:#272727;background-color:#fff;border:1px solid #f5f5f5;padding:0.214rem 0.857rem;min-width:auto;width:auto;font-size:.857rem;margin-top:0;min-width:105px}#chooseBonusProductModal .choose-bonus-product-dialog .btn:hover,#chooseBonusProductModal .choose-bonus-product-dialog .btn:focus{cursor:pointer}@media (min-width: 1200px){#chooseBonusProductModal .choose-bonus-product-dialog .btn{padding:0.314rem 0.957rem;min-width:107px}#chooseBonusProductModal .choose-bonus-product-dialog .btn:hover{color:#fff;background-color:#272727;border-color:#272727}}@media (min-width: 1600px){#chooseBonusProductModal .choose-bonus-product-dialog .btn{font-size:1rem;min-width:120px}}#chooseBonusProductModal .choose-bonus-product-dialog .btn.selected{background-color:#272727;color:#fff;border-color:#272727}#chooseBonusProductModal .choose-bonus-product-dialog .btn:disabled{cursor:default}@media (min-width: 1200px){#chooseBonusProductModal .choose-bonus-product-dialog .btn:disabled:hover{background-color:#fff;color:#272727;border-color:#fff}}#chooseBonusProductModal .choose-bonus-product-dialog .bonus-product-selection{padding-left:0.357rem;padding-bottom:0.357rem;text-align:center}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body{padding:1rem 2.2em 0.5rem;-ms-flex:auto;flex:auto;overflow:hidden;max-height:none}@media (min-width: 1200px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-body{max-height:none}}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body.d-flex{-ms-flex-pack:center;justify-content:center}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-prev,#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-next{background-color:rgba(39,39,39,0.7);width:60px;height:60px;border-radius:50%}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-prev.disabled,#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-next.disabled{background-color:rgba(39,39,39,0.4)}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-prev::before,#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-next::before{font-family:"AT-icons" !important;color:#fff;left:auto;transform:translateY(-50%)}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-prev{left:-2rem}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-prev::before{content:"\E90D";right:1.429rem}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-next{right:-2rem;left:auto}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .owl-nav .owl-next::before{content:"\E90E";left:1.429rem}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .product-wrapper{text-align:center}@media (min-width: 992px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .product-wrapper{padding-top:0}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .product-wrapper::before{content:none}}#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .product-wrapper img{display:inline-block}@media (min-width: 992px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .product-wrapper img{max-width:85%}}@media (min-width: 1400px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-body .product-wrapper img{max-width:100%}}#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer{display:block;text-align:center;background-color:#f6f7f9;padding:1.143rem 0 1.857rem}@media (min-width: 1600px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer{font-size:1.1429rem}}#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer .selected-bonus-products{display:none}#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer .gwp-modal-footer{padding-top:0.7rem}@media (min-width: 768px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer .gwp-modal-footer{margin:0 auto}}#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer .add-bonus-products{line-height:normal;padding:0.714rem 3.429rem;outline:none;max-width:none;text-transform:uppercase}@media (min-width: 1600px){#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer .add-bonus-products{font-size:1.2143rem;padding:0.75rem 6.3rem}}#chooseBonusProductModal .choose-bonus-product-dialog .modal-footer .add-bonus-products:hover{cursor:pointer;color:#fff}#chooseBonusProductModal .choose-bonus-product-dialog .bonus-product-item{width:50%}#chooseBonusProductModal .choose-bonus-product-dialog .owl-item .bonus-product-item{width:100%}#chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,#chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{background:#fff;border:2px solid;transition:0.5s all ease;box-shadow:none}.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#ee99b4}.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#d31e47}.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#f37a21}.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#ffc113}.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#81c341}.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#6ac6b1}.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#3393d0}.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#04559f}.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{border-color:#a23db7}.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#ee99b4}.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#d31e47}.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#f37a21}.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#ffc113}.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#81c341}.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#6ac6b1}.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#3393d0}.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#04559f}.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product,.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products{color:#a23db7}#chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,#chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,#chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,#chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{color:#fff}.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.pink-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#ee99b4}.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.red-2-orange #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#d31e47}.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.orange-2-red #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#f37a21}.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.yellow-2-green #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#ffc113}.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.green-2-yellow #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#81c341}.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.teal-2-blue #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#6ac6b1}.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.blue-2-teal #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#3393d0}.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.navy-2-purple #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#04559f}.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product:hover,.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .select-bonus-product.selected,.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products:hover,.purple-2-navy #chooseBonusProductModal .choose-bonus-product-dialog .add-bonus-products.selected{background:#a23db7}html,body{margin:0;padding:0;line-height:normal}p{margin:0}.page-container{max-width:1200px}.region{position:relative}.region .experience-component{position:relative;top:0;bottom:0}.region::before{display:block;content:"";width:100%}div .sf-interactions-proxyHoverContainer a{overflow:visible}.container .highlight{-ms-flex-align:center;align-items:center;margin-top:15px;margin-bottom:15px}.page-designer-reference{padding-right:0;padding-left:0}.page-designer-reference .col-12{padding-right:0;padding-left:0}.page-designer-reference .row{margin-right:0;margin-left:0}@media (min-width: 992px){.page-designer-reference .row{margin-right:auto;margin-left:auto}}.section-brand-story .brand-story .brand-info .brand-title{font-family:"Nanum Gothic"}.section-brand-story .brand-story .brand-info .brand-text-details{font-family:"Nanum Gothic"}.section-brand-story .brand-story .brand-info .brand-button{font-family:"Nanum Gothic"}.section-category-plps__heading{font-family:"Nanum Gothic";font-weight:bold}.section-category-plps__name span{font-family:"Nanum Gothic";font-size:16px}@media (min-width: 768px){.section-category-plps__name span{font-size:25px}}.section-category-plps__icon::after{font-size:10px}@media (min-width: 768px){.section-category-plps__icon::after{font-size:initial}}.section-editorials .main-content .desc{font-family:"Nanum Gothic";font-weight:bold}.section-editorials .sub-content p{font-family:"Nanum Gothic"}.section-editorials .sub-content p.name{font-family:"Nanum Gothic"}.section-editorials .editorial-btn{font-family:"Nanum Gothic"}.product-tile .tile-body .tile-body-field-group .product-collection a,.product-tile .tile-body .tile-body-field-group .pdp-link a{font-family:"Eina01-Bold"}.product-tile .tile-body .tile-body-field-group .price .price-inner .value,.product-tile .tile-body .tile-body-field-group .price .price-inner .sales{font-family:"Eina01-Bold"}@media (min-width: 768px){.product-tile .tile-body .tile-body-field-group .price .price-inner .strike-through{font-size:14px;line-height:19px}}.product-tile .tile-body .tile-body-field-group .price span{font-family:"Eina01-Bold"}.product-tile .tile-bottom .tile-add-to-cart .btn-go-details,.product-tile .tile-bottom .tile-add-to-cart .add-to-cart{font-family:"Nanum Gothic" !important}.product-tile .has-more-color-icon{font-family:"Nanum Gothic"}.section-shop-products .nav-tabs li .home-products-tab{font-family:"Nanum Gothic"}.section-new-arrivals .list-new-arrivals .btn-viewall{font-family:"Nanum Gothic"}.section-home-footer.homepage-revamp .home-why-shop-with-us .content h6{font-family:"Nanum Gothic"}.section-home-footer.homepage-revamp .home-why-shop-with-us ul li p{font-family:"Nanum Gothic"}
