@charset "UTF-8";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.product-detail-informations .promotion-message {
  display: inline-block; }
  .product-detail-informations .promotion-message .callout.tooltip-explanations {
    display: block;
    width: unset; }

.tooltip-explanations {
  position: relative;
  opacity: 1; }
  .tooltip-explanations .tooltip-text {
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    border-radius: 0;
    font-size: 0.6681rem;
    font-weight: 200;
    border: 1px solid #d9d9d9;
    color: #000;
    bottom: 200%;
    left: 0;
    opacity: 0;
    z-index: 9999;
    text-transform: none; }
    .tooltip-explanations .tooltip-text.promotion-tooltip {
      min-width: 170px;
      text-align: left;
      padding: unset;
      transition: all 0.3s ease-in;
      display: block; }
      @media (min-width: 768px) {
        .tooltip-explanations .tooltip-text.promotion-tooltip {
          min-width: 250px; } }
    @media (min-width: 768px) {
      .tooltip-explanations .tooltip-text {
        left: -10px;
        bottom: 170%;
        font-size: 0.928rem; } }
    @media (min-width: 992px) {
      .tooltip-explanations .tooltip-text {
        top: auto;
        bottom: 100%;
        left: 50%;
        transform: translate(-50%, -15px); } }
    .tooltip-explanations .tooltip-text::before {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 15px;
      border: 10px solid transparent;
      border-top-color: #d9d9d9; }
      @media (min-width: 768px) {
        .tooltip-explanations .tooltip-text::before {
          bottom: -19px;
          left: 43px; } }
      @media (min-width: 992px) {
        .tooltip-explanations .tooltip-text::before {
          top: 100%;
          left: 50%;
          transform: translateX(-50%); } }
    .tooltip-explanations .tooltip-text::after {
      content: '';
      position: absolute;
      bottom: -16px;
      left: 17px;
      border: 8px solid transparent;
      border-top-color: #fff; }
      @media (min-width: 768px) {
        .tooltip-explanations .tooltip-text::after {
          bottom: -15px;
          left: 45px; } }
      @media (min-width: 992px) {
        .tooltip-explanations .tooltip-text::after {
          top: 99.99%;
          left: 50%;
          transform: translateX(-50%); } }
    .tooltip-explanations .tooltip-text .tooltip-content {
      max-height: 190px;
      overflow-y: auto;
      display: inline-block;
      padding: 10px; }
      .tooltip-explanations .tooltip-text .tooltip-content::-webkit-scrollbar {
        width: 0.5rem; }
      .tooltip-explanations .tooltip-text .tooltip-content::-webkit-scrollbar-thumb {
        background: #888888;
        border-radius: 100vw; }
      .tooltip-explanations .tooltip-text .tooltip-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 100vw; }
      .tooltip-explanations .tooltip-text .tooltip-content::-webkit-scrollbar-thumb:hover {
        background: #b8b8b8; }
  .tooltip-explanations:hover {
    cursor: pointer; }
    .tooltip-explanations:hover .tooltip-text {
      display: block !important;
      visibility: visible;
      opacity: 1; }

.cart-container .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip {
  left: auto;
  bottom: 120%;
  right: 0; }
  @media (min-width: 992px) {
    .cart-container .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip {
      left: 30%;
      bottom: 50%; } }
  .cart-container .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip::before {
    left: 50%; }
  .cart-container .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip::after {
    left: 50.7%; }
    @media (min-width: 992px) {
      .cart-container .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip::after {
        left: 50%; } }

.page-checkout .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip {
  left: auto;
  right: 0;
  bottom: 130%;
  transform: unset; }
  .page-checkout .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip::before {
    left: 50%;
    top: 100%; }
  .page-checkout .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip::after {
    left: 50.7%;
    top: 100%; }
  @media (min-width: 992px) {
    .page-checkout .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip::after {
      left: 50%; } }
  .page-checkout .product-card-promotion-detail.tooltip-explanations .tooltip-text.promotion-tooltip .tooltip-content {
    max-height: 130px; }

.homepage .tooltip-explanations .tooltip-text {
  display: none !important; }

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

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

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

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

.search-results-wrapper .product-grid .product-tile .rating-star > [id^="category-snippet-"] {
  height: 20px; }

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

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

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

.product-nav {
  font-size: 1.1429rem; }
  @media (min-width: 768px) {
    .product-nav {
      padding-left: 0; } }
  @media (min-width: 992px) {
    .product-nav {
      padding-left: 2.857em;
      padding-top: 2.857em; } }
  @media (min-width: 1600px) {
    .product-nav {
      padding-left: 3.75em;
      padding-top: 3.75em; } }
  .product-nav .quick-links {
    padding-left: 0;
    margin-bottom: 0;
    text-transform: uppercase; }
    .product-nav .quick-links li {
      list-style: none;
      margin-bottom: 2.857em; }
      .product-nav .quick-links li.active {
        border-color: #000; }
      .product-nav .quick-links li:last-child {
        margin-bottom: 0; }
      .product-nav .quick-links li a {
        display: inline-block;
        border-bottom: 3px solid transparent; }
        .product-nav .quick-links li a.active {
          border-color: #000; }

.product-reviews {
  padding-top: 3.571em;
  padding-left: 20px;
  padding-right: 20px; }
  .is-b2b-customer ~ .page .product-reviews {
    display: none; }
  @media (min-width: 768px) {
    .product-reviews {
      padding-left: 30px;
      padding-right: 30px; } }
  .product-reviews h2 {
    font-weight: 700;
    font-size: 1.4286rem;
    text-align: center;
    text-transform: uppercase; }
  .product-reviews .p-w-r .pr-ratings-histogram-list-item {
    display: block; }
    .product-reviews .p-w-r .pr-ratings-histogram-list-item:focus {
      outline: none;
      box-shadow: none; }
    .product-reviews .p-w-r .pr-ratings-histogram-list-item .pr-histogram-stars:focus {
      outline: none;
      box-shadow: none; }
  .product-reviews .p-w-r .pr-rd-review-headline:focus {
    outline: none;
    box-shadow: none; }
  .product-reviews #pr-image-display {
    display: none; }

.is-b2b-customer ~ .page .pwr-pdp {
  display: none; }

.pwr-pdp .p-w-r .pr-snippet-rating-decimal {
  display: none; }

.pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write {
  display: none; }

.pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
  background: none;
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  margin-right: 3px;
  margin-left: 0; }
  .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    content: '\F005';
    position: absolute;
    width: 100%;
    height: 100%;
    color: #c6c6c5;
    font-size: 10px;
    top: 0;
    left: 0; }
  @media (min-width: 992px) {
    .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
      width: 14px;
      height: 14px; }
      .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
        font-size: 14px; } }

@media (min-width: 992px) {
  .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-100-filled::before,
  .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-50-filled::before {
    font-size: 14px; } }

.pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-100-filled::before,
.pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-50-filled::before {
  color: #094f8d; }

.pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-100-filled:hover,
.pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-50-filled:hover {
  width: 10px;
  height: 10px;
  margin-right: 3px; }

@media (min-width: 992px) {
  .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-100-filled:hover,
  .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-50-filled:hover {
    width: 14px;
    height: 14px; } }

.pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png {
  display: block; }
  .pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png .pr-rating-stars {
    display: block;
    text-align: right; }

.pwr-pdp .p-w-r .pr-snippet-stars-reco-reco {
  display: none; }

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

.reviews .p-w-r,
.qanda .p-w-r {
  font-weight: 400; }
  .reviews .p-w-r span,
  .qanda .p-w-r span {
    color: #000; }

.p-w-r {
  font-weight: 400; }
  .p-w-r .pr-review-snapshot-faceoff {
    display: none; }
  .p-w-r .pr-review-display .pr-rating-stars [class^="pr-star"],
  .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars [class^="pr-star"] {
    background: none;
    position: relative;
    width: 1.429em;
    height: 1.429em;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    margin-right: 0.35714em;
    margin-left: 0; }
    .p-w-r .pr-review-display .pr-rating-stars [class^="pr-star"]::before,
    .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars [class^="pr-star"]::before {
      font-family: 'FontAwesome';
      font-style: normal;
      font-weight: normal;
      content: '\F005';
      position: absolute;
      width: 100%;
      height: 100%;
      color: #c6c6c5;
      font-size: 20px;
      top: 0;
      left: 0; }
    @media (min-width: 992px) {
      .p-w-r .pr-review-display .pr-rating-stars [class^="pr-star"],
      .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars [class^="pr-star"] {
        width: 14px;
        height: 14px; }
        .p-w-r .pr-review-display .pr-rating-stars [class^="pr-star"]::before,
        .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars [class^="pr-star"]::before {
          font-size: 14px; }
        .p-w-r .pr-review-display .pr-rating-stars [class^="pr-star"]:hover,
        .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars [class^="pr-star"]:hover {
          width: 14px;
          height: 14px;
          margin-right: 0.35714em; } }
  .p-w-r .pr-review-display .pr-rating-stars .pr-star-v4-100-filled::before,
  .p-w-r .pr-review-display .pr-rating-stars .pr-star-v4-50-filled::before,
  .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars .pr-star-v4-100-filled::before,
  .p-w-r .pr-review-snapshot .pr-snippet .pr-snippet-stars-png .pr-rating-stars .pr-star-v4-50-filled::before {
    color: #094f8d; }
  .p-w-r .pr-review-snapshot,
  .p-w-r .pr-review-snapshot.pr-snapshot-mobile {
    -ms-flex-direction: column;
        flex-direction: column;
    font-weight: 400;
    padding-bottom: 2.857em;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; }
    @media (min-width: 768px) {
      .p-w-r .pr-review-snapshot,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile {
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-pack: justify;
            justify-content: space-between;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto; }
        .p-w-r .pr-review-snapshot::before, .p-w-r .pr-review-snapshot::after,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile::before,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile::after {
          content: none !important; } }
    @media (min-width: 1200px) {
      .p-w-r .pr-review-snapshot,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile {
        max-width: 1140px; } }
    @media (min-width: 768px) {
      .p-w-r .pr-review-snapshot .pr-accessible-focus-element,
      .p-w-r .pr-review-snapshot .pr-faceoff-empty,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-accessible-focus-element,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-faceoff-empty {
        display: none; } }
    .p-w-r .pr-review-snapshot .pr-review-snapshot-header,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header {
      -ms-flex-order: 2;
          order: 2;
      margin-bottom: 0; }
      @media (min-width: 768px) {
        .p-w-r .pr-review-snapshot .pr-review-snapshot-header,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header {
          -ms-flex: 0 0 33.33%;
              flex: 0 0 33.33%;
          max-width: 33.33%; } }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-reco,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-reco {
        display: none; }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-stars,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-stars {
        text-align: center; }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-stars .pr-snippet-rating-decimal,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-reco-stars .pr-snippet-rating-decimal {
          display: none; }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-container,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-stars-container {
        display: block;
        margin-bottom: 1.14286em; }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-review-count,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-review-count {
        display: block;
        text-align: center;
        font-weight: 400;
        font-size: 1.2857rem !important;
        margin-bottom: 1.14286em; }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link {
        color: #000;
        background-color: #fff;
        border: 2px solid #000;
        display: inline-block;
        text-transform: uppercase;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 0;
        background-color: #000;
        color: #fff;
        padding-top: 0.71429em;
        padding-bottom: 0.71429em;
        padding-left: 1.57143em;
        padding-right: 1.57143em; }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:hover, .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:focus,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:hover,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:focus {
          background-color: #000; }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:hover, .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:focus,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:hover,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link:focus {
          text-decoration: none; }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link + .review-benefit-message,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-snippets .pr-snippet-write-review-link + .review-benefit-message {
          display: block;
          padding-top: 15px;
          font-size: 1.1429rem !important; }
    .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container {
      -ms-flex-order: 1;
          order: 1; }
      @media (min-width: 768px) {
        .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container {
          -ms-flex: 0 0 33.33%;
              flex: 0 0 33.33%;
          max-width: 33.33%; } }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram {
        margin-bottom: 0;
        float: none;
        border: none;
        padding-top: 1.429em;
        padding-bottom: 1.429em;
        border-radius: 0; }
        @media (min-width: 768px) {
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram {
            width: 100%;
            margin-right: 0;
            min-height: 0; } }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-review-snapshot-block-headline,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-review-snapshot-block-histogram .pr-review-snapshot-block-headline {
          display: none; }
      .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list,
      .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list {
        margin-top: 0;
        display: block;
        padding-left: 2.143em;
        padding-right: 2.143em; }
        @media (min-width: 768px) {
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list {
            padding-left: 0;
            padding-right: 0; } }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars {
          display: -ms-flexbox !important;
          display: flex !important;
          -ms-flex-align: center;
              align-items: center; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-1Stars .pr-histogram-label::before,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-1Stars .pr-histogram-label::before {
            content: "1"; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-2Stars .pr-histogram-label::before,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-2Stars .pr-histogram-label::before {
            content: "2"; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-3Stars .pr-histogram-label::before,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-3Stars .pr-histogram-label::before {
            content: "3"; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-4Stars .pr-histogram-label::before,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-4Stars .pr-histogram-label::before {
            content: "4"; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-5Stars .pr-histogram-label::before,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars.pr-histogram-5Stars .pr-histogram-label::before {
            content: "5"; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars:hover,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars:hover {
            background: none; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-ratings-histogram-bar-container,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-ratings-histogram-bar-container {
            width: calc(100% - 2.143em);
            display: block;
            padding-left: 0.71429em; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-count,
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-cross,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-count,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-cross {
            display: none; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-label,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-label {
            color: #000;
            font-size: 1.1429rem;
            padding-left: 0;
            padding-right: 0.71429em;
            text-indent: -999em;
            position: relative;
            display: block;
            width: 2.143em; }
            .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-label::after,
            .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-label::after {
              text-indent: 0;
              content: "\E918";
              position: absolute;
              right: 0;
              top: 0;
              z-index: 1;
              color: #094f8d;
              font-family: "Samsonite-icons";
              font-style: normal;
              font-weight: normal; }
            .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-label::before,
            .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-histogram-stars .pr-histogram-label::before {
              text-indent: 0;
              position: absolute;
              left: 0;
              top: 0; }
        .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-ratings-histogram-bar,
        .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-ratings-histogram-bar {
          background-color: #c6c6c5;
          height: 20px;
          border-radius: 0; }
          .p-w-r .pr-review-snapshot .pr-review-snapshot-block-container .pr-histogram-list .pr-ratings-histogram-bar .pr-ratings-histogram-barValue,
          .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-container .pr-histogram-list .pr-ratings-histogram-bar .pr-ratings-histogram-barValue {
            background-color: #000;
            height: 20px; }
    .p-w-r .pr-review-snapshot .pr-review-snapshot-block-pros,
    .p-w-r .pr-review-snapshot .pr-review-snapshot-block-cons,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-pros,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-block-cons {
      display: none; }
    .p-w-r .pr-review-snapshot .pr-review-snapshot-header-intro,
    .p-w-r .pr-review-snapshot .pr-review-snapshot-msq-container,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header-intro,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-msq-container {
      display: none; }
    .p-w-r .pr-review-snapshot .pr-review-snapshot-header .pr-review-snapshot-header-intro,
    .p-w-r .pr-review-snapshot.pr-snapshot-mobile .pr-review-snapshot-header .pr-review-snapshot-header-intro {
      display: none; }
  @media (min-width: 768px) {
    .p-w-r .pr-review-display {
      padding-top: 2.857em;
      border-top: 1px solid #000; } }
  .p-w-r .pr-review-display .pr-rd-no-reviews {
    margin-top: 2.857em; }
    @media (min-width: 768px) {
      .p-w-r .pr-review-display .pr-rd-no-reviews {
        margin-bottom: 2.857em; } }
    .p-w-r .pr-review-display .pr-rd-no-reviews .review-benefit-message {
      display: block;
      padding-top: 15px;
      color: #000;
      font-size: 1.1429rem !important; }
  .p-w-r .pr-review-display .pr-rd-main-header {
    display: none; }
  .p-w-r .pr-review-display p {
    color: #000; }
  .p-w-r .pr-review-display .pr-review {
    margin-left: 0 !important;
    border-top: 1px solid #000;
    padding-top: 2.143em;
    padding-bottom: 0.71429em; }
    @media (min-width: 768px) {
      .p-w-r .pr-review-display .pr-review {
        max-width: 720px;
        margin-left: auto !important;
        margin-right: auto;
        padding-left: 7.4%;
        padding-right: 7.5%; } }
    @media (min-width: 1200px) {
      .p-w-r .pr-review-display .pr-review {
        max-width: 1140px; } }
    .p-w-r .pr-review-display .pr-review .pr-snippet-rating-decimal,
    .p-w-r .pr-review-display .pr-review .pr-verified_reviewer {
      display: none; }
    .p-w-r .pr-review-display .pr-review .pr-rd-review-headline {
      font-weight: 500; }
    .p-w-r .pr-review-display .pr-review .pr-rd-side-content-block {
      font-weight: 400; }
      .p-w-r .pr-review-display .pr-review .pr-rd-side-content-block .pr-rd-details {
        font-size: 0.879em; }
        .p-w-r .pr-review-display .pr-review .pr-rd-side-content-block .pr-rd-details.pr-rd-author-location {
          display: none; }
        .p-w-r .pr-review-display .pr-review .pr-rd-side-content-block .pr-rd-details .pr-rd-bold {
          font-weight: normal; }
      .p-w-r .pr-review-display .pr-review .pr-rd-side-content-block .pr-rd-description-text {
        font-size: 1.094em; }
    .p-w-r .pr-review-display .pr-review .pr-accordion-collapsed,
    .p-w-r .pr-review-display .pr-review .pr-accordion .pr-accordion-btn {
      display: none; }
    .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block {
      margin-bottom: initial; }
      .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-review-tag {
        float: initial;
        margin-right: initial;
        width: initial;
        margin-bottom: 0.5rem; }
        .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-review-tag dt,
        .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-review-tag dd {
          background: initial;
          padding: initial;
          font-size: 1rem; }
        .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-review-tag dd {
          display: inline-block; }
          .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-review-tag dd::after {
            content: ',\A0'; }
          .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-review-tag dd:last-child::after {
            content: normal; }
      .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-def-list {
        display: block;
        margin-bottom: 0.5rem; }
        .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-def-list dt,
        .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-def-list dd {
          display: block;
          height: inherit;
          min-height: inherit;
          font-size: 1rem; }
        .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-def-list dd {
          display: inline-block; }
          .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-def-list dd::after {
            content: ',\A0'; }
          .p-w-r .pr-review-display .pr-review .pr-accordion .pr-rd-content-block .pr-rd-def-list dd:last-child::after {
            content: normal; }
    .p-w-r .pr-review-display .pr-review .pr-rd-footer {
      padding-bottom: 0;
      margin-bottom: 0; }
      .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-rd-bottomline,
      .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-rd-flag-review-container {
        display: none; }
      .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-rd-helpful-text {
        font-weight: 400;
        font-size: 0.9em;
        display: inline-block;
        vertical-align: middle; }
      .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-helpful-btn {
        border: none;
        margin: 0;
        padding: 0;
        font-size: 0.9em;
        font-weight: 400; }
        .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-helpful-btn.pr-helpful-yes .pr-thumbs-icon::before {
          content: 'Yes'; }
        .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-helpful-btn.pr-helpful-no .pr-thumbs-icon::before {
          content: 'No'; }
        .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-helpful-btn .pr-thumbs-icon svg {
          display: none; }
        .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-helpful-btn .pr-helpful-count::before {
          content: '('; }
        .p-w-r .pr-review-display .pr-review .pr-rd-footer .pr-helpful-btn .pr-helpful-count::after {
          content: ')'; }
  .p-w-r .pr-review-display .pr-rd-main-footer {
    display: block;
    font-weight: 200;
    border-color: #000; }
    @media (min-width: 1200px) {
      .p-w-r .pr-review-display .pr-rd-main-footer .pr-rd-content-block {
        width: 1140px !important;
        margin: auto;
        margin-top: 30px; } }
    .p-w-r .pr-review-display .pr-rd-main-footer .pr-rd-content-block .pr-rd-review-position {
      font-weight: 200; }
      .p-w-r .pr-review-display .pr-rd-main-footer .pr-rd-content-block .pr-rd-review-position span.pr-rd-bold {
        font-weight: normal; }
    .p-w-r .pr-review-display .pr-rd-main-footer .pr-rd-content-block .pr-rd-pagination-btn {
      font-weight: 200;
      color: #000 !important; }
    .p-w-r .pr-review-display .pr-rd-main-footer .pr-rd-content-block .pr-rd-to-top {
      display: none; }
  .p-w-r .pr-review-display .pr-snippet-write-review-link {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    padding-top: 0.71429em;
    padding-bottom: 0.71429em;
    padding-left: 1.57143em;
    padding-right: 1.57143em; }
    .p-w-r .pr-review-display .pr-snippet-write-review-link:hover, .p-w-r .pr-review-display .pr-snippet-write-review-link:focus {
      background-color: #000; }
    .p-w-r .pr-review-display .pr-snippet-write-review-link:hover, .p-w-r .pr-review-display .pr-snippet-write-review-link:focus {
      text-decoration: none; }

.qanda {
  display: none; }
  @media (min-width: 768px) {
    .qanda {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 7.4%;
      padding-right: 7.5%; } }
  @media (min-width: 1200px) {
    .qanda {
      max-width: 1140px; } }
  .qanda .p-w-r .pr-qa-display {
    padding-left: 0;
    padding-right: 0; }
    @media (min-width: 768px) {
      .qanda .p-w-r .pr-qa-display .pr-waqwaa {
        margin-left: auto;
        margin-right: auto; } }
    @media (min-width: 768px) {
      .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-headline {
        text-align: center; } }
    .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-headline h1 {
      font-weight: 500;
      font-size: 1.475rem; }
      @media (min-width: 768px) {
        .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-headline h1 {
          float: none;
          max-width: 31.429em;
          margin-left: auto;
          margin-right: auto; } }
      @media (min-width: 1600px) {
        .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-headline h1 {
          font-size: 1.844rem; } }
    .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-headline .pr-btn-review {
      color: #000;
      background-color: #fff;
      border: 2px solid #000;
      display: inline-block;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 0;
      float: none;
      margin-top: 3.514em;
      font-size: 1.0714rem;
      padding: 0.8em 3em; }
    @media (min-width: 768px) {
      .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-ask-question {
        float: none;
        padding-left: 0; } }
    .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-thankyou-headline {
      float: none;
      font-size: 1.2857rem; }
      @media (min-width: 1600px) {
        .qanda .p-w-r .pr-qa-display.pr-qa-display-tablet .pr-qa-display-thankyou-headline {
          font-size: 1.4286rem; } }
    .qanda .p-w-r .pr-qa-display .pr-qa-display-headline {
      font-weight: 500;
      text-align: center;
      font-size: 1.2857rem;
      margin-bottom: 2.22em; }
      .qanda .p-w-r .pr-qa-display .pr-qa-display-headline h1 {
        font-size: 1.2857rem;
        margin: 0;
        text-align: center; }
    .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question {
      text-align: center; }
      .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-btn-ask-question {
        color: #000;
        background-color: #fff;
        border: 2px solid #000;
        display: inline-block;
        text-transform: uppercase;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 0;
        margin-left: 0;
        margin-bottom: 0;
        font-size: 0.857rem;
        padding-top: 0.71429em;
        padding-bottom: 0.71429em;
        padding-left: 2.143em;
        padding-right: 2.143em; }
        .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-btn-ask-question:focus {
          text-decoration: none;
          box-shadow: none; }
        .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-btn-ask-question .pr-cross-icon {
          display: none; }
        .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-btn-ask-question .pr-qa-display-text {
          color: #000;
          font-size: 0.857rem;
          font-weight: 700;
          letter-spacing: 0.05em;
          text-shadow: none;
          background: none; }
      .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form {
        margin-top: 2.143em; }
        .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-btn {
          color: #000; }
          .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-btn.active {
            background-color: #000;
            color: #fff; }
          .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-btn:active, .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-btn:focus {
            outline: 0; }
        .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-accessible-btn.pr-btn-default {
          color: #000;
          background-color: #fff;
          border: 2px solid #000;
          display: inline-block;
          text-transform: uppercase;
          font-weight: 700;
          padding: 5px 10px;
          border-radius: 0;
          background-color: #000;
          color: #fff;
          padding-top: 0.71429em;
          padding-bottom: 0.71429em;
          letter-spacing: 0.05em; }
          .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-accessible-btn.pr-btn-default:hover, .qanda .p-w-r .pr-qa-display .pr-qa-display-ask-question .pr-question-form .pr-accessible-btn.pr-btn-default:focus {
            background-color: #000; }
    .qanda .p-w-r .pr-qa-display .pr-qa-display-thankyou-headline {
      font-size: 1.1429rem;
      text-align: center;
      float: none; }
    .qanda .p-w-r .pr-qa-display .pr-control-label span {
      font-size: 0.929rem;
      color: #000; }
    .qanda .p-w-r .pr-qa-display .pr-waq-legal-text span {
      font-size: 0.929rem;
      line-height: 1.1;
      color: #000; }

#pr-questionsnippet.pwr-pdp {
  display: none; }

@media (min-width: 1200px) {
  #pr-review-display .pr-rd-images {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px; } }

.product-size-chart h4 {
  font-size: 0.88rem;
  margin-bottom: 10px;
  font-weight: 200; }
  @media (min-width: 992px) {
    .product-size-chart h4 {
      font-size: 1rem; } }

.product-size-chart .product-size-chart-images .image-item {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
  min-height: 18.214em; }
  @media (min-width: 768px) {
    .product-size-chart .product-size-chart-images .image-item {
      min-height: 18.929em; } }

.product-size-chart .product-size-chart-images img {
  width: auto;
  vertical-align: bottom;
  position: absolute;
  bottom: 0; }

.product-size-chart .product-size-chart-images .ico-product {
  right: 0; }

.product-size-chart .product-size-chart-images .ico-people {
  left: 0; }

@media (min-width: 768px) {
  .product-size-chart .product-sichart-slider {
    max-width: 32.143em;
    margin-left: auto;
    margin-right: auto; } }

.product-size-chart .slider-text {
  font-size: 0.857rem;
  font-weight: 200; }

.product-size-chart .slider-range {
  position: relative;
  min-height: 3em;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex; }
  .product-size-chart .slider-range .fa-caret {
    position: absolute;
    top: 50%;
    z-index: 2;
    font-size: 1.2857rem;
    transform: translateY(-50%); }
  .product-size-chart .slider-range .fa-caret-left {
    left: 0; }
  .product-size-chart .slider-range .fa-caret-right {
    right: 0; }
  .product-size-chart .slider-range .slider-current {
    position: absolute;
    top: 2.871em;
    z-index: 1;
    left: 62.5%;
    transform: translateX(-50%); }

.product-size-chart .slider-range-value {
  position: relative;
  margin-left: 0.714em;
  margin-right: 0.714em;
  min-height: 0.357em; }

.product-size-chart [type='range'] {
  position: absolute;
  top: 50%;
  cursor: pointer;
  outline: 0;
  transform: translateY(-50%);
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--val) - var(--min)) / var(--range));
  --sx: calc(0.5 * 1.5em + var(--ratio) * (100% - 1.5em));
  margin: 0;
  padding: 0;
  width: calc(100% - 0.714em);
  margin-left: 0.3571em;
  height: 1.5em;
  background: transparent; }
  .product-size-chart [type='range'], .product-size-chart [type='range']::-webkit-slider-thumb {
    -webkit-appearance: none; }
  .product-size-chart [type='range']::-webkit-slider-runnable-track {
    box-sizing: border-box;
    border: none;
    width: 100%;
    height: 0.15em;
    background: #d8d8d8; }
  .product-size-chart [type='range']::-moz-range-track {
    box-sizing: border-box;
    border: none;
    width: 100%;
    height: 0.15em;
    background: #d8d8d8; }
  .product-size-chart [type='range']::-ms-track {
    box-sizing: border-box;
    border: none;
    width: 100%;
    height: 0.15em;
    background: #d8d8d8; }
  .product-size-chart [type='range']::-moz-range-progress {
    height: 0.15em;
    width: 100%;
    background: #d8d8d8; }
  .product-size-chart [type='range']::-ms-fill-lower {
    height: 0.15em;
    width: 100%;
    background: #d8d8d8; }
  .product-size-chart [type='range']::-ms-fill-upper {
    height: 0.15em;
    width: 100%;
    background: #d8d8d8; }
  .product-size-chart [type='range']::-webkit-slider-thumb {
    margin-top: -0.675em;
    box-sizing: border-box;
    border: 1px solid #000;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff; }
  .product-size-chart [type='range']::-moz-range-thumb {
    box-sizing: border-box;
    border: 1px solid #000;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff; }
  .product-size-chart [type='range']::-ms-thumb {
    margin-top: 0;
    box-sizing: border-box;
    border: 1px solid #000;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff; }
  .product-size-chart [type='range']::-ms-tooltip {
    display: none; }

.size-comparation-image {
  position: relative; }
  .size-comparation-image .dimension-value {
    position: absolute;
    z-index: 1; }
  .size-comparation-image .dimension-height {
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
  .size-comparation-image .dimension-length {
    top: 0;
    left: 25%; }
  .size-comparation-image .dimension-width {
    top: 0;
    right: 25%; }
  .size-comparation-image .size-comparation-weight {
    position: absolute;
    bottom: 1%;
    right: 0;
    z-index: 1; }

.product-detail-informations .size-comparation-wrapper.product-dimension {
  margin-bottom: 1em; }

.card-body .size-comparation h4 {
  display: none; }

.size-comparation .attr-item {
  margin-right: 0.7em; }
  .size-comparation .attr-item:last-child {
    margin-right: 0; }
  .size-comparation .attr-item.selected .attr-selector {
    color: #fff;
    background-color: #000;
    border-color: #000; }

.size-comparation .size-selection {
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  -ms-flex-pack: center;
      justify-content: center; }
  .size-comparation .size-selection.owl-loaded {
    display: block;
    width: auto;
    margin-right: -10px; }
    .size-comparation .size-selection.owl-loaded .owl-stage {
      margin: 0 auto;
      display: -ms-flexbox;
      display: flex; }

.size-comparation .dimension-size-selection {
  padding-left: 2.2em;
  padding-right: 2.2em;
  margin-top: 2.5em; }

.size-comparation .attr-selector {
  display: inline-block;
  padding: 0.5em 1.571em;
  border: 2px solid #e6e6e6;
  white-space: nowrap;
  font-weight: 200;
  color: #000;
  background-color: #fff;
  font-size: 0.88rem;
  border-radius: 5px; }

.product-dimension.backpack .dimension-width {
  right: 18%; }
  @media (min-width: 1600px) {
    .product-dimension.backpack .dimension-width {
      right: 19%; } }

.product-detail-informations .size-comparison .product-detail-section {
  border: none;
  margin: 0; }

.price {
  font-weight: 200;
  font-size: 1.4286rem;
  color: #000; }
  @media (min-width: 992px) {
    .price {
      font-size: 1.2857rem; } }
  @media (min-width: 1600px) {
    .price {
      font-size: 1.5714rem; } }
  .price .price-inner {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
  .price .strike-through {
    font-size: 100%;
    margin-right: 0.2em;
    color: #000;
    position: relative;
    margin-left: 0; }
    .price .strike-through ~ .sales {
      color: #c00; }
    .price .strike-through .currency-code {
      display: none; }

.prices-add-to-cart-actions {
  box-shadow: none;
  position: relative;
  background-color: none; }
  .prices-add-to-cart-actions .prices {
    padding-top: 0;
    padding-bottom: 0; }
  .prices-add-to-cart-actions .cart-and-ipay {
    padding-bottom: 0; }
  .prices-add-to-cart-actions .add-to-cart,
  .prices-add-to-cart-actions .add-to-cart-global,
  .prices-add-to-cart-actions .notify-me {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0;
    width: auto;
    padding-top: 0.714em;
    padding-bottom: 0.714em;
    margin: 0; }
    @media (min-width: 992px) {
      .prices-add-to-cart-actions .add-to-cart,
      .prices-add-to-cart-actions .add-to-cart-global,
      .prices-add-to-cart-actions .notify-me {
        font-size: 0.929rem; } }
    .prices-add-to-cart-actions .add-to-cart .fa-shopping-bag,
    .prices-add-to-cart-actions .add-to-cart-global .fa-shopping-bag,
    .prices-add-to-cart-actions .notify-me .fa-shopping-bag {
      display: none; }
  .prices-add-to-cart-actions .product-availability {
    position: absolute;
    bottom: 0;
    text-align: center;
    left: 0;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
    @media (min-width: 992px) {
      .prices-add-to-cart-actions .product-availability {
        font-size: 1rem; } }
    .prices-add-to-cart-actions .product-availability .col-12 {
      position: static; }
    .prices-add-to-cart-actions .product-availability .col-sm-4 {
      display: none; }
    .prices-add-to-cart-actions .product-availability .col-sm-8 {
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
      max-width: 100%; }
    .prices-add-to-cart-actions .product-availability ul li {
      display: inline-block; }
  .prices-add-to-cart-actions .apple-pay-pdp {
    display: none; }
  .prices-add-to-cart-actions .quick-checkout {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    width: auto;
    min-width: 40%;
    padding: 0;
    color: #fff;
    padding: 5px 10px;
    font-weight: 700;
    margin-left: 0.65em; }
    .prices-add-to-cart-actions .quick-checkout:hover, .prices-add-to-cart-actions .quick-checkout:focus {
      background-color: #000; }
    @media (min-width: 992px) {
      .prices-add-to-cart-actions .quick-checkout {
        font-size: 0.91rem;
        border-width: 3px;
        padding-top: 0.714em;
        padding-bottom: 0.714em; } }
  .prices-add-to-cart-actions .add-to-cart.btn.btn-primary {
    min-width: 40%; }

.product-detail-banner {
  min-height: 18.429em;
  position: relative;
  z-index: 1;
  background-size: 100%;
  background-repeat: no-repeat; }
  @media (min-width: 768px) {
    .product-detail-banner {
      margin-left: 0;
      margin-right: 0; } }

.primary-images {
  position: relative;
  z-index: 2;
  padding-bottom: 1.786em;
  min-height: 38em; }
  .has-banner .primary-images {
    margin-top: -12.57em; }
  @media (min-width: 768px) {
    .primary-images {
      padding-top: 2.857em;
      min-height: 59em; } }
  @media (min-width: 992px) {
    .primary-images {
      margin-top: 0;
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 0;
      min-height: unset; }
      .has-banner .primary-images {
        margin-top: 0; } }
  @media (min-width: 1600px) {
    .primary-images {
      padding-top: 3.75em; } }
  @media (min-width: 768px) {
    .primary-images .carousel {
      max-width: 35.714em;
      margin-left: auto;
      margin-right: auto; } }
  .primary-images .owl-carousel {
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    min-height: 27.815em;
    -ms-touch-action: auto;
        touch-action: auto; }
    .primary-images .owl-carousel.owl-drag .owl-item {
      -ms-touch-action: auto;
          touch-action: auto; }
    @media (min-width: 768px) {
      .primary-images .owl-carousel {
        display: block; } }
    @media (min-width: 992px) {
      .primary-images .owl-carousel {
        padding: 0; } }
    .primary-images .owl-carousel .owl-nav .owl-prev,
    .primary-images .owl-carousel .owl-nav .owl-next {
      background-color: #f2f2f2; }
    .primary-images .owl-carousel .owl-nav .owl-prev {
      left: 0; }
    .primary-images .owl-carousel .owl-nav .owl-next {
      right: 0; }
    .primary-images .owl-carousel .zoomImg {
      width: auto;
      height: auto;
      z-index: 10; }
    .primary-images .owl-carousel .owl-dots {
      position: absolute;
      bottom: -3%;
      left: 50%;
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex;
      transform: translateX(-50%); }
    .primary-images .owl-carousel .owl-dot {
      display: inline-block;
      width: 0.8em;
      height: 0.8em;
      background-color: #b5b5b5;
      margin: auto 0.8em;
      outline: none;
      border-radius: 20px; }
      @media (min-width: 768px) {
        .primary-images .owl-carousel .owl-dot {
          width: 1.2em;
          height: 1.2em;
          margin: auto 1.2em; } }
      .primary-images .owl-carousel .owl-dot.active {
        background-color: #000;
        outline: none; }
  .primary-images .owl-carousel-item {
    position: relative; }
    .primary-images .owl-carousel-item img:hover {
      cursor: pointer; }
    .primary-images .owl-carousel-item iframe {
      max-width: 110% !important;
      transform: translateX(-5%); }
    .primary-images .owl-carousel-item .product-video-item {
      overflow: hidden; }
    .primary-images .owl-carousel-item .product-video {
      width: 110%;
      height: 95%; }
      @media (min-width: 768px) {
        .primary-images .owl-carousel-item .product-video {
          height: 96%; } }
    .primary-images .owl-carousel-item .disclaim-notify {
      position: absolute;
      font-size: 0.666rem;
      text-align: center;
      bottom: 2px;
      width: 100%;
      left: 50%;
      transform: translateX(-50%);
      font-weight: 200;
      padding: 0 10px; }
      @media (min-width: 768px) {
        .primary-images .owl-carousel-item .disclaim-notify {
          font-size: 0.7rem; } }
      @media (min-width: 992px) {
        .primary-images .owl-carousel-item .disclaim-notify {
          font-size: 0.8714rem;
          top: 97%;
          z-index: 1;
          padding: 0 20px; } }
  .primary-images .btn-magify {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 2em;
    height: 2em;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    display: none;
    outline: 0;
    color: #000; }
    .primary-images .btn-magify:focus {
      outline: 0; }
    @media (min-width: 1600px) {
      .primary-images .btn-magify {
        width: 2.5em;
        height: 2.5em; } }
    .primary-images .btn-magify.mb-show {
      display: block;
      z-index: 1;
      width: 3rem;
      height: 3rem; }
      @media (min-width: 992px) {
        .primary-images .btn-magify.mb-show {
          display: none; } }
  .primary-images .icon-ico-magnify-glass::before {
    font-size: 2rem; }
  @media (min-width: 1600px) {
    .primary-images .icon-ico-magnify-glass::before {
      font-size: 2.5rem; } }
  .primary-images .image-zoom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    display: none; }
    .primary-images .image-zoom.active {
      display: block; }
  @media (min-width: 992px) {
    .primary-images .owl-carousel-item {
      padding-left: 2.1em;
      padding-right: 2.1em;
      margin-bottom: 1em; } }
  @media (min-width: 1600px) {
    .primary-images .owl-carousel-item {
      padding-left: 2.6em;
      padding-right: 2.6em; } }
  @media (min-width: 992px) {
    .primary-images .owl-carousel-item.active .btn-magify {
      display: block; } }
  .primary-images .owl-carousel-item .loading {
    display: none;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%); }
    .primary-images .owl-carousel-item .loading::after {
      content: '';
      display: block;
      width: 46px;
      height: 46px;
      margin: 1px;
      border-radius: 50%;
      border: 5px solid #3c9df3;
      border-color: #3c9df3 transparent #3c9df3 transparent;
      animation: lds-dual-ring 1.2s linear infinite; }
    .primary-images .owl-carousel-item .loading.active {
      display: inline-block; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.product-detail-informations {
  font-weight: 200; }
  .product-detail-informations .product-detail-info-top {
    padding-top: 1.786em;
    border-top: 2px solid #d8d8d8;
    padding-left: 0.71429em;
    padding-right: 0.71429em; }
    @media (min-width: 768px) {
      .product-detail-informations .product-detail-info-top {
        padding-top: 2.857em; } }
    @media (min-width: 992px) {
      .product-detail-informations .product-detail-info-top {
        border-top: 0; } }
    @media (min-width: 1600px) {
      .product-detail-informations .product-detail-info-top {
        padding-top: 3.75em; } }
    .product-detail-informations .product-detail-info-top .product-sticker-wrapper {
      margin-top: 0.714rem; }
      .product-detail-informations .product-detail-info-top .product-sticker-wrapper ul {
        padding-left: 0; }
    .product-detail-informations .product-detail-info-top .product-sticker {
      display: inline-block;
      list-style: none; }
    .product-detail-informations .product-detail-info-top .warranty-icon {
      display: inline-block;
      list-style: none; }
  .product-detail-informations .product-collection {
    font-size: 2.046rem;
    margin-bottom: 0.175em;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 200; }
    @media (min-width: 992px) {
      .product-detail-informations .product-collection {
        font-size: 1.952rem; } }
    @media (min-width: 1600px) {
      .product-detail-informations .product-collection {
        font-size: 2.44rem; } }
  .product-detail-informations .view-collection {
    text-decoration: underline;
    font-weight: 400; }
  .product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png .pr-rating-stars {
    text-align: left; }
  .product-detail-informations .product-name {
    font-size: 0.904rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.397em; }
    @media (min-width: 992px) {
      .product-detail-informations .product-name {
        font-size: 1.0714rem; } }
  .product-detail-informations .product-brand {
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 0.397em; }
    @media (min-width: 992px) {
      .product-detail-informations .product-brand {
        font-size: 1.0714rem; } }
  .product-detail-informations #pr-reviewsnippet {
    margin-bottom: 0.357em;
    min-height: 1.5em; }
  .product-detail-informations .promotion-message {
    text-transform: uppercase;
    font-size: 0.666rem;
    font-weight: 500;
    padding-bottom: 1em; }
    @media (min-width: 992px) {
      .product-detail-informations .promotion-message {
        font-size: 1rem; } }
    .product-detail-informations .promotion-message .callout {
      width: 100%;
      margin-bottom: 15px; }
    .product-detail-informations .promotion-message > div {
      display: inline-block;
      margin-right: 0.357em; }
    .product-detail-informations .promotion-message .product-merchand-message {
      font-size: 1rem; }
  .product-detail-informations .bonus-product-section {
    position: relative;
    border-bottom: 2px solid #d8d8d8;
    padding: 2rem 0; }
    .product-detail-informations .bonus-product-section:first-child {
      border-top: 2px solid #d8d8d8; }
  .product-detail-informations .bonus-product-container {
    margin-right: 2.1428rem; }
  .product-detail-informations .related-product-set-wrapper + .bonus-product-promotion .bonus-product-section:first-child {
    border-top: 0; }
  .product-detail-informations .callout-mgs {
    font-weight: 500;
    font-size: 0.904rem;
    position: absolute;
    left: 30px;
    top: 50%;
    text-transform: uppercase;
    transform: translateY(-50%); }
    @media (min-width: 768px) {
      .product-detail-informations .callout-mgs {
        font-size: 1.504rem; } }
    @media (min-width: 992px) {
      .product-detail-informations .callout-mgs {
        font-size: 0.8714rem; } }
    @media (min-width: 1200px) {
      .product-detail-informations .callout-mgs {
        font-size: 1.0714rem; } }
  .product-detail-informations .product-attributes {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; }
    .product-detail-informations .product-attributes h4 {
      font-size: 1rem;
      margin-bottom: 10px;
      font-weight: 400; }
    .product-detail-informations .product-attributes .attribute {
      padding: 1.429em 0.714em;
      margin-right: 0;
      margin-top: 0; }
    .product-detail-informations .product-attributes .attr-productSize {
      display: none; }
    .product-detail-informations .product-attributes [data-attr="color"] {
      border-top: 2px solid #d8d8d8; }
  .product-detail-informations .product-detail-section {
    padding: 1.429em 0.714em;
    border-top: 2px solid #d8d8d8; }
    .product-detail-informations .product-detail-section.prices-add-to-cart-actions {
      margin-bottom: 4em; }
    .product-detail-informations .product-detail-section.no-border {
      border: none;
      padding: 0; }
  .product-detail-informations .product-variant-size-list .row {
    -ms-flex-pack: center;
        justify-content: center; }
  .product-detail-informations .product-variant-size-list .sales,
  .product-detail-informations .product-variant-size-list .starting,
  .product-detail-informations .product-variant-size-list .range {
    font-weight: 200; }
  .product-detail-informations .product-variant-size {
    border-top: none; }
    .product-detail-informations .product-variant-size h4 {
      font-weight: 400;
      font-size: 1rem;
      margin-bottom: 10px; }
    .product-detail-informations .product-variant-size .price {
      font-size: 0.88em; }
      @media (min-width: 768px) {
        .product-detail-informations .product-variant-size .price {
          font-size: 1rem; } }
      .product-detail-informations .product-variant-size .price .price-inner {
        display: block;
        font-weight: 200; }
      .product-detail-informations .product-variant-size .price .strike-through {
        display: inline-block;
        font-size: 100%;
        margin-right: 0.2em;
        margin-left: 0;
        color: #000; }
        .product-detail-informations .product-variant-size .price .strike-through ~ .sales {
          color: #c00;
          display: inline-block; }
  .product-detail-informations .attribute .size-selection {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    padding-left: 2.143em;
    padding-right: 2.143em; }
  .product-detail-informations .size-selection .attr-item {
    text-align: center; }
    .product-detail-informations .size-selection .attr-item.selected .attr-selector {
      color: #fff;
      background-color: #000;
      border-color: #000; }
  .product-detail-informations .size-selection .size-item .attr-selector {
    display: inline-block;
    padding: 0.5em 1.571em;
    border: 2px solid #e6e6e6;
    white-space: nowrap;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    font-size: 0.88rem;
    border-radius: 5px; }
  .product-detail-informations .color-swatchs {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .product-detail-informations .color-swatchs .attr-item {
      border: 3px solid transparent;
      padding: 3px;
      margin-left: 5px;
      margin-right: 5px;
      border-radius: 50%; }
      .product-detail-informations .color-swatchs .attr-item.selected {
        border-color: #000; }
      .product-detail-informations .color-swatchs .attr-item a {
        display: block;
        height: 40px;
        width: 40px;
        max-width: 100%;
        max-height: 100%; }
        .product-detail-informations .color-swatchs .attr-item a .swatch-circle {
          width: 100%;
          height: 100%;
          border: none;
          margin: 0;
          display: block;
          border-radius: 50%; }
  .product-detail-informations .prices-add-to-cart-actions {
    padding-top: 2.143em;
    padding-bottom: 2.143em; }
    .product-detail-informations .prices-add-to-cart-actions .sales,
    .product-detail-informations .prices-add-to-cart-actions .starting,
    .product-detail-informations .prices-add-to-cart-actions .range {
      font-weight: 200; }
    .product-detail-informations .prices-add-to-cart-actions .cart-and-ipay {
      margin-top: 2.143em; }
    .product-detail-informations .prices-add-to-cart-actions .add-to-cart,
    .product-detail-informations .prices-add-to-cart-actions .add-to-cart-global,
    .product-detail-informations .prices-add-to-cart-actions .notify-me,
    .product-detail-informations .prices-add-to-cart-actions .btn-submit {
      min-width: 15.179em;
      font-size: 0.809rem;
      font-weight: 700; }
      @media (min-width: 992px) {
        .product-detail-informations .prices-add-to-cart-actions .add-to-cart,
        .product-detail-informations .prices-add-to-cart-actions .add-to-cart-global,
        .product-detail-informations .prices-add-to-cart-actions .notify-me,
        .product-detail-informations .prices-add-to-cart-actions .btn-submit {
          font-size: 0.91rem;
          border-width: 3px;
          min-width: 15.294em; } }
    .product-detail-informations .prices-add-to-cart-actions .add-to-cart,
    .product-detail-informations .prices-add-to-cart-actions .add-to-cart-global {
      white-space: normal; }
    .product-detail-informations .prices-add-to-cart-actions .product-availability ul li {
      top: 2.143em; }
    .product-detail-informations .prices-add-to-cart-actions .back-in-stock {
      display: none; }
    .product-detail-informations .prices-add-to-cart-actions.is-out-stock .cart-and-ipay {
      visibility: hidden;
      height: 0; }
    .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock {
      display: block;
      text-align: center; }
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .notify-me {
        border: 0;
        background-color: #b6b5b6;
        color: #fff; }
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .title,
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .message,
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .invalid-feedback {
        text-align: left;
        padding: 0; }
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .message-error {
        color: #c00; }
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .row {
        padding-left: 15px;
        padding-right: 15px; }
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .form-group {
        padding: 0; }
      @media (min-width: 1200px) {
        .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .button {
          padding-left: 1em; } }
      .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .button .btn-submit {
        color: #000;
        background-color: #fff;
        border: 2px solid #000;
        display: inline-block;
        text-transform: uppercase;
        font-weight: 700;
        padding: 5px 10px;
        border-radius: 0;
        background-color: #000;
        color: #fff;
        width: 100%;
        min-width: auto; }
        .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .button .btn-submit:hover, .product-detail-informations .prices-add-to-cart-actions.is-out-stock .back-in-stock .button .btn-submit:focus {
          background-color: #000; }
  .product-detail-informations .card {
    border: none;
    border-top: 2px solid #d8d8d8;
    border-radius: 0; }
    .product-detail-informations .card .card-header {
      border: none;
      background: none;
      padding: 0.429em 0.714em; }
    .product-detail-informations .card h2 {
      position: relative; }
    .product-detail-informations .card .btn-link {
      font-weight: 700;
      color: #000;
      text-transform: uppercase;
      padding-left: 0;
      width: 100%;
      text-align: left;
      letter-spacing: 0.05rem;
      white-space: normal; }
      @media (min-width: 768px) {
        .product-detail-informations .card .btn-link {
          letter-spacing: 0.1rem; } }
      .product-detail-informations .card .btn-link:hover, .product-detail-informations .card .btn-link:focus {
        text-decoration: none; }
      .product-detail-informations .card .btn-link.collapsed::before {
        content: "\E901";
        font-family: "Samsonite-icons";
        font-size: 1rem;
        top: 50%; }
        @media (min-width: 768px) {
          .product-detail-informations .card .btn-link.collapsed::before {
            font-size: 1.1429rem; } }
      .product-detail-informations .card .btn-link::before {
        content: '-';
        position: absolute;
        right: 0;
        top: 40%;
        font-size: 4.2857rem;
        font-weight: 300;
        transform: translateY(-50%); }
  .product-detail-informations .product-dimension h4 {
    font-size: 1rem;
    margin-bottom: 10px; }
  .product-detail-informations .description-and-detail .content {
    margin-bottom: 1.071em;
    font-size: 1.1429rem;
    max-width: none;
    padding: 0; }
    @media (min-width: 992px) {
      .product-detail-informations .description-and-detail .content {
        font-size: 1rem; } }
    @media (min-width: 1600px) {
      .product-detail-informations .description-and-detail .content {
        font-size: 1.2857rem; } }
  .product-detail-informations .description-and-detail .description .content {
    margin: 0; }
  .product-detail-informations .product-sku {
    padding-top: 1em;
    padding-bottom: 1em; }
  .product-detail-informations .product-special-feature-items {
    font-size: 0.88rem; }
    @media (min-width: 992px) {
      .product-detail-informations .product-special-feature-items {
        font-size: 0.929rem; } }
    @media (min-width: 1600px) {
      .product-detail-informations .product-special-feature-items {
        font-size: 1rem; } }
    .product-detail-informations .product-special-feature-items ul {
      padding-left: 0;
      list-style-position: inside; }
      .product-detail-informations .product-special-feature-items ul li {
        margin-bottom: 5px; }
        .product-detail-informations .product-special-feature-items ul li .content-asset {
          display: inline; }
    .product-detail-informations .product-special-feature-items .dimension-info {
      cursor: pointer;
      position: relative;
      padding-left: 5px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      @media (min-width: 992px) {
        .product-detail-informations .product-special-feature-items .dimension-info {
          padding-left: 0; } }
      @media (min-width: 1200px) {
        .product-detail-informations .product-special-feature-items .dimension-info {
          padding-left: 5px; } }
      .product-detail-informations .product-special-feature-items .dimension-info .dimension-text {
        text-align: center;
        display: none;
        position: absolute;
        font-family: "GT-America";
        font-size: 1rem;
        color: #000;
        z-index: 50;
        background: #d2d2d2;
        width: 110px;
        padding: 10px;
        margin-top: 10px;
        left: -25px;
        top: 100%; }
        .product-detail-informations .product-special-feature-items .dimension-info .dimension-text::before {
          content: '';
          display: block;
          position: absolute;
          left: 28.8%;
          top: -8px;
          width: 0;
          height: 0;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent;
          border-bottom: 5px solid #000; }
          @media (min-width: 576px) {
            .product-detail-informations .product-special-feature-items .dimension-info .dimension-text::before {
              left: 20%; } }
          @media (min-width: 992px) {
            .product-detail-informations .product-special-feature-items .dimension-info .dimension-text::before {
              left: 68.8%; } }
          @media (min-width: 1200px) {
            .product-detail-informations .product-special-feature-items .dimension-info .dimension-text::before {
              left: 20%; } }
        @media (min-width: 576px) {
          .product-detail-informations .product-special-feature-items .dimension-info .dimension-text {
            width: 155px; } }
        @media (min-width: 992px) {
          .product-detail-informations .product-special-feature-items .dimension-info .dimension-text {
            left: -105px; } }
        @media (min-width: 1200px) {
          .product-detail-informations .product-special-feature-items .dimension-info .dimension-text {
            left: -25px; } }
      .product-detail-informations .product-special-feature-items .dimension-info:hover .dimension-text, .product-detail-informations .product-special-feature-items .dimension-info:focus .dimension-text {
        display: block; }
    .product-detail-informations .product-special-feature-items .expandable-volume-info {
      cursor: pointer;
      position: relative;
      padding-left: 5px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      @media (min-width: 992px) {
        .product-detail-informations .product-special-feature-items .expandable-volume-info {
          padding-left: 0; } }
      @media (min-width: 1200px) {
        .product-detail-informations .product-special-feature-items .expandable-volume-info {
          padding-left: 5px; } }
      .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text {
        text-align: center;
        display: none;
        position: absolute;
        font-family: "GT-America";
        font-size: 1rem;
        color: #000;
        z-index: 50;
        background: #d2d2d2;
        width: 110px;
        padding: 10px;
        margin-top: 10px;
        left: -25px;
        top: 100%; }
        .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text::before {
          content: '';
          display: block;
          position: absolute;
          left: 28.8%;
          top: -8px;
          width: 0;
          height: 0;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent;
          border-bottom: 5px solid #000; }
          @media (min-width: 576px) {
            .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text::before {
              left: 20%; } }
          @media (min-width: 992px) {
            .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text::before {
              left: 68.8%; } }
          @media (min-width: 1200px) {
            .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text::before {
              left: 20%; } }
        @media (min-width: 576px) {
          .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text {
            width: 155px; } }
        @media (min-width: 992px) {
          .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text {
            left: -105px; } }
        @media (min-width: 1200px) {
          .product-detail-informations .product-special-feature-items .expandable-volume-info .expandable-volume-text {
            left: -25px; } }
      .product-detail-informations .product-special-feature-items .expandable-volume-info:hover .expandable-volume-text, .product-detail-informations .product-special-feature-items .expandable-volume-info:focus .expandable-volume-text {
        display: block; }
  .product-detail-informations .account-customer-supports {
    padding: 2.5em 0; }
    .product-detail-informations .account-customer-supports .help-block {
      margin-top: 0;
      padding-bottom: 0; }
      @media (min-width: 992px) {
        .product-detail-informations .account-customer-supports .help-block {
          padding-left: 0;
          padding-right: 0;
          max-width: 26.429em; } }
      @media (min-width: 992px) {
        .product-detail-informations .account-customer-supports .help-block h3 {
          font-size: 1.5714rem; } }
      @media (min-width: 1600px) {
        .product-detail-informations .account-customer-supports .help-block h3 {
          font-size: 1.2857rem; } }
  .product-detail-informations .disclaimer-message {
    font-size: 0.7143rem; }
    @media (min-width: 1600px) {
      .product-detail-informations .disclaimer-message {
        font-size: 0.857rem; } }
  .product-detail-informations .product-detail-desciptions {
    margin: 0; }
    .product-detail-informations .product-detail-desciptions.has-tangiblee {
      padding: 0;
      border: 0; }
      .product-detail-informations .product-detail-desciptions.has-tangiblee ~ .tangiblee-container {
        margin-bottom: 0;
        border: 0;
        padding: 1.25rem; }
        .product-detail-informations .product-detail-desciptions.has-tangiblee ~ .tangiblee-container .tangiblee-title {
          display: none; }
    .product-detail-informations .product-detail-desciptions + .size-comparison-card {
      display: none; }
  .product-detail-informations .detail-information-wrapper {
    border-top: 2px solid #d8d8d8; }
    .product-detail-informations .detail-information-wrapper .description-and-detail {
      padding: 2.5rem 0; }
      @media (min-width: 992px) {
        .product-detail-informations .detail-information-wrapper .description-and-detail {
          padding: 1.429em 0.714em; } }
    .product-detail-informations .detail-information-wrapper .product-sku {
      padding: 1em 0.714em; }
    @media (min-width: 992px) {
      .product-detail-informations .detail-information-wrapper .product-special-feature-items,
      .product-detail-informations .detail-information-wrapper .disclaimer-message {
        padding: 0 0.714em; } }

.product-cabin-size .cabin-info .text-uppercase {
  font-weight: 700;
  font-size: 1.023rem; }

.product-cabin-size .cabin-info .text-underline {
  font-size: 1.0714rem;
  border-bottom: 1px solid #bcbcbc; }

.product-barcode-wrapper {
  margin-top: 1.5em; }
  .product-barcode-wrapper .barcode-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1429rem;
    letter-spacing: 0.1em;
    margin-bottom: 0; }
  .product-barcode-wrapper .view-barcde {
    font-size: 1.0714rem;
    display: inline-block;
    border-bottom: 1px solid #000; }
  .card .product-barcode-wrapper {
    margin-top: 0; }
    .card .product-barcode-wrapper .barcode-title,
    .card .product-barcode-wrapper .view-barcde {
      display: none; }
  .product-barcode-wrapper .card-body {
    border: 0;
    text-align: center; }

.social-share-collapse {
  position: relative; }
  .social-share-collapse .product-share-wrapper .share-title {
    font-weight: 700; }

.product-share-wrapper {
  margin: 2.5em 0; }
  .product-share-wrapper .share-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.1429rem;
    margin-bottom: 0; }
  .product-share-wrapper .fa-share-alt {
    font-size: 1.5714rem;
    transform: rotate(180deg);
    margin-left: 2em; }
  .product-share-wrapper .view-share {
    border-bottom: 1px solid #000;
    display: inline-block; }
    .product-share-wrapper .view-share:hover {
      border-bottom: 1px solid #000;
      display: inline-block; }
  .product-share-wrapper .card-body {
    border: 0;
    text-align: center; }
  @media (min-width: 992px) {
    .social-share-collapse .product-share-wrapper {
      position: absolute;
      bottom: -20px;
      right: -20px; } }
  @media (min-width: 1200px) {
    .social-share-collapse .product-share-wrapper {
      right: 20px; } }
  .social-share-collapse .product-share-wrapper .share-title {
    font-size: 0.857rem; }
    .social-share-collapse .product-share-wrapper .share-title.is-show {
      opacity: 1;
      filter: alpha(opacity=1);
      transition: ease-in 0.3s; }
    .social-share-collapse .product-share-wrapper .share-title:not(.is-show) {
      opacity: 0;
      filter: alpha(opacity=0); }
    @media (min-width: 992px) {
      .social-share-collapse .product-share-wrapper .share-title {
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex; } }
  .social-share-collapse .product-share-wrapper .fa-share-alt {
    font-size: 1.1429rem;
    transform: rotate(0);
    margin: 0 0.5rem; }
  .social-share-collapse .product-share-wrapper .view-share {
    border-bottom: none; }
    @media (min-width: 992px) {
      .social-share-collapse .product-share-wrapper .view-share {
        margin-left: 0.5rem; } }
    .social-share-collapse .product-share-wrapper .view-share:hover {
      border-bottom: none; }
  .social-share-collapse .product-share-wrapper .product-share-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%); }
    @media (min-width: 992px) {
      .social-share-collapse .product-share-wrapper .product-share-content {
        position: relative;
        top: 10px;
        left: 0;
        transform: none; } }
  .social-share-collapse .product-share-wrapper .card-body {
    border: 0;
    text-align: center;
    padding: 0; }
    .social-share-collapse .product-share-wrapper .card-body .social-container {
      padding: 0; }
      .social-share-collapse .product-share-wrapper .card-body .social-container .at-share-btn {
        padding: 0; }

.second-banner-section {
  margin-bottom: 0.3rem; }
  @media (min-width: 992px) {
    .second-banner-section {
      margin-bottom: 0.6rem; } }

.new-product-detail .tangiblee-container {
  display: none !important; }

.new-product-detail .size-comparison-card .tangiblee-container {
  display: block !important; }

@media (min-width: 1200px) {
  .new-product-detail .primary-images .carousel {
    max-width: 500px; } }

@media (min-width: 1200px) {
  .new-product-detail .primary-images .owl-carousel-item {
    padding-left: 0;
    padding-right: 0; } }

@media (min-width: 1200px) {
  .new-product-detail .product-detail-informations {
    padding: 0 3% 0 5%; } }

@media (min-width: 1200px) {
  .new-product-detail .product-variant-size-list .variant-item {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%; } }

.new-product-detail .prices-add-to-cart-actions.product-detail-section .cart-and-ipay {
  -ms-flex-pack: center;
      justify-content: center; }
  @media (min-width: 1200px) {
    .new-product-detail .prices-add-to-cart-actions.product-detail-section .cart-and-ipay .col-sm-12 {
      max-width: 80%; } }

.sticky-notify-me {
  font-size: 0.857rem;
  border: 0;
  background-color: #b6b5b6;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.2em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700; }
  @media (min-width: 768px) {
    .sticky-notify-me {
      font-size: 1.1429rem; } }
  @media (min-width: 992px) {
    .sticky-notify-me {
      font-size: 1rem; } }
  @media (min-width: 1600px) {
    .sticky-notify-me {
      font-size: 1.1429rem; } }
  .sticky-notify-me:hover {
    color: #fff; }

.product-special-feature .special-feature-5-stars {
  position: relative;
  background-size: cover !important;
  background-position: center; }
  @media (min-width: 768px) {
    .product-special-feature .special-feature-5-stars {
      background-repeat: no-repeat; } }

.product-special-feature .special-feature-content {
  color: #fff;
  padding: 20% 2.5em;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  @media (min-width: 992px) {
    .product-special-feature .special-feature-content {
      max-width: 70em;
      margin-left: auto;
      margin-right: auto;
      padding: 10% 2.5em; } }

.product-special-feature .icons-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (min-width: 768px) {
    .product-special-feature .icons-list {
      margin-left: -2.143em;
      margin-right: -2.143em; } }
  @media (min-width: 992px) {
    .product-special-feature .icons-list {
      margin-left: -3.214em;
      margin-right: -3.214em; } }

.product-special-feature .feature-item {
  display: inline-block;
  margin-bottom: 1.429em;
  width: 49%; }
  @media (min-width: 768px) {
    .product-special-feature .feature-item {
      width: 25%; } }
  .product-special-feature .feature-item .feature-image img {
    width: 51.03%; }
    @media (min-width: 768px) {
      .product-special-feature .feature-item .feature-image img {
        width: 34.804%; } }

.product-special-feature .feature-title {
  font-size: 2.071rem;
  font-weight: 200;
  margin-bottom: 1.429rem; }
  @media (min-width: 768px) {
    .product-special-feature .feature-title {
      font-size: 1.7143rem; }
      .product-special-feature .feature-title br {
        display: none; } }
  @media (min-width: 1600px) {
    .product-special-feature .feature-title {
      font-size: 2.1429rem; } }

.product-special-feature .feature-text {
  font-weight: 200;
  font-size: 0.976rem;
  margin: 0;
  text-align: center; }
  @media (min-width: 768px) {
    .product-special-feature .feature-text {
      font-size: 1rem; } }
  @media (min-width: 1600px) {
    .product-special-feature .feature-text {
      font-size: 1.2857rem; } }

@media (min-width: 768px) {
  .special-feature-non-luggage {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    padding-bottom: 2.38em; } }

@media (min-width: 992px) {
  .special-feature-non-luggage {
    padding-bottom: 3.571em; } }

@media (min-width: 768px) {
  .special-feature-non-luggage .image-item {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; } }

.special-feature-3-stars .gap-product-feature {
  padding: 5px 0; }
  @media (min-width: 768px) {
    .special-feature-3-stars .gap-product-feature {
      padding: 0 2.5px; }
      .special-feature-3-stars .gap-product-feature:first-child {
        padding: 0 5px 0 0; }
      .special-feature-3-stars .gap-product-feature:last-child {
        padding: 0 0 0 5px; } }

.product-videos iframe {
  display: block;
  width: 100vw;
  max-width: none;
  height: 56.25vw; }

@media (min-width: 768px) {
  .product-videos .col-md-6 iframe {
    width: 50vw;
    height: 28.1vw; } }

@media (min-width: 768px) {
  .product-videos .col-md-4 iframe {
    width: 33.333vw;
    height: 18.75vw; } }

.video-wrapper .product-videos .video-item {
  margin-bottom: 0.3rem; }
  @media (min-width: 992px) {
    .video-wrapper .product-videos .video-item {
      margin-bottom: 0.6rem;
      padding: 0 0.3rem; }
      .video-wrapper .product-videos .video-item:first-child {
        padding-left: 0; }
      .video-wrapper .product-videos .video-item:last-child {
        padding-right: 0; } }

@media (min-width: 768px) {
  .video-wrapper .product-videos .col-md-6 iframe {
    max-width: 50vw;
    width: 100%;
    height: 28.1vw; } }

@media (min-width: 768px) {
  .video-wrapper .product-videos .col-md-4 iframe {
    max-width: 33.333vw;
    height: 18.75vw;
    width: 100%; } }

.smart-features-content .smart-main-image {
  max-width: 14.286em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 5.5em;
  margin-bottom: 4.143em; }
  @media (min-width: 768px) {
    .smart-features-content .smart-main-image {
      max-width: 17vw;
      margin-top: auto;
      margin-bottom: auto; } }
  @media (min-width: 992px) {
    .smart-features-content .smart-main-image {
      max-width: 15.357em;
      position: absolute;
      left: 50%;
      top: 50%;
      margin-top: 0;
      margin-bottom: 0;
      transform: translate(-50%, -50%); } }
  @media (min-width: 1200px) {
    .smart-features-content .smart-main-image {
      max-width: 17.357em; } }
  @media (min-width: 1600px) {
    .smart-features-content .smart-main-image {
      max-width: 19.357em; } }

.smart-features-content .nav-tabs {
  border-bottom: none; }

.smart-features-content .tab-item {
  position: absolute;
  z-index: 1; }
  .smart-features-content .tab-item a {
    display: block;
    max-width: 5.5em;
    position: relative; }
    @media (min-width: 768px) {
      .smart-features-content .tab-item a {
        max-width: 5vw; } }
    @media (min-width: 992px) {
      .smart-features-content .tab-item a {
        max-width: 4.5em; } }
    @media (min-width: 1200px) {
      .smart-features-content .tab-item a {
        max-width: 5.5em; } }
    .smart-features-content .tab-item a::before {
      position: absolute;
      content: '';
      left: -0.5em;
      right: -0.5em;
      top: -0.5em;
      bottom: -0.5em;
      border: 2px solid transparent;
      border-radius: 50%; }
    .smart-features-content .tab-item a.active::before {
      border-color: #0c6abd; }

.smart-features-content .tab-first {
  top: -10%;
  right: -20%; }
  @media (min-width: 768px) {
    .smart-features-content .tab-first {
      right: -9%; } }

.smart-features-content .tab-second {
  right: -25%;
  bottom: 21.66%; }
  @media (min-width: 768px) {
    .smart-features-content .tab-second {
      right: -14%; } }

.smart-features-content .tab-third {
  left: -25%;
  bottom: 0; }
  @media (min-width: 768px) {
    .smart-features-content .tab-third {
      left: -4%; } }

.smart-features-content .tab-content {
  position: relative;
  font-weight: 200; }
  .smart-features-content .tab-content .tab-content-image {
    min-height: auto;
    max-height: 30.714em;
    overflow: hidden; }
    @media (min-width: 768px) {
      .smart-features-content .tab-content .tab-content-image {
        min-height: auto;
        max-height: 36vw; } }
    @media (min-width: 992px) {
      .smart-features-content .tab-content .tab-content-image {
        height: 29.714em; } }
    @media (min-width: 1200px) {
      .smart-features-content .tab-content .tab-content-image {
        height: 35.714em; } }
    @media (min-width: 1600px) {
      .smart-features-content .tab-content .tab-content-image {
        height: 40.714em; } }
    .smart-features-content .tab-content .tab-content-image img {
      height: 100%;
      width: 100%;
      max-width: none; }
      @media (min-width: 992px) {
        .smart-features-content .tab-content .tab-content-image img {
          height: auto; } }
  .smart-features-content .tab-content .tab-content-info {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3.929em 2.143em;
    color: #fff;
    width: 100%; }
    @media (min-width: 768px) {
      .smart-features-content .tab-content .tab-content-info {
        padding: 1.929em 2.143em; } }
    @media (min-width: 992px) {
      .smart-features-content .tab-content .tab-content-info {
        right: auto;
        max-width: 100%;
        padding: 3.929em 2.143em; }
        .smart-features-content .tab-content .tab-content-info br {
          display: none; } }
    .smart-features-content .tab-content .tab-content-info h6 {
      font-weight: 200; }
      @media (min-width: 768px) {
        .smart-features-content .tab-content .tab-content-info h6 {
          font-size: 1.7857rem; } }
      @media (min-width: 1600px) {
        .smart-features-content .tab-content .tab-content-info h6 {
          font-size: 2.5rem; } }
    .smart-features-content .tab-content .tab-content-info h4 {
      font-weight: 300;
      font-size: 2.5rem; }
      @media (min-width: 992px) {
        .smart-features-content .tab-content .tab-content-info h4 {
          margin-bottom: 0;
          font-size: 3.2143rem; } }
      @media (min-width: 1200px) {
        .smart-features-content .tab-content .tab-content-info h4 {
          font-size: 4.2857rem; } }
      @media (min-width: 1400px) {
        .smart-features-content .tab-content .tab-content-info h4 {
          font-size: 5rem; } }
      @media (min-width: 1600px) {
        .smart-features-content .tab-content .tab-content-info h4 {
          font-size: 5.5rem; } }
    .smart-features-content .tab-content .tab-content-info p {
      font-weight: 200;
      width: 85%; }
      @media (min-width: 768px) {
        .smart-features-content .tab-content .tab-content-info p {
          font-size: 1.1429rem;
          position: absolute;
          bottom: 7%; } }
      @media (min-width: 992px) {
        .smart-features-content .tab-content .tab-content-info p {
          left: 2.143em;
          bottom: 14%; } }
      @media (min-width: 1200px) {
        .smart-features-content .tab-content .tab-content-info p {
          bottom: 20%; } }
      .smart-features-content .tab-content .tab-content-info p .r-item {
        height: 10px;
        padding-left: 2px;
        display: inline-block;
        transform: scale(1.5); }
    .smart-features-content .tab-content .tab-content-info span {
      font-weight: 400; }

@media (min-width: 768px) {
  .smart-features-content .row {
    -ms-flex-align: center;
        align-items: center; } }

@media (min-width: 992px) {
  .smart-features-content .smart-tab-content {
    max-height: 29.714em; } }

@media (min-width: 1200px) {
  .smart-features-content .smart-tab-content {
    max-height: 37.143em; } }

@media (min-width: 1600px) {
  .smart-features-content .smart-tab-content {
    max-height: 46.429em; } }

.feature-info h6 {
  font-size: 1.523rem;
  text-transform: uppercase; }

.feature-info h4 {
  font-weight: 300;
  font-size: 2.929rem;
  line-height: 1;
  margin-bottom: 4.286rem; }
  @media (min-width: 992px) {
    .feature-info h4 {
      margin-bottom: 3em;
      font-size: 2.639rem; } }
  @media (min-width: 1200px) {
    .feature-info h4 {
      font-size: 3.229rem; } }
  @media (min-width: 1600px) {
    .feature-info h4 {
      font-size: 3.929rem; } }

.feature-info p {
  font-size: 1.1429rem;
  position: absolute;
  bottom: 15%; }

.old-smart-feature-content,
.new-smart-feature-content {
  display: none; }

.old-smart-feature .old-smart-feature-content {
  display: block; }

.new-smart-feature .new-smart-feature-content {
  display: block;
  background-color: #f8f8f8; }

.smart-features-section {
  padding: 5rem 1.25rem 4rem; }
  @media (min-width: 768px) {
    .smart-features-section {
      margin: 0 auto; } }
  @media (min-width: 1200px) {
    .smart-features-section {
      width: 80%; } }
  @media (min-width: 768px) {
    .smart-features-section .smart-feature-image {
      padding: 0 2rem; } }
  @media (min-width: 768px) {
    .smart-features-section .main-content {
      padding: 0 2rem; } }
  @media (min-width: 1200px) {
    .smart-features-section .main-content {
      padding-left: 3rem; } }
  .smart-features-section .smart-feature-heading {
    font-weight: 200;
    font-size: 1.8571rem;
    letter-spacing: 0.15rem;
    margin-bottom: 1.75rem; }
    @media (min-width: 1200px) {
      .smart-features-section .smart-feature-heading {
        font-size: 2.5rem; } }
  .smart-features-section .card {
    border: none;
    border-bottom: 2px solid #d8d8d8;
    background-color: #f8f8f8;
    border-radius: 0; }
    .smart-features-section .card:first-child {
      border-top: 2px solid #d8d8d8; }
  .smart-features-section .card-header {
    border: 0;
    padding: 0.429em 0.714em;
    background: none; }
    @media (min-width: 992px) {
      .smart-features-section .card-header {
        padding: 0.5em 1em; } }
  .smart-features-section h4 {
    position: relative; }
  .smart-features-section .btn-link {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    width: 100%;
    text-align: left;
    -ms-flex-align: center;
        align-items: center;
    white-space: normal;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; }
    .smart-features-section .btn-link:hover, .smart-features-section .btn-link:focus {
      text-decoration: none; }
    .smart-features-section .btn-link.collapsed::before {
      content: "\E901";
      font-family: "Samsonite-icons";
      color: #000;
      font-size: 1.1429rem;
      top: 50%; }
    .smart-features-section .btn-link::before {
      content: '-';
      position: absolute;
      right: 0;
      top: 40%;
      font-weight: 300;
      font-size: 4.2857rem;
      transform: translateY(-50%); }
  .smart-features-section .smart-title {
    display: inline-block;
    margin: 0 1rem;
    letter-spacing: 0.05rem; }
    @media (min-width: 992px) {
      .smart-features-section .smart-title {
        margin: 0 1.5rem; } }
  .smart-features-section .smart-icon {
    width: 12%; }
    @media (min-width: 992px) {
      .smart-features-section .smart-icon {
        width: 10%; } }
  .smart-features-section .card-body {
    font-weight: 400;
    padding: 2rem 1.25rem 3rem; }
  .smart-features-section .smart-description {
    margin-bottom: 3rem; }
    @media (min-width: 768px) {
      .smart-features-section .smart-description {
        margin: -3% 5% 2% 13%; } }
    .smart-features-section .smart-description .r-item {
      font-weight: 400;
      height: 10px;
      padding-left: 2px;
      display: inline-block;
      transform: scale(1.5); }
  @media (min-width: 768px) {
    .smart-features-section .smart-image {
      display: none; } }
  .smart-features-section .smart-image.show {
    display: block; }

.product-extra-features {
  background-color: #f8f8f8;
  overflow: hidden;
  position: relative; }
  @media (min-width: 768px) {
    .product-extra-features {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex;
      -ms-flex-align: end;
          align-items: flex-end; } }
  @media (min-width: 768px) {
    .product-extra-features .luggage-extra-feature {
      padding-left: 2em;
      padding-top: 2.5em;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
      max-width: 40%; } }
  @media (min-width: 992px) {
    .product-extra-features .luggage-extra-feature {
      padding-left: 3em;
      padding-top: 3.5em; } }
  @media (min-width: 1200px) {
    .product-extra-features .luggage-extra-feature {
      padding-left: 8em; } }
  @media (min-width: 1600px) {
    .product-extra-features .luggage-extra-feature {
      padding-left: 10em;
      padding-top: 4em; } }
  .product-extra-features .extra-feature-info {
    padding: 2.143em 1.071em;
    min-height: 30.714em; }
    @media (min-width: 768px) {
      .product-extra-features .extra-feature-info {
        min-height: 44vw; } }
    @media (min-width: 992px) {
      .product-extra-features .extra-feature-info {
        min-height: 28.714em; } }
    @media (min-width: 1600px) {
      .product-extra-features .extra-feature-info {
        min-height: 35.714em; } }
    .product-extra-features .extra-feature-info p {
      width: 60%;
      font-weight: 200; }
      @media (min-width: 768px) {
        .product-extra-features .extra-feature-info p {
          width: auto; } }
  .product-extra-features .extra-feature-image {
    position: absolute;
    right: -50%;
    bottom: 0;
    left: 60%;
    width: 65%; }
    @media (min-width: 768px) {
      .product-extra-features .extra-feature-image {
        position: static;
        width: 50%;
        padding-right: 2em;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
        max-width: 60%;
        text-align: right; } }
    @media (min-width: 992px) {
      .product-extra-features .extra-feature-image {
        padding-right: 4.514em; }
        .product-extra-features .extra-feature-image img {
          max-width: 41.286em; } }
    @media (min-width: 1200px) {
      .product-extra-features .extra-feature-image {
        padding-right: 4.914em; }
        .product-extra-features .extra-feature-image img {
          max-width: 44.286em; } }
    @media (min-width: 1600px) {
      .product-extra-features .extra-feature-image {
        padding-right: 6.143em; }
        .product-extra-features .extra-feature-image img {
          max-width: none; } }
  .product-extra-features .feature-info h4 {
    font-weight: 300;
    font-size: 3.5rem; }
    @media (min-width: 768px) {
      .product-extra-features .feature-info h4 {
        font-size: 2.5rem; } }
    @media (min-width: 992px) {
      .product-extra-features .feature-info h4 {
        font-size: 3.2143rem; } }
    @media (min-width: 1200px) {
      .product-extra-features .feature-info h4 {
        font-size: 4.2857rem; } }
    @media (min-width: 1400px) {
      .product-extra-features .feature-info h4 {
        font-size: 5rem; } }
    @media (min-width: 1600px) {
      .product-extra-features .feature-info h4 {
        font-size: 5.5rem; } }
  .product-extra-features .feature-info h6 {
    font-weight: 200; }
    @media (min-width: 768px) {
      .product-extra-features .feature-info h6 {
        font-size: 1.7857rem; } }
    @media (min-width: 1600px) {
      .product-extra-features .feature-info h6 {
        font-size: 2.5rem; } }

.product-extra-feature-model {
  margin-top: 0.3rem; }
  @media (min-width: 992px) {
    .product-extra-feature-model {
      margin-top: 0.6rem;
      margin-bottom: 0.6rem; } }
  @media (min-width: 992px) {
    .product-extra-feature-model .owl-carousel {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex; } }
  @media (min-width: 1200px) {
    .product-extra-feature-model .owl-carousel {
      padding-left: 8.571em;
      padding-right: 8.571em; } }
  @media (min-width: 992px) {
    .product-extra-feature-model .owl-carousel .model-item {
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
      max-width: 33.33%; } }
  .product-extra-feature-model .owl-carousel .owl-nav .owl-prev,
  .product-extra-feature-model .owl-carousel .owl-nav .owl-next {
    background-color: #000;
    color: #fff; }
  .product-extra-feature-model .owl-carousel .owl-nav .owl-prev {
    left: 1.429rem; }
  .product-extra-feature-model .owl-carousel .owl-nav .owl-next {
    right: 1.429rem; }

@media (min-width: 992px) {
  .product-extra-feature-lifestyle {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; } }

.product-extra-feature-lifestyle .image-item {
  padding-bottom: 0.3rem; }
  @media (min-width: 992px) {
    .product-extra-feature-lifestyle .image-item {
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
      max-width: 50%;
      padding: 0 0.3rem 0.6rem; }
      .product-extra-feature-lifestyle .image-item:first-child {
        padding-left: 0; }
      .product-extra-feature-lifestyle .image-item:last-child {
        padding-right: 0; }
      .product-extra-feature-lifestyle .image-item img {
        width: 100%; } }

.product-extra-feature-packing img {
  width: 100%; }

.product-recommendations {
  padding-top: 2.857em;
  padding-bottom: 2.857em; }
  .product-recommendations h2 {
    font-weight: 200;
    font-size: 1.1429rem;
    text-align: center;
    margin-bottom: 1.429em; }
  .product-recommendations .content {
    margin-left: auto;
    margin-right: auto; }
  @media (min-width: 992px) {
    .product-recommendations .owl-item.active .product-tile {
      padding-left: 1em;
      padding-right: 1em;
      border-right: 2px solid #d8d8d8; } }
  .product-recommendations .owl-stage-outer::before {
    content: '';
    position: absolute;
    width: 3px;
    right: 0;
    background-color: #fff;
    top: 0;
    bottom: 0;
    z-index: 1; }
  .product-recommendations .product-tile .price .price-inner {
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .product-recommendations .owl-nav button.owl-prev, .product-recommendations .owl-nav button.owl-next {
    background-color: #000;
    color: #fff;
    font-size: 10px;
    z-index: 10;
    width: 2.5em;
    height: 2.5em; }
  @media (min-width: 992px) {
    .product-recommendations .owl-nav button.owl-prev {
      left: -2.857em; } }
  @media (min-width: 992px) {
    .product-recommendations .owl-nav button.owl-next {
      right: -2.857em; } }
  .product-recommendations .owl-carousel .owl-nav button.owl-prev, .product-recommendations .owl-carousel .owl-nav button.owl-next {
    width: 26px;
    height: 26px;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    position: absolute;
    z-index: 10;
    top: 35%;
    border-radius: 50%; }
    @media (min-width: 992px) {
      .product-recommendations .owl-carousel .owl-nav button.owl-prev, .product-recommendations .owl-carousel .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        font-size: 0.857rem;
        top: 35%; } }
    @media (min-width: 1600px) {
      .product-recommendations .owl-carousel .owl-nav button.owl-prev, .product-recommendations .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.0714rem; } }
  .product-recommendations .owl-carousel .owl-nav button::before {
    content: "\E903";
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: "Samsonite-icons";
    font-style: normal;
    font-weight: normal;
    transform: translate(-50%, -50%); }
  .product-recommendations .owl-carousel .owl-nav button.owl-prev {
    left: -10px;
    background-color: #000; }
    .product-recommendations .owl-carousel .owl-nav button.owl-prev::before {
      content: "\E902"; }
    @media (min-width: 992px) {
      .product-recommendations .owl-carousel .owl-nav button.owl-prev {
        left: -40px; } }
  .product-recommendations .owl-carousel .owl-nav button.owl-next {
    right: -10px;
    left: auto;
    background-color: #000; }
    .product-recommendations .owl-carousel .owl-nav button.owl-next::before {
      content: "\E903"; }
    @media (min-width: 992px) {
      .product-recommendations .owl-carousel .owl-nav button.owl-next {
        right: -40px; } }
  .product-recommendations .owl-carousel .owl-nav span {
    display: none; }
  .product-recommendations .recommendations .product-tile .price-inner,
  .product-recommendations .recommendations .product-tile .sales {
    display: block; }
  @media (min-width: 992px) {
    .product-recommendations .recently {
      margin-left: 30px;
      margin-right: 30px; } }
  .product-recommendations .recently .recommendations {
    border-top: 1px solid #000;
    padding-top: 2em;
    margin-top: 2em; }

.product-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 45px;
  bottom: auto;
  background-color: #fff;
  z-index: -1;
  visibility: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #999;
  opacity: 0;
  filter: alpha(opacity=0); }
  .product-sticky-bar.fixed-bottom {
    visibility: visible;
    z-index: 90;
    padding-right: 0 !important;
    opacity: 1;
    filter: alpha(opacity=1);
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeInDown; }
    @media (min-width: 768px) {
      .product-sticky-bar.fixed-bottom {
        animation-name: fadeInUp; } }
  .product-sticky-bar.hide-bottom {
    visibility: hidden;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeOutUp; }
    @media (min-width: 768px) {
      .product-sticky-bar.hide-bottom {
        animation-name: fadeOutDown; } }
  @media (min-width: 992px) {
    .product-sticky-bar::after {
      display: block;
      clear: both;
      content: ""; } }
  @media (min-width: 992px) {
    .product-sticky-bar .product-sticky-content {
      width: 100%;
      float: right; } }
  .product-sticky-bar .product-collection {
    text-transform: uppercase;
    font-size: 0.857rem;
    margin-bottom: 0;
    text-align: center; }
    @media (min-width: 768px) {
      .product-sticky-bar .product-collection {
        font-size: 1.901rem;
        text-align: right;
        padding-right: 0.887em; } }
    @media (min-width: 992px) {
      .product-sticky-bar .product-collection {
        font-size: 1.521rem; } }
    @media (min-width: 1600px) {
      .product-sticky-bar .product-collection {
        font-size: 1.901rem; } }
  .product-sticky-bar .selected-attr-items {
    padding-left: 0.714em;
    padding-right: 0.714em;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    @media (min-width: 1600px) {
      .product-sticky-bar .selected-attr-items {
        padding-left: 2em;
        padding-right: 2em; } }
  .product-sticky-bar .cart-and-ipay {
    text-align: right;
    height: 100%; }
  .product-sticky-bar .sticky-prices {
    padding-top: 0;
    padding-bottom: 0;
    white-space: nowrap; }
  @media (min-width: 768px) {
    .product-sticky-bar .col-collection {
      max-width: 34%;
      -ms-flex: 0 0 34%;
          flex: 0 0 34%; } }
  @media (min-width: 992px) {
    .product-sticky-bar .col-collection {
      -ms-flex: 0 0 52%;
          flex: 0 0 52%;
      max-width: 52%;
      white-space: nowrap; } }
  @media (min-width: 1200px) {
    .product-sticky-bar .col-collection {
      -ms-flex: 0 0 62%;
          flex: 0 0 62%;
      max-width: 62%; } }
  @media (min-width: 1600px) {
    .product-sticky-bar .col-collection {
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
      max-width: 65%; } }
  .product-sticky-bar .selected-attrs {
    max-width: 36.66%;
    -ms-flex: 0 0 36.66%;
        flex: 0 0 36.66%; }
    @media (min-width: 768px) {
      .product-sticky-bar .selected-attrs {
        max-width: 44%;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%; } }
    @media (min-width: 992px) {
      .product-sticky-bar .selected-attrs {
        -ms-flex: 0 0 29%;
            flex: 0 0 29%;
        max-width: 29%; } }
    @media (min-width: 1200px) {
      .product-sticky-bar .selected-attrs {
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
        max-width: 24%; } }
    @media (min-width: 1600px) {
      .product-sticky-bar .selected-attrs {
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
        max-width: 23%; } }
  .product-sticky-bar .price {
    font-size: 0.857rem; }
    @media (min-width: 768px) {
      .product-sticky-bar .price {
        font-size: 1.198rem; } }
    @media (min-width: 992px) {
      .product-sticky-bar .price {
        font-size: 0.9584rem; } }
    @media (min-width: 1600px) {
      .product-sticky-bar .price {
        font-size: 1.198rem; } }
    .product-sticky-bar .price .strike-through {
      font-size: 0.857rem; }
      @media (min-width: 768px) {
        .product-sticky-bar .price .strike-through {
          font-size: 1.198rem; } }
      @media (min-width: 992px) {
        .product-sticky-bar .price .strike-through {
          font-size: 0.9584rem; } }
      @media (min-width: 1600px) {
        .product-sticky-bar .price .strike-through {
          font-size: 1.198rem; } }
  .product-sticky-bar .swatch-circle {
    display: inline-block;
    width: 2em;
    height: 2em;
    vertical-align: middle;
    border-radius: 50%; }
  .product-sticky-bar .attr-color {
    margin-left: 15px; }
    @media (min-width: 768px) {
      .product-sticky-bar .attr-color {
        font-size: 19px; } }
  .product-sticky-bar .attr-productSize {
    font-size: 0.879em;
    font-weight: 200; }
    @media (min-width: 768px) {
      .product-sticky-bar .attr-productSize {
        font-size: 1.198rem; } }
  .product-sticky-bar .prices-add-to-cart-actions {
    text-align: right;
    max-width: 30%;
    -ms-flex: 0 0 30%;
        flex: 0 0 30%; }
    @media (min-width: 768px) {
      .product-sticky-bar .prices-add-to-cart-actions {
        max-width: 22%;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%; } }
    @media (min-width: 992px) {
      .product-sticky-bar .prices-add-to-cart-actions {
        max-width: 19%;
        -ms-flex: 0 0 19%;
            flex: 0 0 19%; } }
    @media (min-width: 1200px) {
      .product-sticky-bar .prices-add-to-cart-actions {
        -ms-flex: 0 0 14%;
            flex: 0 0 14%;
        max-width: 14%; } }
    @media (min-width: 1600px) {
      .product-sticky-bar .prices-add-to-cart-actions {
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
        max-width: 12%; } }
    .product-sticky-bar .prices-add-to-cart-actions .add-to-cart,
    .product-sticky-bar .prices-add-to-cart-actions .add-to-cart-global {
      color: #000;
      background-color: #fff;
      border: 2px solid #000;
      display: inline-block;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 0;
      background-color: #000;
      color: #fff;
      font-weight: 700;
      font-size: 0.857rem;
      padding-top: 1em;
      padding-bottom: 1em;
      height: 100%; }
      .product-sticky-bar .prices-add-to-cart-actions .add-to-cart:hover, .product-sticky-bar .prices-add-to-cart-actions .add-to-cart:focus,
      .product-sticky-bar .prices-add-to-cart-actions .add-to-cart-global:hover,
      .product-sticky-bar .prices-add-to-cart-actions .add-to-cart-global:focus {
        background-color: #000; }
      @media (min-width: 768px) {
        .product-sticky-bar .prices-add-to-cart-actions .add-to-cart,
        .product-sticky-bar .prices-add-to-cart-actions .add-to-cart-global {
          font-size: 1.1429rem;
          width: 100%; } }
      @media (min-width: 992px) {
        .product-sticky-bar .prices-add-to-cart-actions .add-to-cart,
        .product-sticky-bar .prices-add-to-cart-actions .add-to-cart-global {
          font-size: 1rem; } }
      @media (min-width: 1600px) {
        .product-sticky-bar .prices-add-to-cart-actions .add-to-cart,
        .product-sticky-bar .prices-add-to-cart-actions .add-to-cart-global {
          font-size: 1.1429rem; } }
  @media (max-width: 767.98px) {
    .product-sticky-bar .price-inner {
      display: block; } }
  @media (max-width: 767.98px) {
    .product-sticky-bar .price-inner .strike-through {
      display: block; } }
  .product-sticky-bar .quick-checkout {
    display: none; }

.product-image-360-section {
  width: 100%; }
  .product-image-360-section .card {
    position: relative; }
    .product-image-360-section .card .card-body {
      padding: 0; }
    .product-image-360-section .card .full-screen-btn {
      opacity: 0;
      filter: alpha(opacity=0);
      animation-duration: 0.2s;
      animation-fill-mode: both;
      animation-name: fadeOutUp; }
    .product-image-360-section .card .show .full-screen-btn {
      opacity: 1;
      filter: alpha(opacity=1);
      animation-name: customFadeInUp; }
  .product-image-360-section .product-detail-section {
    display: none; }
  .product-image-360-section .section-360-degree {
    display: block;
    position: relative;
    padding-right: 0; }
    @media (min-width: 1200px) {
      .product-image-360-section .section-360-degree .full-screen-btn {
        bottom: 44.25%; } }
  @media (min-width: 1200px) {
    .product-image-360-section .ovvvport {
      position: static; } }
  .product-image-360-section.desktop-view .full-screen-btn {
    display: block; }
  .product-image-360-section.desktop-view .ovviosfullscreendesktop {
    display: none !important; }
  .product-image-360-section.full-screen .ovviosfullscreendesktop {
    display: inline-block !important; }
  .product-image-360-section.full-screen .product-detail-section .full-screen-btn {
    display: none; }
  .product-image-360-section .ovviosbutton .ovbuttonbefore,
  .product-image-360-section .ovviosbutton .ovbuttonafter {
    display: none; }
  .product-image-360-section h4 {
    font-size: 1rem; }
  .product-image-360-section .ov-control-panel {
    bottom: auto;
    left: auto;
    right: -16%;
    top: 35%;
    transform: rotate(90deg); }
    @media (min-width: 768px) {
      .product-image-360-section .ov-control-panel {
        right: 0; } }
    @media (min-width: 992px) {
      .product-image-360-section .ov-control-panel {
        right: -25%;
        top: 60%; } }
    @media (min-width: 1200px) {
      .product-image-360-section .ov-control-panel {
        top: 15%;
        width: 0;
        right: 0; } }
    .product-image-360-section .ov-control-panel .ovviosbutton,
    .product-image-360-section .ov-control-panel .ovviosbutton svg,
    .product-image-360-section .ov-control-panel .ovviosbuttonwrapper {
      width: 30px;
      height: 30px; }
    .product-image-360-section .ov-control-panel .ovviosbuttonwrapper {
      margin-right: 10px; }
  .product-image-360-section .ovviosbuttonwrapper svg {
    background-size: 100% 100%;
    transform: rotate(270deg); }
  .product-image-360-section .full-screen-btn {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    z-index: 101;
    background-size: 100% 100%;
    display: none; }
    @media (min-width: 768px) {
      .product-image-360-section .full-screen-btn {
        bottom: 44.25%;
        right: 12.52%; } }
    @media (min-width: 992px) {
      .product-image-360-section .full-screen-btn {
        bottom: 58.25%;
        right: 4.52%; } }
    @media (min-width: 1200px) {
      .product-image-360-section .full-screen-btn {
        width: 32px;
        bottom: 42%;
        right: 0; } }
  .product-image-360-section.full-screen .ov-control-panel {
    right: 0; }

.iframe-3dar-thumbnail {
  width: 100%;
  height: 16.5vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer; }
  @media (min-width: 992px) {
    .iframe-3dar-thumbnail {
      height: 120px;
      -ms-flex-align: center;
          align-items: center; } }
  .iframe-3dar-thumbnail .iframe-3dar-icon {
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMi44NTQzIDI1LjU0MjciPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojNTU1O308L3N0eWxlPjwvZGVmcz48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIyLjQ3NjUsNS40NDUzYS42NjkzLjY2OTMsMCwwLDEsLjMwNjcuMzAzN2wuMDA5NS4wMmMuMDA2Ni4wMTQ1LjAxMjguMDI5My4wMTg0LjA0NDJhLjY2NzQuNjY3NCwwLDAsMSwuMDQzLjI1djQuNjkxN2EuNjcyMi42NzIyLDAsMSwxLTEuMzQ0MywwVjcuMTM3MmwtMy4wNiwxLjUzYS42NzIyLjY3MjIsMCwxLDEtLjYwMTItMS4yMDI0TDIwLjY3ODksNi4wNSwxNy44NDgzLDQuNjM0M0EuNjcyMi42NzIyLDAsMCwxLDE4LjQ1LDMuNDMxOFpNMjIuODU0MSwxOS40OGEuNjcyMi42NzIyLDAsMCwxLS4xOTU1LjQ4NzUuNjc2OS42NzY5LDAsMCwxLS4xODIxLjEzTDE4LjQ1LDIyLjExMDlhLjY3MjIuNjcyMiwwLDAsMS0uNjAxMi0xLjIwMjVsMi44MzA2LTEuNDE1My0yLjgzMDYtMS40MTUzYS42NzIyLjY3MjIsMCwxLDEsLjYwMTItMS4yMDI0bDMuMDYsMS41M1YxNC43ODc5YS42NzIyLjY3MjIsMCwxLDEsMS4zNDQzLDBabS0yMC42Nzg3LjAxMzVMNS4wMDYsMjAuOTA4NGEuNjcyMi42NzIyLDAsMCwxLS42MDEyLDEuMjAyNUwuMzc3OCwyMC4wOTc0YS42NjkzLjY2OTMsMCwwLDEtLjMwNjctLjMwMzdsLS4wMDk1LS4wMkMuMDU1LDE5Ljc2LjA0ODgsMTkuNzQ0Ny4wNDMyLDE5LjczQS42Ny42NywwLDAsMSwwLDE5LjQ4VjE0Ljc4NzlhLjY3MjIuNjcyMiwwLDAsMSwxLjM0NDQsMHYzLjYxNzZsMy4wNi0xLjUzYS42NzIyLjY3MjIsMCwwLDEsLjYwMTIsMS4yMDI0Wk0xLjM0NDUsNy4xMzcydjMuNjE3NmEuNjcyMi42NzIyLDAsMCwxLTEuMzQ0NCwwVjYuMDYzMWEuNjcyOS42NzI5LDAsMCwxLC4zNzc3LS42MTc4bDQuMDI3LTIuMDEzNUEuNjcyMi42NzIyLDAsMCwxLDUuMDA2LDQuNjM0M0wyLjE3NTQsNi4wNSw1LjAwNiw3LjQ2NDlhLjY3MjIuNjcyMiwwLDEsMS0uNjAxMiwxLjIwMjRabTkuNzctNy4wNmEuNjczNC42NzM0LDAsMCwxLC42MjU0LDBsNC4wMjEsMi4wMTA1QS42NzIyLjY3MjIsMCwxLDEsMTUuMTYsMy4yOWwtMy4wNi0xLjUzVjUuMzc3NGEuNjcyMi42NzIyLDAsMSwxLTEuMzQ0MywwVjEuNzZsLTMuMDYsMS41M2EuNjcyMi42NzIyLDAsMCwxLS42MDEyLTEuMjAyNFpNMTEuNzQsMjUuNDY1N2EuNjczNC42NzM0LDAsMCwxLS42MjU0LDBsLTQuMDIwOS0yLjAxYS42NzIyLjY3MjIsMCwxLDEsLjYwMTItMS4yMDI0bDMuMDYsMS41M1YyMC4xNjUzYS42NzIyLjY3MjIsMCwxLDEsMS4zNDQzLDB2My42MTc2bDMuMDYtMS41M2EuNjcyMi42NzIyLDAsMSwxLC42MDEyLDEuMjAyNFptLjM1OTUtMTMuNjIzM1YxNS40NmEuNjcyMi42NzIyLDAsMCwxLTEuMzQ0MywwVjExLjg0MjRMNy4wOTM1LDEwLjAxMTdhLjY3MjIuNjcyMiwwLDAsMSwuNjAxMi0xLjIwMjRsMy43MzI0LDEuODY2MkwxNS4xNiw4LjgwOTNhLjY3MjIuNjcyMiwwLDAsMSwuNjAxMiwxLjIwMjRaIi8+PC9nPjwvZz48L3N2Zz4=");
    background-position: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 5%; }
    @media (min-width: 768px) {
      .iframe-3dar-thumbnail .iframe-3dar-icon {
        width: 54px;
        height: 54px;
        margin: 0 auto 15%; } }
    @media (min-width: 992px) {
      .iframe-3dar-thumbnail .iframe-3dar-icon {
        margin: -10px auto; } }

.iframe-3dar-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 130vw; }
  @media (min-width: 768px) {
    .iframe-3dar-slide {
      height: 98vw; } }
  @media (min-width: 992px) {
    .iframe-3dar-slide {
      display: block;
      height: auto;
      margin-top: 3rem; } }
  .iframe-3dar-slide .iframe-3dar-section {
    height: 85%; }
    @media (min-width: 992px) {
      .iframe-3dar-slide .iframe-3dar-section {
        height: 30.444vw; } }
    @media (min-width: 1200px) {
      .iframe-3dar-slide .iframe-3dar-section {
        height: 43.083vw; } }
    @media (min-width: 1400px) {
      .iframe-3dar-slide .iframe-3dar-section {
        height: 43.643vw; } }
    @media (min-width: 1600px) {
      .iframe-3dar-slide .iframe-3dar-section {
        height: 44.063vw; } }
    @media (min-width: 1920px) {
      .iframe-3dar-slide .iframe-3dar-section {
        height: 750px; } }
    .iframe-3dar-slide .iframe-3dar-section > iframe {
      max-width: 100% !important;
      transform: translateX(0); }
  .iframe-3dar-slide .disclaimer-message {
    text-align: center;
    font-size: 0.7143rem; }
    @media (min-width: 768px) {
      .iframe-3dar-slide .disclaimer-message {
        font-size: 0.857rem;
        margin-bottom: 10px; } }
    @media (min-width: 1200px) {
      .iframe-3dar-slide .disclaimer-message {
        font-size: 1rem; } }
    @media (min-width: 992px) {
      .iframe-3dar-slide .disclaimer-message > div {
        max-width: 90%;
        margin: 0 auto; } }

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

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

.product-detail-informations .number-of-child-product {
  font-size: 0.904rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 1rem 0 0.397em; }
  @media (min-width: 992px) {
    .product-detail-informations .number-of-child-product {
      font-size: 1.0714rem; } }

.product-detail-informations .set-item-detail-section,
.product-detail-informations .product-set-section {
  border-top: 2px solid #d8d8d8; }

@media (min-width: 768px) {
  .product-detail-informations .set-item-details {
    padding-top: 6.2857rem; } }

@media (min-width: 992px) {
  .product-detail-informations .set-item-details {
    padding-top: 0; } }

@media (min-width: 992px) {
  .product-detail-informations .set-item-details .product-collection {
    font-size: 0.952rem; } }

@media (min-width: 1200px) {
  .product-detail-informations .set-item-details .product-collection {
    font-size: 1.952rem; } }

@media (min-width: 1600px) {
  .product-detail-informations .set-item-details .product-collection {
    font-size: 2.44rem; } }

@media (min-width: 992px) {
  .product-detail-informations .set-item-details .product-name {
    font-size: 0.8714rem; } }

@media (min-width: 1200px) {
  .product-detail-informations .set-item-details .product-name {
    font-size: 1.0714rem; } }

@media (min-width: 992px) {
  .product-detail-informations .set-item-details .product-brand {
    font-size: 0.8714rem; } }

@media (min-width: 1200px) {
  .product-detail-informations .set-item-details .product-brand {
    font-size: 1.0714rem; } }

.product-detail-informations .set-item-detail-section.no-border {
  border: none;
  margin-top: 0; }

.product-detail-informations .set-item-detail-section.product-detail {
  margin-bottom: 0;
  padding-bottom: 1.8em;
  padding-top: 2.143em; }
  @media (min-width: 768px) {
    .product-detail-informations .set-item-detail-section.product-detail {
      margin: 0;
      padding: 0; } }
  @media (min-width: 992px) {
    .product-detail-informations .set-item-detail-section.product-detail {
      padding: 2.143em 15px 1.8em; } }

.product-detail-informations .product-set-section {
  padding: 1.429em 0.714em; }
  .product-detail-informations .product-set-section .set-included-title {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 0.71429em;
    padding-right: 0.71429em; }
  .product-detail-informations .product-set-section.no-padding {
    padding: 0; }
  .product-detail-informations .product-set-section.prices-add-to-cart-actions {
    padding: 1.429em 0.714em 3.429em; }
    .product-detail-informations .product-set-section.prices-add-to-cart-actions .prices {
      padding-bottom: 2em; }
    .product-detail-informations .product-set-section.prices-add-to-cart-actions .list-unstyled > li {
      top: -1em; }
  .product-detail-informations .product-set-section .attribute {
    margin: 0.938em 0 0 -0.2em; }
  .product-detail-informations .product-set-section .color-product .color-swatchs {
    display: inline-block; }
    .product-detail-informations .product-set-section .color-product .color-swatchs .attr-item {
      display: inline-block; }
      .product-detail-informations .product-set-section .color-product .color-swatchs .attr-item .attr-selector {
        width: 35px;
        height: 35px; }
      .product-detail-informations .product-set-section .color-product .color-swatchs .attr-item.out-of-stock {
        opacity: 1;
        position: relative; }
        .product-detail-informations .product-set-section .color-product .color-swatchs .attr-item.out-of-stock::after {
          content: "";
          display: block;
          width: 70%;
          height: 3px;
          position: absolute;
          background: #fff;
          top: 50%;
          left: 15%;
          transform: skewY(-40deg); }
          @media (min-width: 768px) {
            .product-detail-informations .product-set-section .color-product .color-swatchs .attr-item.out-of-stock::after {
              height: 2px; } }

@media (min-width: 768px) {
  .product-detail-informations .set-item-container {
    width: 80%;
    margin: auto; } }

@media (min-width: 992px) {
  .product-detail-informations .set-item-container {
    width: 100%; } }

.product-detail-informations .set-prices {
  padding-top: 2.143em;
  padding-bottom: 2.143em;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: none; }
  .product-detail-informations .set-prices .prices {
    padding-top: 0;
    padding-bottom: 0; }
  .product-detail-informations .set-prices .cart-and-ipay {
    padding-bottom: 0; }
  .product-detail-informations .set-prices .product-availability {
    margin-top: 0;
    position: static; }
    .product-detail-informations .set-prices .product-availability .col-12 {
      position: static; }
    .product-detail-informations .set-prices .product-availability ul li {
      position: absolute;
      z-index: 1;
      right: 0;
      top: 2.743em; }

.product-detail-informations .set-item-price .price-label,
.product-detail-informations .set-item-price .price {
  font-weight: 200;
  font-size: 1.2286rem; }
  @media (min-width: 992px) {
    .product-detail-informations .set-item-price .price-label,
    .product-detail-informations .set-item-price .price {
      font-size: 0.8714rem; } }
  @media (min-width: 1200px) {
    .product-detail-informations .set-item-price .price-label,
    .product-detail-informations .set-item-price .price {
      font-size: 1.2286rem; } }

.product-detail-informations .set-item-price .callout-message {
  margin-top: 7px; }

.product-detail-informations .set-item-price .price-inner .strike-through {
  display: inline-block;
  margin-right: 0.2em;
  margin-left: 0;
  color: #000;
  text-decoration: line-through; }

.product-detail-informations .set-item-price .price-inner .sales {
  color: #c00;
  font-size: 1.2286rem;
  display: inline-block; }

.product-detail-informations .prices-add-to-cart-actions.product-set-section .cart-and-ipay {
  margin-top: 0; }

.product-detail-informations .related-product-set {
  margin-top: 2em;
  padding: 0; }
  .product-detail-informations .related-product-set .related-product-set-section {
    position: relative;
    border-top: 2px solid #d8d8d8;
    padding: 2em 0; }
    .product-detail-informations .related-product-set .related-product-set-section:last-child {
      border-bottom: 2px solid #d8d8d8; }
  .product-detail-informations .related-product-set .related-container {
    margin-right: 2.1428rem; }
  .product-detail-informations .related-product-set .related-details {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%); }
    @media (min-width: 768px) {
      .product-detail-informations .related-product-set .related-details .product-name {
        font-size: 1.504rem; } }
    @media (min-width: 992px) {
      .product-detail-informations .related-product-set .related-details .product-name {
        font-size: 0.8714rem; } }
    @media (min-width: 1200px) {
      .product-detail-informations .related-product-set .related-details .product-name {
        font-size: 1.0714rem; } }
    @media (min-width: 768px) {
      .product-detail-informations .related-product-set .related-details .price {
        font-size: 2.2286rem; } }
    @media (min-width: 992px) {
      .product-detail-informations .related-product-set .related-details .price {
        font-size: 1.0714rem; } }
  .product-detail-informations .related-product-set .arrow-set-section {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%); }
  .product-detail-informations .related-product-set .arrow-icon {
    width: 26px;
    height: 26px;
    font-size: 0.7143rem;
    position: relative;
    z-index: 1; }
    @media (min-width: 768px) {
      .product-detail-informations .related-product-set .arrow-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1429rem; } }
    @media (min-width: 1200px) {
      .product-detail-informations .related-product-set .arrow-icon {
        font-size: 1.2857rem;
        width: 40px;
        height: 40px; } }
    .product-detail-informations .related-product-set .arrow-icon::before {
      content: "\E903";
      position: absolute;
      left: 50%;
      top: 50%;
      color: #000;
      font-family: "Samsonite-icons";
      font-style: normal;
      font-weight: normal;
      transform: translate(-50%, -50%); }

.product-set-detail .wishlist-block {
  display: none; }

.airline-carry-on {
  margin-top: 30px; }
  .airline-carry-on .airline-carry-on-title {
    position: relative;
    font-weight: 700;
    font-size: 1.1429rem;
    letter-spacing: 0.1em; }
    .airline-carry-on .airline-carry-on-title a {
      position: absolute;
      right: 0;
      margin: 0;
      border-bottom: 1px solid #000;
      font-weight: 200;
      font-size: 1.0714rem;
      letter-spacing: 0; }
  .airline-carry-on .value-item {
    font-size: 0.857rem; }
    @media (min-width: 992px) {
      .airline-carry-on .value-item {
        font-size: 0.929rem; } }
  .airline-carry-on #airline-selected-box.show-airline #select-contact::after {
    border-top: 0;
    border-bottom: 0.3em solid; }
  .airline-carry-on #airline-selected-box.show-airline .dropdown-menu {
    display: block !important; }
  .airline-carry-on #airline-selected-box button {
    outline: 0; }
  .airline-carry-on #airline-selected-box .nav.nav-tabs {
    position: relative; }
  .airline-carry-on #airline-selected-box .tab-content {
    padding-top: 20px; }
  .airline-carry-on #airline-selected-box .dropdown-airline {
    width: 100%; }
  .airline-carry-on #airline-selected-box .dropdown-menu {
    width: 100%;
    max-height: 310px;
    overflow-y: scroll; }
    .airline-carry-on #airline-selected-box .dropdown-menu .nav-link {
      border: 0;
      font-size: 0.857rem; }
      @media (min-width: 992px) {
        .airline-carry-on #airline-selected-box .dropdown-menu .nav-link {
          font-size: 0.929rem; } }
    .airline-carry-on #airline-selected-box .dropdown-menu.show {
      display: none; }
  .airline-carry-on #airline-selected-box #select-contact {
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    color: #000;
    font-size: 0.857rem;
    padding: 0;
    margin-top: 5px;
    width: 100%;
    background: #fff;
    text-align: left;
    position: relative;
    padding: 10px 0; }
    @media (min-width: 992px) {
      .airline-carry-on #airline-selected-box #select-contact {
        font-size: 0.929rem; } }
    .airline-carry-on #airline-selected-box #select-contact::after {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(0, -50%); }
  .airline-carry-on.card {
    margin-top: 0; }
    .airline-carry-on.card .value-item {
      font-size: 0.929rem; }
      @media (min-width: 992px) {
        .airline-carry-on.card .value-item {
          font-size: 1rem; } }

.product-detail-informations .wishlist-block {
  position: absolute;
  bottom: -0.5rem;
  left: 0; }
  .product-detail-informations .wishlist-block .btn {
    border: none;
    color: #000;
    background-color: transparent;
    padding: 0;
    width: auto;
    margin: 0 auto; }
    .product-detail .product-detail-informations .wishlist-block .btn:hover, .product-detail .product-detail-informations .wishlist-block .btn:focus, .product-detail .product-detail-informations .wishlist-block .btn:active {
      background-color: transparent;
      color: #000; }
      .product-detail .product-detail-informations .wishlist-block .btn:hover .fa::before, .product-detail .product-detail-informations .wishlist-block .btn:focus .fa::before, .product-detail .product-detail-informations .wishlist-block .btn:active .fa::before {
        content: '\F004';
        color: #c00; }
    .product-detail-informations .wishlist-block .btn .fa-heart::before {
      content: '\F004';
      color: #c00; }

.wishlist-message {
  position: fixed;
  z-index: 50;
  top: 20%;
  left: 50%;
  padding: 1.071rem;
  width: calc(100% - 30px);
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(-50%); }
  @media (min-width: 768px) {
    .wishlist-message {
      max-width: 350px; } }
  .wishlist-message .row {
    -ms-flex-align: center;
        align-items: center; }
  .wishlist-message p {
    margin-bottom: 0;
    font-size: 0.857rem; }
  .wishlist-message .col-4 {
    text-align: center; }
  .wishlist-message .btn-go-wishlist {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0;
    padding-left: 1.571rem;
    padding-right: 1.571rem;
    font-size: 0.857rem; }

.thumbnail-image-section {
  margin-right: 10px; }
  @media (min-width: 768px) {
    .thumbnail-image-section {
      margin-right: 25px; } }
  @media (min-width: 992px) {
    .thumbnail-image-section {
      margin: 0 auto;
      padding: 15% 0 0; } }
  @media (min-width: 1200px) {
    .thumbnail-image-section {
      padding: 35% 0 0; } }
  .thumbnail-image-section .owl-carousel {
    display: block; }
    .thumbnail-image-section .owl-carousel img {
      width: 65%;
      display: block;
      margin: 10px auto;
      cursor: pointer; }
      @media (min-width: 992px) {
        .thumbnail-image-section .owl-carousel img {
          width: auto;
          margin: -10px auto;
          transform: scale(0.75); } }
    .thumbnail-image-section .owl-carousel .owl-stage {
      margin: 0 -15px; }
      @media (min-width: 768px) {
        .thumbnail-image-section .owl-carousel .owl-stage {
          margin: 0 -20px; } }
  .thumbnail-image-section .thumbnail-item {
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=0.5); }
    .thumbnail-image-section .thumbnail-item.active {
      opacity: 1;
      filter: alpha(opacity=1); }
    .thumbnail-image-section .thumbnail-item .thumbnail-video {
      display: -ms-flexbox;
      display: flex;
      height: 80px;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      font-size: 30px; }
      @media (min-width: 768px) {
        .thumbnail-image-section .thumbnail-item .thumbnail-video {
          height: 120px;
          font-size: 50px; } }

.zoom-image-section.modal {
  overflow: hidden; }
  @media (min-width: 768px) {
    .zoom-image-section.modal {
      overflow: scroll; } }

.zoom-image-section .modal-dialog {
  margin: 0 auto;
  height: 100%; }
  @media (min-width: 768px) {
    .zoom-image-section .modal-dialog {
      max-width: none; } }

.zoom-image-section .modal-content {
  height: 100%;
  border: none; }
  .zoom-image-section .modal-content .modal-body {
    padding: 2.3rem 1rem; }
    @media (min-width: 768px) {
      .zoom-image-section .modal-content .modal-body {
        padding: 4.8rem 1rem; } }
  .zoom-image-section .modal-content .owl-item {
    -ms-touch-action: manipulation;
        touch-action: manipulation; }
  .zoom-image-section .modal-content .zoom-item {
    width: 95%;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .zoom-image-section .modal-content .zoom-item {
        width: 530px; } }

.zoom-image-section .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: -ms-flexbox;
  display: flex;
  display: -ms-flex;
  transform: translateX(-50%); }
  .zoom-image-section .owl-dots .owl-dot {
    display: inline-block;
    width: 1.071em;
    height: 0.357em;
    background-color: #b5b5b5;
    margin: auto 0.5em;
    outline: none;
    border-radius: 20px; }
    @media (min-width: 768px) {
      .zoom-image-section .owl-dots .owl-dot {
        width: 2.75em;
        height: 0.75em;
        margin: auto 1.25em; } }
    .zoom-image-section .owl-dots .owl-dot.active {
      background-color: #000;
      outline: none; }

.zoom-image-section .zoom-wrapper {
  display: none; }
  .zoom-image-section .zoom-wrapper.active {
    display: block;
    position: fixed;
    width: 100vw;
    height: calc(100vh - 2.3rem);
    top: 2rem;
    left: 0;
    z-index: 1;
    overflow: scroll;
    background-color: #fff; }
    @media (min-width: 768px) {
      .zoom-image-section .zoom-wrapper.active {
        height: calc(100vh - 4.8rem);
        top: 4.8rem; } }
  .zoom-image-section .zoom-wrapper .zoom-image {
    max-width: none; }
    @media (min-width: 768px) {
      .zoom-image-section .zoom-wrapper .zoom-image {
        max-width: 100%; } }

.modal-showed {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0; }
  .modal-showed .zoom-modal-backdrop {
    background: #fff;
    opacity: 1; }

.zoom-modal-backdrop {
  height: 120%; }

.product-detail-main .zoom-image-section .close {
  z-index: 2;
  font-size: 1.2857rem;
  position: absolute;
  top: 6px;
  right: 10px; }
  @media (min-width: 768px) {
    .product-detail-main .zoom-image-section .close {
      font-size: 2rem;
      top: 16px;
      right: 20px; } }
  .product-detail-main .zoom-image-section .close:focus {
    outline: none; }

.store-inventory-section .store-inventory-wrapper {
  direction: rtl;
  padding: 0 1.25rem;
  margin: 1.5rem 0; }
  .store-inventory-section .store-inventory-wrapper.scroll {
    max-height: 310px;
    overflow-y: auto; }
    @media (min-width: 768px) {
      .store-inventory-section .store-inventory-wrapper.scroll {
        max-height: 384px; } }
  .store-inventory-section .store-inventory-wrapper::-webkit-scrollbar-track {
    background-color: #000;
    border-left: 7px solid #fff;
    border-right: 7px solid #fff; }
  .store-inventory-section .store-inventory-wrapper::-webkit-scrollbar {
    width: 16px; }
  .store-inventory-section .store-inventory-wrapper::-webkit-scrollbar-thumb {
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    background-color: #000; }

.store-inventory-section .instore-inventory-box {
  padding: 0;
  list-style: none;
  direction: ltr; }
  .store-inventory-section .instore-inventory-box .instore-information p {
    margin-bottom: 5px; }
    .store-inventory-section .instore-inventory-box .instore-information p:last-child {
      margin-bottom: 0; }

.store-inventory-section .instore-information {
  font-size: 0.786rem;
  line-height: 1.0714rem; }
  @media (min-width: 768px) {
    .store-inventory-section .instore-information {
      font-size: 0.929rem;
      line-height: 1.2857rem; } }

.store-inventory-section .instore-availability-status {
  font-size: 0.786rem;
  padding: 0; }
  @media (min-width: 768px) {
    .store-inventory-section .instore-availability-status {
      font-size: 0.929rem;
      line-height: 1.2857rem; } }
  .store-inventory-section .instore-availability-status span {
    display: inline-block;
    position: relative;
    padding-left: 15px; }
    .store-inventory-section .instore-availability-status span::before {
      content: '';
      position: absolute;
      width: 0.714em;
      height: 0.714em;
      left: 0;
      top: 4px;
      background-color: #094f8d; }
    .store-inventory-section .instore-availability-status span.low-in-stock::before {
      background-color: #ff0; }
    .store-inventory-section .instore-availability-status span.out-of-stock::before {
      background-color: #c00; }

.store-inventory-section .view-map {
  margin-top: 15px;
  display: block;
  text-decoration: underline;
  font-size: 0.786rem;
  cursor: pointer; }
  @media (min-width: 768px) {
    .store-inventory-section .view-map {
      font-size: 0.929rem;
      line-height: 1.2857rem; } }

.store-inventory-section .instore-inventory-item {
  padding-bottom: 30px; }
  .store-inventory-section .instore-inventory-item:last-child {
    padding-bottom: 0; }

.in-store-map-modal.show {
  overflow: hidden; }
  .in-store-map-modal.show .modal-dialog {
    transform: translate(-50%, -50%); }

.in-store-map-modal .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 100%;
  margin: 0; }
  .in-store-map-modal .modal-dialog .map-canvas {
    width: 90vw;
    height: 90vh; }
  .in-store-map-modal .modal-dialog .modal-header {
    padding: 0;
    border: 0; }
  .in-store-map-modal .modal-dialog .modal-content {
    width: 90vw;
    height: 90vh;
    margin: auto;
    border: 0; }
  .in-store-map-modal .modal-dialog .modal-body {
    padding: 0; }
  .in-store-map-modal .modal-dialog .title {
    display: none; }

.in-store-map-modal .close-modal {
  z-index: 2;
  font-size: 1.2857rem;
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  padding: 8px 10px;
  box-shadow: #787878 0 1px 4px -1px;
  border: none;
  outline: none;
  cursor: pointer; }
  @media (min-width: 768px) {
    .in-store-map-modal .close-modal {
      font-size: 1.25rem;
      top: 12px;
      padding: 9px 12px;
      right: 67px; } }
  .in-store-map-modal .close-modal:focus {
    outline: none; }

.product-detail[data-gift-certificate-product="true"] .product-detail-desciptions {
  padding: 0; }
  .product-detail[data-gift-certificate-product="true"] .product-detail-desciptions ul {
    padding-left: 0;
    list-style-position: inside; }
    .product-detail[data-gift-certificate-product="true"] .product-detail-desciptions ul li:first-child {
      list-style-type: none;
      padding: 2.5rem 0; }
      @media (min-width: 992px) {
        .product-detail[data-gift-certificate-product="true"] .product-detail-desciptions ul li:first-child {
          padding: 1.429em 0.714em; } }
    .product-detail[data-gift-certificate-product="true"] .product-detail-desciptions ul li:not(:first-child) {
      margin-bottom: 5px;
      font-size: 1rem; }
      @media (min-width: 992px) {
        .product-detail[data-gift-certificate-product="true"] .product-detail-desciptions ul li:not(:first-child) {
          padding: 0 0.714em; } }

@media (min-width: 992px) {
  .product-detail[data-gift-certificate-product="true"] .disclaimer-message {
    padding: 0 0.714em; } }

.product-detail[data-gift-certificate-product="true"] .product-sku {
  padding: 1em 0.714em;
  padding-bottom: 0; }

.product-detail[data-gift-certificate-product="true"] .description {
  padding-top: 2.5rem; }
  @media (min-width: 992px) {
    .product-detail[data-gift-certificate-product="true"] .description {
      padding-top: 1.429em; } }
  .product-detail[data-gift-certificate-product="true"] .description h1 {
    font-size: 1.1429rem;
    font-weight: bold; }
    @media (min-width: 992px) {
      .product-detail[data-gift-certificate-product="true"] .description h1 {
        font-size: 1rem; } }
    @media (min-width: 1600px) {
      .product-detail[data-gift-certificate-product="true"] .description h1 {
        font-size: 1.2857rem; } }
  .product-detail[data-gift-certificate-product="true"] .description .content {
    max-width: 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    font-size: 1rem;
    padding: 0; }
    @media (min-width: 992px) {
      .product-detail[data-gift-certificate-product="true"] .description .content {
        padding: 0 0.714em; } }
    .product-detail[data-gift-certificate-product="true"] .description .content ul {
      padding-left: 0;
      list-style-position: inside; }
      .product-detail[data-gift-certificate-product="true"] .description .content ul li {
        margin-bottom: 5px; }

.breadcrumb {
  padding-top: 0.714em;
  padding-bottom: 0.714em; }

.product-breadcrumb .container-fluid {
  padding-left: 20px;
  padding-right: 20px; }
  @media (min-width: 992px) {
    .product-breadcrumb .container-fluid {
      padding-left: 35px;
      padding-right: 35px; } }

.product-detail-head {
  position: relative;
  z-index: 1; }

.product-detail {
  padding-bottom: 2.143em; }
  @media (min-width: 992px) {
    .product-detail.has-banner .product-detail-main {
      margin-top: -7.143em; } }
  @media (min-width: 1600px) {
    .product-detail.has-banner .product-detail-main {
      margin-top: -8.929em; } }
  .product-detail .product-detail-main {
    padding-left: 20px;
    padding-right: 20px; }
    @media (min-width: 768px) {
      .product-detail .product-detail-main {
        padding-left: 15px;
        padding-right: 15px; } }
    @media (min-width: 992px) {
      .product-detail .product-detail-main {
        max-width: calc(100% - 8.571em);
        background-color: #fff;
        position: relative;
        z-index: 3; } }
    @media (min-width: 1600px) {
      .product-detail .product-detail-main {
        max-width: calc(100% - 10.714em); } }
  .product-detail .prices-add-to-cart-actions {
    z-index: 10;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch; }

@media (min-width: 1200px) {
  .new-product-detail .product-detail-main {
    max-width: 90%; } }

.promotion-banner {
  text-align: center; }

.back-to-top {
  bottom: 60px; }
  @media (min-width: 768px) {
    .back-to-top {
      bottom: 100px; } }

.add-to-cart-messages {
  display: none; }

.section-header {
  z-index: 91; }

.price-bonus-product .bonus-price {
  position: relative;
  bottom: 0.5em; }
  @media (min-width: 768px) {
    .price-bonus-product .bonus-price {
      bottom: 0.3em; } }
  @media (min-width: 1600px) {
    .price-bonus-product .bonus-price {
      bottom: 0.5em; } }

.grecaptcha-badge {
  z-index: 11; }

.second-banner-img {
  display: block;
  width: 100%; }

#confirm-quick-checkout .modal-content {
  border-radius: 0; }

#confirm-quick-checkout .modal-header {
  padding-top: 0.7em;
  padding-bottom: 0.7em; }
  #confirm-quick-checkout .modal-header button {
    outline: none; }

#confirm-quick-checkout .btn-outline-primary {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 0; }

#confirm-quick-checkout .btn-primary {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 0;
  background-color: #000;
  color: #fff; }
  #confirm-quick-checkout .btn-primary:hover, #confirm-quick-checkout .btn-primary:focus {
    background-color: #000; }

@media (max-width: 991.98px) {
  .recommendations .product-tile .tile-body .price .price-inner {
    display: block; } }

@media (max-width: 991.98px) {
  .recommendations .product-tile .tile-body .price .price-inner .strike-through {
    display: block; } }

.price {
  font-size: 0.88em; }
  @media (min-width: 992px) {
    .price {
      font-size: 1.2857rem; } }
  @media (min-width: 1600px) {
    .price {
      font-size: 1.5714rem; } }

.product-sticky-bar .price .price-inner {
  display: block; }
  .product-sticky-bar .price .price-inner .strike-through {
    display: block; }
  .product-sticky-bar .price .price-inner .sales {
    display: block;
    text-align: left; }

#miniCartModal .price-bonus-product .bonus-price {
  bottom: 0; }
  @media (min-width: 1600px) {
    #miniCartModal .price-bonus-product .bonus-price {
      bottom: 0.5em; } }

.atome-payment-pdp {
  padding-top: 0.5em; }
  .atome-payment-pdp .atome-paragraph {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0; }
    .atome-payment-pdp .atome-paragraph span::after {
      content: '\A0'; }

.product-detail-informations .product-set-section.prices-add-to-cart-actions .prices {
  padding-bottom: 0; }

.product-detail-informations .product-set-section.prices-add-to-cart-actions .atome-payment-pdp {
  padding-bottom: 2em; }
