@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .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 {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .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 {
  0%, 50%, to {
    opacity: 1
  }

  25%, 75% {
    opacity: 0
  }
}

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

  25%, 75% {
    opacity: 0
  }
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

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

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

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

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

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

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

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

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

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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: rotate(15deg);
    transform: rotate(15deg)
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }

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

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }

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

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }

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

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

@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }

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

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.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 {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }

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

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }

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

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .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: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    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: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    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: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .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 {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1
  }

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

@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(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 {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -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: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes lightSpeedIn {
  0% {
    -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: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1
  }

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

@keyframes lightSpeedOut {
  0% {
    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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }

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

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }

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

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

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

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

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

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

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

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

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

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

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

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

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

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

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

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

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

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }

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

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(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: rotate(80deg);
    transform: rotate(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: rotate(60deg);
    transform: rotate(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: rotate(80deg);
    transform: rotate(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: rotate(60deg);
    transform: rotate(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 {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.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 {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.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
}

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

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

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

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

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }

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

@keyframes rollOut {
  0% {
    opacity: 1
  }

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

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

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

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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: .8s;
  animation-duration: .8s
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}

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

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

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important
  }
}

@keyframes customFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, .5em, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@keyframes customFadeOutUp {
  0% {
    opacity: 1;
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    transform: translate3d(0, -.5em, 0)
  }
}

@keyframes customBounceUpDown {
  0% {
    transform: translate(-50%)
  }

  to {
    transform: translate(-50%, -10px)
  }
}

@keyframes smoothScrollDown {
  0% {
    transform: translateY(-2.5em)
  }

  to {
    transform: translateY(0)
  }
}

@keyframes smoothScrollUp {
  0% {
    transform: translateY(2.5em)
  }

  to {
    transform: translateY(0)
  }
}

@keyframes brandStoryFadeInUp {
  0% {
    transform: translate3d(0, 3em, 0)
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translate3d(100px, 0, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@keyframes rotate {
  50% {
    transform: rotate(180deg)
  }

  to {
    transform: rotate(1turn)
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124
  }
}

@keyframes productSlideIn {
  0% {
    top: 100%
  }

  to {
    top: 2em
  }
}

@keyframes productSlideOut {
  0% {
    top: 2em
  }

  to {
    top: 100%
  }
}

@keyframes productSlideInDesktop {
  0% {
    left: 100%
  }

  to {
    left: 24%
  }
}

@keyframes productSlideOutDesktop {
  0% {
    left: 24%
  }

  to {
    left: 100%
  }
}

@keyframes brandStoryCustomFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(-50%, .5em, 0)
  }

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

@keyframes ani-jumb {
  0% {
    top: 0
  }

  50% {
    top: -10px
  }

  to {
    top: 0
  }
}

@keyframes ani-opacity-bg {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media (min-width:992px) {
  @keyframes ani-opacity-bg {
    0% {
      opacity: 0
    }

    to {
      opacity: .7
    }
  }
}

@keyframes fadeInUpMT {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@keyframes fadeInLeftMT {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0
  }

  20% {
    opacity: 1
  }

  70% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes ani-opacity {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0
  }
}

.contact-us {
  padding: 0 0 2.857rem
}

@media (min-width:992px) {
  .contact-us {
    padding-bottom: 5.357rem;
    padding-top: 2.357rem;
    margin-left: 5rem
  }
}

@media (min-width:1200px) {
  .contact-us {
    margin-left: 7.143rem
  }
}

.contact-us .contact-title {
  padding-left: 2.143rem;
  padding-right: 2.143rem;
  line-height: normal
}

@media (min-width:768px) {
  .contact-us .contact-title {
    padding-left: 0;
    padding-right: 0
  }
}

@media (min-width:992px) {
  .contact-us .contact-title {
    padding-left: 2.5rem;
    position: relative;
    z-index: 5;
    top: 45px
  }
}

.contact-us .contact-title h1 {
  font-size: 2.643rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  margin-bottom: 0
}

@media (min-width:992px) {
  .contact-us .contact-title h1 {
    font-size: 2.286rem
  }
}

@media (min-width:1600px) {
  .contact-us .contact-title h1 {
    font-size: 3.7143rem
  }
}

.contact-us .contact-title p {
  font-size: .929rem;
  font-family: CamphorW01-Regular;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: .357rem 0 1.429rem
}

@media (min-width:1200px) {
  .contact-us .contact-title p {
    font-size: 1rem
  }
}

@media (min-width:1600px) {
  .contact-us .contact-title p {
    font-size: 1.1429rem
  }
}

.contact-us .contact-title p:after {
  position: absolute;
  z-index: 2;
  content: " ";
  display: block;
  padding: 4px 20px;
  border-radius: 15px;
  bottom: 0
}

.contact-us .contact-title p:after, .red-2-orange .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #d11e47, #ef7922);
  background: -webkit-gradient(to right, #d11e47, #ef7922);
  background: -o-linear-gradient(to right, #d11e47, #ef7922)
}

.yellow-2-green .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #ffc012, #80c242);
  background: -webkit-gradient(to right, #ffc012, #80c242);
  background: -o-linear-gradient(to right, #ffc012, #80c242)
}

.teal-2-blue .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #6ac5b0, #3292cf);
  background: -webkit-gradient(to right, #6ac5b0, #3292cf);
  background: -o-linear-gradient(to right, #6ac5b0, #3292cf)
}

.navy-2-purple .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #02549d, #c11c8a);
  background: -webkit-gradient(to right, #02549d, #c11c8a);
  background: -o-linear-gradient(to right, #02549d, #c11c8a)
}

.orange-2-red .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #ef7922, #d11e47);
  background: -webkit-gradient(to right, #ef7922, #d11e47);
  background: -o-linear-gradient(to right, #ef7922, #d11e47)
}

.green-2-yellow .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #80c242, #ffc012);
  background: -webkit-gradient(to right, #80c242, #ffc012);
  background: -o-linear-gradient(to right, #80c242, #ffc012)
}

.blue-2-teal .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #3292cf, #6ac5b0);
  background: -webkit-gradient(to right, #3292cf, #6ac5b0);
  background: -o-linear-gradient(to right, #3292cf, #6ac5b0)
}

.purple-2-navy .contact-us .contact-title p:after {
  background: linear-gradient(90deg, #c11c8a, #02549d);
  background: -webkit-gradient(to right, #c11c8a, #02549d);
  background: -o-linear-gradient(to right, #c11c8a, #02549d)
}

.contact-us .contact-img {
  padding: 1.071rem 0 0
}

.contact-us .content-right {
  background: #fff;
  position: relative;
  z-index: 2;
  margin-top: -3.571rem;
  margin-left: .714rem;
  margin-right: .714rem
}

@media (min-width:768px) {
  .contact-us .content-right {
    margin-top: 0
  }
}

.contact-us .content-block {
  padding-top: 1.429rem;
  line-height: normal
}

@media (min-width:768px) {
  .contact-us .content-block {
    padding-top: 1.786rem
  }

  .contact-us .content-block:first-child {
    padding-top: 0
  }
}

@media (min-width:992px) {
  .contact-us .content-block {
    padding-top: 1.429rem
  }

  .contact-us .content-block:first-child {
    padding-top: 1.857rem
  }
}

@media (min-width:1200px) {
  .contact-us .content-block {
    padding-top: 2.5rem
  }

  .contact-us .content-block:first-child {
    padding-top: 3.214rem
  }
}

.contact-us .content-block h2 {
  font-size: 1.929rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  margin-bottom: 0
}

@media (min-width:992px) {
  .contact-us .content-block h2 {
    font-size: 1.7143rem
  }
}

@media (min-width:1600px) {
  .contact-us .content-block h2 {
    font-size: 2.1429rem
  }
}

.contact-us .content-block address {
  font-size: .929rem;
  font-family: CamphorW01-Regular;
  padding-top: .714rem;
  margin-bottom: 0
}

@media (min-width:1200px) {
  .contact-us .content-block address {
    font-size: 1rem
  }
}

@media (min-width:1600px) {
  .contact-us .content-block address {
    font-size: 1.1429rem
  }
}

.contact-us .content-block address a {
  text-decoration: underline
}

.contact-us .content-block address p {
  margin-bottom: 0
}

@media (min-width:992px) {
  .contact-us .content-info {
    padding-left: 3.571rem;
    position: relative;
    z-index: 2;
    margin-left: -5.357rem;
    background: #fff;
    margin-top: 4.929rem
  }
}

.contact-us>.row:not(.contact-content) {
  position: relative
}

@media (min-width:992px) {
  .contact-us>.row:not(.contact-content)>.col:not(.contact-img) {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0
  }
}

.promotion-banner {
  position: relative;
  padding-bottom: 1.429rem;
  background: #fff
}

@media (min-width:992px) {
  .promotion-banner {
    padding-bottom: 2.857rem
  }
}

@media (min-width:1600px) {
  .promotion-banner img {
    width: 100%
  }
}

.promotion-banner.has-animation.load-animation .shopping-info, .promotion-banner.has-animation.load-animation .white-button {
  opacity: 1;
  filter: alpha(opacity=1);
  animation-name: brandStoryFadeInUp;
  animation-duration: 1.3s;
  animation-fill-mode: both
}

.promotion-banner.has-animation.load-animation .shopping-info {
  animation-delay: .2s
}

.promotion-banner.has-animation.load-animation .white-button {
  animation-delay: .7s
}

.promotion-banner.has-animation .shopping-info, .promotion-banner.has-animation .white-button {
  opacity: 0;
  filter: alpha(opacity=0)
}

.promotion-banner .brand-shopping {
  position: absolute;
  z-index: 3;
  top: 48%;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  font-size: 1.8571rem;
  color: #fff;
  transform: translateY(-50%)
}

@media (min-width:768px) {
  .promotion-banner .brand-shopping {
    left: 50%;
    transform: translate(-50%, -50%)
  }
}

@media (min-width:992px) {
  .promotion-banner .brand-shopping {
    font-size: 2rem
  }
}

@media (min-width:1600px) {
  .promotion-banner .brand-shopping {
    font-size: 2.5rem
  }
}

.promotion-banner .shopping-info {
  margin-bottom: 0;
  padding: 1.571rem 0;
  position: relative;
  z-index: 2
}

@media (min-width:992px) {
  .promotion-banner .shopping-info {
    padding-bottom: 2.5rem
  }
}

.promotion-banner .shopping-info:after {
  position: absolute;
  z-index: 5;
  content: " ";
  top: 100%;
  left: 50%;
  display: block;
  padding: 4px 15px;
  background: #fff;
  border-radius: 15px;
  transform: translate(-50%, -100%)
}

@media (min-width:768px) {
  .promotion-banner .shopping-info:after {
    padding: 5px 35px
  }
}

.promotion-banner .white-button {
  padding: .714rem 1.071rem;
  margin-top: 1.571rem
}

@media (min-width:768px) {
  .promotion-banner .white-button {
    padding: 6px 45px 7px
  }
}

@media (min-width:992px) {
  .promotion-banner .white-button {
    font-size: 1.1429rem;
    margin-top: 2.5rem
  }
}

@media (min-width:1600px) {
  .promotion-banner .white-button {
    font-size: 1.4286rem
  }
}

.content-asset-container {
  position: relative;
  z-index: 3
}

[data-querystring="cid=brand-story"] .back-to-top {
  display: none
}

.sticky-header [data-querystring="cid=brand-story"] .section-header {
  animation: none
}

.time-line {
  overflow: hidden
}

.time-line .time-line-item {
  padding-left: 1.071rem;
  padding-right: 1.071rem;
  color: #fff;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  line-height: normal;
  min-height: calc(100vh - 4rem);
  position: relative
}

.time-line .time-line-item.active li {
  transform: scale(1.3)
}

.time-line .time-line-item .icon-circle {
  display: none
}

.time-line .item1 {
  background: linear-gradient(180deg, #bcce1a, #81c241);
  background: -webkit-gradient(to bottom, #bcce1a, #81c241);
  background: -o-linear-gradient(to bottom, #bcce1a, #81c241)
}

.time-line .item2 {
  background: linear-gradient(180deg, #81c241, #6ac5b0);
  background: -webkit-gradient(to bottom, #81c241, #6ac5b0);
  background: -o-linear-gradient(to bottom, #81c241, #6ac5b0)
}

.time-line .item3 {
  background: linear-gradient(180deg, #6ac5b0, #67cadb);
  background: -webkit-gradient(to bottom, #6ac5b0, #67cadb);
  background: -o-linear-gradient(to bottom, #6ac5b0, #67cadb)
}

.time-line .item4 {
  background: linear-gradient(180deg, #67cadb, #3093d0);
  background: -webkit-gradient(to bottom, #67cadb, #3093d0);
  background: -o-linear-gradient(to bottom, #67cadb, #3093d0)
}

.time-line .item5 {
  background: linear-gradient(180deg, #3093d0, #00539e);
  background: -webkit-gradient(to bottom, #3093d0, #00539e);
  background: -o-linear-gradient(to bottom, #3093d0, #00539e)
}

.time-line .item6 {
  background: linear-gradient(180deg, #00539e, #8b4499);
  background: -webkit-gradient(to bottom, #00539e, #8b4499);
  background: -o-linear-gradient(to bottom, #00539e, #8b4499)
}

.time-line .item7 {
  background: linear-gradient(180deg, #8b4499, #c71d8b);
  background: -webkit-gradient(to bottom, #8b4499, #c71d8b);
  background: -o-linear-gradient(to bottom, #8b4499, #c71d8b)
}

.time-line .item8 {
  background: linear-gradient(180deg, #c71d8b, #d21245);
  background: -webkit-gradient(to bottom, #c71d8b, #d21245);
  background: -o-linear-gradient(to bottom, #c71d8b, #d21245)
}

.time-line .list-time-line {
  position: fixed;
  z-index: 10;
  right: .85rem;
  top: 50%;
  display: none;
  transform: translateY(-50%)
}

@media (min-width:768px) {
  .time-line .list-time-line {
    right: 2rem
  }
}

@media (min-width:1200px) {
  .time-line .list-time-line {
    right: 3rem
  }
}

.time-line .list-time-line ul {
  padding: 0;
  margin: 0
}

.time-line .list-time-line ul li {
  position: relative;
  z-index: 1;
  list-style: none;
  padding-top: 1.786rem;
  padding-right: .286rem
}

.time-line .list-time-line ul li .list-icon, .time-line .list-time-line ul li:after, .time-line .list-time-line ul li:before {
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent;
  display: inline-block;
  transform: translate(-50%, -50%)
}

.time-line .list-time-line ul li.is-selected {
  transform: scale(1.3)
}

.time-line .list-time-line ul li .list-icon {
  z-index: 5;
  width: 15px;
  height: 15px;
  padding-left: 20px
}

.time-line .list-time-line ul li:after {
  z-index: 2;
  content: " ";
  width: 13px;
  height: 13px;
  border: 1px solid #fff;
  border-radius: 50%
}

.time-line .list-time-line ul li:before {
  z-index: 2;
  content: " ";
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%
}

.time-line-item.active .inner {
  opacity: 1;
  filter: alpha(opacity=1);
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 1.1s
}

.time-line-item .inner {
  position: relative;
  height: 100%;
  opacity: 0
}

.fixed-content {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
}

.fixed-content .item1 .info-details {
  font-size: 1.0714rem
}

@media (min-width:992px) {
  .fixed-content .item1 .info-details {
    font-size: 2rem;
    padding: 0
  }
}

@media (min-width:1600px) {
  .fixed-content .item1 .info-details {
    font-size: 2.5rem
  }
}

@media (min-width:1200px) {
  .fixed-content .item1 .col-left {
    padding-left: 9%;
    padding-right: 2%
  }
}

@media (min-width:1200px) {
  .fixed-content .item2 .col-left img {
    max-width: 40%;
    display: inline-block
  }
}

.fixed-content .item2 .col-right {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
}

@media (min-width:1600px) {
  .fixed-content .item3 .item-center h3 {
    font-size: 3.357rem
  }
}

.fixed-content .item3 .wrapper {
  max-width: 31.786rem;
  margin: 0 auto
}

.fixed-content .item3 .wrapper .info-details, .fixed-content .item3 .wrapper h3 {
  padding-left: 0;
  padding-right: 0
}

@media (min-width:1200px) {
  .fixed-content .item3 .col-right img {
    max-width: 50%
  }
}

@media (min-width:1200px) {
  .fixed-content .item4 .col-left img, .fixed-content .item6 .col-left img {
    max-width: 40%;
    display: inline-block
  }
}

@media (min-width:1200px) {
  .fixed-content .item5 .item-center .col-left {
    padding-left: 19%
  }
}

.fixed-content .item7 .wrapper {
  max-width: 32.143rem;
  margin: 0 auto
}

.fixed-content .item7 .wrapper .info-details {
  margin: 0;
  padding: 0 0 2.143rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
}

@media (min-width:1200px) {
  .fixed-content .item7 .item-center .col-left {
    padding-left: 19%
  }
}

.fixed-content .item7 .item-center .col-right {
  margin-top: -4.286rem;
  padding: 0 2.143rem
}

.fixed-content .item7 .item-center .col-right img {
  max-width: 100%
}

@media (min-width:768px) {
  .fixed-content .item7 .item-center .col-right img {
    max-width: 90%
  }
}

@media (min-width:992px) {
  .fixed-content .item7 .item-center .col-right img {
    max-width: 100%
  }
}

.fixed-content .item8 {
  padding: 2.5rem
}

@media (min-width:992px) {
  .fixed-content .item8 {
    padding: 2.5rem 0 0;
    min-height: calc(100vh - 35rem)
  }
}

@media (min-width:1200px) {
  .fixed-content .item8 {
    padding-bottom: 6rem
  }
}

.fixed-content .item8 .head-title {
  text-align: center;
  padding-top: 1em;
  padding-bottom: 2.143rem;
  position: relative
}

@media (min-width:992px) {
  .fixed-content .item8 .head-title {
    padding-top: 2em
  }
}

.fixed-content .item8 .head-title.has-animation.load-animation h2, .fixed-content .item8 .head-title.has-animation.load-animation h3, .fixed-content .item8 .head-title.has-animation.load-animation img, .fixed-content .item8 .head-title.has-animation.load-animation p {
  opacity: 1;
  filter: alpha(opacity=1);
  animation-name: customFadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both
}

.fixed-content .item8 .head-title.has-animation.load-animation .icon-circle-now {
  opacity: 1;
  filter: alpha(opacity=1);
  animation-name: brandStoryCustomFadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both
}

.fixed-content .item8 .head-title.has-animation.load-animation p {
  animation-delay: .2s
}

.fixed-content .item8 .head-title.has-animation.load-animation h2 {
  animation-delay: .5s
}

.fixed-content .item8 .head-title.has-animation.load-animation .icon-circle-now {
  animation-delay: .8s
}

.fixed-content .item8 .head-title.has-animation.load-animation .content {
  animation-delay: 1.1s
}

.fixed-content .item8 .head-title.has-animation.load-animation h3 {
  animation-delay: 1.4s
}

.fixed-content .item8 .head-title.has-animation.load-animation img {
  animation-delay: 1.7s
}

.fixed-content .item8 .head-title.has-animation .icon-circle-now h3, .fixed-content .item8 .head-title.has-animation h2, .fixed-content .item8 .head-title.has-animation img, .fixed-content .item8 .head-title.has-animation p {
  opacity: 0;
  filter: alpha(opacity=0)
}

.fixed-content .item8 .head-title .icon-circle-now {
  border: 1px solid #fff;
  width: 23px;
  height: 23px;
  background: transparent;
  position: relative;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%
}

.fixed-content .item8 .head-title .icon-circle-now:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  left: 4px;
  top: 4px
}

.fixed-content .item8 .item-center {
  top: 75%
}

@media (min-width:768px) {
  .fixed-content .item8 .item-center {
    top: 50%
  }
}

@media (min-width:992px) {
  .fixed-content .item8 .item-center {
    position: static;
    top: 0;
    left: 0;
    text-align: center;
    transform: translate(0)
  }
}

.fixed-content .item8 .item-center h3 {
  font-size: 1.929rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  text-align: center
}

@media (min-width:768px) {
  .fixed-content .item8 .item-center h3 {
    font-size: 2rem;
    padding-bottom: 1.286rem
  }
}

@media (min-width:1200px) {
  .fixed-content .item8 .item-center h3 {
    font-size: 2rem;
    padding-top: 0;
    padding-bottom: .5em
  }
}

@media (min-width:1600px) {
  .fixed-content .item8 .item-center h3 {
    font-size: 2.5rem
  }
}

@media (min-width:1200px) {
  .fixed-content .item8 .item-center img {
    max-width: 35%
  }
}

.fixed-content .item8 .content {
  font-size: 1.0714rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  padding: 0 1em;
  margin: 1em 0;
  text-align: center
}

@media (min-width:768px) {
  .fixed-content .item8 .content {
    font-size: 1.1429rem
  }
}

@media (min-width:1200px) {
  .fixed-content .item8 .content {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto
  }
}

@media (min-width:1600px) {
  .fixed-content .item8 .content {
    max-width: 50%;
    font-size: 1.4286rem
  }
}

.fixed-content .row {
  margin-left: 0;
  margin-right: 0
}

.fixed-content .icon-border-circle {
  border: 1px solid #fff;
  width: 23px;
  height: 23px;
  background: transparent;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%
}

.fixed-content .icon-border-circle:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  left: 4px;
  top: 4px
}

.fixed-content .head-title {
  padding-top: 2.5rem
}

.fixed-content .head-title p {
  font-size: 1.0714rem;
  margin-bottom: 0
}

@media (min-width:1200px) {
  .fixed-content .head-title p {
    font-size: 1.4286rem
  }
}

.fixed-content .head-title h2 {
  font-size: 2.643rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
}

@media (min-width:1200px) {
  .fixed-content .head-title h2 {
    font-size: 3.4286rem
  }
}

@media (min-width:1600px) {
  .fixed-content .head-title h2 {
    font-size: 4.2857rem
  }
}

.fixed-content .img-info {
  padding-top: 1rem;
  font-size: 1.0714rem
}

@media (min-width:992px) {
  .fixed-content .img-info {
    font-size: 1.2857rem
  }
}

@media (min-width:1600px) {
  .fixed-content .img-info {
    font-size: 1.6429rem
  }
}

@media (max-width:575.98px) {
  .fixed-content .img-info {
    font-size: .929rem
  }
}

.fixed-content .info-details {
  font-size: 1.0714rem
}

@media (min-width:992px) {
  .fixed-content .info-details {
    font-size: 1.2857rem;
    padding: 0
  }
}

@media (min-width:1600px) {
  .fixed-content .info-details {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.6429rem
  }
}

@media (max-width:575.98px) {
  .fixed-content .info-details {
    font-size: .929rem
  }
}

.fixed-content .info-details-right {
  padding-left: 0;
  font-size: .929rem
}

@media (min-width:992px) {
  .fixed-content .info-details-right {
    font-size: 1.2857rem;
    margin-top: 2.5rem
  }
}

@media (min-width:1200px) {
  .fixed-content .info-details-right {
    font-size: 1.6429rem
  }
}

.fixed-content .item-fixed-bottom {
  position: absolute;
  z-index: 2;
  left: -12px;
  bottom: 0;
  font-size: 45vw;
  line-height: .85;
  opacity: .1;
  padding: 0;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
}

@media (min-width:768px) {
  .fixed-content .item-fixed-bottom {
    left: -25px;
    font-size: 44vw
  }
}

@media (min-width:992px) {
  .fixed-content .item-fixed-bottom {
    left: -25px
  }
}

@media (min-width:1200px) {
  .fixed-content .item-fixed-bottom {
    font-size: 36.8vw;
    left: -40px;
    line-height: .78em
  }
}

@media (min-width:1400px) {
  .fixed-content .item-fixed-bottom {
    line-height: .83em
  }
}

@media (min-width:1600px) {
  .fixed-content .item-fixed-bottom {
    left: -60px;
    line-height: .78em
  }
}

.fixed-content .item-center {
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 3;
  top: 55%;
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
  transform: translateY(-50%)
}

@media (min-width:576px) {
  .fixed-content .item-center {
    top: 65%
  }
}

@media (min-width:768px) {
  .fixed-content .item-center {
    top: 50%
  }
}

@media (min-width:1200px) {
  .fixed-content .item-center {
    top: 64%;
    width: 100%
  }
}

.fixed-content .item-center.has-animation .col-left, .fixed-content .item-center.has-animation .col-right {
  opacity: 0;
  filter: alpha(opacity=0)
}

.fixed-content .item-center.has-animation.load-animation .col-left, .fixed-content .item-center.has-animation.load-animation .col-right {
  opacity: 1;
  filter: alpha(opacity=1);
  animation-name: brandStoryFadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both
}

.fixed-content .item-center.has-animation.load-animation .col-left {
  animation-delay: .4s
}

.fixed-content .item-center.has-animation.load-animation .col-right {
  animation-delay: .7s
}

.fixed-content .item-center h3 {
  font-size: 1.4286rem;
  padding: 1.429rem 0
}

@media (min-width:992px) {
  .fixed-content .item-center h3 {
    font-size: 3.4286rem
  }
}

@media (min-width:1600px) {
  .fixed-content .item-center h3 {
    padding-left: 0;
    font-size: 4.2857rem;
    padding-right: 0
  }
}

.fixed-content .item-center .col-right {
  margin: 0 auto;
  padding: 0 1em
}

@media (min-width:992px) {
  .fixed-content .item-center .col-right {
    max-width: 28.571rem
  }
}

@media (min-width:1400px) {
  .fixed-content .item-center .col-right {
    max-width: 35.714rem
  }
}

.fixed-content .item-center .col-right p.info-details-right:first-child {
  margin-top: 0
}

.fixed-content .item-center .col-right h3 {
  padding-left: 0;
  padding-right: 0
}

@media (max-width:575.98px) {
  .fixed-content .item-center .col-right img {
    max-width: 70%
  }
}

.fixed-content .item-center .col-left {
  padding: 0 .714rem
}

@media (min-width:768px) {
  .fixed-content .item-center .col-left {
    padding: 0 7rem
  }
}

.slide {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  z-index: 0;
  bottom: 0;
  color: #fff
}

.slide.active {
  z-index: 1
}

.slide.active .slide-inner {
  opacity: 1;
  transform: translate(0)
}

.slide .slide-inner {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: translateY(30px)
}

.slide .slide-inner>.text-center {
  position: relative;
  z-index: 5;
  padding-bottom: 2.071rem
}

.slide .slide-inner>.text-center:after {
  position: absolute;
  z-index: 10;
  content: "";
  display: block;
  min-height: calc(100vh - 11.786rem);
  background: #fff;
  left: 50%;
  top: 100%;
  min-width: 1px;
  transform: translateX(-50%)
}

@media (min-width:1200px) {
  .slide .slide-inner>.text-center:after {
    min-height: calc(100vh - 14.286rem)
  }
}

#carouselPromotionMessage.slide {
  position: relative;
  top: auto
}

.main-banner {
  position: relative;
  min-height: calc(100vh - 6rem);
  color: #fff;
  overflow: hidden;
  z-index: 11
}

.main-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0
}

.main-banner .banner-video {
  position: absolute;
  z-index: -1;
  min-height: 100vh;
  min-width: 170vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

@media (min-width:1200px) {
  .main-banner .banner-video {
    min-height: 56vw;
    min-width: 100vw
  }
}

.main-banner .text-content {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 0;
  text-align: center;
  font-size: 1.0714rem;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  white-space: pre-line;
  padding: 0 3rem;
  transform: translateY(-50%)
}

@media (min-width:768px) {
  .main-banner .text-content {
    left: 50%;
    padding: 0;
    transform: translate(-50%, -50%)
  }
}

@media (min-width:992px) {
  .main-banner .text-content {
    font-size: 1.2857rem
  }
}

@media (min-width:1600px) {
  .main-banner .text-content {
    font-size: 1.5714rem
  }
}

.main-banner .content-top {
  font-size: 2.643rem;
  padding-bottom: 1.929rem
}

@media (min-width:992px) {
  .main-banner .content-top {
    font-size: 3.4286rem;
    padding-bottom: 0
  }
}

@media (min-width:1600px) {
  .main-banner .content-top {
    font-size: 4.2857rem
  }
}

.main-banner .content-middle {
  margin-bottom: 0
}

.main-banner .arrow-down {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  color: #fff;
  transform: translateX(-50%)
}

@media (max-width:575.98px) {
  .main-banner .arrow-down {
    bottom: 17%
  }
}

.active.black, h3.black {
  color: #272727
}

.active.red, h3.red {
  color: #ca1f46
}

.active.blue, h3.blue {
  color: #2d92d0
}

.active.yellow, h3.yellow {
  color: #ebcd20
}

.active.white, h3.white {
  color: #ebebeb
}

.active.purple, h3.purple {
  color: #8b4499
}

.active.green, h3.green {
  color: #b9d432
}

.editorial-stories-color-main {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  scroll-behavior: smooth;
  color: #fff
}

.editorial-stories-color-main img {
  display: block;
  width: 100%
}

.editorial-stories-color-main .row {
  margin: 0
}

@media (min-width:768px) {
  .editorial-stories-color-main .row.reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }
}

.editorial-stories-color-main .row .col {
  padding: 0
}

.editorial-stories-color-main .content.banner-content .content-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  text-align: center;
  transform: translate(-50%, -50%)
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.banner-content .content-text {
    text-align: left;
    left: 45%;
    width: 65%
  }
}

@media (min-width:992px) {
  .editorial-stories-color-main .content.banner-content .content-text {
    left: 39%;
    width: 39em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.banner-content .content-text {
    left: 37%;
    width: 48em
  }
}

.editorial-stories-color-main .content.banner-content .content-text h1 {
  text-transform: uppercase;
  margin-bottom: .85em
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.banner-content .content-text h1 {
    font-size: 2em
  }
}

@media (min-width:992px) {
  .editorial-stories-color-main .content.banner-content .content-text h1 {
    font-size: 3em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.banner-content .content-text h1 {
    font-size: 3.5em
  }
}

.editorial-stories-color-main .content.banner-content .content-text p {
  margin-bottom: .85em
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.banner-content .content-text p {
    font-size: .85em
  }
}

@media (min-width:992px) {
  .editorial-stories-color-main .content.banner-content .content-text p {
    font-size: 1em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.banner-content .content-text p {
    font-size: 1.25em
  }
}

.editorial-stories-color-main .content .btn-shop {
  display: inline-block;
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  font-size: 1.0714rem;
  min-width: 9em;
  border-radius: 1.7em;
  transition: color .2s ease-in, background-color .2s ease-in, border-color .2s ease-in, box-shadow .2s ease-in;
  box-shadow: 0 2px 7px -2px #333;
  color: #272727;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  display: block;
  padding: .667em 1.286em;
  text-align: center;
  min-width: 17em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 2px 7px -2px grey;
  border-radius: 20px
}

.editorial-stories-color-main .content .btn-shop:focus, .editorial-stories-color-main .content .btn-shop:hover {
  cursor: pointer
}

.editorial-stories-color-main .content .btn-shop:hover {
  color: #fff;
  background-color: #272727;
  border-color: #272727
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .btn-shop {
    margin-bottom: 0;
    padding-top: .75em;
    padding-bottom: .75em;
    font-size: .8567em;
    min-width: 13em
  }
}

.editorial-stories-color-main .content .btn-shop:focus {
  outline: none;
  border: none
}

.editorial-stories-color-main .content .btn-shop.selected {
  background-color: #272727;
  color: #fff
}

.editorial-stories-color-main .content.shop-by-color .content-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.shop-by-color .content-text {
    transform: translate(-50%, -50%)
  }
}

.editorial-stories-color-main .content.shop-by-color .shop-by-color-logo {
  width: 75%;
  margin: 0 auto
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.shop-by-color .shop-by-color-logo {
    width: 55%
  }
}

@media (min-width:992px) {
  .editorial-stories-color-main .content.shop-by-color .shop-by-color-logo {
    width: 17em;
    right: 10%
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.shop-by-color .shop-by-color-logo {
    width: 20em
  }
}

.editorial-stories-color-main .content.shop-by-color .content-text {
  top: 20%;
  width: 83%;
  text-align: center
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.shop-by-color .content-text {
    width: 65%;
    left: 50%;
    top: 50%
  }
}

@media (min-width:992px) {
  .editorial-stories-color-main .content.shop-by-color .content-text {
    width: 35em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.shop-by-color .content-text {
    width: 47em
  }
}

.editorial-stories-color-main .content.shop-by-color .content-text h2 {
  font-size: 1em;
  margin: 3em 0
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.shop-by-color .content-text h2 {
    font-size: .85em
  }
}

@media (min-width:992px) {
  .editorial-stories-color-main .content.shop-by-color .content-text h2 {
    font-size: 1em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.shop-by-color .content-text h2 {
    font-size: 1.5em
  }
}

.editorial-stories-color-main .content.shop-by-color .content-text p {
  font-family: CamphorW01-Regular;
  margin-bottom: 2em
}

@media (min-width:768px) {
  .editorial-stories-color-main .content.shop-by-color .content-text p {
    font-size: .85em;
    margin-bottom: 1em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.shop-by-color .content-text p {
    font-size: 1.25em
  }
}

.editorial-stories-color-main .content.shop-by-color .content-text .btn-shop {
  margin: 0 auto
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content.shop-by-color .content-text .btn-shop {
    min-width: 17em
  }
}

.editorial-stories-color-main .content .content-inner {
  position: relative
}

.editorial-stories-color-main .content .content-inner .next-section {
  position: absolute;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%)
}

.editorial-stories-color-main .content .content-inner .next-section .btn-next {
  color: #fff;
  font-size: 1.5rem;
  height: auto;
  line-height: 1;
  border: none;
  font-weight: 400;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  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
}

.editorial-stories-color-main .content .content-inner .next-section .btn-next:before {
  font-family: AT-icons;
  content: "\E90B";
  position: absolute;
  display: block;
  left: 50%;
  bottom: 0;
  font-size: 14px;
  transform: translateX(-50%)
}

.editorial-stories-color-main .content .content-inner .right-item {
  height: 100vw
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .right-item {
    height: auto
  }
}

.editorial-stories-color-main .content .content-inner .content-body .personality-color, .editorial-stories-color-main .content .content-inner .content-body .shop-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.editorial-stories-color-main .content .content-inner .content-body .personality-color {
  top: 18%;
  text-align: center;
  width: 14.5em
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .content-body .personality-color {
    top: 50%;
    text-align: left;
    left: 28%;
    transform: translateY(-50%)
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content .content-inner .content-body .personality-color {
    width: 19.2857rem
  }
}

.editorial-stories-color-main .content .content-inner .content-body .personality-color.blue, .editorial-stories-color-main .content .content-inner .content-body .personality-color.purple, .editorial-stories-color-main .content .content-inner .content-body .personality-color.yellow {
  width: 16.5em
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content .content-inner .content-body .personality-color.blue, .editorial-stories-color-main .content .content-inner .content-body .personality-color.purple, .editorial-stories-color-main .content .content-inner .content-body .personality-color.yellow {
    width: 19.2857rem
  }
}

.editorial-stories-color-main .content .content-inner .content-body .personality-color.green {
  width: 10.5em
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content .content-inner .content-body .personality-color.green {
    width: 14.4285rem
  }
}

.editorial-stories-color-main .content .content-inner .content-body .personality-color.white {
  top: 12%
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .content-body .personality-color.white {
    top: 50%
  }
}

.editorial-stories-color-main .content .content-inner .content-body .personality-color p {
  font-size: 1.5em
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content .content-inner .content-body .personality-color p {
    font-size: 2em
  }
}

.editorial-stories-color-main .content .content-inner .content-body .shop-section {
  bottom: 20%;
  text-align: center
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .content-body .shop-section {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%)
  }
}

.editorial-stories-color-main .content .content-inner .content-body .shop-section h3 {
  font-size: 3.5em;
  margin-bottom: 1em
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .content-body .shop-section h3 {
    font-size: 3em
  }
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content .content-inner .content-body .shop-section h3 {
    font-size: 4em
  }
}

.editorial-stories-color-main .content .content-inner .next-product {
  position: absolute;
  left: 50%;
  bottom: 2em;
  width: 95%;
  transform: translateX(-50%)
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .next-product {
    width: 45%;
    left: 2.5%;
    transform: none
  }
}

.editorial-stories-color-main .content .content-inner .next-product ul {
  list-style-type: none;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center
}

.editorial-stories-color-main .content .content-inner .next-product ul li {
  display: inline-block;
  width: 12%
}

.editorial-stories-color-main .content .content-inner .next-product ul li a {
  font-size: .85em
}

.editorial-stories-color-main .content .content-inner .next-product ul li a.active {
  text-decoration: underline
}

@media (min-width:1200px) {
  .editorial-stories-color-main .content .content-inner .next-product ul li a {
    font-size: 1em
  }
}

.editorial-stories-color-main .content .content-inner .product-image {
  position: absolute;
  width: 40%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)
}

@media (min-width:768px) {
  .editorial-stories-color-main .content .content-inner .product-image {
    width: 20%
  }
}

.editorial-stories-color-main .has-animation.load-animation .first-animation {
  animation-delay: .2s
}

.editorial-stories-color-main .has-animation.load-animation .second-animation {
  animation-delay: .5s
}

.editorial-stories-color-main .has-animation.load-animation .third-animation {
  animation-delay: .8s
}

.editorial-stories-color-main .has-animation.load-animation .animation {
  opacity: 1;
  filter: alpha(opacity=1);
  animation-name: customFadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both
}

.editorial-stories-color-main .has-animation .animation {
  opacity: 0;
  filter: alpha(opacity=0)
}

.editorial-stories-color-main .animation-fadeinup {
  animation-name: customFadeInUp;
  animation-duration: 2s;
  animation-fill-mode: both
}

.ame-main {
  opacity: 0
}

.ssn-body .ame-main {
  opacity: 1
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .next-section .btn-next {
  bottom: 5vh
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .next-section .btn-next {
    bottom: 0
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .product-image {
  position: absolute;
  top: -2%;
  left: 50%;
  width: 36%;
  transform: translate(-50%, -50%)
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .product-image {
    width: 40%;
    left: 100%;
    top: 50%
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .next-product {
  position: absolute;
  bottom: 10vh;
  width: 95%
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .next-product {
    width: 90%;
    bottom: 5vh
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .personality-color {
  top: 30%
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .personality-color {
    top: 50%
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .personality-color p {
  font-size: 1.1rem
}

@media (min-width:992px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .personality-color p {
    font-size: 1.5rem
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .shop-section {
  bottom: 15vh;
  text-align: center
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .shop-section {
    bottom: 35%
  }
}

@media (min-width:992px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .shop-section {
    bottom: auto
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .shop-section h3 {
  font-size: 2.8em;
  margin-bottom: 5%
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .content-body .shop-section h3 {
    margin-bottom: 1em;
    font-size: 3.5em
  }
}

.ssn-body .ame-main .editorial-stories-color-main .content .content-inner .left-item, .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .right-item {
  height: 50vh
}

@media (min-width:768px) {
  .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .left-item, .ssn-body .ame-main .editorial-stories-color-main .content .content-inner .right-item {
    height: 100vh
  }
}

.ssn-body .ame-main .ssn-section .content-image, .ssn-body .ame-main .ssn-section .content-image.has-animation {
  overflow: hidden
}

.ssn-body .ame-main .ssn-section .content-image.has-animation picture {
  transform: scale(1)
}

.ssn-body .ame-main .ssn-section .content-image.load-animation picture {
  animation: aniZoomIn 5s ease;
  transform: scale(1.1)
}

.ssn-body .ame-main .ame-section-1, .ssn-body .ame-main .ame-section-2, .ssn-body .ame-main .ame-section-3, .ssn-body .ame-main .ame-section-4, .ssn-body .ame-main .ame-section-5, .ssn-body .ame-main .ame-section-6, .ssn-body .ame-main .ame-section-7, .ssn-body .ame-main .ame-section-8 {
  height: 100vh
}

.ssn-body .ame-main .ame-section-1 .product-image img, .ssn-body .ame-main .ame-section-2 .product-image img, .ssn-body .ame-main .ame-section-3 .product-image img, .ssn-body .ame-main .ame-section-4 .product-image img, .ssn-body .ame-main .ame-section-5 .product-image img, .ssn-body .ame-main .ame-section-6 .product-image img, .ssn-body .ame-main .ame-section-7 .product-image img, .ssn-body .ame-main .ame-section-8 .product-image img {
  width: 100%;
  height: auto
}

.ssn-body .ame-main .ame-section-9 {
  min-height: 60vh
}

.ssn-body .ame-main .ame-section-9 picture {
  width: 100%;
  height: auto
}

.ssn-body .ame-main .ame-section-9 picture img {
  height: 100%
}

.ssn-body .ame-main .ame-section-9 .content-text .shop-by-color-logo img {
  width: 100%
}

.ssn-body .ame-main .ssn-section {
  position: relative
}

.ssn-body .ame-main .ssn-section picture {
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%
}

.ssn-body .ame-main .ssn-section img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover
}

@media (-ms-high-contrast:active), (-ms-high-contrast:none) {
  .ssn-body .ame-main .ssn-section img {
    height: 100%;
    min-width: 100%;
    width: auto
  }
}

.ssn-body .ame-main .ssn-section .content-inner {
  height: 100%
}

.ssn-body .ame-main .ssn-section .ame-des {
  width: 100%;
  height: 100%
}

.ssn-body .ame-main .ame-section-6 .personality-color {
  top: 22%
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-6 .personality-color {
    top: 50%
  }
}

.ssn-body .ame-main .ame-section-6 .product-image {
  top: 8%
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-6 .product-image {
    top: 50%
  }
}

.ssn-body .ame-main .ame-section-1.ani-prev .content-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  animation: aniSlideOutUp-50 1s ease-out;
  transform: translateY(-50%)
}

.ssn-body .ame-main .ame-section-1.ani-next .content-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  animation: aniSlideOutDown-50 1s ease-out;
  transform: translateY(50%)
}

.ssn-body .ame-main .ame-section-3 .next-product, .ssn-body .ame-main .ame-section-3 .product-image, .ssn-body .ame-main .ame-section-3 .shop-section, .ssn-body .ame-main .ame-section-4 .next-product, .ssn-body .ame-main .ame-section-4 .product-image, .ssn-body .ame-main .ame-section-4 .shop-section, .ssn-body .ame-main .ame-section-5 .next-product, .ssn-body .ame-main .ame-section-5 .product-image, .ssn-body .ame-main .ame-section-5 .shop-section, .ssn-body .ame-main .ame-section-6 .next-product, .ssn-body .ame-main .ame-section-6 .product-image, .ssn-body .ame-main .ame-section-6 .shop-section, .ssn-body .ame-main .ame-section-7 .next-product, .ssn-body .ame-main .ame-section-7 .product-image, .ssn-body .ame-main .ame-section-7 .shop-section {
  position: relative;
  z-index: 10
}

.ssn-body .ame-main .ame-section-3.ani-current .right-item, .ssn-body .ame-main .ame-section-3.ani-next .right-item, .ssn-body .ame-main .ame-section-3.ani-prev .right-item, .ssn-body .ame-main .ame-section-4.ani-current .right-item, .ssn-body .ame-main .ame-section-4.ani-next .right-item, .ssn-body .ame-main .ame-section-4.ani-prev .right-item, .ssn-body .ame-main .ame-section-5.ani-current .right-item, .ssn-body .ame-main .ame-section-5.ani-next .right-item, .ssn-body .ame-main .ame-section-5.ani-prev .right-item, .ssn-body .ame-main .ame-section-6.ani-current .right-item, .ssn-body .ame-main .ame-section-6.ani-next .right-item, .ssn-body .ame-main .ame-section-6.ani-prev .right-item, .ssn-body .ame-main .ame-section-7.ani-current .right-item, .ssn-body .ame-main .ame-section-7.ani-next .right-item, .ssn-body .ame-main .ame-section-7.ani-prev .right-item {
  position: fixed;
  top: 50%;
  left: 0;
  height: 50vh !important
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-3.ani-current .right-item, .ssn-body .ame-main .ame-section-3.ani-next .right-item, .ssn-body .ame-main .ame-section-3.ani-prev .right-item, .ssn-body .ame-main .ame-section-4.ani-current .right-item, .ssn-body .ame-main .ame-section-4.ani-next .right-item, .ssn-body .ame-main .ame-section-4.ani-prev .right-item, .ssn-body .ame-main .ame-section-5.ani-current .right-item, .ssn-body .ame-main .ame-section-5.ani-next .right-item, .ssn-body .ame-main .ame-section-5.ani-prev .right-item, .ssn-body .ame-main .ame-section-6.ani-current .right-item, .ssn-body .ame-main .ame-section-6.ani-next .right-item, .ssn-body .ame-main .ame-section-6.ani-prev .right-item, .ssn-body .ame-main .ame-section-7.ani-current .right-item, .ssn-body .ame-main .ame-section-7.ani-next .right-item, .ssn-body .ame-main .ame-section-7.ani-prev .right-item {
    top: 0;
    height: 100vh !important
  }
}

.ssn-body .ame-main .ame-section-3.ani-next .right-item, .ssn-body .ame-main .ame-section-3.ani-prev .right-item, .ssn-body .ame-main .ame-section-4.ani-next .right-item, .ssn-body .ame-main .ame-section-4.ani-prev .right-item, .ssn-body .ame-main .ame-section-5.ani-next .right-item, .ssn-body .ame-main .ame-section-5.ani-prev .right-item, .ssn-body .ame-main .ame-section-6.ani-next .right-item, .ssn-body .ame-main .ame-section-6.ani-prev .right-item, .ssn-body .ame-main .ame-section-7.ani-next .right-item, .ssn-body .ame-main .ame-section-7.ani-prev .right-item {
  z-index: 10
}

.ssn-body .ame-main .ame-section-3.ani-next .right-item .product-image, .ssn-body .ame-main .ame-section-3.ani-next .right-item .shop-section, .ssn-body .ame-main .ame-section-3.ani-prev .right-item .product-image, .ssn-body .ame-main .ame-section-3.ani-prev .right-item .shop-section, .ssn-body .ame-main .ame-section-4.ani-next .right-item .product-image, .ssn-body .ame-main .ame-section-4.ani-next .right-item .shop-section, .ssn-body .ame-main .ame-section-4.ani-prev .right-item .product-image, .ssn-body .ame-main .ame-section-4.ani-prev .right-item .shop-section, .ssn-body .ame-main .ame-section-5.ani-next .right-item .product-image, .ssn-body .ame-main .ame-section-5.ani-next .right-item .shop-section, .ssn-body .ame-main .ame-section-5.ani-prev .right-item .product-image, .ssn-body .ame-main .ame-section-5.ani-prev .right-item .shop-section, .ssn-body .ame-main .ame-section-6.ani-next .right-item .product-image, .ssn-body .ame-main .ame-section-6.ani-next .right-item .shop-section, .ssn-body .ame-main .ame-section-6.ani-prev .right-item .product-image, .ssn-body .ame-main .ame-section-6.ani-prev .right-item .shop-section, .ssn-body .ame-main .ame-section-7.ani-next .right-item .product-image, .ssn-body .ame-main .ame-section-7.ani-next .right-item .shop-section, .ssn-body .ame-main .ame-section-7.ani-prev .right-item .product-image, .ssn-body .ame-main .ame-section-7.ani-prev .right-item .shop-section {
  animation: aniProSlideOutUp-10 .5s ease-out;
  margin-top: -12%;
  opacity: 0
}

.ssn-body .ame-main .ame-section-3.ani-next .right-item .next-product, .ssn-body .ame-main .ame-section-3.ani-prev .right-item .next-product, .ssn-body .ame-main .ame-section-4.ani-next .right-item .next-product, .ssn-body .ame-main .ame-section-4.ani-prev .right-item .next-product, .ssn-body .ame-main .ame-section-5.ani-next .right-item .next-product, .ssn-body .ame-main .ame-section-5.ani-prev .right-item .next-product, .ssn-body .ame-main .ame-section-6.ani-next .right-item .next-product, .ssn-body .ame-main .ame-section-6.ani-prev .right-item .next-product, .ssn-body .ame-main .ame-section-7.ani-next .right-item .next-product, .ssn-body .ame-main .ame-section-7.ani-prev .right-item .next-product {
  display: none
}

.ssn-body .ame-main .ame-section-3.ani-current .right-item .product-image, .ssn-body .ame-main .ame-section-3.ani-current .right-item .shop-section, .ssn-body .ame-main .ame-section-4.ani-current .right-item .product-image, .ssn-body .ame-main .ame-section-4.ani-current .right-item .shop-section, .ssn-body .ame-main .ame-section-5.ani-current .right-item .product-image, .ssn-body .ame-main .ame-section-5.ani-current .right-item .shop-section, .ssn-body .ame-main .ame-section-6.ani-current .right-item .product-image, .ssn-body .ame-main .ame-section-6.ani-current .right-item .shop-section, .ssn-body .ame-main .ame-section-7.ani-current .right-item .product-image, .ssn-body .ame-main .ame-section-7.ani-current .right-item .shop-section {
  animation: aniProSlideOutUp-5 .5s ease-in;
  margin-top: 0;
  opacity: 1
}

.ssn-body .ame-main .ame-section-3.ani-current .right-item .next-product, .ssn-body .ame-main .ame-section-4.ani-current .right-item .next-product, .ssn-body .ame-main .ame-section-5.ani-current .right-item .next-product, .ssn-body .ame-main .ame-section-6.ani-current .right-item .next-product, .ssn-body .ame-main .ame-section-7.ani-current .right-item .next-product {
  z-index: 10;
  display: block
}

.ssn-body .ame-main .ame-section-2 .next-product, .ssn-body .ame-main .ame-section-2 .product-image, .ssn-body .ame-main .ame-section-2 .shop-section {
  position: relative;
  z-index: 10
}

.ssn-body .ame-main .ame-section-2.ani-current.ani-move-prev .right-item {
  position: fixed;
  top: 50%;
  left: 0;
  height: 50vh !important
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-2.ani-current.ani-move-prev .right-item {
    top: 0;
    height: 100vh !important
  }
}

.ssn-body .ame-main .ame-section-2.ani-current.ani-move-prev .right-item {
  z-index: 10
}

.ssn-body .ame-main .ame-section-2.ani-current.ani-move-prev .right-item .product-image, .ssn-body .ame-main .ame-section-2.ani-current.ani-move-prev .right-item .shop-section {
  opacity: 1
}

.ssn-body .ame-main .ame-section-2.ani-current.ani-move-prev .right-item .next-product {
  display: block
}

.ssn-body .ame-main .ame-section-2.ani-prev .right-item {
  position: fixed;
  top: 50%;
  left: 0;
  height: 50vh !important
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-2.ani-prev .right-item {
    top: 0;
    height: 100vh !important
  }
}

.ssn-body .ame-main .ame-section-2.ani-prev .right-item {
  z-index: 10
}

.ssn-body .ame-main .ame-section-2.ani-prev .right-item .product-image, .ssn-body .ame-main .ame-section-2.ani-prev .right-item .shop-section {
  animation: aniProSlideOutUp-10 .5s ease-out;
  margin-top: -12%;
  opacity: 0
}

.ssn-body .ame-main .ame-section-2.ani-prev .right-item .next-product {
  display: none
}

.ssn-body .ame-main .ame-section-2.ani-current {
  background-color: #fff;
  z-index: 1
}

.ssn-body .ame-main .ame-section-2.ani-current .right-item .next-product {
  display: block
}

.ssn-body .ame-main .ame-section-8 .next-product, .ssn-body .ame-main .ame-section-8 .product-image, .ssn-body .ame-main .ame-section-8 .shop-section {
  position: relative;
  z-index: 10
}

.ssn-body .ame-main .ame-section-8.ani-current.ani-move-next .right-item {
  position: fixed;
  top: 50%;
  left: 0;
  height: 50vh !important
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-8.ani-current.ani-move-next .right-item {
    top: 0;
    height: 100vh !important
  }
}

.ssn-body .ame-main .ame-section-8.ani-current.ani-move-next .right-item {
  z-index: 10
}

.ssn-body .ame-main .ame-section-8.ani-current.ani-move-next .right-item .product-image, .ssn-body .ame-main .ame-section-8.ani-current.ani-move-next .right-item .shop-section {
  opacity: 1
}

.ssn-body .ame-main .ame-section-8.ani-current.ani-move-next .right-item .next-product {
  display: block
}

.ssn-body .ame-main .ame-section-8.ani-next .right-item {
  position: fixed;
  top: 50%;
  left: 0;
  height: 50vh !important
}

@media (min-width:768px) {
  .ssn-body .ame-main .ame-section-8.ani-next .right-item {
    top: 0;
    height: 100vh !important
  }
}

.ssn-body .ame-main .ame-section-8.ani-next .right-item .product-image, .ssn-body .ame-main .ame-section-8.ani-next .right-item .shop-section {
  animation: aniProSlideOutUp-10 .5s ease-out;
  margin-top: -12%;
  opacity: 0
}

.ssn-body .ame-main .ame-section-8.ani-next .right-item .next-product {
  display: none
}

.ssn-body .ame-main .ame-section-8.ani-current {
  background-color: #fff;
  z-index: 1
}

.ssn-body .ame-main .ame-section-8.ani-current .right-item .next-product {
  display: block
}

.ssn-body .ame-main .ame-section-2 .left-item, .ssn-body .ame-main .ame-section-3 .left-item, .ssn-body .ame-main .ame-section-4 .left-item, .ssn-body .ame-main .ame-section-5 .left-item, .ssn-body .ame-main .ame-section-6 .left-item, .ssn-body .ame-main .ame-section-7 .left-item, .ssn-body .ame-main .ame-section-8 .left-item {
  position: relative;
  z-index: 1
}

.ssn-body .ame-main .ame-section-2 .right-item, .ssn-body .ame-main .ame-section-3 .right-item, .ssn-body .ame-main .ame-section-4 .right-item, .ssn-body .ame-main .ame-section-5 .right-item, .ssn-body .ame-main .ame-section-6 .right-item, .ssn-body .ame-main .ame-section-7 .right-item, .ssn-body .ame-main .ame-section-8 .right-item {
  position: relative;
  z-index: 2
}

.ssn-body .ame-main .ame-section-2.ani-next .right-item, .ssn-body .ame-main .ame-section-2.ani-prev .right-item, .ssn-body .ame-main .ame-section-3.ani-next .right-item, .ssn-body .ame-main .ame-section-3.ani-prev .right-item, .ssn-body .ame-main .ame-section-4.ani-next .right-item, .ssn-body .ame-main .ame-section-4.ani-prev .right-item, .ssn-body .ame-main .ame-section-5.ani-next .right-item, .ssn-body .ame-main .ame-section-5.ani-prev .right-item, .ssn-body .ame-main .ame-section-6.ani-next .right-item, .ssn-body .ame-main .ame-section-6.ani-prev .right-item, .ssn-body .ame-main .ame-section-7.ani-next .right-item, .ssn-body .ame-main .ame-section-7.ani-prev .right-item, .ssn-body .ame-main .ame-section-8.ani-next .right-item, .ssn-body .ame-main .ame-section-8.ani-prev .right-item {
  display: none
}

.ssn-body .ame-main .ame-section-2.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-2.ani-prev.ani-show .right-item, .ssn-body .ame-main .ame-section-3.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-3.ani-prev.ani-show .right-item, .ssn-body .ame-main .ame-section-4.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-4.ani-prev.ani-show .right-item, .ssn-body .ame-main .ame-section-5.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-5.ani-prev.ani-show .right-item, .ssn-body .ame-main .ame-section-6.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-6.ani-prev.ani-show .right-item, .ssn-body .ame-main .ame-section-7.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-7.ani-prev.ani-show .right-item, .ssn-body .ame-main .ame-section-8.ani-next.ani-show .right-item, .ssn-body .ame-main .ame-section-8.ani-prev.ani-show .right-item {
  display: block
}

.ssn-body .ame-main .ame-section-2.ani-next .personality-color, .ssn-body .ame-main .ame-section-2.ani-prev .personality-color, .ssn-body .ame-main .ame-section-3.ani-next .personality-color, .ssn-body .ame-main .ame-section-3.ani-prev .personality-color, .ssn-body .ame-main .ame-section-4.ani-next .personality-color, .ssn-body .ame-main .ame-section-4.ani-prev .personality-color, .ssn-body .ame-main .ame-section-5.ani-next .personality-color, .ssn-body .ame-main .ame-section-5.ani-prev .personality-color, .ssn-body .ame-main .ame-section-6.ani-next .personality-color, .ssn-body .ame-main .ame-section-6.ani-prev .personality-color, .ssn-body .ame-main .ame-section-7.ani-next .personality-color, .ssn-body .ame-main .ame-section-7.ani-prev .personality-color, .ssn-body .ame-main .ame-section-8.ani-next .personality-color, .ssn-body .ame-main .ame-section-8.ani-prev .personality-color {
  animation: aniProSlideOutUp-10 .5s ease-in-out;
  margin-top: -10%;
  opacity: 0
}

.ssn-body .ame-main .ame-section-2.ani-current .personality-color, .ssn-body .ame-main .ame-section-3.ani-current .personality-color, .ssn-body .ame-main .ame-section-4.ani-current .personality-color, .ssn-body .ame-main .ame-section-5.ani-current .personality-color, .ssn-body .ame-main .ame-section-6.ani-current .personality-color, .ssn-body .ame-main .ame-section-7.ani-current .personality-color, .ssn-body .ame-main .ame-section-8.ani-current .personality-color {
  animation: aniProSlideInDown-12 .5s ease-in-out;
  margin-top: 0;
  opacity: 1
}

.sitemap-page {
  margin-left: 20px
}

@media (min-width:768px) {
  .sitemap-page {
    margin-left: auto
  }
}

.sitemap-page .banner-img {
  margin: 15px -15px 0 -35px
}

.sitemap-page .sitemap-title {
  margin-top: 40px;
  margin-bottom: 40px
}

.sitemap-page .sitemap-title h1 {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  font-size: 4.2857rem
}

@media (min-width:768px) {
  .sitemap-page .sitemap-title h1 {
    position: relative;
    padding-bottom: 1.429rem
  }

  .sitemap-page .sitemap-title h1:after {
    position: absolute;
    z-index: 2;
    content: " ";
    display: block;
    padding: 5px 20px;
    border-radius: 15px;
    bottom: 0
  }

  .red-2-orange .sitemap-page .sitemap-title h1:after, .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #d11e47, #ef7922);
    background: -webkit-gradient(to right, #d11e47, #ef7922);
    background: -o-linear-gradient(to right, #d11e47, #ef7922)
  }

  .yellow-2-green .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #ffc012, #80c242);
    background: -webkit-gradient(to right, #ffc012, #80c242);
    background: -o-linear-gradient(to right, #ffc012, #80c242)
  }

  .teal-2-blue .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #6ac5b0, #3292cf);
    background: -webkit-gradient(to right, #6ac5b0, #3292cf);
    background: -o-linear-gradient(to right, #6ac5b0, #3292cf)
  }

  .navy-2-purple .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #02549d, #c11c8a);
    background: -webkit-gradient(to right, #02549d, #c11c8a);
    background: -o-linear-gradient(to right, #02549d, #c11c8a)
  }

  .orange-2-red .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #ef7922, #d11e47);
    background: -webkit-gradient(to right, #ef7922, #d11e47);
    background: -o-linear-gradient(to right, #ef7922, #d11e47)
  }

  .green-2-yellow .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #80c242, #ffc012);
    background: -webkit-gradient(to right, #80c242, #ffc012);
    background: -o-linear-gradient(to right, #80c242, #ffc012)
  }

  .blue-2-teal .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #3292cf, #6ac5b0);
    background: -webkit-gradient(to right, #3292cf, #6ac5b0);
    background: -o-linear-gradient(to right, #3292cf, #6ac5b0)
  }

  .purple-2-navy .sitemap-page .sitemap-title h1:after {
    background: linear-gradient(90deg, #c11c8a, #02549d);
    background: -webkit-gradient(to right, #c11c8a, #02549d);
    background: -o-linear-gradient(to right, #c11c8a, #02549d)
  }
}

.sitemap-page .col-12 {
  margin-bottom: 50px
}

.sitemap-page .col-md-4:after, .sitemap-page .col-md-4:before {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #cecece
}

.sitemap-page .col-md-4:after {
  height: 1px;
  right: 15px;
  left: 0;
  bottom: 0
}

.sitemap-page .col-md-4:last-child:after, .sitemap-page .col-md-4:last-child:before {
  content: none
}

@media (min-width:768px) {
  .sitemap-page .col-md-4:before {
    width: 1px;
    top: 0;
    right: 10px;
    bottom: 35px
  }

  .sitemap-page .col-md-4:after {
    content: none
  }
}

@media (min-width:1200px) {
  .sitemap-page .col-md-4:before {
    right: 20px
  }
}

@media (min-width:1600px) {
  .sitemap-page .col-md-4:before {
    right: 30px
  }
}

.sitemap-page .item-level-1 {
  list-style: none;
  width: 90%;
  margin-bottom: 40px;
  padding: 0
}

.sitemap-page .item-level-1 h2 {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .05rem
}

.sitemap-page .item-level-1 .item-level-2 {
  margin-bottom: 15px
}

.sitemap-page .item-level-1 .item-level-2 h6 {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  font-size: 1.2857rem
}

.sitemap-page .item-level-1 .item-level-2 a.active, .sitemap-page .item-level-1 .item-level-2 a:hover {
  color: #999
}

.at-country-selector {
  width: 100%;
  min-height: 115vh
}

@media (min-width:1400px) {
  .at-country-selector {
    min-height: 100vh
  }
}

.at-country-selector .country-selector-page-title {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  font-size: 2.1429rem;
  position: relative;
  margin-top: 30px;
  margin-bottom: 70px;
  padding-bottom: 25px
}

@media (min-width:768px) {
  .at-country-selector .country-selector-page-title {
    font-size: 3.7143rem;
    padding-bottom: 7px;
    margin: 60px 0
  }
}

.at-country-selector .country-selector-page-title:before {
  content: "";
  position: absolute;
  left: 0;
  height: 8px;
  width: 40px;
  top: 100%;
  background: linear-gradient(90deg, #d11e47, #ef7922);
  background: -webkit-gradient(to right, #d11e47, #ef7922);
  background: -o-linear-gradient(to right, #d11e47, #ef7922);
  border-radius: 5px
}

@media (min-width:992px) {
  .at-country-selector .country-selector-page-title:before {
    height: 10px
  }
}

.red-2-orange .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #d11e47, #ef7922);
  background: -webkit-gradient(to right, #d11e47, #ef7922);
  background: -o-linear-gradient(to right, #d11e47, #ef7922)
}

.yellow-2-green .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #ffc012, #80c242);
  background: -webkit-gradient(to right, #ffc012, #80c242);
  background: -o-linear-gradient(to right, #ffc012, #80c242)
}

.teal-2-blue .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #6ac5b0, #3292cf);
  background: -webkit-gradient(to right, #6ac5b0, #3292cf);
  background: -o-linear-gradient(to right, #6ac5b0, #3292cf)
}

.navy-2-purple .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #02549d, #c11c8a);
  background: -webkit-gradient(to right, #02549d, #c11c8a);
  background: -o-linear-gradient(to right, #02549d, #c11c8a)
}

.orange-2-red .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #ef7922, #d11e47);
  background: -webkit-gradient(to right, #ef7922, #d11e47);
  background: -o-linear-gradient(to right, #ef7922, #d11e47)
}

.green-2-yellow .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #80c242, #ffc012);
  background: -webkit-gradient(to right, #80c242, #ffc012);
  background: -o-linear-gradient(to right, #80c242, #ffc012)
}

.blue-2-teal .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #3292cf, #6ac5b0);
  background: -webkit-gradient(to right, #3292cf, #6ac5b0);
  background: -o-linear-gradient(to right, #3292cf, #6ac5b0)
}

.purple-2-navy .at-country-selector .country-selector-page-title:before {
  background: linear-gradient(90deg, #c11c8a, #02549d);
  background: -webkit-gradient(to right, #c11c8a, #02549d);
  background: -o-linear-gradient(to right, #c11c8a, #02549d)
}

.at-country-selector .country-selector-section-title {
  font-family: "Geologica", sans-serif !important;
  font-weight: 700;
  font-size: 1.4286rem;
  letter-spacing: 0
}

@media (min-width:992px) {
  .at-country-selector .country-selector-section-title {
    font-size: 1.7857rem;
    letter-spacing: 1px
  }
}

.at-country-selector .country-selector-list {
  width: 100%;
  margin-bottom: 60px;
  margin-top: 20px
}

@media (min-width:992px) {
  .at-country-selector .country-selector-list {
    width: 70%
  }
}

@media (min-width:1200px) {
  .at-country-selector .country-selector-list {
    width: 60%
  }
}

@media (min-width:768px) {
  .at-country-selector .country-selector-list .country-list-content {
    width: 49%;
    float: left
  }
}

.at-country-selector .country-selector-list p {
  margin: 0;
  line-height: 40px
}

.at-country-selector .country-selector-list p a {
  font-size: .929rem
}

.at-country-selector .country-selector-list p a:hover {
  color: silver
}
