@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;
  }
}
.new-pdp{padding-bottom:0}.new-pdp.product-detail{padding-bottom:0}.new-pdp .product-detail-informations .product-information-content #features .information-table-line:nth-child(2n){background-color:#fff}.new-pdp .product-detail-informations .account-customer-supports{padding:25px 0}.new-pdp .product-detail-informations .price-content-information{padding-bottom:0}.new-pdp .product-detail-informations .price-content-information .text-center{text-align:left !important}.new-pdp .product-detail-informations .product-collection{font-weight:700;letter-spacing:0;margin-bottom:0}.new-pdp .product-detail-informations .product-brand{margin-bottom:0;font-weight:400}.new-pdp .product-detail-informations .view-collection{margin-bottom:5px;font-weight:400}@media (min-width: 992px){.new-pdp .product-detail-informations .view-collection{font-weight:500}}@media (min-width: 1600px){.new-pdp .product-detail-informations .view-collection{font-size:1.1429rem}}.new-pdp .product-detail-informations .product-name{margin-bottom:20px;font-size:1rem;font-weight:bold}@media (min-width: 1600px){.new-pdp .product-detail-informations .product-name{font-size:1.2143rem}}.new-pdp .product-detail-informations .promotion-message{max-width:80%;margin-top:-5px}.new-pdp .product-detail-informations .promotion-message .product-merchand-message{background:#ededed;padding:5px 10px;font-size:0.8rem;border-radius:5px;margin-top:5px;float:left}.new-pdp .product-detail-informations .product-personalise-wrapper.has-monogram .product-detail-section{border-top:2px solid #d8d8d8}.new-pdp .product-detail-informations .product-personalise-wrapper .product-detail-section{border-top:0}@media (min-width: 992px){.new-pdp .product-detail-informations .product-personalise-wrapper .product-detail-section{border-top:2px solid #d8d8d8}}.new-pdp .product-detail-informations .product-monogram-wrapper .product-detail-section{border-top:0}@media (min-width: 992px){.new-pdp .product-detail-informations .product-monogram-wrapper .product-detail-section{border-top:2px solid #d8d8d8}}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions{border:0;margin-bottom:0;padding:0 0 25px}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions.is-out-stock ~ .product-accessories-box-title{margin-top:0}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .cart-and-ipay{margin-top:0}}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .cart-and-ipay .col-sm-12{padding:0 7.5px}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .cart-and-ipay .col-sm-12{max-width:none;padding:0 15px}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .cart-and-ipay .col-sm-12::after{clear:'both';display:block;content:''}}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .add-to-cart.btn.btn-primary{width:100%;border-width:1px;font-weight:bold;font-size:1.0714rem;padding:1.0714rem 0}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .add-to-cart.btn.btn-primary{max-width:calc(50% - 5px);margin-right:5px;float:left}}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .quick-checkout{width:100%;margin:0;font-weight:bold;font-size:1.0714rem;padding:1.0714rem 0;margin-top:1.0714rem;border-width:1px}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions .quick-checkout{max-width:calc(50% - 5px);margin-left:5px;margin-top:0;float:right}}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions.is-out-stock .back-in-stock{margin:0 -5px}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions.is-out-stock .back-in-stock{margin:0}}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions.is-out-stock .back-in-stock::after{clear:both;content:'';display:block}.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions.is-out-stock .back-in-stock .notify-me{width:100%;border-width:1px;font-weight:700;font-size:1.0714rem;padding:1.0714rem 0;background:#fff;color:#000;border:1px solid #000}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section.prices-add-to-cart-actions.is-out-stock .back-in-stock .notify-me{max-width:calc(50% - 5px);float:left}}.new-pdp .product-detail-informations .prices-add-to-cart-actions .sales,.new-pdp .product-detail-informations .prices-add-to-cart-actions .starting,.new-pdp .product-detail-informations .prices-add-to-cart-actions .range{font-weight:700}.new-pdp .product-detail-informations .prices-add-to-cart-actions .prices{text-align:left}.new-pdp .product-detail-informations .prices-add-to-cart-actions .prices .country-price-description{margin-bottom:5px}.new-pdp .product-detail-informations .prices-add-to-cart-actions .prices .callout{font-size:15px;display:inline-block;margin-left:5px;line-height:20px;color:#000;font-weight:500}.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability{position:relative;bottom:auto;left:auto;display:block}@media (min-width: 992px){.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability{margin-bottom:3px}}.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability ul{text-align:left}.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability ul li{top:0;color:#008827;padding-left:1rem;font-size:.857rem;font-weight:400}@media (min-width: 1600px){.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability ul li{font-size:1rem}}.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability ul li::before{background-color:#008827;border-radius:50%}.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability ul li.disabled{color:#c00}.new-pdp .product-detail-informations .prices-add-to-cart-actions .product-availability ul li.disabled::before{background-color:#c00}.new-pdp .product-detail-informations .product-detail-info-top{padding-left:0;padding-right:0;position:relative}.new-pdp .product-detail-informations .product-detail-info-top .product-sticker-wrapper{margin:25px 0}.new-pdp .product-detail-informations #size-selection-mobile{width:calc(100% - 30px);position:absolute;right:15px;z-index:100;border-bottom:1px solid #000;top:92px}.new-pdp .product-detail-informations #size-selection-mobile .variant-item{width:100%}.new-pdp .product-detail-informations #size-selection-mobile .variant-item .attr-selector{padding:0;text-align:center;width:100%;border-radius:0;border:1px solid #000;border-bottom:0;font-weight:500;line-height:35px;font-size:14px}.new-pdp .product-detail-informations .mobile-variant-selection .product-attributes{-ms-flex-direction:column;flex-direction:column}.new-pdp .product-detail-informations .mobile-variant-selection .product-attributes .attribute{padding-left:0;padding-right:0}.new-pdp .product-detail-informations .mobile-variant-selection .product-attributes .attribute:last-child{padding:0}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs.collapse:not(.show){display:none}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs.color-swatchs-label .attr-item.out-of-stock::after{width:90%;left:10%;transform:skewY(-35deg)}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs.color-swatchs-label .attr-item.out-of-stock span{opacity:0.3}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs#mobile-color-box{width:calc(100% - 30px);position:absolute;right:15px;z-index:100;border-bottom:1px solid #000;top:92px;background:#fff}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs#mobile-color-box .attr-item-box{border:1px solid #000;border-bottom:0;padding:2px 0}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs#mobile-color-box .attr-item{border-width:1px}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs#mobile-color-box .attr-item a{height:24px;width:24px}.new-pdp .product-detail-informations .mobile-variant-selection .color-swatchs#mobile-color-box .attr-item .attr-item-name{width:100%;text-align:left;line-height:15px;font-weight:300}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label.size-selection-label h4{width:35px}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label.size-selection-label .selected-size-item{text-align:left;width:calc(100%);float:right;line-height:35px;margin-top:-3px;border:1px solid #000;padding:0 20px;position:relative}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label.size-selection-label .selected-size-item.out-of-stock span{text-decoration:line-through}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label.size-selection-label .selected-size-item img{position:absolute;width:15px;right:15px;top:48%;transform:translateY(-50%)}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label h4{width:50px;float:left;line-height:29px}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs{width:100%;float:right;padding:0 6px;border:1px solid #000;margin-top:-3px}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs .attr-item-box{height:35px}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs .attr-item{padding:0;margin:0;border:0}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs .attr-item .attr-color-example{height:30px;width:30px;max-width:100%;max-height:100%;display:block;border-radius:50%}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs .attr-item-name{width:calc(100% - 35px);line-height:15px;padding-left:7px;text-align:left;position:relative;font-weight:bold}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs .attr-item-name span{display:block;width:calc(100% - 15px)}.new-pdp .product-detail-informations .mobile-variant-selection .attribute-label .color-swatchs .attr-item-name img{position:absolute;width:15px;right:0;top:48%;transform:translateY(-50%)}.new-pdp .product-detail-informations .variation-box{-ms-flex-direction:row-reverse;flex-direction:row-reverse;margin:0 -20px}@media (min-width: 768px){.new-pdp .product-detail-informations .variation-box{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.new-pdp .product-detail-informations .variation-box .col-6,.new-pdp .product-detail-informations .variation-box .col-12{border-top:2px solid #d8d8d8;border-bottom:2px solid #d8d8d8;border-left:1px solid #d8d8d8}@media (min-width: 768px){.new-pdp .product-detail-informations .variation-box .col-6,.new-pdp .product-detail-informations .variation-box .col-12{border:0}}.new-pdp .product-detail-informations .variation-box .col-6:last-child,.new-pdp .product-detail-informations .variation-box .col-12:last-child{border-left:0}.new-pdp .product-detail-informations .variation-box .mobile-variant-selection h4{display:inline-block}.new-pdp .product-detail-informations .variation-box .mobile-variant-selection select{height:35px;width:110px;border-radius:0;padding:0 10px}.new-pdp .product-detail-informations .variation-box .mobile-variant-selection .size-selection-description{font-size:.786rem;text-align:right;margin-top:10px}.new-pdp .product-detail-informations .variation-box .size-selection-desktop .variant-item{max-width:unset;float:left}.new-pdp .product-detail-informations .product-attributes [data-attr=color]{border:0}@media (min-width: 768px){.new-pdp .product-detail-informations .product-attributes{padding:0 5px}}@media (min-width: 768px){.new-pdp .product-detail-informations .product-attributes .attribute{padding:25px 0;border-top:1px solid #d8d8d8}}@media (min-width: 768px){.new-pdp .product-detail-informations .product-attributes h4{font-size:1.0714rem}}@media (min-width: 768px){.new-pdp .product-detail-informations .product-attributes h4 .attr-item-name{font-weight:700}}.new-pdp .product-detail-informations .product-attributes .attr-item.out-of-stock{opacity:1;position:relative}.new-pdp .product-detail-informations .product-attributes .attr-item.out-of-stock::after{content:"";display:block;width:70%;height:1px;position:absolute;background:#fff;top:50%;left:15%;transform:skewY(-40deg)}@media (min-width: 768px){.new-pdp .product-detail-informations .product-attributes .attr-item.out-of-stock::after{height:2px}}.new-pdp .product-detail-informations .product-attributes .attr-item.out-of-stock ~ .attr-item-name{color:#999}.new-pdp .product-detail-informations .product-detail-section{padding:1.429em 0}@media (min-width: 992px){.new-pdp .product-detail-informations .product-detail-section{padding-left:5px;padding-right:5px}}.new-pdp .product-detail-informations .color-swatchs{display:block}.new-pdp .product-detail-informations .color-swatchs .attr-item-box{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}@media (min-width: 768px){.new-pdp .product-detail-informations .color-swatchs .attr-item{border-width:1px;margin-left:0;margin-right:10px;float:left}}.new-pdp .product-detail-informations .color-swatchs .attr-item-name{width:100%;text-align:left;line-height:15px;font-size:13px;font-weight:500}.new-pdp .product-detail-informations .one-size-product{margin-bottom:15px}@media (min-width: 768px){.new-pdp .product-detail-informations .product-variant-size h4{font-size:1.0714rem}}.new-pdp .product-detail-informations .product-variant-size .out-of-stock .attr-selector{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZlcnNpb249JzEuMScgcHJlc2VydmVBc3BlY3RSYXRpbz0nbm9uZScgdmlld0JveD0nMCAwIDEwMCAxMDAnPjxwYXRoIGQ9J00xMDAgMCBMMCAxMDAgJyBzdHJva2U9J2JsYWNrJyBzdHJva2Utd2lkdGg9JzInLz48L3N2Zz4=") #fff;background-repeat:no-repeat;background-position:center center;background-size:100% 100%;color:#999}@media (min-width: 768px){.new-pdp .product-detail-informations .product-variant-size .out-of-stock .attr-selector{opacity:1;border-color:#e6e6e6;color:#000;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZlcnNpb249JzEuMScgcHJlc2VydmVBc3BlY3RSYXRpbz0nbm9uZScgdmlld0JveD0nMCAwIDEwMCAxMDAnPjxwYXRoIGQ9J00xMDAgMCBMMCAxMDAgJyBzdHJva2U9JyNlNmU2ZTYnIHN0cm9rZS13aWR0aD0nMicvPjwvc3ZnPg==") #fff !important}}.new-pdp .product-detail-informations .product-variant-size .out-of-stock.selected .attr-selector{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZlcnNpb249JzEuMScgcHJlc2VydmVBc3BlY3RSYXRpbz0nbm9uZScgdmlld0JveD0nMCAwIDEwMCAxMDAnPjxwYXRoIGQ9J00xMDAgMCBMMCAxMDAgJyBzdHJva2U9J3doaXRlJyBzdHJva2Utd2lkdGg9JzInLz48L3N2Zz4=") #000;color:#fff}@media (min-width: 768px){.new-pdp .product-detail-informations .product-variant-size .out-of-stock.selected .attr-selector{opacity:1;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZlcnNpb249JzEuMScgcHJlc2VydmVBc3BlY3RSYXRpbz0nbm9uZScgdmlld0JveD0nMCAwIDEwMCAxMDAnPjxwYXRoIGQ9J00xMDAgMCBMMCAxMDAgJyBzdHJva2U9J2JsYWNrJyBzdHJva2Utd2lkdGg9JzInLz48L3N2Zz4=") #fff !important}}@media (min-width: 768px){.new-pdp .product-detail-informations .product-variant-size .size-selection .size-item .attr-selector{border-radius:0;font-size:1.0714rem;padding:0;width:90px;line-height:40px;margin-right:10px;border-width:1px}}@media (min-width: 768px){.new-pdp .product-detail-informations .product-variant-size .size-selection .attr-item.selected .attr-selector{background:#fff;color:#000;border-color:#000;border-width:1px;font-weight:700}}@media (min-width: 768px){.new-pdp .product-detail-informations .product-variant-size .size-selection-description{margin-top:10px}}.new-pdp .product-detail-informations .description-and-detail{margin:45px -5px 0}@media (min-width: 992px){.new-pdp .product-detail-informations .description-and-detail{margin:0}}.new-pdp .product-detail-informations .description-and-detail .value{width:100%;display:-webkit-box;-webkit-line-clamp:4;overflow:hidden;line-height:20px;max-height:80px;text-overflow:ellipsis;margin-bottom:5px}.new-pdp .product-detail-informations .description-and-detail .value.show{max-height:unset;-webkit-line-clamp:unset}.new-pdp .product-detail-informations .description-and-detail .product-description-readmore{text-decoration:underline;cursor:pointer;font-size:1.0714rem}@media (min-width: 992px){.new-pdp .product-detail-informations .description-and-detail .product-description-readmore{font-size:1rem}}@media (min-width: 1600px){.new-pdp .product-detail-informations .description-and-detail .product-description-readmore{font-size:1.2857rem}}@media (min-width: 992px){.new-pdp .product-detail-informations .product-desciption{margin-top:15px}}.new-pdp .product-detail-informations .wishlist-block{top:25px;right:0;bottom:auto;left:auto}@media (min-width: 992px){.new-pdp .product-detail-informations .wishlist-block{top:40px}}.new-pdp .product-detail-informations .wishlist-block i{font-size:20px;font-weight:bold}.new-pdp .product-detail-informations .bonus-product-section{border-bottom:0}@media (min-width: 992px){.new-pdp .product-detail-informations .related-product-set-wrapper ~ .product-desciption{margin-top:30px}}@media (min-width: 1600px){.new-pdp .product-detail-informations .related-product-set-wrapper ~ .product-desciption{margin-top:45px}}.new-pdp .product-detail-informations .related-product-set{margin-left:-5px;margin-right:-5px}.new-pdp .product-detail-informations .related-product-set .related-product-set-section{border:0;padding:0;margin-bottom:15px}.new-pdp .product-detail-informations .related-product-set .related-product-set-section:last-child{border:0}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .related-product-set-item{border:1px solid #ccc;border-radius:10px}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .related-container{margin:0}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container{width:80%;margin:15px auto}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container .row{-ms-flex-pack:center;justify-content:center}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container .col-4{position:relative}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container .col-4::after{content:'+';position:absolute;top:50%;right:0;font-size:25px;transform:translate(50%, -50%)}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container .col-4:last-child::after,.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container .col-4:nth-child(3n)::after{display:none}.new-pdp .product-detail-informations .related-product-set .related-product-set-section .image-container .tile-image{max-height:125px;margin:0 auto;display:block}.new-pdp .product-detail-informations .related-product-set .related-details{position:relative;width:100%;top:0;transform:none;left:0;text-align:center}@media (min-width: 992px){.new-pdp .product-detail-informations .related-product-set .related-details{position:absolute;top:50%;transform:translateY(-50%);left:15%;width:55%;text-align:left}}.new-pdp .product-detail-informations .related-product-set .related-details .product-name{text-transform:none}@media (min-width: 992px){.new-pdp .product-detail-informations .related-product-set .related-details .product-name{margin-bottom:0;font-size:15px;font-weight:normal}}@media (min-width: 1600px){.new-pdp .product-detail-informations .related-product-set .related-details .product-name{font-size:20px}}.new-pdp .product-detail-informations .related-product-set .related-details a{display:inline-block;position:relative}.new-pdp .product-detail-informations .related-product-set .related-details a .arrow-icon{position:absolute;right:-25px;font-size:15px;top:50%;transform:translateY(-50%)}@media (min-width: 992px){.new-pdp .product-detail-informations .related-product-set .related-details a .arrow-icon{display:none}}@media (min-width: 992px){.new-pdp .product-detail-informations .related-product-set .related-product-set-details .d-lg-block .arrow-icon{position:absolute;top:50%;transform:translateY(-50%);right:25px;font-size:20px}}.new-pdp .product-detail-informations .product-information-tabs{margin:30px -20px 0 -5px;overflow-x:scroll;-ms-overflow-style:none;scrollbar-width:none}@media (min-width: 992px){.new-pdp .product-detail-informations .product-information-tabs{margin:30px 0 0}}.new-pdp .product-detail-informations .product-information-tabs::-webkit-scrollbar{display:none}.new-pdp .product-detail-informations .product-information-tabs .product-information-title{border-bottom:2px solid #f6f6f6;width:auto;min-width:110%;display:block;white-space:nowrap}@media (min-width: 1600px){.new-pdp .product-detail-informations .product-information-tabs .product-information-title{min-width:100%}}.new-pdp .product-detail-informations .product-information-tabs .product-information-title.owl-carousel{display:block}.new-pdp .product-detail-informations .product-information-tabs .product-information-title.owl-carousel .owl-item:has(#features-tab.empty-feature),.new-pdp .product-detail-informations .product-information-tabs .product-information-title.owl-carousel .owl-item:has(#barcode-tab.empty-barcode){display:none}.new-pdp .product-detail-informations .product-information-tabs .product-information-title .nav-item{margin:0;display:inline-block}.new-pdp .product-detail-informations .product-information-tabs .product-information-title .nav-link{text-align:left;padding:15px 0;margin-right:15px;display:inline-block;background:#fff;position:relative;border:0;outline:0;color:#000;cursor:pointer}.new-pdp .product-detail-informations .product-information-tabs .product-information-title .nav-link::after{content:'';width:0;position:absolute;bottom:0;left:50%;transform:translateX(-50%);height:2px;background-color:#000;transition:width linear 0.3s}.new-pdp .product-detail-informations .product-information-tabs .product-information-title .nav-link.active::after,.new-pdp .product-detail-informations .product-information-tabs .product-information-title .nav-link:hover::after{content:'';width:100%}.new-pdp .product-detail-informations .product-information-tabs .product-information-title .nav-link.active{font-weight:500}.new-pdp .product-detail-informations .product-information-content{margin:15px -20px 0;padding-bottom:15px;border-bottom:2px solid #f6f6f6}@media (min-width: 992px){.new-pdp .product-detail-informations .product-information-content{margin-left:-5px}}.new-pdp .product-detail-informations .product-information-content .tab-pane{display:none}.new-pdp .product-detail-informations .product-information-content .tab-pane.active{display:block}.new-pdp .product-detail-informations .product-information-content .tab-pane#size-compare .product-detail-desciptions.has-tangiblee{display:none}.new-pdp .product-detail-informations .product-information-content .tab-pane#pdp-video iframe{position:absolute;width:100%;height:100%;top:0;left:0;right:0;bottom:0;margin:0;margin:0;max-width:none}.new-pdp .product-detail-informations .product-information-content .tab-pane#pdp-video .video-item{padding-bottom:56%;margin-bottom:15px}.new-pdp .product-detail-informations .product-information-content .tab-pane .card-header{display:none}.new-pdp .product-detail-informations .product-information-content .tab-pane .collapse#airline-selected-box:not(.show){display:block}.new-pdp .product-detail-informations .product-information-content .tab-pane .tangiblee-container{display:block !important}.new-pdp .product-detail-informations .product-information-content .tab-pane .size-comparison-card{display:none}.new-pdp .product-detail-informations .product-information-content .information-table-line{background-color:#f6f6f6;font-size:1.0714rem;line-height:1.7857rem;padding:15px 0}.new-pdp .product-detail-informations .product-information-content .information-table-line.white{background-color:#fff}.new-pdp .product-detail-informations .product-information-content .information-table-line .row{margin:0}.new-pdp .product-detail-informations .product-information-content .information-table-line .information-table-value .content-asset{display:inline-block}.new-pdp .product-detail-informations .product-information-content .information-table-line .dimension-info{cursor:pointer;position:relative;padding-left:5px;-webkit-user-select:none;-ms-user-select:none;user-select:none}@media (min-width: 992px){.new-pdp .product-detail-informations .product-information-content .information-table-line .dimension-info{padding-left:0}}@media (min-width: 1200px){.new-pdp .product-detail-informations .product-information-content .information-table-line .dimension-info{padding-left:5px}}.new-pdp .product-detail-informations .product-information-content .information-table-line .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:200px;padding:10px;margin-top:10px;right:-10px;border-radius:5px;top:100%}.new-pdp .product-detail-informations .product-information-content .information-table-line .dimension-info .dimension-text::before{content:'';display:block;position:absolute;right:11px;top:-4px;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #d2d2d2}.new-pdp .product-detail-informations .product-information-content .information-table-line .dimension-info:hover .dimension-text,.new-pdp .product-detail-informations .product-information-content .information-table-line .dimension-info:focus .dimension-text{display:block}.new-pdp .product-detail-informations .product-information-content .information-table-line .expandable-volume-info{cursor:pointer;position:relative;padding-left:5px;-webkit-user-select:none;-ms-user-select:none;user-select:none}@media (min-width: 992px){.new-pdp .product-detail-informations .product-information-content .information-table-line .expandable-volume-info{padding-left:0}}@media (min-width: 1200px){.new-pdp .product-detail-informations .product-information-content .information-table-line .expandable-volume-info{padding-left:5px}}.new-pdp .product-detail-informations .product-information-content .information-table-line .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:200px;padding:10px;margin-top:10px;right:-10px;border-radius:5px;top:100%}.new-pdp .product-detail-informations .product-information-content .information-table-line .expandable-volume-info .expandable-volume-text::before{content:'';display:block;position:absolute;right:11px;top:-4px;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #d2d2d2}.new-pdp .product-detail-informations .product-information-content .information-table-line .expandable-volume-info:hover .expandable-volume-text,.new-pdp .product-detail-informations .product-information-content .information-table-line .expandable-volume-info:focus .expandable-volume-text{display:block}.new-pdp .product-detail-informations .product-information-content .airline-carry-on{padding:0 15px}.new-pdp .product-detail-informations .bar-code-box .collapse#collapse-barcode:not(.show){display:block}.new-pdp .product-detail-informations .bar-code-box .card-header{display:none}.new-pdp .product-detail-informations .bar-code-box .card{border-top:0}.new-pdp .product-detail-informations .product-sku.information-table-value{padding:0}@media (min-width: 992px){.new-pdp .product-detail-informations .promotion-message{padding-bottom:5px}}@media (min-width: 992px){.new-pdp .product-detail-informations .product-brand{margin-bottom:2px}}.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star]{width:15px;height:15px}@media (min-width: 1600px){.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star]{width:18px;height:18px}}.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star]::before{font-size:15px}@media (min-width: 1600px){.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star]::before{font-size:18px}}.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star]::after{font-family:'FontAwesome';font-style:normal;font-weight:normal;content:'\F005';position:absolute;color:#094f8d;overflow:hidden;top:0;left:0;font-size:10px;opacity:0;width:0;font-size:15px}@media (min-width: 1600px){.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star]::after{font-size:18px}}.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star].pr-star-v4-25-filled::after{opacity:1;width:40%}.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star].pr-star-v4-50-filled::after{opacity:1;width:50%}.new-pdp .pwr-pdp .p-w-r .pr-snippet .pr-rating-stars [class^=pr-star].pr-star-v4-75-filled::after{opacity:1;width:64%}.new-pdp .product-detail-main .price{text-align:left;display:inline-block}.new-pdp .product-detail-main .price .price-inner{display:inline-block}.new-pdp .product-detail-main .price .price-inner::after{display:block;content:'';clear:both}.new-pdp .product-detail-main .price .sales{display:inline-block;line-height:25px;font-size:25px;font-weight:500}.new-pdp .product-detail-main .price .strike-through{font-size:15px;display:inline-block;margin-left:5px;color:#676767;line-height:20px}.new-pdp .product-detail-main .price .strike-through ~ .sales{color:#000;float:left}.new-pdp .product-detail-main .availability-msg .pre-order-estimated-msg{display:none}.new-pdp .product-detail-main .pre-order-estimated{margin-top:1rem;display:block;color:#008827}.new-pdp .airline-carry-on-title span{display:none}.new-pdp .delivery-timelines{display:block;width:100%}.new-pdp .delivery-timelines li{list-style:none}.new-pdp .prices-add-to-cart-actions .promotion-callout-msg{display:none}.new-pdp .hover-image{display:none}.new-pdp .product-sticky-bar{box-shadow:0 2px 10px rgba(0,0,0,0.2)}.new-pdp .thumbnail-image-section .owl-stage-outer{width:100%}.new-pdp .thumbnail-image-section .thumbnail-item{opacity:0.65}.new-pdp .thumbnail-image-section .thumbnail-item.active{opacity:1}@media (min-width: 992px){.new-pdp .thumbnail-image-section .thumbnail-video{height:80px}}@media (min-width: 1280px){.new-pdp .thumbnail-image-section .thumbnail-video{height:90px}}@media (min-width: 1366px){.new-pdp .thumbnail-image-section .thumbnail-video{height:120px;max-height:14vh}}@media (min-width: 1600px){.new-pdp .thumbnail-image-section .thumbnail-video{height:140px}}.new-pdp .thumbnail-image-section .owl-item{transition:all 0.5s ease-out}.new-pdp .primary-images{min-height:unset;padding-bottom:0}@media (min-width: 1200px){.new-pdp .primary-images{padding-top:0}}@media (min-width: 1600px){.new-pdp .primary-images{padding-top:20px}}.new-pdp .primary-images .owl-carousel{min-height:300px}@media (min-width: 1200px){.new-pdp .primary-images .owl-carousel{min-height:0}}.new-pdp .primary-images .owl-carousel .owl-nav .owl-prev,.new-pdp .primary-images .owl-carousel .owl-nav .owl-next{background:transparent}@media (min-width: 992px){.new-pdp .primary-images .owl-carousel .owl-nav .owl-prev{left:-20px}.new-pdp .primary-images .owl-carousel .owl-nav .owl-next{right:-20px}}@media (min-width: 1200px){.new-pdp .primary-images .owl-carousel .owl-nav .owl-prev{left:-50px}.new-pdp .primary-images .owl-carousel .owl-nav .owl-next{right:-50px}}.new-pdp .primary-images .owl-carousel-item{padding-left:30px;padding-right:30px}@media (max-width: 375px){.new-pdp .primary-images .owl-carousel-item{padding-left:80px;padding-right:80px}}@media (min-width: 768px){.new-pdp .primary-images .owl-carousel-item{padding-left:50px;padding-right:50px}}@media (min-width: 1200px){.new-pdp .primary-images .owl-carousel-item{padding-left:0;padding-right:0}}.new-pdp .primary-images .owl-carousel-item .pdp-primary-image{cursor:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0yNy40Nzc1IDE1LjQ3NzVDMjcuNDc3NSAyMi4xMDQ5IDIyLjEwNDkgMjcuNDc3NSAxNS40Nzc1IDI3LjQ3NzVDOC44NTAwOSAyNy40Nzc1IDMuNDc3NTEgMjIuMTA0OSAzLjQ3NzUxIDE1LjQ3NzVDMy40Nzc1MSA4Ljg1MDA5IDguODUwMDkgMy40Nzc1MSAxNS40Nzc1IDMuNDc3NTFDMjIuMTA0OSAzLjQ3NzUxIDI3LjQ3NzUgOC44NTAwOSAyNy40Nzc1IDE1LjQ3NzVaIiBmaWxsPSIjRDdEN0Q3IiBmaWxsLW9wYWNpdHk9IjAuNSIvPg0KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC45Nzc1IDE1Ljk3NzVWMjEuNDc3NUgxNS45Nzc1VjE1Ljk3NzVIMjEuNDc3NVYxNC45Nzc1SDE1Ljk3NzVWOS40Nzc1MUgxNC45Nzc1VjE0Ljk3NzVIOS40Nzc1MVYxNS45Nzc1SDE0Ljk3NzVaIiBmaWxsPSIjMUIxQzFFIi8+DQo8L3N2Zz4NCg==),auto !important}@media (min-width: 1280px){.new-pdp .primary-images .owl-carousel-item .pdp-primary-image{max-height:55vh;object-fit:contain}}@media (min-width: 1536px){.new-pdp .primary-images .owl-carousel-item .pdp-primary-image{max-height:62vh}}.new-pdp .primary-images .owl-carousel-item .product-video-item{width:80%;margin:0 auto}@media (min-width: 992px){.new-pdp .primary-images .owl-carousel-item .product-video-item{width:100%;overflow:hidden}}@media (min-width: 992px){.new-pdp .primary-images .owl-carousel-item .product-video-item::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;z-index:2;background:transparent;border:1px solid #fff}}@media (min-width: 1600px){.new-pdp .primary-images .owl-carousel-item .product-video-item::after{top:-2px;left:-2px;right:-2px;bottom:-2px;border:4px solid #fff}}.new-pdp .primary-images .owl-carousel-item .product-video-item .product-video{height:90%;padding-top:50px}@media (min-width: 992px){.new-pdp .primary-images .owl-carousel-item .product-video-item .product-video{z-index:1;height:110%;width:100%;max-height:none !important;transform:none;padding-top:0}}@media (min-width: 1400px){.new-pdp .primary-images .owl-carousel-item .product-video-item .product-video{height:115%}}.new-pdp .primary-images .owl-carousel-item .disclaim-notify{position:absolute;transform:translateX(-50%)}@media (min-width: 992px){.new-pdp .primary-images .owl-carousel-item .disclaim-notify{top:calc(100% + 15px)}}.new-pdp .primary-images .btn-magify{display:none !important}.new-pdp .primary-images .carousel{max-width:500px;margin-left:auto;margin-right:auto}@media (min-width: 992px){.new-pdp .primary-images .carousel{max-width:300px}}@media (min-width: 1400px){.new-pdp .primary-images .carousel{max-width:400px}}@media (min-width: 992px){.new-pdp .thumbnail-image-section{margin:0 auto;padding:0}}.new-pdp .thumbnail-image-section .owl-carousel img{width:100%;padding:0 15px}@media (min-width: 992px){.new-pdp .thumbnail-image-section .owl-carousel img{transform:scale(1);width:100%;padding:10px}}@media (min-width: 1280px){.new-pdp .thumbnail-image-section .owl-carousel img{max-height:15vh;object-fit:contain}}@media (min-width: 1600px){.new-pdp .thumbnail-image-section .owl-carousel img{transform:scale(1);width:100%}}@media (min-width: 992px){.new-pdp .thumbnail-image-section .owl-carousel .owl-stage{margin:0 auto}}.new-pdp .zoom-image-section.modal,.new-pdp ~ .zoom-image-section.modal{overflow:hidden}@media (min-width: 992px){.new-pdp .zoom-image-section.modal .modal-content .modal-body,.new-pdp ~ .zoom-image-section.modal .modal-content .modal-body{padding:0}}.new-pdp .zoom-image-section .close,.new-pdp ~ .zoom-image-section .close{position:absolute;top:15px;right:15px;bottom:15px;z-index:100;border:0;outline:0;height:23px}@media (min-width: 992px){.new-pdp .zoom-image-section .close,.new-pdp ~ .zoom-image-section .close{position:absolute;top:25px;right:50px}}.new-pdp .zoom-image-section .owl-nav button.owl-next,.new-pdp .zoom-image-section .owl-nav button.owl-prev,.new-pdp ~ .zoom-image-section .owl-nav button.owl-next,.new-pdp ~ .zoom-image-section .owl-nav button.owl-prev{color:#fff;background:#000}@media (min-width: 992px){.new-pdp .zoom-image-section .owl-nav button.owl-next,.new-pdp ~ .zoom-image-section .owl-nav button.owl-next{right:13%}}@media (min-width: 1200px){.new-pdp .zoom-image-section .owl-nav button.owl-next,.new-pdp ~ .zoom-image-section .owl-nav button.owl-next{right:18%}}@media (min-width: 1600px){.new-pdp .zoom-image-section .owl-nav button.owl-next,.new-pdp ~ .zoom-image-section .owl-nav button.owl-next{right:25%}}@media (min-width: 992px){.new-pdp .zoom-image-section .owl-nav button.owl-prev,.new-pdp ~ .zoom-image-section .owl-nav button.owl-prev{left:13%}}@media (min-width: 1200px){.new-pdp .zoom-image-section .owl-nav button.owl-prev,.new-pdp ~ .zoom-image-section .owl-nav button.owl-prev{left:18%}}@media (min-width: 1600px){.new-pdp .zoom-image-section .owl-nav button.owl-prev,.new-pdp ~ .zoom-image-section .owl-nav button.owl-prev{left:25%}}@media (min-width: 992px){.new-pdp .zoom-image-section .owl-dots,.new-pdp ~ .zoom-image-section .owl-dots{bottom:-30px}}@media (min-width: 992px){.new-pdp .zoom-image-section .owl-item img,.new-pdp ~ .zoom-image-section .owl-item img{max-height:74vh;width:auto;height:auto;max-width:500px;display:block;cursor:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0yNy40Nzc1IDE1LjQ3NzVDMjcuNDc3NSAyMi4xMDQ5IDIyLjEwNDkgMjcuNDc3NSAxNS40Nzc1IDI3LjQ3NzVDOC44NTAwOSAyNy40Nzc1IDMuNDc3NTEgMjIuMTA0OSAzLjQ3NzUxIDE1LjQ3NzVDMy40Nzc1MSA4Ljg1MDA5IDguODUwMDkgMy40Nzc1MSAxNS40Nzc1IDMuNDc3NTFDMjIuMTA0OSAzLjQ3NzUxIDI3LjQ3NzUgOC44NTAwOSAyNy40Nzc1IDE1LjQ3NzVaIiBmaWxsPSIjRDdEN0Q3IiBmaWxsLW9wYWNpdHk9IjAuNSIvPg0KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC45Nzc1IDE1Ljk3NzVWMjEuNDc3NUgxNS45Nzc1VjE1Ljk3NzVIMjEuNDc3NVYxNC45Nzc1SDE1Ljk3NzVWOS40Nzc1MUgxNC45Nzc1VjE0Ljk3NzVIOS40Nzc1MVYxNS45Nzc1SDE0Ljk3NzVaIiBmaWxsPSIjMUIxQzFFIi8+DQo8L3N2Zz4NCg==),auto !important}}.new-pdp .zoom-image-section .owl-item .zoom-item,.new-pdp ~ .zoom-image-section .owl-item .zoom-item{position:relative}@media (min-width: 992px){.new-pdp .zoom-image-section .owl-item .zoom-item,.new-pdp ~ .zoom-image-section .owl-item .zoom-item{width:100%;max-width:70vh;height:90vh;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}}.new-pdp .zoom-image-section .owl-item .zoom-item .image-zoom,.new-pdp ~ .zoom-image-section .owl-item .zoom-item .image-zoom{position:absolute;top:0;left:0;right:0;bottom:0;display:none}.new-pdp .zoom-image-section .owl-item .zoom-item .image-zoom.show,.new-pdp ~ .zoom-image-section .owl-item .zoom-item .image-zoom.show{display:block}.new-pdp .back-in-stock-popup,.new-pdp ~ .back-in-stock-popup{z-index:2000;padding:0}@media (min-width: 992px){.new-pdp .back-in-stock-popup .modal-dialog,.new-pdp ~ .back-in-stock-popup .modal-dialog{max-width:680px}}.new-pdp .back-in-stock-popup .modal-content,.new-pdp ~ .back-in-stock-popup .modal-content{border-radius:0}.new-pdp .back-in-stock-popup .modal-header,.new-pdp ~ .back-in-stock-popup .modal-header{padding:0;position:relative}.new-pdp .back-in-stock-popup .modal-header .close,.new-pdp ~ .back-in-stock-popup .modal-header .close{position:absolute;right:30px;top:20px;padding:0;font-size:30px;z-index:1;opacity:1;border:0;outline:0}.new-pdp .back-in-stock-popup .modal-header .title,.new-pdp ~ .back-in-stock-popup .modal-header .title{padding:40px 15px 10px;font-size:30px;font-weight:bold}@media (min-width: 992px){.new-pdp .back-in-stock-popup .modal-header .title,.new-pdp ~ .back-in-stock-popup .modal-header .title{text-align:center}}.new-pdp .back-in-stock-popup .modal-header .description,.new-pdp ~ .back-in-stock-popup .modal-header .description{padding:0 15px;font-size:18px;line-height:25px}@media (min-width: 992px){.new-pdp .back-in-stock-popup .modal-header .description,.new-pdp ~ .back-in-stock-popup .modal-header .description{text-align:center}}@media (min-width: 992px){.new-pdp .back-in-stock-popup .modal-body .notify-me-form,.new-pdp ~ .back-in-stock-popup .modal-body .notify-me-form{width:76%;margin:0 auto;margin-top:35px}}@media (min-width: 992px){.new-pdp .back-in-stock-popup .modal-body .notify-me-form .form-group,.new-pdp ~ .back-in-stock-popup .modal-body .notify-me-form .form-group{padding:0}}.new-pdp .back-in-stock-popup .modal-body .email,.new-pdp ~ .back-in-stock-popup .modal-body .email{border:1px solid #b3b3b3;color:#000;padding:25px 20px;margin-top:35px;font-size:15px}@media (min-width: 992px){.new-pdp .back-in-stock-popup .modal-body .email,.new-pdp ~ .back-in-stock-popup .modal-body .email{margin-top:0}}.new-pdp .back-in-stock-popup .modal-body .email:-ms-input-placeholder,.new-pdp ~ .back-in-stock-popup .modal-body .email:-ms-input-placeholder{color:#000}.new-pdp .back-in-stock-popup .modal-body .email::placeholder,.new-pdp ~ .back-in-stock-popup .modal-body .email::placeholder{color:#000}.new-pdp .back-in-stock-popup .modal-body .btn-submit,.new-pdp ~ .back-in-stock-popup .modal-body .btn-submit{background:#000;color:#fff;font-weight:bold;font-size:18px;padding:0;line-height:50px;border-radius:0}.new-pdp .back-in-stock-popup .modal-footer,.new-pdp ~ .back-in-stock-popup .modal-footer{border:0}@media (min-width: 992px){.new-pdp .back-in-stock-popup .message,.new-pdp ~ .back-in-stock-popup .message{margin:0 -15px}}.new-pdp .back-in-stock-popup .message.message-error,.new-pdp ~ .back-in-stock-popup .message.message-error{color:#c00}.new-pdp .ar3d-button{position:absolute;top:0;left:0;cursor:pointer;z-index:2;display:-ms-flexbox;display:flex;background:#fff}@media (min-width: 992px){.new-pdp .ar3d-button{top:15px}}.new-pdp .ar3d-button .ar3d-icon{width:35px;height:auto}@media (min-width: 992px){.new-pdp .ar3d-button .ar3d-icon{width:45px}}.new-pdp .ar3d-button .tool-tip-img{width:15px;height:auto;margin-top:-4px}@media (min-width: 992px){.new-pdp .ar3d-button .tool-tip-img{width:20px}}.new-pdp .ar3d-button .tool-tip-img:hover ~ .ar3d-button-tool-tip{display:block}.new-pdp .ar3d-button .ar3d-button-text{line-height:35px;padding-left:6px}@media (min-width: 992px){.new-pdp .ar3d-button .ar3d-button-text{font-size:1.0714rem;line-height:45px}}.new-pdp .ar3d-button .ar3d-button-text span{text-decoration:underline}.new-pdp .ar3d-button .ar3d-button-tool-tip{display:none;background:rgba(0,0,0,0.7);color:#fff;font-size:11px;line-height:15px;width:250px;padding:15px;border-radius:15px;top:calc(100% + 5px);left:0;position:absolute}.new-pdp ~ .ar-3d-image-popup .modal-dialog,.new-pdp .ar-3d-image-popup .modal-dialog{top:50%;transform:translateY(-50%);position:relative;width:360px;margin:0 auto}.new-pdp ~ .ar-3d-image-popup .modal-dialog .modal-body,.new-pdp .ar-3d-image-popup .modal-dialog .modal-body{min-height:500px;padding:0;background-color:#f3f3f3}.new-pdp ~ .ar-3d-image-popup .modal-dialog .modal-body iframe,.new-pdp .ar-3d-image-popup .modal-dialog .modal-body iframe{position:absolute;width:100%;height:100%;top:0;left:0}.new-pdp ~ .ar-3d-image-popup .modal-dialog .close,.new-pdp .ar-3d-image-popup .modal-dialog .close{position:absolute;z-index:1;left:15px;top:15px;border:0;outline:0}.new-pdp ~ .ar-3d-image-popup .product-image-360-section,.new-pdp .ar-3d-image-popup .product-image-360-section{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.new-pdp ~ .ar-3d-image-popup .product-image-360-section h4,.new-pdp .ar-3d-image-popup .product-image-360-section h4{display:none}.new-pdp ~ .ar-3d-image-popup .product-image-360-section .product-detail-section,.new-pdp .ar-3d-image-popup .product-image-360-section .product-detail-section{width:100%;padding:0 30px}.new-pdp ~ .ar-3d-image-popup .product-image-360-section .ovviosfullscreendesktop,.new-pdp .ar-3d-image-popup .product-image-360-section .ovviosfullscreendesktop{display:none !important}.new-pdp ~ .ar-3d-image-popup .product-image-360-section .full-screen-btn,.new-pdp .ar-3d-image-popup .product-image-360-section .full-screen-btn{width:30px;height:30px;display:block;position:absolute;z-index:101;background-size:100% 100%;right:44px;bottom:43.25%}@media (min-width: 992px){.new-pdp ~ .ar-3d-image-popup .product-image-360-section .full-screen-btn,.new-pdp .ar-3d-image-popup .product-image-360-section .full-screen-btn{right:31px;bottom:48.25%}}@media (min-width: 992px){.new-pdp .quick-view-modal .modal-dialog{max-width:900px;top:50%;transform:translateY(-50%)}}@media (min-width: 992px){.new-pdp .quick-view-modal .modal-body{padding-top:30px;padding-bottom:30px}}@media (min-width: 992px){.new-pdp .quick-view-modal .modal-body .col-lg-5{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}}@media (min-width: 992px){.new-pdp .quick-view-modal .modal-body .product-collection{margin-bottom:0}}@media (min-width: 992px){.new-pdp .quick-view-modal .modal-body .quick-view-detail{margin-bottom:40px}}.new-pdp .quick-view-modal .modal-header{border:0;padding:0}.new-pdp .quick-view-modal .modal-header .close{font-size:35px;font-weight:300;position:absolute;top:20px;right:30px;padding:0;z-index:100;border:0;outline:0}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-img{padding:0 20%}@media (min-width: 768px){.new-pdp .quick-view-modal .quick-view-product .prices-add-to-cart-actions{padding:0}}.new-pdp .quick-view-modal .quick-view-product .prices-add-to-cart-actions .cart-and-ipay .col-sm-12{max-width:100%}.new-pdp .quick-view-modal .quick-view-product .prices-add-to-cart-actions .product-availability{position:relative}.new-pdp .quick-view-modal .quick-view-product .prices-add-to-cart-actions .price-inner{text-align:left;-ms-flex-pack:left;justify-content:left}.new-pdp .quick-view-modal .quick-view-product .owl-nav button.owl-next{right:-25%}.new-pdp .quick-view-modal .quick-view-product .owl-nav button.owl-prev{left:-25%}.new-pdp .quick-view-modal .quick-view-product .owl-dots{text-align:center}.new-pdp .quick-view-modal .quick-view-product .owl-dots button{width:20px;height:3px;background:#b7b7b7;display:inline-block;margin:0 5px}.new-pdp .quick-view-modal .quick-view-product .owl-dots button.active{background:#000}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info{padding:15px 15px 0}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .wishlist-block{position:absolute;right:0;top:15px}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .wishlist-block .go-to-wish-list{color:#000;border:0;outline:0}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .wishlist-block .go-to-wish-list:hover{background:none}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .wishlist-block .go-to-wish-list i{font-weight:bold;font-size:18px}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .promotion-message{margin-bottom:5px}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .promotion-message .product-merchand-message{background:#ededed;padding:5px 10px;font-size:0.8rem;border-radius:5px;display:inline-block}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-collection{font-size:2.046rem;margin-bottom:0.175em;text-transform:uppercase;font-weight:900}@media (min-width: 992px){.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-collection{font-size:1.952rem}}@media (min-width: 1600px){.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-collection{font-size:2.44rem}}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .view-collection{text-decoration:underline;font-weight:400}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-name{font-size:1.0714rem;font-weight:500;text-transform:uppercase;margin-bottom:0.397em}@media (min-width: 992px){.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-name{font-size:1.0714rem}}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .quick-view-detail a{display:block;margin:20px 0;font-size:1.0714rem;text-decoration:underline}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-availability ul{text-align:left}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-availability ul li{top:0;color:#008827;padding-left:1rem;font-size:.857rem}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-availability ul li::before{background-color:#008827;border-radius:50%}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-availability ul li.disabled{color:#c00}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .product-availability ul li.disabled::before{background-color:#c00}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .add-to-cart{border:2px solid #000;display:inline-block;text-transform:uppercase;font-weight:700;border-radius:0;width:100%;margin-top:30px;margin-bottom:20px;background:#000;color:#fff;padding:15px 0;font-size:15px}@media (min-width: 992px){.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .add-to-cart{margin-top:15px}}.new-pdp .quick-view-modal .quick-view-product .quick-view-product-info .add-to-cart:disabled{opacity:0.8}@font-face{font-family:'swiper-icons';src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-ms-flexbox;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px, 0, 0)}.swiper-pointer-events{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-pointer-events.swiper-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-slide{-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{-ms-flex-align:start;align-items:flex-start;transition-property:transform, height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,0.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{-ms-scroll-snap-type:y mandatory;scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';-ms-flex-negative:0;flex-shrink:0;-ms-flex-order:9999;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size: 44px}.swiper-button-prev,.swiper-button-next{position:absolute;top:50%;width:calc(var(--swiper-navigation-size) / 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size) / 2));z-index:10;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{opacity:0.35;cursor:auto;pointer-events:none}.swiper-button-prev.swiper-button-hidden,.swiper-button-next.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next{display:none !important}.swiper-button-prev:after,.swiper-button-next:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none !important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:300ms opacity;transform:translate3d(0, 0, 0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none !important}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(0.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(0.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(0.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(0.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, 0.2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none !important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px, -50%, 0)}.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:200ms transform, 200ms top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform, 200ms left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:200ms transform, 200ms right}.swiper-pagination-progressbar{background:rgba(0,0,0,0.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,0.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none !important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-vertical{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,0.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>img,.swiper-zoom-container>svg,.swiper-zoom-container>canvas{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}.swiper-lazy-preloader-black{--swiper-preloader-color: #000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-direction:column;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev,.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-top,.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right{z-index:0;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:0.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-top,.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right{z-index:0;backface-visibility:hidden}.swiper-creative .swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform, opacity, height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;backface-visibility:hidden;overflow:hidden}.new-pdp .recommendations,.new-pdp .product-recommendations,.new-pdp .product-collections-box,.error-page .recommendations,.error-page .product-recommendations,.error-page .product-collections-box{background:#f6f6f6;max-width:none;width:100%;margin:0 auto}.new-pdp .recommendations .recommendations,.new-pdp .recommendations .recently,.new-pdp .product-recommendations .recommendations,.new-pdp .product-recommendations .recently,.new-pdp .product-collections-box .recommendations,.new-pdp .product-collections-box .recently,.error-page .recommendations .recommendations,.error-page .recommendations .recently,.error-page .product-recommendations .recommendations,.error-page .product-recommendations .recently,.error-page .product-collections-box .recommendations,.error-page .product-collections-box .recently{margin:0 auto;max-width:1920px}.new-pdp .recommendations .recommendations .product-tile .tile-body .tile-message,.new-pdp .recommendations .recently .product-tile .tile-body .tile-message,.new-pdp .product-recommendations .recommendations .product-tile .tile-body .tile-message,.new-pdp .product-recommendations .recently .product-tile .tile-body .tile-message,.new-pdp .product-collections-box .recommendations .product-tile .tile-body .tile-message,.new-pdp .product-collections-box .recently .product-tile .tile-body .tile-message,.error-page .recommendations .recommendations .product-tile .tile-body .tile-message,.error-page .recommendations .recently .product-tile .tile-body .tile-message,.error-page .product-recommendations .recommendations .product-tile .tile-body .tile-message,.error-page .product-recommendations .recently .product-tile .tile-body .tile-message,.error-page .product-collections-box .recommendations .product-tile .tile-body .tile-message,.error-page .product-collections-box .recently .product-tile .tile-body .tile-message{display:-ms-flexbox;display:flex;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.new-pdp .recommendations .title,.new-pdp .product-recommendations .title,.new-pdp .product-collections-box .title,.error-page .recommendations .title,.error-page .product-recommendations .title,.error-page .product-collections-box .title{font-weight:700;font-size:19px;text-transform:uppercase;text-align:center;margin-bottom:35px}@media (min-width: 992px){.new-pdp .recommendations .title,.new-pdp .product-recommendations .title,.new-pdp .product-collections-box .title,.error-page .recommendations .title,.error-page .product-recommendations .title,.error-page .product-collections-box .title{text-align:left;padding-left:calc(5% + 30px)}}.new-pdp .recommendations .recommendations,.new-pdp .product-recommendations .recommendations,.new-pdp .product-collections-box .recommendations,.error-page .recommendations .recommendations,.error-page .product-recommendations .recommendations,.error-page .product-collections-box .recommendations{padding:0}@media (min-width: 992px){.new-pdp .recommendations .recommendations.container,.new-pdp .product-recommendations .recommendations.container,.new-pdp .product-collections-box .recommendations.container,.error-page .recommendations .recommendations.container,.error-page .product-recommendations .recommendations.container,.error-page .product-collections-box .recommendations.container{max-width:unset}}.new-pdp .recommendations .recommendations .value.content,.new-pdp .product-recommendations .recommendations .value.content,.new-pdp .product-collections-box .recommendations .value.content,.error-page .recommendations .recommendations .value.content,.error-page .product-recommendations .recommendations .value.content,.error-page .product-collections-box .recommendations .value.content{padding:0 0 25px}.new-pdp .recommendations .recommendations .value.content::after,.new-pdp .product-recommendations .recommendations .value.content::after,.new-pdp .product-collections-box .recommendations .value.content::after,.error-page .recommendations .recommendations .value.content::after,.error-page .product-recommendations .recommendations .value.content::after,.error-page .product-collections-box .recommendations .value.content::after{content:'';display:block;position:absolute;width:20%;left:15px;bottom:0;height:3px;background:#000}@media (min-width: 992px){.new-pdp .recommendations .recommendations .value.content::after,.new-pdp .product-recommendations .recommendations .value.content::after,.new-pdp .product-collections-box .recommendations .value.content::after,.error-page .recommendations .recommendations .value.content::after,.error-page .product-recommendations .recommendations .value.content::after,.error-page .product-collections-box .recommendations .value.content::after{display:none}}.new-pdp .recommendations .recommendations .value.content.col-md-8.col-lg-9,.new-pdp .product-recommendations .recommendations .value.content.col-md-8.col-lg-9,.new-pdp .product-collections-box .recommendations .value.content.col-md-8.col-lg-9,.error-page .recommendations .recommendations .value.content.col-md-8.col-lg-9,.error-page .product-recommendations .recommendations .value.content.col-md-8.col-lg-9,.error-page .product-collections-box .recommendations .value.content.col-md-8.col-lg-9{margin:0 auto}@media (min-width: 768px){.new-pdp .recommendations .recommendations .value.content.col-md-8.col-lg-9,.new-pdp .product-recommendations .recommendations .value.content.col-md-8.col-lg-9,.new-pdp .product-collections-box .recommendations .value.content.col-md-8.col-lg-9,.error-page .recommendations .recommendations .value.content.col-md-8.col-lg-9,.error-page .product-recommendations .recommendations .value.content.col-md-8.col-lg-9,.error-page .product-collections-box .recommendations .value.content.col-md-8.col-lg-9{-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}}@media (min-width: 992px){.new-pdp .recommendations .recommendations .value.content.col-md-8.col-lg-9,.new-pdp .product-recommendations .recommendations .value.content.col-md-8.col-lg-9,.new-pdp .product-collections-box .recommendations .value.content.col-md-8.col-lg-9,.error-page .recommendations .recommendations .value.content.col-md-8.col-lg-9,.error-page .product-recommendations .recommendations .value.content.col-md-8.col-lg-9,.error-page .product-collections-box .recommendations .value.content.col-md-8.col-lg-9{-ms-flex:0 0 90%;flex:0 0 90%;max-width:90%;margin:0 auto;padding:0 0 5px}}.new-pdp .recommendations .owl-carousel .owl-stage-outer::before,.new-pdp .product-recommendations .owl-carousel .owl-stage-outer::before,.new-pdp .product-collections-box .owl-carousel .owl-stage-outer::before,.error-page .recommendations .owl-carousel .owl-stage-outer::before,.error-page .product-recommendations .owl-carousel .owl-stage-outer::before,.error-page .product-collections-box .owl-carousel .owl-stage-outer::before{display:none}.new-pdp .recommendations .owl-carousel .owl-stage,.new-pdp .product-recommendations .owl-carousel .owl-stage,.new-pdp .product-collections-box .owl-carousel .owl-stage,.error-page .recommendations .owl-carousel .owl-stage,.error-page .product-recommendations .owl-carousel .owl-stage,.error-page .product-collections-box .owl-carousel .owl-stage{padding:0 !important}.new-pdp .recommendations .owl-carousel .owl-nav button.owl-prev,.new-pdp .recommendations .owl-carousel .owl-nav button.owl-next,.new-pdp .product-recommendations .owl-carousel .owl-nav button.owl-prev,.new-pdp .product-recommendations .owl-carousel .owl-nav button.owl-next,.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev,.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .recommendations .owl-carousel .owl-nav button.owl-prev,.error-page .recommendations .owl-carousel .owl-nav button.owl-next,.error-page .product-recommendations .owl-carousel .owl-nav button.owl-prev,.error-page .product-recommendations .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next{top:45%;transform:translateY(-50%)}@media (min-width: 992px){.new-pdp .recommendations .owl-carousel .owl-nav button.owl-next,.new-pdp .product-recommendations .owl-carousel .owl-nav button.owl-next,.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .recommendations .owl-carousel .owl-nav button.owl-next,.error-page .product-recommendations .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next{right:-55px}}.new-pdp .recommendations .owl-carousel .owl-item,.new-pdp .product-recommendations .owl-carousel .owl-item,.new-pdp .product-collections-box .owl-carousel .owl-item,.error-page .recommendations .owl-carousel .owl-item,.error-page .product-recommendations .owl-carousel .owl-item,.error-page .product-collections-box .owl-carousel .owl-item{padding-left:15px}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item{background-color:#fff}@media (min-width: 992px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item{background-color:transparent;padding:15px}}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .brand-link,.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-right,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .brand-link,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-right,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .brand-link,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-right,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .brand-link,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-right,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .brand-link,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-right,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .brand-link,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-right{display:none}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile{padding-bottom:15px;border:0}@media (min-width: 992px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile{padding:0;background-color:#fff}}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container{padding:20px 0}@media (min-width: 1600px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container{padding:50px 0 20px}}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value{font-weight:500}@media (min-width: 992px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price .value{font-size:17px}}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner{text-align:left;-ms-flex-pack:left;justify-content:left}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .strike-through,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .strike-through,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .strike-through,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .strike-through,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .strike-through,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .strike-through{display:inline-block}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .sales,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .sales,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .sales,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .sales,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .sales,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .price-inner .sales{display:inline-block}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;padding:0 15px}@media (min-width: 992px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left{padding:0 20px 20px}}@media (min-width: 1600px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left{padding:0 20px 10px}}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection{margin-bottom:0}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection a,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection a,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection a,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection a,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection a,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .product-collection a{font-weight:700;font-size:15px}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link{margin-bottom:10px}@media (min-width: 1600px){.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link{margin-bottom:0}}.new-pdp .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link a,.new-pdp .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link a,.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link a,.error-page .recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link a,.error-page .product-recommendations .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link a,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .tile-group-left .pdp-link a{font-weight:400;font-size:14px}.new-pdp .recommendations .recommendations .price,.new-pdp .product-recommendations .recommendations .price,.new-pdp .product-collections-box .recommendations .price,.error-page .recommendations .recommendations .price,.error-page .product-recommendations .recommendations .price,.error-page .product-collections-box .recommendations .price{font-size:100%}.new-pdp .recommendations .recommendations .price .price-inner .strike-through.list,.new-pdp .product-recommendations .recommendations .price .price-inner .strike-through.list,.new-pdp .product-collections-box .recommendations .price .price-inner .strike-through.list,.error-page .recommendations .recommendations .price .price-inner .strike-through.list,.error-page .product-recommendations .recommendations .price .price-inner .strike-through.list,.error-page .product-collections-box .recommendations .price .price-inner .strike-through.list{font-size:100%}@media (min-width: 992px){.new-pdp .recommendations .recommendations .price .price-inner .strike-through.list,.new-pdp .product-recommendations .recommendations .price .price-inner .strike-through.list,.new-pdp .product-collections-box .recommendations .price .price-inner .strike-through.list,.error-page .recommendations .recommendations .price .price-inner .strike-through.list,.error-page .product-recommendations .recommendations .price .price-inner .strike-through.list,.error-page .product-collections-box .recommendations .price .price-inner .strike-through.list{font-size:17px}}.new-pdp .recommendations .recommendations .swiper-container,.new-pdp .recommendations .recently .swiper-container,.new-pdp .product-recommendations .recommendations .swiper-container,.new-pdp .product-recommendations .recently .swiper-container,.new-pdp .product-collections-box .recommendations .swiper-container,.new-pdp .product-collections-box .recently .swiper-container,.error-page .recommendations .recommendations .swiper-container,.error-page .recommendations .recently .swiper-container,.error-page .product-recommendations .recommendations .swiper-container,.error-page .product-recommendations .recently .swiper-container,.error-page .product-collections-box .recommendations .swiper-container,.error-page .product-collections-box .recently .swiper-container{overflow:hidden}.new-pdp .recommendations .recommendations .swiper-container::after,.new-pdp .recommendations .recently .swiper-container::after,.new-pdp .product-recommendations .recommendations .swiper-container::after,.new-pdp .product-recommendations .recently .swiper-container::after,.new-pdp .product-collections-box .recommendations .swiper-container::after,.new-pdp .product-collections-box .recently .swiper-container::after,.error-page .recommendations .recommendations .swiper-container::after,.error-page .recommendations .recently .swiper-container::after,.error-page .product-recommendations .recommendations .swiper-container::after,.error-page .product-recommendations .recently .swiper-container::after,.error-page .product-collections-box .recommendations .swiper-container::after,.error-page .product-collections-box .recently .swiper-container::after{content:none !important}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper{overflow:unset}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide{padding-left:15px}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item{background-color:#fff}@media (min-width: 992px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item{background-color:transparent;padding:15px}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right{display:none}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile{padding-bottom:15px;border:0}@media (min-width: 992px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile{padding:0;background-color:#fff}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left{left:1em}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right{right:1em}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container{padding:20px 0}@media (min-width: 1600px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container{padding:50px 0 20px}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value{font-weight:500}@media (min-width: 992px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value{font-size:17px}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner{text-align:left;-ms-flex-pack:left;justify-content:left}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through{display:inline-block}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales{display:inline-block}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;padding:0 15px}@media (min-width: 992px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left{padding:0 20px 20px}}@media (min-width: 1600px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left{padding:0 20px 10px}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection{margin-bottom:0}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a{font-weight:700;font-size:15px}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link{margin-bottom:10px}@media (min-width: 1600px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link{margin-bottom:0}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a{font-weight:400;font-size:14px}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{width:26px;height:26px;background-color:#000;color:#fff;font-size:10px;position:absolute;z-index:10;border-radius:50%;top:55%;transform:translateY(-50%)}@media (min-width: 992px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{width:30px;height:30px;font-size:0.857rem}}@media (min-width: 1600px){.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{width:40px;height:40px;font-size:1.0714rem}}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after{content:none}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled{display:none !important}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{right:0}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before{content:"\E903";position:absolute;left:50%;top:50%;font-family:Samsonite-icons;font-style:normal;font-weight:400;transform:translate(-50%, -50%)}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev{left:15px}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before{content:"\E902";position:absolute;left:50%;top:50%;font-family:Samsonite-icons;font-style:normal;font-weight:400;transform:translate(-50%, -50%)}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar{margin-left:15px;bottom:-20px;left:0;background-color:#f6f6f6}.new-pdp .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.new-pdp .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.new-pdp .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.new-pdp .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .product-collections-box .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .product-collections-box .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag{background-color:#000}.new-pdp .product-recommendations,.error-page .product-recommendations{padding-top:80px;padding-bottom:0}.new-pdp .product-recommendations .recommendations ~ .recently,.error-page .product-recommendations .recommendations ~ .recently{margin-top:0}.new-pdp .product-recommendations .recently,.error-page .product-recommendations .recently{margin:0}@media (min-width: 992px){.new-pdp .product-recommendations .recently,.error-page .product-recommendations .recently{margin-left:auto;margin-right:auto}}.new-pdp .product-recommendations .recently .recommendations,.error-page .product-recommendations .recently .recommendations{border:0;margin-top:35px}.new-pdp .product-recommendations .recommendations .swiper-container,.new-pdp .product-recommendations .recently .swiper-container,.error-page .product-recommendations .recommendations .swiper-container,.error-page .product-recommendations .recently .swiper-container{overflow:hidden}.new-pdp .product-recommendations .recommendations .swiper-container::after,.new-pdp .product-recommendations .recently .swiper-container::after,.error-page .product-recommendations .recommendations .swiper-container::after,.error-page .product-recommendations .recently .swiper-container::after{content:none !important}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper{overflow:unset}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide{padding-left:15px}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item{background-color:#fff}@media (min-width: 992px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item{background-color:transparent;padding:15px}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .brand-link,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-right{display:none}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile{padding-bottom:15px;border:0}@media (min-width: 992px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile{padding:0;background-color:#fff}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-left{left:1em}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .tile-top-right{right:1em}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container{padding:20px 0}@media (min-width: 1600px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .image-container{padding:50px 0 20px}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value{font-weight:500}@media (min-width: 992px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price .value{font-size:17px}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner{text-align:left;-ms-flex-pack:left;justify-content:left}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .strike-through{display:inline-block}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .product-tile .price-inner .sales{display:inline-block}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;padding:0 15px}@media (min-width: 992px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left{padding:0 20px 20px}}@media (min-width: 1600px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left{padding:0 20px 10px}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection{margin-bottom:0}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .product-collection a{font-weight:700;font-size:15px}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link{margin-bottom:10px}@media (min-width: 1600px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link{margin-bottom:0}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-wrapper .swiper-slide .swiper-item .tile-group-left .pdp-link a{font-weight:400;font-size:14px}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{width:26px;height:26px;background-color:#000;color:#fff;font-size:10px;position:absolute;z-index:10;border-radius:50%;top:55%;transform:translateY(-50%)}@media (min-width: 992px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{width:30px;height:30px;font-size:0.857rem}}@media (min-width: 1600px){.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{width:40px;height:40px;font-size:1.0714rem}}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::after,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::after{content:none}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev.swiper-button-disabled,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next.swiper-button-disabled{display:none !important}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next{right:0}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-next::before{content:"\E903";position:absolute;left:50%;top:50%;font-family:Samsonite-icons;font-style:normal;font-weight:400;transform:translate(-50%, -50%)}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev{left:15px}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-button-prev::before{content:"\E902";position:absolute;left:50%;top:50%;font-family:Samsonite-icons;font-style:normal;font-weight:400;transform:translate(-50%, -50%)}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar{margin-left:15px;bottom:-20px;left:0;background-color:#f6f6f6}.new-pdp .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.new-pdp .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .product-recommendations .recommendations .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag,.error-page .product-recommendations .recently .swiper-container .swiper.product-recommendation-swiper .swiper-scrollbar .swiper-scrollbar-drag{background-color:#000}.new-pdp .product-collections-box,.error-page .product-collections-box{padding-top:35px}.new-pdp .product-collections-box .product-tile,.error-page .product-collections-box .product-tile{overflow:hidden}@media (min-width: 992px){.new-pdp .product-collections-box .product-tile .image-container a .tile-image,.error-page .product-collections-box .product-tile .image-container a .tile-image{width:100%;max-width:50%}}.new-pdp .product-collections-box .product-tile .image-container a .tile-image.hover-image,.error-page .product-collections-box .product-tile .image-container a .tile-image.hover-image{display:none}.new-pdp .product-collections-box .product-tile .image-container:hover a .tile-image,.error-page .product-collections-box .product-tile .image-container:hover a .tile-image{display:none}.new-pdp .product-collections-box .product-tile .image-container:hover a .tile-image.hover-image,.error-page .product-collections-box .product-tile .image-container:hover a .tile-image.hover-image{display:block}.new-pdp .product-collections-box .tile-product-video,.error-page .product-collections-box .tile-product-video{display:none;position:absolute;top:0;left:50%;transform:translateX(-50%) scale(1.05)}.new-pdp .product-collections-box .owl-nav button.owl-prev,.new-pdp .product-collections-box .owl-nav button.owl-next,.error-page .product-collections-box .owl-nav button.owl-prev,.error-page .product-collections-box .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){.new-pdp .product-collections-box .owl-nav button.owl-prev,.error-page .product-collections-box .owl-nav button.owl-prev{left:-2.857em}}@media (min-width: 992px){.new-pdp .product-collections-box .owl-nav button.owl-next,.error-page .product-collections-box .owl-nav button.owl-next{right:-2.857em}}@media (min-width: 992px){.new-pdp .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container,.error-page .product-collections-box .owl-carousel .owl-item .owl-carousel-item .product-tile .image-container{padding:50px 0}}.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev,.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev,.error-page .product-collections-box .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){.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev,.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next{width:30px;height:30px;font-size:.857rem;top:45%}}@media (min-width: 1600px){.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev,.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next{width:40px;height:40px;font-size:1.0714rem}}.new-pdp .product-collections-box .owl-carousel .owl-nav button::before,.error-page .product-collections-box .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%)}.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev{left:-10px;background-color:#000}.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev::before,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev::before{content:"\E902"}@media (min-width: 992px){.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-prev,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-prev{left:-40px}}.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next{right:-10px;left:auto;background-color:#000}.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next::before,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next::before{content:"\E903"}@media (min-width: 992px){.new-pdp .product-collections-box .owl-carousel .owl-nav button.owl-next,.error-page .product-collections-box .owl-carousel .owl-nav button.owl-next{right:-55px}}.new-pdp .product-collections-box .owl-carousel .owl-nav span,.error-page .product-collections-box .owl-carousel .owl-nav span{display:none}.new-pdp:not(:has(.new-recommendations)) .product-collections-box .tile-actions{display:none}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile{background-color:#fff;padding-bottom:unset !important}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .image-container{margin-bottom:unset !important}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .image-container .tile-image{max-width:65% !important}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-body{padding-bottom:3em}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-body .tile-body-field-group{position:unset;padding-bottom:5px !important}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-body .tile-body-field-group .tile-group-left{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width: 992px){.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-body .tile-body-field-group .tile-group-left{padding-bottom:5px !important}}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-body .tile-body-field-group .tile-group-right{display:none}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-footer{position:absolute;bottom:0;width:100%}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-footer .tile-attribute{display:none}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-footer .tile-actions .col-6{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-footer .tile-actions .col-6 .row{margin-left:unset;margin-right:unset}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-footer .tile-actions .col-6 .row .col-sm-12{padding-left:unset;padding-right:unset}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .tile-footer .tile-actions .btn-go-details{display:none}.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .add-to-cart,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .add-to-cart-global,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .notify-me,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .customize-your-set,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .unavailable-product-set{font-size:12px}@media (min-width: 1600px){.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .add-to-cart,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .add-to-cart-global,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .notify-me,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .customize-your-set,.new-pdp:has(.new-recommendations) .product-collections-box .product-tile .unavailable-product-set{font-size:14px}}.new-pdp:has(.new-recommendations) .product-collections-box .tooltip-explanations:hover .tooltip-text{display:none !important}.new-recommendations .product-tile{background-color:#fff;padding-bottom:unset !important}.new-recommendations .product-tile .image-container{margin-bottom:unset !important}.new-recommendations .product-tile .image-container .tile-image{max-width:65% !important}.new-recommendations .product-tile .tile-body{padding-bottom:3em}.new-recommendations .product-tile .tile-body .tile-body-field-group{position:unset;padding-bottom:5px !important}.new-recommendations .product-tile .tile-body .tile-body-field-group .tile-group-left{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media (min-width: 992px){.new-recommendations .product-tile .tile-body .tile-body-field-group .tile-group-left{padding-bottom:5px !important}}.new-recommendations .product-tile .tile-body .tile-body-field-group .tile-group-right{display:none}.new-recommendations .product-tile .tile-footer{position:absolute;bottom:0;width:100%}.new-recommendations .product-tile .tile-footer .tile-attribute{display:none}.new-recommendations .product-tile .tile-footer .tile-actions .col-6{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.new-recommendations .product-tile .tile-footer .tile-actions .col-6 .row{margin-left:unset;margin-right:unset}.new-recommendations .product-tile .tile-footer .tile-actions .col-6 .row .col-sm-12{padding-left:unset;padding-right:unset}.new-recommendations .product-tile .tile-footer .tile-actions .btn-go-details{display:none}.new-recommendations .product-tile .add-to-cart,.new-recommendations .product-tile .add-to-cart-global,.new-recommendations .product-tile .notify-me,.new-recommendations .product-tile .customize-your-set,.new-recommendations .product-tile .unavailable-product-set,.new-recommendations .product-tile .btn-go-details{font-size:12px}@media (min-width: 1600px){.new-recommendations .product-tile .add-to-cart,.new-recommendations .product-tile .add-to-cart-global,.new-recommendations .product-tile .notify-me,.new-recommendations .product-tile .customize-your-set,.new-recommendations .product-tile .unavailable-product-set,.new-recommendations .product-tile .btn-go-details{font-size:14px}}.new-recommendations .product-tile.product-set-tile:has(.add-to-cart-global:not(:disabled)) .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;background-color:#000;color:#fff;display:block !important;padding:9px 3px;line-height:1;margin:0;width:100%}.new-recommendations .product-tile.product-set-tile:has(.add-to-cart-global:not(:disabled)) .btn-go-details:hover,.new-recommendations .product-tile.product-set-tile:has(.add-to-cart-global:not(:disabled)) .btn-go-details:focus{background-color:#000}@media (min-width: 992px){.new-recommendations .product-tile.product-set-tile:has(.add-to-cart-global:not(:disabled)) .btn-go-details{padding-top:9px;padding-bottom:9px}}@media (min-width: 1600px){.new-recommendations .product-tile.product-set-tile:has(.add-to-cart-global:not(:disabled)) .btn-go-details{padding-top:11px;padding-bottom:11px}}.new-recommendations .product-tile.product-set-tile:has(.add-to-cart-global:not(:disabled)) .add-to-cart-global{display:none}.new-recommendations .product-tile .tooltip-explanations:hover .tooltip-text{display:none !important}.new-pdp .new-smart-feature .new-smart-feature-content{display:none}.page .new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info h4{font-size:15px}.page .new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info p{bottom:0;width:100%;position:relative;left:0}.new-pdp .special-smart-feature-title{padding:20px 0 30px;text-align:center;font-weight:bold;font-size:35px}@media (min-width: 992px){.new-pdp .special-smart-feature-title{background:#f6f6f6;padding:60px 0}}.new-pdp .old-smart-feature-content{display:block}.new-pdp .old-smart-feature-content .smart-main-image{display:none}.new-pdp .old-smart-feature-content .smart-tab-content{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;max-height:unset}.new-pdp .old-smart-feature-content .smart-tab-content .tab-content>.tab-pane{display:block;padding:0 15px}@media (min-width: 992px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content>.tab-pane:nth-child(2n){-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (min-width: 992px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content>.tab-pane{max-width:90%;margin:0 auto;display:-ms-flexbox;display:flex;margin-top:30px}}@media (min-width: 1600px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content>.tab-pane{max-width:65%}}.new-pdp .old-smart-feature-content .smart-tab-content .tab-content>.tab-pane:not(.show){opacity:1}.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-image{height:auto;max-height:unset}@media (min-width: 992px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-image{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}}.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info{position:relative;color:#000;padding:25px 15px}@media (min-width: 992px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:center;align-self:center;padding:80px}}.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info h6{text-align:center;font-size:23px;font-weight:900}@media (min-width: 992px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info h6{text-align:left}}.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info h4{font-size:15px;line-height:25px;text-align:center;margin-bottom:0}@media (min-width: 992px){.new-pdp .old-smart-feature-content .smart-tab-content .tab-content-info h4{text-align:left}}@media (min-width: 992px){.new-pdp .video-wrapper{margin-top:30px}}.new-pdp .video-wrapper .product-videos{background:#f6f6f6}@media (min-width: 992px){.new-pdp .video-wrapper .product-videos iframe{margin:0 auto}}@media (min-width: 992px){.new-pdp .product-special-feature{margin-top:50px}}@media (min-width: 992px){.new-pdp .product-special-feature ~ .video-wrapper{margin-top:0}}.new-pdp .product-special-feature-images{padding:15px;position:relative}@media (min-width: 992px){.new-pdp .product-special-feature-images{padding:115px 30px 30px}}.new-pdp .product-special-feature-images .owl-stage{padding:0 !important}@media (min-width: 992px){.new-pdp .product-special-feature-images .owl-stage .gap-product-feature{padding:15px}}@media (min-width: 1200px){.new-pdp .product-special-feature-images .owl-stage .owl-item .gap-product-feature img{width:auto;height:70vh}}@media (min-width: 1400px){.new-pdp .product-special-feature-images .owl-stage .owl-item .gap-product-feature img{height:75vh}}@media (min-width: 1920px){.new-pdp .product-special-feature-images .owl-stage .owl-item .gap-product-feature img{height:80vh}}.new-pdp .product-special-feature-images .owl-carousel .owl-nav{display:none}@media (min-width: 992px){.new-pdp .product-special-feature-images .owl-carousel .owl-nav{display:block}}@media (min-width: 992px){.new-pdp .product-special-feature-images .owl-carousel .owl-nav button.owl-prev,.new-pdp .product-special-feature-images .owl-carousel .owl-nav button.owl-next{left:0;right:auto;transform:none;top:-45px;border-radius:50%;background:#000;color:#fff}}@media (min-width: 992px){.new-pdp .product-special-feature-images .owl-carousel .owl-nav button.owl-next{left:45px}}@media (min-width: 1600px){.new-pdp .product-special-feature-images .owl-carousel .owl-nav button.owl-next{left:50px}}.new-pdp .product-special-feature-images .owl-carousel .owl-dots{position:absolute;left:0;right:0;bottom:-20px;z-index:2;text-align:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width: 992px){.new-pdp .product-special-feature-images .owl-carousel .owl-dots{display:none}}.new-pdp .product-special-feature-images .owl-carousel .owl-dots .owl-dot{display:inline-block;height:3px;max-width:100%;background:#fff;-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;width:100%}.new-pdp .product-special-feature-images .owl-carousel .owl-dots .owl-dot.active{background-color:#000}@media (min-width: 992px){.new-pdp .family-banner-section{margin-top:80px}}@media (min-width: 1600px){.new-pdp .family-banner-section{margin-top:120px}}.new-pdp .product-accessories-box-title{margin-bottom:0;margin-top:45px;text-align:center;font-size:1.2857rem}@media (min-width: 992px){.new-pdp .product-accessories-box-title{text-align:left}}.new-pdp .product-accessories-box{background:#f6f6f6;margin:25px -5px;padding:15px 0}.new-pdp .product-accessories-box .product-accessories-item{margin-top:15px;position:relative}.new-pdp .product-accessories-box .product-accessories-item:first-child{margin-top:0}.new-pdp .product-accessories-box .accessories-item{display:-ms-flexbox;display:flex}.new-pdp .product-accessories-box .accessories-img{width:28%;padding-left:2.5%;padding-right:2.5%}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-img{padding:0 15px;width:25%}}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-img{width:23%}}.new-pdp .product-accessories-box .accessories-img span{background-color:#fff;padding:0 20%;display:block}.new-pdp .product-accessories-box .accessories-function{display:-ms-flexbox;display:flex;position:absolute;right:15px;place-items:center;height:100%}@media (min-width: 1600px){.new-pdp .product-accessories-box .accessories-function{right:27px}}.new-pdp .product-accessories-box .accessories-function .price .price-inner{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-function .price .price-inner{-ms-flex-direction:row;flex-direction:row}}.new-pdp .product-accessories-box .accessories-function .price .strike-through{margin:0;display:block}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-function .price .strike-through{margin-right:5px}}.new-pdp .product-accessories-box .accessories-function .price .sales{font-size:1.0714rem;display:block;margin-top:0}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-function .price .sales{margin-top:2px}}@media (min-width: 1600px){.new-pdp .product-accessories-box .accessories-function .price .sales{font-size:1.1429rem;margin-top:0;line-height:1.7857rem}}.new-pdp .product-accessories-box .accessories-function .form-group{margin-left:10px;margin-bottom:0}.new-pdp .product-accessories-box .accessories-function .form-group .form-control{display:block;border:0;position:absolute;margin:0;padding:0;width:100%;left:0;z-index:100}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-function .form-group .form-control{height:2.5em}}.new-pdp .product-accessories-box .accessories-function .form-group .form-control:focus ~ label{transform:none;top:0}.new-pdp .product-accessories-box .accessories-function .form-group .custom-checkbox ~ label.custom-control-label{position:unset;display:block}.new-pdp .product-accessories-box .accessories-function .form-group .custom-checkbox ~ label::before{left:50%;top:50%;transform:translate(-50%, -50%)}.new-pdp .product-accessories-box .accessories-function .form-group .custom-checkbox ~ label::after{left:50%;top:50%;transform:translate(-50%, -50%)}.new-pdp .product-accessories-box .accessories-info{width:25%;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}@media (min-width: 1600px){.new-pdp .product-accessories-box .accessories-info{width:30%}}.new-pdp .product-accessories-box .accessories-brand{font-size:1rem}@media (min-width: 1600px){.new-pdp .product-accessories-box .accessories-brand{font-size:1.1429rem}}.new-pdp .product-accessories-box .accessories-name{font-size:.857rem}@media (min-width: 992px){.new-pdp .product-accessories-box .accessories-name{font-size:1rem;font-weight:bold}}@media (min-width: 1600px){.new-pdp .product-accessories-box .accessories-name{font-size:1.1429rem}}.new-pdp .family-banner-PDP .product-new-family-banner .modal-header{border-bottom:none}.new-pdp .family-banner-PDP .product-new-family-banner .modal-footer{border-top:none}.new-pdp .family-banner-PDP .family-banner-popup-information{margin-top:55px}.new-pdp .family-banner-PDP .family-banner-popup-information .promotion-message{padding-bottom:5px}.new-pdp .family-banner-PDP .family-banner-popup-information .promotion-message .product-merchand-message{background:#ededed;padding:5px 10px;font-size:10px;border-radius:5px;margin-top:5px}.new-pdp .family-banner-PDP .family-banner-popup-information .product-collection{margin-bottom:0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-view-detail{margin-bottom:5px}.new-pdp .family-banner-PDP .family-banner-popup-information .product-view-detail a{text-decoration:underline}.new-pdp .family-banner-PDP .family-banner-popup-information .product-sticker-icon{margin:20px 0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-sticker-icon .product-sticker-wrapper ul{padding-left:0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-sticker-icon .product-sticker-wrapper ul li{display:inline-block;list-style:none}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-view-price{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin:17.136px 0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-section.prices-add-to-cart-actions{padding:0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-section .availability{margin-top:0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-section .product-availability{position:relative;bottom:auto;left:auto}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-section .product-availability .availability-msg li{padding-left:35.424px}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-section .product-availability .availability-msg li::before{left:15px;border-radius:50%}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-section .product-availability .availability-msg li .disabled{color:red}.new-pdp .family-banner-PDP .family-banner-popup-information .prices{display:inline-block;text-align:left}.new-pdp .family-banner-PDP .family-banner-popup-information .prices .price-inner{display:inline-block;margin-top:6px}.new-pdp .family-banner-PDP .family-banner-popup-information .prices .price-inner .strike-through{font-size:15px;display:inline-block;margin-left:5px;color:#676767;line-height:20px}.new-pdp .family-banner-PDP .family-banner-popup-information .prices .price-inner .strike-through ~ .sales{color:#000;float:left}.new-pdp .family-banner-PDP .family-banner-popup-information .prices .sales{display:inline-block;line-height:25px;font-size:25px;font-weight:500}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-add-to-cart.prices-add-to-cart-actions{padding:0}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-add-to-cart.prices-add-to-cart-actions .add-to-cart{min-width:100%;background-color:#000;color:#fff;padding:19.2px}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-add-to-cart.prices-add-to-cart-actions .notify-me{min-width:100%;color:#000;background-color:transparent;border:1px solid #000;padding:19.2px}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-add-to-cart.prices-add-to-cart-actions .back-in-stock{display:block}.new-pdp .family-banner-PDP .family-banner-popup-information .product-detail-add-to-cart.prices-add-to-cart-actions .cart-and-ipay{margin-top:0}.new-pdp .family-banner-PDP .family-banner-popup-information .wishlist-block{position:unset}.new-pdp .family-banner-PDP .family-banner-popup-images .family-banner-product-images .owl-item img{display:block;width:auto;min-height:419.9px;max-height:420px;margin:0 auto}.new-pdp .family-banner-PDP .family-banner-popup-images .family-banner-product-images .owl-dots{position:absolute;bottom:0;left:50%;transform:translate(-50%, 45px)}.new-pdp .family-banner-PDP .family-banner-popup-images .family-banner-product-images .owl-dots .owl-dot{height:4px;width:22px;background-color:#999;border-radius:5px;margin-right:5px}.new-pdp .family-banner-PDP .family-banner-popup-images .family-banner-product-images .owl-dots .owl-dot.active{background-color:#000}.new-pdp .family-banner-PDP .family-banner-popup-images .family-banner-product-images .owl-dots .owl-dot:focus{outline:none}.new-pdp .family-banner-PDP .family-banner-modal-dialog{max-width:920px}.new-pdp .family-banner-PDP .icon-product{width:8%}@media (min-width: 768px){.new-pdp .family-banner-PDP .icon-product{width:2.5%}}.wishlist-message{z-index:1050}.product-reviews #pr-image-display{display:none}.p-w-r [data-testid^="review-image-display"]{padding-bottom:70px}.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .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:.35714em;margin-left:0}.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .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 [data-testid^="review-image-display"] .pr-irlsnippet .pr-rating-stars [class^="pr-star"]{width:14px;height:14px}.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .pr-rating-stars [class^="pr-star"]::before{font-size:14px}.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .pr-rating-stars [class^="pr-star"]:hover{width:14px;height:14px;margin-right:.35714em}}.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .pr-rating-stars .pr-star-v4-100-filled::before,.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .pr-rating-stars .pr-star-v4-50-filled::before{color:#094f8d}.p-w-r [data-testid^="review-image-display"] .pr-irlsnippet .pr-media-card-footer{background-color:transparent}.p-w-r .pr-review-display{border-top:unset}@media (min-width: 1200px){.p-w-r .pr-review-display{border-top:1px solid #000}}@media (min-width: 768px){.p-w-r .pr-media-card .pr-media-card-media{-ms-flex-negative:0;flex-shrink:0}}.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-block-container .pr-review-snapshot-block.pr-review-snapshot-block-histogram{border:none}.p-w-r .pr-review-snapshot.pr-review-enhanced .pr-review-snapshot-block-container .pr-review-snapshot-block .pr-ratings-histogram-bar{height:20px}.p-w-r .pr-review-snapshot .pr-ratings-histogram-bar,.p-w-r .pr-review-snapshot .pr-ratings-histogram-barValue{border-radius:0 !important}.p-w-r .pr-review-snapshot .pr-review-snapshot-header-intro{display:none !important}.back-in-stock-popup{z-index:2000;padding:0}@media (min-width: 992px){.back-in-stock-popup .modal-dialog{max-width:680px}}.back-in-stock-popup .modal-content{border-radius:0}.back-in-stock-popup .modal-header{padding:0;position:relative}.back-in-stock-popup .modal-header .close{position:absolute;right:30px;top:20px;padding:0;font-size:30px;z-index:1;opacity:1;border:0;outline:0}.back-in-stock-popup .modal-header .title{padding:40px 15px 10px;font-size:30px;font-weight:bold}@media (min-width: 992px){.back-in-stock-popup .modal-header .title{text-align:center}}.back-in-stock-popup .modal-header .description{padding:0 15px;font-size:18px;line-height:25px}@media (min-width: 992px){.back-in-stock-popup .modal-header .description{text-align:center}}@media (min-width: 992px){.back-in-stock-popup .modal-body .notify-me-form{width:76%;margin:0 auto;margin-top:35px}}@media (min-width: 992px){.back-in-stock-popup .modal-body .notify-me-form .form-group{padding:0}}.back-in-stock-popup .modal-body .email{border:1px solid #b3b3b3;color:#000;padding:25px 20px;margin-top:35px;font-size:15px}@media (min-width: 992px){.back-in-stock-popup .modal-body .email{margin-top:0}}.back-in-stock-popup .modal-body .email:-ms-input-placeholder{color:#000}.back-in-stock-popup .modal-body .email::placeholder{color:#000}.back-in-stock-popup .modal-body .btn-submit{background:#000;color:#fff;font-weight:bold;font-size:18px;padding:0;line-height:50px;border-radius:0}.back-in-stock-popup .modal-footer{border:0}@media (min-width: 992px){.back-in-stock-popup .message{margin:0 -15px}}.back-in-stock-popup .message.message-error{color:#c00}.product-detail-informations .pwr-pdp:has(.pr-no-reviews),.product-detail-informations .pwr-pdp:not(:has(.p-w-r)){display:none !important}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png+div[class^=ab]{display:none}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png .pr-rating-stars [class^=pr-star]{display:inline-block}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-stars-png .pr-snippet-rating-decimal{display:block;padding:0;font-size:14px;margin-left:4px;color:#000;border:none;line-height:18px;font-weight:400;height:16px}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write{display:block;margin:0}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count{font-size:14px !important;color:#000;margin:0 12px;pointer-events:none;position:relative;line-height:18px;padding:0;display:block;height:16px}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count:hover{cursor:initial;text-decoration:none}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count::before{content:"(";position:absolute;left:-6px;top:0;font-size:14px;display:block;width:2px;height:100%}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count::after{content:")";position:absolute;right:-2px;top:0;font-size:14px;display:block;width:2px;height:100%}.product-detail-informations .pwr-pdp .p-w-r .pr-snippet .pr-snippet-read-and-write .pr-snippet-write-review-link{display:none !important}.product-reviews #pr-reviewsnapshot .pr-review-snapshot-snippets-headline{display:none !important}@media (min-width: 768px) and (max-width: 1399.98px){.product-reviews #pr-reviewsnapshot .pr-review-snapshot-header{-ms-flex:0 0 35%;flex:0 0 35%;max-width:35%}}.product-reviews #pr-reviewsnapshot .pr-snippet{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;position:relative;-ms-flex-direction:row;flex-direction:row;margin-bottom:50px;-ms-flex-pack:center;justify-content:center}@media (min-width: 768px){.product-reviews #pr-reviewsnapshot .pr-snippet{margin-bottom:0;-ms-flex-pack:initial;justify-content:initial}}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-stars-container{margin:0}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-stars-container .pr-snippet-stars-png{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-direction:row;flex-direction:row}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-stars-container .pr-snippet-stars-png .pr-snippet-rating-decimal{display:block;padding:0;margin:0 0 0 5px;border:none;color:#000;font-size:14px;line-height:18px;width:initial;height:16px;font-weight:400;border-radius:initial}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-read-and-write{margin:0}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count{font-size:14px !important;display:block;padding:0;margin:0 10px;border:none;color:#000;line-height:18px;width:auto;height:16px;font-weight:400;border-radius:initial;position:relative}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count::before{content:"(";position:absolute;left:-6px;top:0;font-size:14px;display:block;width:2px;height:100%}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-read-and-write .pr-snippet-review-count::after{content:")";position:absolute;right:-3px;top:0;font-size:14px;display:block;width:2px;height:100%}.product-reviews #pr-reviewsnapshot .pr-snippet .pr-snippet-read-and-write .pr-snippet-write-review-link{position:absolute;width:165px !important;left:50%;transform:translateX(-50%);font-size:13px !important;top:40px}.new-pdp{padding-bottom:0}.new-pdp.product-detail{padding-bottom:0}.new-pdp .hover-image{display:none}.new-pdp .product-sticky-bar{box-shadow:0 2px 10px rgba(0,0,0,0.2)}.new-pdp .prices-add-to-cart-actions .atome-payment-pdp{padding:0}.new-pdp .prices-add-to-cart-actions .atome-payment-pdp .atome-paragraph{-ms-flex-pack:left;justify-content:left}.new-pdp .product-detail-informations .product-information-content .tab-pane#pdp-video .video-item{padding-bottom:0}.new-pdp .product-detail-informations .description-and-detail .value.show{display:block}
