@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;
  }
}
/**
* Extend from core
*  - Adding size xls(Define tablet 1024px)
*/
.search-container,
.search-sub-category-specific {
  border-bottom: 1px solid #f1f1f1;
  padding-top: 20px;
  padding-bottom: 18px;
  background-color: #fff;
  position: sticky;
  z-index: 2;
  transition: top 0.5s;
  transition-duration: 0.5s; }
  .search-container .category-title,
  .search-container .category-specific-title,
  .search-sub-category-specific .category-title,
  .search-sub-category-specific .category-specific-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    color: #1b1c1e;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .search-container .category-title,
      .search-container .category-specific-title,
      .search-sub-category-specific .category-title,
      .search-sub-category-specific .category-specific-title {
        margin-bottom: 0; } }

.search-head-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  font-size: 14px;
  line-height: 16px; }
  @media (min-width: 768px) {
    .search-head-right {
      -ms-flex-pack: end;
          justify-content: flex-end; } }
  .search-head-right .filter {
    cursor: pointer;
    margin-right: 15px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMCAwSDEyVjJIMTZWM0gxMlY1SDEwVjBaTTggMkgwVjNIOFYyWk0xNiA5VjEwSDhWOUgxNlpNNCA3SDZWMTJINFYxMEgwVjlINFY3WiIgZmlsbD0iIzFCMUMxRSIvPgo8L3N2Zz4K") no-repeat right 0.75rem center; }
    @media (min-width: 768px) {
      .search-head-right .filter {
        margin-right: 40px; } }
    .search-head-right .filter .filter-count {
      margin-right: 40px; }
  .search-head-right .sort {
    display: -ms-flexbox;
    display: flex; }
    .search-head-right .sort span {
      white-space: nowrap;
      -ms-flex-align: center;
          align-items: center;
      display: -ms-flexbox;
      display: flex;
      margin-right: 5px; }
    .search-head-right .sort .custom-select {
      cursor: pointer; }

.search-sub-category-specific {
  padding-top: 11px;
  padding-bottom: 9px;
  border-bottom: none;
  z-index: 0; }
  @media (min-width: 768px) {
    .search-sub-category-specific {
      padding-bottom: 11px;
      padding-top: 32px; } }
  .search-sub-category-specific .category-specific-title {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: unset; }
    @media (min-width: 768px) {
      .search-sub-category-specific .category-specific-title {
        font-size: 20px; } }
    @media (min-width: 1200px) {
      .search-sub-category-specific .category-specific-title {
        margin-left: -15px; } }

.sub-category-specific {
  z-index: 0; }
  .sub-category-specific .sub-category-specific-wrap {
    padding-right: unset; }
    @media (min-width: 768px) {
      .sub-category-specific .sub-category-specific-wrap {
        padding-right: 15px; } }
    @media (min-width: 992px) {
      .sub-category-specific .sub-category-specific-wrap {
        padding-right: unset; } }
  .sub-category-specific .sub-category-list {
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: auto;
    padding-left: 0; }
    .sub-category-specific .sub-category-list .swiper {
      padding-right: 15px; }
    .sub-category-specific .sub-category-list > .detect-swiper-slide {
      width: calc((100% - 12px) / 2.5);
      margin-right: 8px; }
      @media (min-width: 768px) {
        .sub-category-specific .sub-category-list > .detect-swiper-slide {
          width: unset;
          margin-right: unset; } }
    @media (min-width: 768px) {
      .sub-category-specific .sub-category-list {
        display: -ms-grid;
        display: grid;
        max-height: unset;
        column-gap: 10px;
        -ms-grid-columns: (1fr)[5];
            grid-template-columns: repeat(5, 1fr); } }
    @media (min-width: 1200px) {
      .sub-category-specific .sub-category-list {
        width: calc(100% + 30px);
        transform: translateX(-15px); } }
    .sub-category-specific .sub-category-list .box {
      text-align: center; }
      .sub-category-specific .sub-category-list .box .primary-image {
        position: relative; }
        .sub-category-specific .sub-category-list .box .primary-image img {
          max-height: 97px;
          max-width: 133px; }
          @media (min-width: 768px) {
            .sub-category-specific .sub-category-list .box .primary-image img {
              max-width: unset; } }
          @media (min-width: 992px) {
            .sub-category-specific .sub-category-list .box .primary-image img {
              max-height: 155px; } }
          @media (min-width: 1200px) {
            .sub-category-specific .sub-category-list .box .primary-image img {
              max-height: 165px; } }
        .sub-category-specific .sub-category-list .box .primary-image::after {
          content: '';
          position: absolute;
          opacity: 0.03;
          background-color: #000;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          z-index: 0; }
        .sub-category-specific .sub-category-list .box .primary-image .gray-overlay {
          position: absolute;
          opacity: 0.03;
          background-color: #000;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%; }
      .sub-category-specific .sub-category-list .box .category-sub-title {
        font-size: 13px;
        padding-top: 9px;
        color: #000;
        text-align: left;
        font-weight: 400; }
        @media (min-width: 768px) {
          .sub-category-specific .sub-category-list .box .category-sub-title {
            padding-top: 11px; } }
        .sub-category-specific .sub-category-list .box .category-sub-title:hover {
          text-decoration: none; }

.search-results-wrapper {
  margin-bottom: 50px; }
  .search-results-wrapper .container {
    max-width: 100%; }
    @media (min-width: 1200px) {
      .search-results-wrapper .container {
        padding-left: 120px;
        padding-right: 120px; } }
    @media (min-width: 1600px) {
      .search-results-wrapper .container {
        max-width: 1408px;
        padding-left: 72px;
        padding-right: 72px; } }
  .search-results-wrapper .selected-refinements-wrapper {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px; }
    .search-results-wrapper .selected-refinements-wrapper .refinement-clear-filter {
      float: right; }
      .search-results-wrapper .selected-refinements-wrapper .refinement-clear-filter a {
        padding-top: 2px;
        text-decoration: underline;
        color: #1b1c1e; }
        .search-results-wrapper .selected-refinements-wrapper .refinement-clear-filter a:hover {
          color: #1b1c1e; }
    .search-results-wrapper .selected-refinements-wrapper .selected-refinements .refinement-selection {
      line-height: 20px;
      color: #1b1c1e;
      text-decoration: none;
      transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
      padding: 5px 32px 5px 10px;
      background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNyAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDEuMjA4MzNMMC43MDgzMzMgMC41TDguNTA1MjEgOC4yOTY4OEwxNi4wOTE4IDAuNzEwMzEyTDE2LjgwMDEgMS40MTg2NUw5LjIxMzU0IDkuMDA1MjFMMTcgMTYuNzkxN0wxNi4yOTE3IDE3LjVMOC41MDUyMSA5LjcxMzU0TDAuOTE5MjcxIDE3LjI5OTVMMC4yMTA5MzggMTYuNTkxMUw3Ljc5Njg4IDkuMDA1MjFMMCAxLjIwODMzWiIgZmlsbD0iIzFCMUMxRSIvPgo8L3N2Zz4K") no-repeat right 0.75rem center #fafafa;
      background-size: 12px;
      display: inline-block;
      margin: 0 10px 10px 0;
      position: relative;
      text-align: left;
      font-size: 13px; }
      .search-results-wrapper .selected-refinements-wrapper .selected-refinements .refinement-selection:hover {
        color: #1b1c1e; }
      .search-results-wrapper .selected-refinements-wrapper .selected-refinements .refinement-selection[data-filter-id*="giftFinder"] {
        display: none; }
  .search-results-wrapper .search-result-content.shown-full-content .rb-desktop-scroll {
    left: 0; }
  .search-results-wrapper .search-result-content .refinement-bar {
    display: block !important; }
  @media (min-width: 768px) {
    .search-results-wrapper .search-result-content {
      -ms-flex-pack: end;
      justify-content: flex-end;
      position: relative;
      flex-wrap: nowrap;
      -ms-flex-wrap: nowrap; }
      .search-results-wrapper .search-result-content.shown-full-content .rb-desktop-scroll {
        display: none !important;
        margin-left: -244px;
        left: 0; }
      .search-results-wrapper .search-result-content.shown-full-content .product-grid-wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; }
      .search-results-wrapper .search-result-content .refinement-bar {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        display: block !important;
        margin-left: 0; } }
  .search-results-wrapper .search-result-content .product-grid-wrapper {
    transition: all linear 0.4s; }
    .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr);
      grid-gap: 32px;
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0; }
      @media (min-width: 768px) {
        .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid {
          row-gap: 45px;
          column-gap: 32px; } }
      @media (min-width: 992px) {
        .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid {
          -ms-grid-columns: (1fr)[3];
              grid-template-columns: repeat(3, 1fr);
          margin-left: -16px;
          margin-right: -16px; } }
      .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col {
        max-width: unset;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden; }
        @media (min-width: 992px) {
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile:hover .product-comparition {
            display: -ms-flexbox;
            display: flex; }
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile:hover .product-bookmark {
            display: block; } }
        .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image {
          position: relative; }
          @media (min-width: 992px) {
            .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image:hover .pagination {
              display: -ms-flexbox;
              display: flex; } }
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .tile-image {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .image-wrapper {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: justify;
                justify-content: space-between;
            -ms-flex-direction: row;
                flex-direction: row;
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
            background: none; }
            .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .image-wrapper::after {
              content: '';
              position: absolute;
              opacity: 0.03;
              background-color: #000;
              left: 0;
              top: 0;
              height: 100%;
              width: 100%;
              z-index: 0; }
            .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .image-wrapper .image-items {
              -ms-flex-preferred-size: 100%;
                  flex-basis: 100%;
              z-index: 1; }
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .pagination {
            position: absolute;
            bottom: 10px;
            width: 100%;
            z-index: 1;
            display: none;
            -ms-flex-pack: center;
                justify-content: center; }
            .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .pagination span {
              box-sizing: content-box;
              -ms-flex: 0 1 auto;
                  flex: 0 1 auto;
              width: 17px;
              height: 2px;
              margin-right: 8px;
              margin-left: 0;
              text-indent: -999px;
              cursor: pointer;
              background-color: #ccc;
              background-clip: padding-box;
              border-top: 10px solid transparent;
              border-bottom: 10px solid transparent;
              transition: opacity 0.6s ease;
              border-radius: unset;
              display: inline-block; }
              .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .pagination span.active {
                background-color: #1b1c1e; }
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-tile-col .product-tile .primary-image .gray-overlay {
            position: absolute;
            opacity: 0.03;
            background-color: #000;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%; }
      .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-promotion-col {
        min-height: 368.64px; }
        @media (min-width: 768px) {
          .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .product-promotion-col {
            min-height: 562px; } }
      .search-results-wrapper .search-result-content .product-grid-wrapper .product-grid .two-tile {
        -ms-grid-column: span 2;
            grid-column: span 2; }
    .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer {
      margin-top: 15px;
      margin-bottom: 30px;
      padding: 0 25px;
      display: -ms-grid;
      display: grid;
      -ms-grid-column: 1;
          grid-column-start: 1;
      grid-column-end: 3; }
      @media (min-width: 992px) {
        .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer {
          grid-column-end: 4; } }
      .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .text-center {
        line-height: 18px;
        color: #1b1c1e;
        font-size: 15px; }
      .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .btn-outline-primary {
        width: 100%;
        display: inline-block;
        cursor: pointer;
        min-width: 137px;
        height: 44px;
        text-align: center;
        transition: 0.3s ease all;
        text-transform: capitalize;
        position: relative;
        z-index: 1;
        line-height: 16px;
        padding-top: 8px;
        padding-bottom: 8px;
        color: #1b1c1e;
        border: 1px solid #1b1c1e;
        background-color: #fff; }
        .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .btn-outline-primary:hover, .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .btn-outline-primary:focus, .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .btn-outline-primary:active {
          color: #595959 !important;
          border-color: #595959;
          background-color: #fff; }
      .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .gift-finder-restart {
        margin-top: 20px; }
        .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .gift-finder-restart p {
          font-size: 13px;
          text-align: center;
          font-weight: 500;
          color: #1b1c1e;
          line-height: 24px; }
        .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .gift-finder-restart .restart-button {
          display: block;
          width: 100%;
          margin-bottom: 20px;
          color: #1b1c1e;
          border: 1px solid #1b1c1e;
          padding: 0 10px;
          height: 44px;
          font-size: 15px;
          line-height: 44px;
          transition: none; }
          @media (min-width: 768px) {
            .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .gift-finder-restart .restart-button {
              width: 90%; } }
          .search-results-wrapper .search-result-content .product-grid-wrapper .grid-footer .gift-finder-restart .restart-button:hover {
            background: #1b1c1e;
            color: #fff; }
  .search-results-wrapper .search-results-head .result-count {
    margin-bottom: 20px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; }
    @media (min-width: 768px) {
      .search-results-wrapper .search-results-head .result-count {
        margin-bottom: 0;
        margin-right: 40px; } }
  .search-results-wrapper .search-results-head .search-head-left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    @media (min-width: 768px) {
      .search-results-wrapper .search-results-head .search-head-left {
        display: unset; } }
  .search-results-wrapper .search-no-result-message {
    font-style: normal;
    margin-top: 127px;
    margin-bottom: 25px;
    font-weight: 300;
    font-size: 32px;
    line-height: 44px;
    text-align: center; }
    @media (min-width: 768px) {
      .search-results-wrapper .search-no-result-message {
        margin-top: 94px;
        margin-bottom: 19px;
        font-size: 36px;
        line-height: 39px; } }
    @media (min-width: 992px) {
      .search-results-wrapper .search-no-result-message {
        margin-top: 138px;
        margin-bottom: 54px;
        font-size: 42px;
        line-height: 60px; } }
  .search-results-wrapper .clear-filter-no-result:hover {
    color: #1b1c1e; }

.search-results-bottom {
  margin-bottom: 50px; }
  .search-results-bottom .category-video iframe {
    margin-bottom: 50px; }
  .search-results-bottom .category-content {
    background-color: #fafafa;
    text-align: center; }

.search-recommendations {
  margin-bottom: 50px; }
  .search-recommendations .search-recommendation-title {
    text-align: center;
    margin-bottom: 20px; }
    .search-recommendations .search-recommendation-title h2,
    .search-recommendations .search-recommendation-title h3 {
      font-size: 24px;
      font-weight: 300; }
      @media (min-width: 992px) {
        .search-recommendations .search-recommendation-title h2,
        .search-recommendations .search-recommendation-title h3 {
          font-size: 30px; } }
  @media (min-width: 992px) {
    .search-recommendations .product-recommendation-wrapper.container {
      padding-left: 72px;
      padding-right: 72px; } }
  @media (min-width: 1600px) {
    .search-recommendations .product-recommendation-wrapper.container {
      max-width: 1408px; } }
  .search-recommendations .product-recommendation-wrapper .swiper-slide .tile-footer {
    border: 0; }
  @media (min-width: 992px) {
    .search-recommendations .product-recommendation-wrapper .swiper-btn-next::after {
      right: 10px; } }
  @media (min-width: 1600px) {
    .search-recommendations .product-recommendation-wrapper .swiper-btn-next::after {
      right: -78px; } }
  @media (min-width: 992px) {
    .search-recommendations .product-recommendation-wrapper .swiper-btn-prev::after {
      left: 10px;
      transform: scaleX(-1); } }
  @media (min-width: 1600px) {
    .search-recommendations .product-recommendation-wrapper .swiper-btn-prev::after {
      left: -78px; } }
  .search-recommendations.has-results .search-message-content {
    display: none; }
  .search-recommendations .search-message-content {
    margin-bottom: 1.3rem; }
    @media (min-width: 1200px) {
      .search-recommendations .search-message-content {
        margin-bottom: 7.875rem; } }
    .search-recommendations .search-message-content p,
    .search-recommendations .search-message-content span {
      color: #000;
      font-size: 2rem;
      font-weight: 400; }

.compare-bar-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 2;
  border-top: 1px solid #f1f1f1;
  background-color: #fff; }
  .compare-bar-wrapper .compare-bar .compare-content .compare-products {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; }
    .compare-bar-wrapper .compare-bar .compare-content .compare-products .selected-product {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center; }
    .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare {
      width: 100%;
      min-height: 72px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center; }
      .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare:not([data-pid]) {
        border: 1px dashed #ccc; }
      .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .image-wrapper {
        max-width: 62px;
        max-height: 80px;
        margin-right: 10px;
        padding: 0; }
        .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .image-wrapper img {
          width: 100%;
          height: auto; }
      .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .content {
        padding: 0; }
        .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .content .product-collection {
          line-height: 14px;
          -webkit-font-smoothing: antialiased;
          letter-spacing: 0.4px;
          color: #595959;
          margin-bottom: 4px;
          font-size: 12px; }
        .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .content .product-name {
          line-height: 14px;
          -webkit-font-smoothing: antialiased;
          color: #1b1c1e;
          margin-bottom: 6px;
          font-size: 12px; }
        .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .content .close {
          line-height: 14px;
          -webkit-font-smoothing: antialiased;
          color: #1b1c1e;
          text-decoration: underline;
          opacity: 1;
          cursor: pointer;
          float: none;
          font-size: 12px; }
          .compare-bar-wrapper .compare-bar .compare-content .compare-products .product-compare .content .close:hover {
            opacity: 0.75;
            color: inherit;
            text-decoration: none; }
  .compare-bar-wrapper .compare-bar .compare-content .compare-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    .compare-bar-wrapper .compare-bar .compare-content .compare-actions .btn {
      min-width: 200px;
      height: 44px;
      line-height: 14px;
      -webkit-font-smoothing: antialiased;
      font-size: 15px; }
    .compare-bar-wrapper .compare-bar .compare-content .compare-actions .btn_compare {
      color: #fff;
      background-color: #1b1c1e; }
      .compare-bar-wrapper .compare-bar .compare-content .compare-actions .btn_compare:disabled {
        background-color: #ccc; }
    .compare-bar-wrapper .compare-bar .compare-content .compare-actions .clear-all {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center; }
      .compare-bar-wrapper .compare-bar .compare-content .compare-actions .clear-all:hover {
        color: #1b1c1e; }
  .compare-bar-wrapper-global .compare-bar .compare-content .compare-products {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .product-slots {
      margin: 0; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .selected-product {
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
      max-width: 50%;
      padding: 0 10px; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .product-compare {
      min-height: 75px;
      position: relative;
      -ms-flex-pack: center;
          justify-content: center; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .image-wrapper {
      max-width: 60px;
      max-height: 75px; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .image-wrapper .remove-icon {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 13px; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .content {
      display: none; }
  .compare-bar-wrapper-global .compare-bar .compare-content .compare-actions {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
    padding-right: 16px; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-actions .btn {
      width: 163px;
      height: 36px;
      min-width: 163px;
      -ms-flex-item-align: end;
          -ms-grid-row-align: end;
          align-self: end; }
  @media (min-width: 768px) {
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products {
      padding-left: 25%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
      max-width: 75%; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .selected-product {
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
        max-width: 65px; }
        .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .selected-product:nth-child(2) {
          margin: 0 38px; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-actions {
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
      max-width: 25%;
      padding-right: 16px; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-actions .btn {
        min-width: 174px;
        -ms-flex-item-align: end;
            -ms-grid-row-align: end;
            align-self: end; } }
  @media (min-width: 1200px) {
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-products {
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
      max-width: 75%;
      padding-left: 0; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .selected-product {
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
        max-width: 33.33333%; }
        .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .selected-product:nth-child(2) {
          margin: 0; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .product-compare .remove-icon {
        display: none; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .product-compare .content {
        display: block; }
        .compare-bar-wrapper-global .compare-bar .compare-content .compare-products .product-compare .content a {
          font-weight: 400; }
    .compare-bar-wrapper-global .compare-bar .compare-content .compare-actions {
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
      max-width: 25%;
      -ms-flex-align: end;
          align-items: end;
      padding-right: 0; }
      .compare-bar-wrapper-global .compare-bar .compare-content .compare-actions .btn {
        width: 200px;
        height: 44px; } }

.product .product-tile .tile-footer .compare-global.disabled {
  color: #ccc; }
  .product .product-tile .tile-footer .compare-global.disabled .checkbox {
    border: 1px solid #ccc; }

.rb-desktop-scroll {
  position: sticky;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  top: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid #f1f1f1; }
  @media (max-width: 767.98px) {
    .rb-desktop-scroll {
      display: block;
      background-color: #fff;
      position: fixed;
      top: 0;
      width: 100%;
      max-height: 100%;
      height: 100%;
      z-index: 999;
      transition: 0.5s ease-in-out;
      left: -100%;
      padding: 0 1rem; } }
  @media (max-width: 767.98px) {
    .rb-desktop-scroll.active {
      left: 0; } }
  .rb-desktop-scroll .refinement-wrapper .filter-header {
    padding: 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 999; }
    .rb-desktop-scroll .refinement-wrapper .filter-header h3 {
      margin-bottom: 0; }
    .rb-desktop-scroll .refinement-wrapper .filter-header .close-filter {
      background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNyAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDEuMjA4MzNMMC43MDgzMzMgMC41TDguNTA1MjEgOC4yOTY4OEwxNi4wOTE4IDAuNzEwMzEyTDE2LjgwMDEgMS40MTg2NUw5LjIxMzU0IDkuMDA1MjFMMTcgMTYuNzkxN0wxNi4yOTE3IDE3LjVMOC41MDUyMSA5LjcxMzU0TDAuOTE5MjcxIDE3LjI5OTVMMC4yMTA5MzggMTYuNTkxMUw3Ljc5Njg4IDkuMDA1MjFMMCAxLjIwODMzWiIgZmlsbD0iIzFCMUMxRSIvPgo8L3N2Zz4K") no-repeat;
      width: 17px;
      height: 17px;
      margin: auto 0; }
  .rb-desktop-scroll .refinement-wrapper .gift-finder-restart {
    margin-top: 10px; }
    .rb-desktop-scroll .refinement-wrapper .gift-finder-restart p {
      font-size: 13px;
      font-weight: 500;
      color: #1b1c1e;
      line-height: 24px; }
    .rb-desktop-scroll .refinement-wrapper .gift-finder-restart .restart-button {
      display: block;
      width: 100%;
      margin-bottom: 20px;
      color: #1b1c1e;
      border: 1px solid #1b1c1e;
      padding: 0 10px;
      height: 44px;
      font-size: 15px;
      line-height: 44px;
      transition: none; }
      @media (min-width: 768px) {
        .rb-desktop-scroll .refinement-wrapper .gift-finder-restart .restart-button {
          width: 90%; } }
      .rb-desktop-scroll .refinement-wrapper .gift-finder-restart .restart-button:hover {
        background: #1b1c1e;
        color: #fff; }
  @media (min-width: 768px) {
    .rb-desktop-scroll .refinement-wrapper .refinements {
      max-width: 240px;
      margin-right: 5px; } }
  .rb-desktop-scroll .refinement-wrapper .refinements .card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc; }
    .rb-desktop-scroll .refinement-wrapper .refinements .card[class*="gift-finder"] {
      display: none; }
    .rb-desktop-scroll .refinement-wrapper .refinements .card:last-child {
      border-bottom: 0; }
    .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header {
      cursor: pointer;
      -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
      border-bottom: none;
      padding: 30px 0;
      background-color: #fff; }
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header.collapsed h2::after,
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header.collapsed h4::after,
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header.collapsed div.refinement-title::after {
        transform: rotate(0); }
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header h2,
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header h4,
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header div.refinement-title {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #1b1c1e;
        margin-bottom: 0;
        position: relative; }
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header h2::after,
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header h4::after,
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-header div.refinement-title::after {
          position: absolute;
          right: 0;
          content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMyAxTDcgN0wxIDEiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+Cg==");
          transition: all 0.35s;
          transform: rotate(-180deg); }
    .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body {
      padding: 0; }
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul {
        list-style: none;
        margin-bottom: 0;
        padding: 0 6px 15px; }
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.more-items {
          padding: 0; }
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li {
          margin-bottom: 20px;
          padding-left: 2rem; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li.isShowMore {
            display: none; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li .refinement-selection:not(.swatch-circle) {
            position: relative;
            color: #1b1c1e;
            line-height: 18px;
            padding-left: 3px;
            font-size: 13px; }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li .refinement-selection:not(.swatch-circle):hover {
              color: #1b1c1e;
              text-decoration: none; }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li .refinement-selection:not(.swatch-circle)::before {
              width: 18px;
              height: 18px;
              background: #fff;
              border: 1px solid #000;
              border-radius: 0;
              position: absolute;
              left: -1.5rem;
              content: '';
              top: 50%;
              transform: translateY(-50%); }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li .refinement-selection:not(.swatch-circle)::after {
              background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIuMDExNzkgNS44MTM1MUMxLjYyMTI3IDUuNDIyOTggMC45ODgxMDUgNS40MjI5OCAwLjU5NzU4MSA1LjgxMzUxQzAuMjA3MDU2IDYuMjA0MDMgMC4yMDcwNTYgNi44MzcyIDAuNTk3NTgxIDcuMjI3NzJMMi4wMTE3OSA1LjgxMzUxWk01LjQ3ODYgMTAuNjk0NUw0Ljc3MTQ5IDExLjQwMTZDNC45OTMzOCAxMS42MjM1IDUuMzA2NTQgMTEuNzI4NCA1LjYxNzMgMTEuNjg0OUM1LjkyODA2IDExLjY0MTMgNi4yMDAzNyAxMS40NTQ1IDYuMzUyNzYgMTEuMTgwMkw1LjQ3ODYgMTAuNjk0NVpNMTEuNTcwMSAxLjc4ODg3QzExLjgzODQgMS4zMDYwOCAxMS42NjQ0IDAuNjk3Mjc5IDExLjE4MTYgMC40MjkwNjVDMTAuNjk4OSAwLjE2MDg1MiAxMC4wOSAwLjMzNDc5NiA5LjgyMTgzIDAuODE3NThMMTEuNTcwMSAxLjc4ODg3Wk0wLjU5NzU4MSA3LjIyNzcyTDQuNzcxNDkgMTEuNDAxNkw2LjE4NTcxIDkuOTg3NDJMMi4wMTE3OSA1LjgxMzUxTDAuNTk3NTgxIDcuMjI3NzJaTTYuMzUyNzYgMTEuMTgwMkwxMS41NzAxIDEuNzg4ODdMOS44MjE4MyAwLjgxNzU4TDQuNjA0NDQgMTAuMjA4OUw2LjM1Mjc2IDExLjE4MDJaIiBmaWxsPSIjMUIxQzFFIi8+Cjwvc3ZnPgo=");
              content: '';
              position: absolute;
              left: calc(-1.5rem + 3px);
              top: 50%;
              border: 0;
              width: 12px;
              height: 12px;
              transform: translateY(-50%);
              opacity: 0;
              transition: ease-in-out 0.3s; }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul li .refinement-selection:not(.swatch-circle).selected::after {
              opacity: 1; }
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul .see-more-link {
          font-size: 14px;
          line-height: 24px;
          font-weight: 500;
          color: #1b1c1e;
          cursor: pointer; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul .see-more-link span {
            padding-left: 20px; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul .see-more-link .see-more {
            background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDkgMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNSAwLjVINFY0LjVIMFY1LjVINFY5LjVINVY1LjVIOVY0LjVINVYwLjVaIiBmaWxsPSIjMUIxQzFFIi8+Cjwvc3ZnPgo=") no-repeat;
            background-position: left center; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul .see-more-link .see-less {
            background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSIyIiB2aWV3Qm94PSIwIDAgOSAyIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAwLjVIOVYxLjVIMFYwLjVaIiBmaWxsPSIjMUIxQzFFIi8+Cjwvc3ZnPgo=") no-repeat;
            background-position: left center; }
      .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour {
        padding: 0;
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap; }
        .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li {
          display: inline-block;
          border: 0;
          padding: 0;
          margin-bottom: 0;
          width: 75px;
          height: 70px; }
          @media (min-width: 768px) {
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li {
              width: 50%; } }
          @media (min-width: 1200px) {
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li {
              width: 75px; } }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li a {
            display: block;
            font-size: 0; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li span {
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            -ms-flex-pack: center;
                justify-content: center;
            margin-top: 2px;
            line-height: 24px;
            font-size: 12px;
            color: #1b1c1e; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle {
            width: 30px;
            height: 30px;
            display: -ms-flexbox;
            display: flex;
            position: relative;
            margin: auto;
            border-radius: 100%;
            text-indent: -969rem;
            border: 1px solid #1b1c1e;
            -ms-flex-align: center;
                align-items: center;
            -ms-flex-pack: center;
                justify-content: center; }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle.selected::before {
              content: '';
              position: absolute;
              border-radius: 100%;
              width: 40px;
              height: 40px;
              border: 1px solid #1b1c1e; }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle::after {
              content: none; }
            @media (min-width: 1200px) {
              .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle:hover {
                border-color: #1b1c1e; } }
            .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle.disabled {
              opacity: 0.2; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0120 {
            border-color: #444; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0010 {
            background-color: #000; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0020 {
            background-color: #3393d0; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0030 {
            background-color: #81c341; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0040 {
            background-color: #8f979d; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0050 {
            background-color: #ef7922; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0060 {
            background-color: #04559f; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0070 {
            background-color: #c11c8a; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0080 {
            background-color: #fe249a; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0090 {
            background-color: #f00; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0100 {
            background-color: #bdb8b8; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0110 {
            background-color: #ffc012; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0120 {
            background-color: #fff; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0130 {
            background-color: #6ac6b1; }
          .rb-desktop-scroll .refinement-wrapper .refinements .card .card-body ul.refinement-colour li .swatch-circle-0140 {
            background-color: #f5f5dc; }
  .rb-desktop-scroll .refinement-wrapper .filter-bottom {
    position: sticky;
    position: -webkit-sticky;
    bottom: 10px;
    background-color: #fff; }
    .rb-desktop-scroll .refinement-wrapper .filter-bottom .btn-apply-filter {
      display: inline-block;
      cursor: pointer;
      min-width: 137px;
      height: 44px;
      text-align: center;
      transition: 0.3s ease all;
      text-transform: capitalize;
      position: relative;
      z-index: 1;
      line-height: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      color: #fff;
      border-radius: 0;
      border: 1px solid #1b1c1e;
      background-color: #1b1c1e;
      display: block;
      width: 100%; }
      .rb-desktop-scroll .refinement-wrapper .filter-bottom .btn-apply-filter:hover, .rb-desktop-scroll .refinement-wrapper .filter-bottom .btn-apply-filter:focus, .rb-desktop-scroll .refinement-wrapper .filter-bottom .btn-apply-filter:active {
        color: #fff;
        border-color: #595959;
        background-color: #595959;
        box-shadow: none; }
      .rb-desktop-scroll .refinement-wrapper .filter-bottom .btn-apply-filter:disabled {
        background-color: #ccc; }
    .rb-desktop-scroll .refinement-wrapper .filter-bottom .reset-filter {
      display: inline-block;
      cursor: pointer;
      min-width: 137px;
      height: 44px;
      text-align: center;
      transition: 0.3s ease all;
      text-transform: capitalize;
      position: relative;
      z-index: 1;
      line-height: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      color: #1b1c1e;
      border: 1px solid #1b1c1e;
      background-color: #fff;
      transition: none;
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      border: 0; }
      .rb-desktop-scroll .refinement-wrapper .filter-bottom .reset-filter:hover, .rb-desktop-scroll .refinement-wrapper .filter-bottom .reset-filter:focus, .rb-desktop-scroll .refinement-wrapper .filter-bottom .reset-filter:active {
        color: #595959 !important;
        border-color: #595959;
        background-color: #fff; }
      .rb-desktop-scroll .refinement-wrapper .filter-bottom .reset-filter:hover {
        text-decoration: underline; }
  .rb-desktop-scroll::-webkit-scrollbar {
    width: 0.2rem; }
    @media (min-width: 992px) {
      .rb-desktop-scroll::-webkit-scrollbar {
        width: 0.5rem; } }
  .rb-desktop-scroll::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 100vw; }
  .rb-desktop-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 100vw; }
  .rb-desktop-scroll::-webkit-scrollbar-thumb:hover {
    background: #b8b8b8; }

.wishlist-message {
  position: fixed;
  z-index: 102;
  padding: 5px 25px 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
  @media (min-width: 768px) {
    .wishlist-message {
      padding: 5px 25px; } }
  @media (min-width: 992px) {
    .wishlist-message {
      padding: 5px 10%; } }
  .wishlist-message .row {
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .wishlist-message .row .col-image {
      width: auto;
      -ms-flex: unset;
          flex: unset;
      padding: 0; }
      .wishlist-message .row .col-image img {
        height: 20vw; }
        @media (min-width: 768px) {
          .wishlist-message .row .col-image img {
            height: 10vw; } }
        @media (min-width: 992px) {
          .wishlist-message .row .col-image img {
            height: 5vw; } }
      @media (min-width: 768px) {
        .wishlist-message .row .col-image {
          padding: 0 15px; } }
    .wishlist-message .row .col-message {
      padding: 0 5px; }
      @media (min-width: 992px) {
        .wishlist-message .row .col-message {
          text-transform: uppercase; } }
    .wishlist-message .row .col-button {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: end;
          justify-content: flex-end;
      padding: 0;
      -webkit-justify-content: flex-end; }
    .wishlist-message .row .icon-ico-close-thin {
      position: absolute;
      top: -5px;
      right: 0; }
  .wishlist-message p {
    margin-bottom: 0;
    font-size: 0.857rem; }
  .wishlist-message .col-4 {
    text-align: center; }
  .wishlist-message .btn-go-wishlist {
    display: inline-block;
    cursor: pointer;
    min-width: 137px;
    height: 44px;
    text-align: center;
    transition: 0.3s ease all;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    line-height: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #fff;
    border-radius: 0;
    border: 1px solid #1b1c1e;
    background-color: #1b1c1e;
    width: 100%;
    height: auto;
    min-width: unset; }
    .wishlist-message .btn-go-wishlist:hover, .wishlist-message .btn-go-wishlist:focus, .wishlist-message .btn-go-wishlist:active {
      color: #fff;
      border-color: #595959;
      background-color: #595959;
      box-shadow: none; }
    .wishlist-message .btn-go-wishlist:disabled {
      background-color: #ccc; }

.back-in-stock-popup {
  padding-right: 0 !important;
  z-index: 3; }
  .back-in-stock-popup.submit-success .modal-body .continue-shop,
  .back-in-stock-popup.submit-success .modal-body .success-svg-wrapper {
    display: block; }
    .back-in-stock-popup.submit-success .modal-body .continue-shop .product-img,
    .back-in-stock-popup.submit-success .modal-body .success-svg-wrapper .product-img {
      height: 146px; }
  .back-in-stock-popup.submit-success .notify-me-form,
  .back-in-stock-popup.submit-success .modal-footer {
    display: none; }
  .back-in-stock-popup.submit-success .modal-body .continue-shop {
    display: block; }
  .back-in-stock-popup.submit-success .modal-description .description {
    display: none; }
  .back-in-stock-popup.submit-success .modal-description .message {
    display: block; }
  .back-in-stock-popup .modal-dialog {
    -ms-flex-pack: center;
        justify-content: center; }
    .back-in-stock-popup .modal-dialog .modal-content {
      border-radius: 0;
      width: 442px;
      min-height: 413px;
      padding: 34px; }
      .back-in-stock-popup .modal-dialog .modal-content .modal-header {
        padding: 0; }
        .back-in-stock-popup .modal-dialog .modal-content .modal-header .title {
          margin-bottom: 0;
          font-size: 28px;
          font-weight: 300;
          color: #1b1c1e;
          padding-bottom: 20px; }
          @media (min-width: 992px) {
            .back-in-stock-popup .modal-dialog .modal-content .modal-header .title {
              font-size: 24px;
              padding-bottom: 25px; } }
        .back-in-stock-popup .modal-dialog .modal-content .modal-header button.close {
          padding: 8px 15px;
          font-size: 32px; }
      .back-in-stock-popup .modal-dialog .modal-content .modal-description .description {
        color: #595959;
        line-height: 1.3em;
        margin-top: 15px;
        margin-bottom: 30px;
        font-size: 15px; }
    .back-in-stock-popup .modal-dialog .notify-me-form .form-group {
      margin-bottom: 0; }
      .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control {
        height: 2.7em;
        border: none;
        background-color: transparent;
        border-bottom: 1px solid #949494;
        border-radius: 0;
        font-size: 15px; }
        .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control:focus ~ label,
        .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control.has-content ~ label {
          top: -5px;
          transform-origin: left;
          transform: scale(0.8); }
        .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control:focus {
          outline: none;
          box-shadow: none; }
          .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control:focus ~ .focus-border {
            width: calc(100% - 30px);
            top: 2.7em;
            left: 15px; }
            @media (min-width: 992px) {
              .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control:focus ~ .focus-border {
                top: 2.42em; } }
            @media (min-width: 1600px) {
              .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control:focus ~ .focus-border {
                top: 2.7em; } }
        @media (min-width: 992px) {
          .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control {
            height: 2.42em; } }
        @media (min-width: 1600px) {
          .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control {
            height: 2.7em; } }
        .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control.is-invalid {
          border-bottom: 1px solid #b12131; }
          .back-in-stock-popup .modal-dialog .notify-me-form .form-group .form-control.is-invalid ~ .invalid-feedback {
            opacity: 1; }
      .back-in-stock-popup .modal-dialog .notify-me-form .form-group.title {
        display: none; }
      @media (max-width: 575.98px) {
        .back-in-stock-popup .modal-dialog .notify-me-form .form-group.button {
          margin-bottom: 0; } }
      .back-in-stock-popup .modal-dialog .notify-me-form .form-group .invalid-feedback {
        display: block;
        opacity: 0;
        margin-top: 3px;
        min-height: 42px; }
    .back-in-stock-popup .modal-dialog .notify-me-form .btn-submit {
      display: inline-block;
      cursor: pointer;
      min-width: 137px;
      height: 44px;
      text-align: center;
      transition: 0.3s ease all;
      text-transform: capitalize;
      position: relative;
      z-index: 1;
      line-height: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      color: #fff;
      border-radius: 0;
      border: 1px solid #1b1c1e;
      background-color: #1b1c1e;
      padding: 9px 3px;
      text-transform: none;
      line-height: 1;
      margin: 0;
      width: 100%;
      font-weight: 400;
      font-size: 15px; }
      .back-in-stock-popup .modal-dialog .notify-me-form .btn-submit:hover, .back-in-stock-popup .modal-dialog .notify-me-form .btn-submit:focus, .back-in-stock-popup .modal-dialog .notify-me-form .btn-submit:active {
        color: #fff;
        border-color: #595959;
        background-color: #595959;
        box-shadow: none; }
      .back-in-stock-popup .modal-dialog .notify-me-form .btn-submit:disabled {
        background-color: #ccc; }
      @media (min-width: 992px) {
        .back-in-stock-popup .modal-dialog .notify-me-form .btn-submit {
          padding-top: 8px;
          padding-bottom: 8px;
          line-height: 1.2;
          letter-spacing: 0.05rem; } }
    .back-in-stock-popup .modal-dialog .continue-shop {
      display: inline-block;
      cursor: pointer;
      min-width: 137px;
      height: 44px;
      text-align: center;
      transition: 0.3s ease all;
      text-transform: capitalize;
      position: relative;
      z-index: 1;
      line-height: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      color: #fff;
      border-radius: 0;
      border: 1px solid #1b1c1e;
      background-color: #1b1c1e;
      display: none;
      margin: 10px 0;
      padding: 9px 3px;
      text-transform: none;
      line-height: 1;
      width: 100%;
      font-weight: 400; }
      .back-in-stock-popup .modal-dialog .continue-shop:hover, .back-in-stock-popup .modal-dialog .continue-shop:focus, .back-in-stock-popup .modal-dialog .continue-shop:active {
        color: #fff;
        border-color: #595959;
        background-color: #595959;
        box-shadow: none; }
      .back-in-stock-popup .modal-dialog .continue-shop:disabled {
        background-color: #ccc; }
    .back-in-stock-popup .modal-dialog .message {
      margin-top: 3px;
      margin-bottom: 25px;
      display: none;
      color: #1b1c1e;
      line-height: 16px;
      font-weight: 300;
      font-size: 15px; }
    .back-in-stock-popup .modal-dialog .success-svg-wrapper {
      height: 170px;
      display: none;
      text-align: center; }
    .back-in-stock-popup .modal-dialog .modal-footer {
      border: 0;
      margin-top: 5px; }
      .back-in-stock-popup .modal-dialog .modal-footer .notify-policy {
        line-height: 1.5em;
        margin-bottom: 0;
        font-size: 12px; }
        .back-in-stock-popup .modal-dialog .modal-footer .notify-policy .policy {
          text-decoration: underline;
          color: #595959; }
          .back-in-stock-popup .modal-dialog .modal-footer .notify-policy .policy:hover {
            color: #595959; }

.modal-backdrop {
  z-index: 2; }

.page-gifting.categery-landing-content h3,
.page-gifting.categery-landing-content .sub-title,
.page-gifting.categery-landing-content .sub-description,
.page-gifting.categery-landing-content .collection-info {
  font-family: "ProximaNova"; }

.page-gifting a {
  outline: none; }

.page-gifting .breadcrumbs-section {
  display: none; }

.page-gifting .lifestyle-item .title-img {
  min-width: 6.667rem;
  min-height: 6.667rem; }

.page-gifting .slick-carousel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media (min-width: 768px) {
    .page-gifting .slick-carousel {
      -ms-flex-direction: row;
          flex-direction: row; } }

.page-gifting .slider .slide-item {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row; }
  @media (min-width: 768px) {
    .page-gifting .slider .slide-item {
      -ms-flex-direction: column;
          flex-direction: column; } }

.page-gifting .tabs .line-collection-wrapper .slide-item {
  padding: 0; }
  @media (min-width: 768px) {
    .page-gifting .tabs .line-collection-wrapper .slide-item {
      padding: 0 3%; } }

.page-gifting .gift-content .slick-carousel {
  -ms-flex-direction: row;
      flex-direction: row; }
  .page-gifting .gift-content .slick-carousel .slide-item {
    -ms-flex-direction: row;
        flex-direction: row; }

.page-gifting .gifting-swipe-section {
  position: relative; }
  .page-gifting .gifting-swipe-section .swiper-next::after,
  .page-gifting .gifting-swipe-section .swiper-prev::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xOS43NTQzIDZIMCIgc3Ryb2tlPSIjRkZGRkZGIi8+DQo8cGF0aCBkPSJNMTQuOTAwNCAxTDE5Ljc1NDggNkwxNC45MDA0IDExIiBzdHJva2U9IiNGRkZGRkYiLz4NCjwvc3ZnPg0K") !important;
    content: "";
    background-color: #000;
    padding: 1rem;
    color: #fff;
    position: absolute;
    top: 45%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer; }
    @media (min-width: 768px) {
      .page-gifting .gifting-swipe-section .swiper-next::after,
      .page-gifting .gifting-swipe-section .swiper-prev::after {
        display: none; } }
  .page-gifting .gifting-swipe-section .swiper-next::after {
    right: -2rem; }
  .page-gifting .gifting-swipe-section .swiper-prev::after {
    left: -2rem; }

.page-gifting .products-section {
  display: none; }

.page-recycled-capsule .breadcrumbs-section,
.page-recycled-capsule .products-section,
.page-sustainability .breadcrumbs-section,
.page-sustainability .products-section {
  display: none; }

@media (min-width: 768px) {
  .page-recycled-capsule .primary-content,
  .page-sustainability .primary-content {
    padding: 0 2.333rem; } }

@media (min-width: 1200px) {
  .page-recycled-capsule .primary-content,
  .page-sustainability .primary-content {
    padding: 0 5.333rem; } }

@media (min-width: 1600px) {
  .page-recycled-capsule .primary-content,
  .page-sustainability .primary-content {
    padding: 0 10.667rem; } }

.page-recycled-capsule .banner,
.page-sustainability .banner {
  position: relative;
  margin: -16px; }
  .page-recycled-capsule .banner .block-center,
  .page-sustainability .banner .block-center {
    position: absolute;
    left: 50%;
    top: 50%;
    min-height: 200px;
    min-width: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    transform: translate(-50%, -50%); }
    @media (min-width: 768px) {
      .page-recycled-capsule .banner .block-center,
      .page-sustainability .banner .block-center {
        min-width: 400px;
        min-height: 280px; } }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .page-recycled-capsule .banner .block-center,
      .page-sustainability .banner .block-center {
        height: 280px; } }
  .page-recycled-capsule .banner h4,
  .page-sustainability .banner h4 {
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.4286rem;
    letter-spacing: 0.2rem;
    color: #222222;
    font-family: "ProximaNova";
    font-weight: 600; }
    @media (min-width: 768px) {
      .page-recycled-capsule .banner h4,
      .page-sustainability .banner h4 {
        font-size: 2rem; } }
  .page-recycled-capsule .banner .top,
  .page-sustainability .banner .top {
    color: #fff;
    margin-bottom: 1.333rem; }
  .page-recycled-capsule .banner .bottom,
  .page-sustainability .banner .bottom {
    margin-top: 1.333rem; }
  .page-recycled-capsule .banner .less-light,
  .page-sustainability .banner .less-light {
    display: block;
    font-weight: 300;
    letter-spacing: 0.3rem;
    font-family: "ProximaNova"; }
  .page-recycled-capsule .banner img,
  .page-sustainability .banner img {
    min-height: 257px; }
    @media (min-width: 768px) {
      .page-recycled-capsule .banner img,
      .page-sustainability .banner img {
        height: 400px;
        width: 100%; } }

.page-recycled-capsule p,
.page-sustainability p {
  line-height: 1.333rem; }

.page-recycled-capsule h3,
.page-sustainability h3 {
  font-size: 1.642em;
  color: #222222;
  line-height: 1.4em; }
  @media (min-width: 768px) {
    .page-recycled-capsule h3,
    .page-sustainability h3 {
      font-size: 1.7143rem; } }
  @media (min-width: 992px) {
    .page-recycled-capsule h3,
    .page-sustainability h3 {
      font-size: 2.286rem; } }
  @media (min-width: 1200px) {
    .page-recycled-capsule h3,
    .page-sustainability h3 {
      font-size: 1.8571rem; } }
  .page-recycled-capsule h3::after,
  .page-sustainability h3::after {
    content: none; }

.page-recycled-capsule .protect-block,
.page-sustainability .protect-block {
  margin-top: 1.786rem;
  margin-bottom: 2.857rem; }
  @media (min-width: 768px) {
    .page-recycled-capsule .protect-block,
    .page-sustainability .protect-block {
      text-align: center;
      margin-top: 5rem;
      margin-bottom: 5rem; } }
  @media (min-width: 1200px) {
    .page-recycled-capsule .protect-block,
    .page-sustainability .protect-block {
      max-width: 990px;
      margin-left: auto;
      margin-right: auto; } }
  .page-recycled-capsule .protect-block h3,
  .page-sustainability .protect-block h3 {
    font-size: 1.642em;
    line-height: 1.5em;
    margin-bottom: 1.429rem; }
    @media (min-width: 768px) {
      .page-recycled-capsule .protect-block h3,
      .page-sustainability .protect-block h3 {
        font-size: 2.143rem;
        line-height: 2.933rem;
        margin-bottom: 2.143rem; } }
    @media (min-width: 1200px) {
      .page-recycled-capsule .protect-block h3,
      .page-sustainability .protect-block h3 {
        font-size: 2rem; } }
    @media (min-width: 1600px) {
      .page-recycled-capsule .protect-block h3,
      .page-sustainability .protect-block h3 {
        font-size: 2.5rem; } }
  .page-recycled-capsule .protect-block > p,
  .page-sustainability .protect-block > p {
    font-size: 1.0714rem;
    line-height: 1.6rem; }
    @media (min-width: 768px) {
      .page-recycled-capsule .protect-block > p,
      .page-sustainability .protect-block > p {
        font-size: 1.2857rem;
        line-height: 1.867rem; } }
    @media (min-width: 1200px) {
      .page-recycled-capsule .protect-block > p,
      .page-sustainability .protect-block > p {
        font-size: 1.4286rem; } }
  .page-recycled-capsule .protect-block h5,
  .page-sustainability .protect-block h5 {
    font-size: 1.1429rem;
    margin-top: 1.333rem;
    color: #222222;
    margin-bottom: 1em; }
  .page-recycled-capsule .protect-block-info,
  .page-sustainability .protect-block-info {
    margin-top: 2.667rem;
    text-align: center;
    padding: 0 1.667rem; }
    @media (min-width: 768px) {
      .page-recycled-capsule .protect-block-info,
      .page-sustainability .protect-block-info {
        padding: 0; } }
    .page-recycled-capsule .protect-block-info p,
    .page-sustainability .protect-block-info p {
      margin-bottom: 2rem; }
      @media (min-width: 992px) {
        .page-recycled-capsule .protect-block-info p,
        .page-sustainability .protect-block-info p {
          font-size: 1rem; } }
  .page-recycled-capsule .protect-block img,
  .page-sustainability .protect-block img {
    min-width: auto;
    min-height: auto;
    width: 42px; }
    @media (min-width: 768px) {
      .page-recycled-capsule .protect-block img,
      .page-sustainability .protect-block img {
        width: 60px; } }

.page-recycled-capsule .info-content,
.page-sustainability .info-content {
  margin-top: 1.667rem; }
  .page-recycled-capsule .info-content p,
  .page-sustainability .info-content p {
    margin-top: 1.429rem;
    font-size: 1rem; }
    @media (min-width: 768px) {
      .page-recycled-capsule .info-content p,
      .page-sustainability .info-content p {
        font-size: 1.1429rem; } }
  .page-recycled-capsule .info-content > .row,
  .page-sustainability .info-content > .row {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center; }
    @media (min-width: 1200px) {
      .page-recycled-capsule .info-content > .row .col-12,
      .page-sustainability .info-content > .row .col-12 {
        padding: 0 4.643rem; } }
  .page-recycled-capsule .info-content .img-block,
  .page-sustainability .info-content .img-block {
    padding-left: 0;
    padding-right: 0; }
    @media (min-width: 768px) {
      .page-recycled-capsule .info-content .img-block,
      .page-sustainability .info-content .img-block {
        padding-left: 1rem;
        padding-right: 1rem; } }

@media (min-width: 768px) {
  .page-recycled-capsule .innovative-block > .row,
  .page-recycled-capsule .thriving-supply > .row,
  .page-sustainability .innovative-block > .row,
  .page-sustainability .thriving-supply > .row {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; } }

.page-recycled-capsule .product-recommendations,
.page-sustainability .product-recommendations {
  padding-top: 2rem;
  text-align: center; }
  .page-recycled-capsule .product-recommendations .product-collection .link,
  .page-sustainability .product-recommendations .product-collection .link {
    font-size: 0.786rem;
    color: #606060;
    text-transform: uppercase; }
  .page-recycled-capsule .product-recommendations .pdp-link .link,
  .page-sustainability .product-recommendations .pdp-link .link {
    font-size: 0.929rem;
    font-weight: bold; }

.page-recycled-capsule .recycled-title,
.page-recycled-capsule .cta-shop-collection,
.page-sustainability .recycled-title,
.page-sustainability .cta-shop-collection {
  text-align: center;
  margin: 2.143rem 0; }

@media (min-width: 768px) {
  .page-recycled-capsule .cta-shop-collection,
  .page-sustainability .cta-shop-collection {
    margin-bottom: 5rem; } }

.page-recycled-capsule .shop-collection,
.page-sustainability .shop-collection {
  font-size: 14px;
  border: 1px solid #222222;
  padding: 0.786rem 3.714rem;
  display: inline-block;
  text-decoration: none; }

@media (min-width: 768px) {
  .page-recycled-capsule .product-collections,
  .page-sustainability .product-collections {
    padding: 0 50px; } }

@media (min-width: 1200px) {
  .page-recycled-capsule .product-collections,
  .page-sustainability .product-collections {
    padding: 0 140px; } }

@media (min-width: 1600px) {
  .page-recycled-capsule .product-collections,
  .page-sustainability .product-collections {
    padding: 0 222px; } }

.page-recycled-capsule .product-collections .gray-overlay,
.page-sustainability .product-collections .gray-overlay {
  background-color: transparent; }

.page-recycled-capsule .product-collections .product-tile,
.page-sustainability .product-collections .product-tile {
  padding-top: 0;
  padding-bottom: 0; }
  .page-recycled-capsule .product-collections .product-tile .image-container,
  .page-sustainability .product-collections .product-tile .image-container {
    padding-top: 0; }

.page-recycled-capsule .btn-learn-more,
.page-sustainability .btn-learn-more {
  padding-top: 0.333rem;
  padding-bottom: 0.333rem;
  margin-bottom: 1rem;
  font-size: 1.0714rem;
  display: inline-block;
  text-transform: uppercase; }

.page-recycled-capsule .material-innovation,
.page-sustainability .material-innovation {
  margin-top: 50px;
  padding-bottom: 50px;
  margin-left: -1rem;
  margin-right: -1rem; }
  .page-recycled-capsule .material-innovation img,
  .page-sustainability .material-innovation img {
    min-width: auto;
    min-height: auto;
    width: 100%; }
  .page-recycled-capsule .material-innovation h4,
  .page-sustainability .material-innovation h4 {
    font-size: 1.1429rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #222222; }
    @media (min-width: 992px) {
      .page-recycled-capsule .material-innovation h4,
      .page-sustainability .material-innovation h4 {
        font-size: 1.4286rem; } }
  .page-recycled-capsule .material-innovation h3,
  .page-sustainability .material-innovation h3 {
    text-align: center;
    margin-bottom: 2rem; }

.page-recycled-capsule .everything-we-do,
.page-sustainability .everything-we-do {
  margin-top: 2.143rem; }
  @media (min-width: 768px) {
    .page-recycled-capsule .everything-we-do,
    .page-sustainability .everything-we-do {
      margin-top: 5rem; } }
  @media (min-width: 1200px) {
    .page-recycled-capsule .everything-we-do,
    .page-sustainability .everything-we-do {
      padding: 0 4.643rem; } }

.page-recycled-capsule .innovative-block,
.page-sustainability .innovative-block {
  margin-top: 3.571rem; }
  @media (min-width: 768px) {
    .page-recycled-capsule .innovative-block,
    .page-sustainability .innovative-block {
      margin-top: 8rem; } }

.page-recycled-capsule .swiper-container,
.page-sustainability .swiper-container {
  position: relative;
  padding-left: 0.467;
  padding-right: 0.467; }
  @media (min-width: 768px) {
    .page-recycled-capsule .swiper-container,
    .page-sustainability .swiper-container {
      padding: 0; } }

@media (min-width: 768px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-next::after,
  .page-recycled-capsule .sustainability-swipe-section .swiper-prev::after,
  .page-sustainability .sustainability-swipe-section .swiper-next::after,
  .page-sustainability .sustainability-swipe-section .swiper-prev::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xOS43NTQzIDZIMCIgc3Ryb2tlPSIjRkZGRkZGIi8+DQo8cGF0aCBkPSJNMTQuOTAwNCAxTDE5Ljc1NDggNkwxNC45MDA0IDExIiBzdHJva2U9IiNGRkZGRkYiLz4NCjwvc3ZnPg0K") !important;
    content: "";
    background-color: #000;
    padding: 1rem;
    color: #fff;
    position: absolute;
    top: 35%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer; } }

@media (min-width: 1200px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-next::after,
  .page-recycled-capsule .sustainability-swipe-section .swiper-prev::after,
  .page-sustainability .sustainability-swipe-section .swiper-next::after,
  .page-sustainability .sustainability-swipe-section .swiper-prev::after {
    padding: 1.333rem; } }

@media (min-width: 768px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-next.swiper-button-disabled::after,
  .page-recycled-capsule .sustainability-swipe-section .swiper-prev.swiper-button-disabled::after,
  .page-sustainability .sustainability-swipe-section .swiper-next.swiper-button-disabled::after,
  .page-sustainability .sustainability-swipe-section .swiper-prev.swiper-button-disabled::after {
    opacity: 0.6; } }

@media (min-width: 768px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-next::after,
  .page-sustainability .sustainability-swipe-section .swiper-next::after {
    right: -2rem; } }

@media (min-width: 1200px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-next::after,
  .page-sustainability .sustainability-swipe-section .swiper-next::after {
    right: -3.333rem; } }

@media (min-width: 768px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-prev::after,
  .page-sustainability .sustainability-swipe-section .swiper-prev::after {
    left: -2rem; } }

@media (min-width: 1200px) {
  .page-recycled-capsule .sustainability-swipe-section .swiper-prev::after,
  .page-sustainability .sustainability-swipe-section .swiper-prev::after {
    left: -3.333rem; } }

.page-sustainability .product-collections .product-tile .image-container a .tile-image {
  position: absolute;
  z-index: -2;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }

.collections-template .content-slot-wrapper .firstly-content .hero-banner {
  padding: 0;
  box-sizing: border-box; }

.collections-template .sub-categories-container {
  margin-top: 32px;
  padding: 0 16px; }
  .collections-template .sub-categories-container .nav-tabs {
    padding: 2px 2px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    cursor: pointer;
    margin: 40px 0 62px;
    overflow-x: auto;
    overflow-y: hidden; }
    .collections-template .sub-categories-container .nav-tabs .nav-item {
      max-width: 156px;
      text-align: center; }
      .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link {
        display: inline-block;
        width: 156px;
        padding-top: 17px;
        padding-bottom: 17px;
        letter-spacing: 0.005em;
        font-size: 15px;
        line-height: 16px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-right: none;
        border-left: none;
        border-top: none;
        border-bottom: 3px solid transparent; }
        @media (min-width: 768px) {
          .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link {
            width: 260px;
            text-align: center;
            letter-spacing: unset; } }
        @media (min-width: 992px) {
          .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link {
            width: 170px; } }
      .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link.active {
        border-bottom: 3px solid #000;
        color: #000;
        background-color: transparent; }
      @media (min-width: 768px) {
        .collections-template .sub-categories-container .nav-tabs .nav-item {
          max-width: 170px; } }
      @media (min-width: 992px) {
        .collections-template .sub-categories-container .nav-tabs .nav-item {
          max-width: 260px; } }
    .collections-template .sub-categories-container .nav-tabs .nav-item > .nav-link {
      color: #000;
      background-color: transparent; }
      @media (min-width: 768px) {
        .collections-template .sub-categories-container .nav-tabs .nav-item > .nav-link {
          color: #000; } }
    .collections-template .sub-categories-container .nav-tabs .nav-link:hover {
      border-color: transparent;
      cursor: pointer; }
    .collections-template .sub-categories-container .nav-tabs .nav-link:focus {
      outline: 1px dashed #000; }
    @media (min-width: 768px) {
      .collections-template .sub-categories-container .nav-tabs {
        margin: 32px 0 64px; } }
    @media (min-width: 992px) {
      .collections-template .sub-categories-container .nav-tabs {
        margin: 44px 0 80px; } }
  .collections-template .sub-categories-container .container {
    padding: 0;
    margin-bottom: 60px; }
    .collections-template .sub-categories-container .container .row {
      background-color: #fafafa; }
      .collections-template .sub-categories-container .container .row .right-section {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center; }
        .collections-template .sub-categories-container .container .row .right-section .right-container {
          padding: 40px 21px;
          margin: 0 auto; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .tile-image-container .tile-wrapper-1 {
            padding-right: 8px;
            padding-left: 0; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .tile-image-container .tile-wrapper-2 {
            padding: 0 4px; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .tile-image-container .tile-wrapper-3 {
            padding-left: 8px;
            padding-right: 0;
            margin-right: 0; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text {
            margin-top: 40px; }
            .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text .title {
              color: #000;
              font-size: 20px;
              line-height: 20px; }
            .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text .description {
              margin-top: 11px;
              color: #595959;
              font-size: 15px;
              line-height: 20px; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .shop-all-cta {
            margin-top: 20px; }
            @media (min-width: 768px) {
              .collections-template .sub-categories-container .container .row .right-section .right-container .shop-all-cta {
                margin-top: 34px; } }
            @media (min-width: 992px) {
              .collections-template .sub-categories-container .container .row .right-section .right-container .shop-all-cta {
                margin-top: 20px; } }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container .padding-right-text {
              padding-right: 81px; } }
          .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text-top {
            padding-left: 0; }
            @media (min-width: 992px) {
              .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text-top {
                margin-top: 0; } }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container .padding-right-image-tile {
              padding: 0 0 0 81px; } }
          @media (min-width: 768px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container {
              padding: 20px 21px; } }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container {
              padding-top: 40px;
              max-width: calc(68% + 40px); } }
    .collections-template .sub-categories-container .container .flex-md-column .right-section .right-container .d-md-flex {
      -ms-flex-align: center;
          align-items: center; }
    @media (min-width: 992px) {
      .collections-template .sub-categories-container .container .flex-md-column .right-section .right-container {
        max-width: 100%;
        padding: 60px 80px 40px; } }
    .collections-template .sub-categories-container .container .no-gutters {
      margin-left: 0;
      margin-right: 0; }
    .collections-template .sub-categories-container .container .product-grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr);
      grid-gap: 32px;
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0;
      background-color: #fff; }
      @media (min-width: 768px) {
        .collections-template .sub-categories-container .container .product-grid {
          row-gap: 45px;
          column-gap: 32px; } }
      @media (min-width: 992px) {
        .collections-template .sub-categories-container .container .product-grid {
          -ms-grid-columns: (1fr)[3];
              grid-template-columns: repeat(3, 1fr); } }
      .collections-template .sub-categories-container .container .product-grid .product-tile-col {
        max-width: unset;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden; }
        @media (min-width: 992px) {
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile:hover .product-comparition {
            display: -ms-flexbox;
            display: flex; }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile:hover .product-bookmark {
            display: block; } }
        .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image {
          position: relative; }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image:hover .pagination {
              display: -ms-flexbox;
              display: flex; } }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .tile-image {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .image-wrapper {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: justify;
                justify-content: space-between;
            -ms-flex-direction: row;
                flex-direction: row;
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
            background: none; }
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .image-wrapper::after {
              content: '';
              position: absolute;
              opacity: 0.03;
              background-color: #000;
              left: 0;
              top: 0;
              height: 100%;
              width: 100%;
              z-index: 0; }
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .image-wrapper .image-items {
              -ms-flex-preferred-size: 100%;
                  flex-basis: 100%;
              z-index: 1; }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .pagination {
            position: absolute;
            bottom: 10px;
            width: 100%;
            z-index: 1;
            display: none;
            -ms-flex-pack: center;
                justify-content: center; }
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .pagination span {
              box-sizing: content-box;
              -ms-flex: 0 1 auto;
                  flex: 0 1 auto;
              width: 17px;
              height: 2px;
              margin-right: 8px;
              margin-left: 0;
              text-indent: -999px;
              cursor: pointer;
              background-color: #ccc;
              background-clip: padding-box;
              border-top: 10px solid transparent;
              border-bottom: 10px solid transparent;
              transition: opacity 0.6s ease;
              border-radius: unset;
              display: inline-block; }
              .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .pagination span.active {
                background-color: #1b1c1e; }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .gray-overlay {
            position: absolute;
            opacity: 0.03;
            background-color: #000;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%; }
        .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .add-to-cart-global,
        .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .notify-me {
          display: none; }
        @media (min-width: 992px) {
          .collections-template .sub-categories-container .container .product-grid .product-tile-col {
            padding-left: 18px;
            padding-right: 18px;
            margin-bottom: 14px; } }
      @media (min-width: 992px) {
        .collections-template .sub-categories-container .container .product-grid .product-promotion-col {
          max-height: 688.906px; } }
      .collections-template .sub-categories-container .container .product-grid .two-tile {
        -ms-grid-column: span 2;
            grid-column: span 2; }
  .collections-template .sub-categories-container .best-seller-heading {
    color: #000;
    text-align: center;
    margin-top: 100px;
    font-size: 30px;
    line-height: 16px; }
    @media (min-width: 768px) {
      .collections-template .sub-categories-container .best-seller-heading {
        margin-top: 71px;
        letter-spacing: -0.1px;
        font-size: 30px;
        line-height: 34px; } }
    @media (min-width: 992px) {
      .collections-template .sub-categories-container .best-seller-heading {
        margin-top: 100px;
        font-size: 42px;
        line-height: 58px; } }
  @media (min-width: 768px) {
    .collections-template .sub-categories-container {
      padding: 0 32px; } }
  @media (min-width: 992px) {
    .collections-template .sub-categories-container {
      padding: 0 120px; } }

.collections-template .haft-image-container {
  position: relative;
  min-height: 30vh; }
  .collections-template .haft-image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (min-width: 992px) {
    .collections-template .haft-image-container + div {
      min-height: 60vh; } }

.collections-template .collections-sticky-bar {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9;
  transition: top 0.5s;
  transition-duration: 0.5s; }

.collections-template .button {
  padding: 0 20px;
  margin: 0;
  min-width: 128px;
  background-color: #1b1c1e;
  color: #fff;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  border: none;
  border-radius: 0;
  cursor: pointer;
  height: 44px;
  font-size: 15px;
  line-height: 44px;
  -webkit-font-smoothing: antialiased; }

.collections-template button:hover {
  text-decoration: none;
  background: #595959; }

.collections-template .button-primary {
  background-color: #1b1c1e;
  color: #fff; }

.collections-template .button-primary:hover {
  background-color: #595959; }

.collections-template .button-secondary {
  background-color: transparent;
  color: #1b1c1e;
  border: 1px solid #1b1c1e; }

.collections-template .button-secondary:hover {
  background-color: #fff;
  color: #595959;
  text-decoration: none;
  border: 1px solid #595959; }

.collections-template .grid-footer {
  display: none; }

.collections-template .search-recommendations .row {
  background-color: transparent !important; }

.collections-template .search-recommendations .tile-item,
.collections-template .search-recommendations .recommendation-banner {
  margin-bottom: 30px; }

.collections-template .search-recommendations .recommendation-banner {
  position: relative;
  min-height: 30vh;
  overflow: hidden; }
  .collections-template .search-recommendations .recommendation-banner img {
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(100% - 32px);
    object-fit: cover; }

.collections-template .search-recommendations .product-tile .image-container .primary-image {
  position: relative; }
  .collections-template .search-recommendations .product-tile .image-container .primary-image img.background {
    display: none; }
  .collections-template .search-recommendations .product-tile .image-container .primary-image img.tile-image {
    position: relative;
    top: 0;
    transform: none; }
  .collections-template .search-recommendations .product-tile .image-container .primary-image .gray-overlay {
    position: absolute;
    opacity: 0.03;
    background-color: #000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; }

.collections-template .search-recommendations .cta-button {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  min-width: 137px;
  text-align: center;
  transition: 0.3s ease all;
  text-transform: capitalize;
  padding: 10px;
  color: #1b1c1e;
  border: 1px solid #1b1c1e;
  background-color: #fff; }
  .collections-template .search-recommendations .cta-button:hover {
    color: #595959 !important;
    border-color: #595959; }

.page-personalization {
  position: relative; }
  .page-personalization .breadcrumbs-section {
    display: none; }
  .page-personalization .personalization-banner-image {
    width: 100%;
    position: relative;
    text-align: center;
    color: #fff; }
    .page-personalization .personalization-banner-image .content-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media (min-width: 768px) {
        .page-personalization .personalization-banner-image .content-text {
          width: 30%; } }
      @media (min-width: 1200px) {
        .page-personalization .personalization-banner-image .content-text {
          width: 35%; } }
      .page-personalization .personalization-banner-image .content-text .content .collection-name {
        letter-spacing: 2px;
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 16px; }
        @media (min-width: 768px) {
          .page-personalization .personalization-banner-image .content-text .content .collection-name {
            font-size: 14px;
            line-height: 14px;
            margin-bottom: 10px; } }
      .page-personalization .personalization-banner-image .content-text .content .banner-header {
        font-family: "ProximaNova";
        font-weight: 300;
        font-size: 30px;
        line-height: 32px; }
        @media (min-width: 1200px) {
          .page-personalization .personalization-banner-image .content-text .content .banner-header {
            font-size: 54px;
            line-height: 58px;
            letter-spacing: -0.1px;
            white-space: pre-line; } }
      .page-personalization .personalization-banner-image .content-text .content .description {
        font-size: 15px;
        line-height: 20px;
        font-weight: 400; }
  .page-personalization .tumi-service {
    margin: 80px auto;
    padding: 0; }
    .page-personalization .tumi-service .text-content {
      margin: auto;
      padding: 0;
      padding-top: 40px; }
      .page-personalization .tumi-service .text-content .title {
        margin-bottom: 24px;
        font-size: 30px;
        line-height: 36px;
        text-align: center; }
      .page-personalization .tumi-service .text-content .description {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        color: #595959;
        font-size: 15px;
        line-height: 20px; }
      .page-personalization .tumi-service .text-content .button {
        padding: 0 20px;
        margin: 0;
        min-width: 128px;
        background-color: #1b1c1e;
        color: #fff;
        text-transform: capitalize;
        display: inline-block;
        text-align: center;
        border: none;
        border-radius: 0;
        cursor: pointer;
        height: 44px;
        font-size: 15px;
        line-height: 44px;
        border: 1px solid #1b1c1e; }
      .page-personalization .tumi-service .text-content .secondary-button {
        background-color: #fff;
        color: #1b1c1e;
        width: 100%;
        margin-top: 20px; }
      @media (min-width: 768px) {
        .page-personalization .tumi-service .text-content {
          padding-top: 0; } }
      @media (min-width: 992px) {
        .page-personalization .tumi-service .text-content {
          max-width: 66%; } }
    .page-personalization .tumi-service .tumi-service-list {
      list-style: none; }
      .page-personalization .tumi-service .tumi-service-list li {
        border-bottom: 1px solid #ccc;
        padding: 20px 0; }
        .page-personalization .tumi-service .tumi-service-list li:last-child {
          border: 0; }
      .page-personalization .tumi-service .tumi-service-list a {
        position: relative; }
        .page-personalization .tumi-service .tumi-service-list a::after {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xOS43NTQzIDZIMCIgc3Ryb2tlPSIjMUIxQzFFIi8+DQo8cGF0aCBkPSJNMTQuOTAwNCAxTDE5Ljc1NDggNkwxNC45MDA0IDExIiBzdHJva2U9IiMxQjFDMUUiLz4NCjwvc3ZnPg0K") !important;
          width: 20px;
          height: 12px;
          position: absolute;
          right: 12px;
          content: '';
          transition: transform 0.3s ease; }
        .page-personalization .tumi-service .tumi-service-list a:hover::after {
          transform: translate3d(5px, 0, 0); }
      .page-personalization .tumi-service .tumi-service-list .cta-link-name {
        margin: 0;
        margin-left: 15px;
        text-align: left;
        font-size: 15px;
        line-height: 20px; }
      .page-personalization .tumi-service .tumi-service-list .img-wrapper {
        height: 48px;
        width: 48px;
        border-radius: 50%;
        background-color: #f1f1f1; }
        .page-personalization .tumi-service .tumi-service-list .img-wrapper .monogram-icon {
          width: 24px;
          height: 24px; }
    .page-personalization .tumi-service .cta-single a {
      width: 343px; }
      .page-personalization .tumi-service .cta-single a:hover {
        background-color: #444; }
      @media (min-width: 576px) {
        .page-personalization .tumi-service .cta-single a {
          padding-bottom: 80px;
          width: 250px; } }
      @media (min-width: 768px) {
        .page-personalization .tumi-service .cta-single a {
          width: 332px; } }
      @media (min-width: 992px) {
        .page-personalization .tumi-service .cta-single a {
          width: 350px; } }
    @media (min-width: 768px) {
      .page-personalization .tumi-service {
        margin: 100px auto;
        padding: 0 32px; } }
    @media (min-width: 992px) {
      .page-personalization .tumi-service {
        padding: 0 120px; } }
  .page-personalization .product-recommendation-listing,
  .page-personalization .product-listing {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    max-width: 1700px;
    margin: 20px auto; }
    @media (min-width: 768px) {
      .page-personalization .product-recommendation-listing,
      .page-personalization .product-listing {
        padding: 0 120px; } }
    .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide,
    .page-personalization .product-listing .swiper-wrapper .swiper-slide {
      width: 66%; }
      @media (min-width: 768px) {
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide {
          width: 100%; } }
      @media (min-width: 992px) {
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile:hover .image-container,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile:hover .image-container {
          background: linear-gradient(0deg, #000, transparent) no-repeat bottom;
          background-size: 100% 40%; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile:hover .cart-and-ipay,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile:hover .cart-and-ipay {
          opacity: 1 !important; } }
      .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .product-bookmark,
      .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .product-bookmark {
        display: none !important; }
      .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .primary-image,
      .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .primary-image {
        position: relative;
        z-index: -2; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .primary-image .tile-image,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .primary-image .tile-image {
          position: absolute;
          z-index: -2;
          left: 0;
          top: 50%;
          transform: translateY(-50%); }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .primary-image .image-wrapper,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .primary-image .image-wrapper {
          transition: background-color linear 0.3s; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .primary-image .gray-overlay,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .primary-image .gray-overlay {
          position: absolute;
          opacity: 0.03;
          background-color: #000;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          z-index: -1; }
      .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body,
      .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body {
        position: relative;
        padding: 0; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .title-messages,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .title-messages {
          display: none; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay {
          display: none; }
          @media (min-width: 992px) {
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay {
              display: block;
              opacity: 0;
              position: absolute;
              bottom: 150%;
              width: 100%;
              transition: opacity linear 0.1s;
              margin: 0; }
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart {
                display: inline-block;
                cursor: pointer;
                min-width: 137px;
                height: 44px;
                text-align: center;
                transition: 0.3s ease all;
                text-transform: capitalize;
                position: relative;
                z-index: 1;
                line-height: 16px;
                padding-top: 8px;
                padding-bottom: 8px;
                color: #fff;
                border-radius: 0;
                border: 1px solid #1b1c1e;
                background-color: #1b1c1e;
                background-color: #fff;
                color: #000; }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:hover, .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:focus, .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:active,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:hover,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:focus,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:active {
                  color: #fff;
                  border-color: #595959;
                  background-color: #595959;
                  box-shadow: none; }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:disabled,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart:disabled {
                  background-color: #ccc; }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart .fa,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-body .cart-and-ipay .add-to-cart .fa {
                  display: none; } }
      .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer,
      .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer {
        border-top: 1px solid #ccc;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -ms-flex-align: center;
            align-items: center;
        height: 44px;
        padding-top: 10px; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute {
          margin-top: 0;
          padding-right: 0;
          margin-right: 0; }
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
                align-items: center; }
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item {
              margin-right: 5px; }
              @media (min-width: 768px) {
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item {
                  margin-right: 2px; } }
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector {
                display: -ms-flexbox;
                display: flex;
                -ms-flex-align: center;
                    align-items: center;
                -ms-flex-pack: center;
                    justify-content: center;
                width: 20px;
                height: 20px; }
                @media (min-width: 1200px) {
                  .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector,
                  .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector {
                    width: 24px;
                    height: 24px; } }
                @media (min-width: 1600px) {
                  .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector,
                  .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector {
                    width: 26px;
                    height: 26px; } }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector .swatch-circle,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector .swatch-circle {
                  width: 14px;
                  height: 14px;
                  margin-right: 0; }
                  @media (min-width: 1200px) {
                    .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector .swatch-circle,
                    .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector .swatch-circle {
                      width: 18px;
                      height: 18px; } }
                  @media (min-width: 1600px) {
                    .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector .swatch-circle,
                    .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item .attr-selector .swatch-circle {
                      width: 20px;
                      height: 20px; } }
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle {
                width: 20px;
                height: 20px; }
                @media (min-width: 1200px) {
                  .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle,
                  .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle {
                    width: 24px;
                    height: 24px; } }
                @media (min-width: 1600px) {
                  .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle,
                  .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle {
                    width: 26px;
                    height: 26px; } }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle::before,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .watch-item.selected .swatch-circle::before {
                  content: "";
                  border: 3px solid #fff;
                  border-radius: 100%;
                  position: absolute;
                  top: 0;
                  right: 0;
                  bottom: 0;
                  left: 0; }
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more {
              display: -ms-flexbox;
              display: flex; }
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more a,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more a {
                color: #595959; }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more a::before,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more a::before {
                  content: "+"; }
                .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more a:hover,
                .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .color-swatchs .swatch-more a:hover {
                  text-decoration: underline;
                  color: #595959; }
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-mobile,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-mobile {
            display: -ms-flexbox;
            display: flex; }
            @media (min-width: 768px) {
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-mobile,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-mobile {
                display: none; } }
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-tablet,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-tablet {
            display: none; }
            @media (min-width: 768px) {
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-tablet,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute .attribute .d-tablet {
                display: -ms-flexbox;
                display: flex; } }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute[data-attr="productSize"],
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-attribute[data-attr="productSize"] {
          display: none; }
        .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview,
        .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview {
          padding-bottom: 0; }
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart,
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global,
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me {
            display: block;
            text-align: center;
            font-weight: 500;
            font-size: 15px;
            display: inline-block;
            cursor: pointer;
            min-width: 137px;
            height: 44px;
            text-align: center;
            transition: 0.3s ease all;
            text-transform: capitalize;
            position: relative;
            z-index: 1;
            line-height: 16px;
            padding-top: 8px;
            padding-bottom: 8px;
            color: #1b1c1e;
            border: 1px solid #1b1c1e;
            background-color: #fff;
            height: 32px;
            padding-left: 0;
            padding-right: 0;
            min-width: 100px; }
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart:hover, .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart:focus, .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart:active,
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global:hover,
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global:focus,
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global:active,
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:hover,
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:focus,
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:active,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart:hover,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart:focus,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart:active,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global:hover,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global:focus,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global:active,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:hover,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:focus,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:active {
              color: #595959 !important;
              border-color: #595959;
              background-color: #fff; }
            @media (min-width: 1200px) {
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart,
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global,
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me {
                min-width: 110px; } }
            @media (min-width: 1600px) {
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart,
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global,
              .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .add-to-cart-global,
              .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me {
                min-width: 130px; } }
          .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me,
          .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me {
            border: 0 !important;
            background-color: rgba(0, 0, 0, 0.1); }
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me[disabled],
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me[disabled] {
              pointer-events: none; }
            .page-personalization .product-recommendation-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:hover,
            .page-personalization .product-listing .swiper-wrapper .swiper-slide .product-tile .tile-footer .tile-quickview .notify-me:hover {
              background-color: rgba(0, 0, 0, 0.2); }
    @media (min-width: 992px) {
      .page-personalization .product-recommendation-listing .swiper-btn-next::after,
      .page-personalization .product-recommendation-listing .swiper-btn-prev::after,
      .page-personalization .product-listing .swiper-btn-next::after,
      .page-personalization .product-listing .swiper-btn-prev::after {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xOS43NTQzIDZIMCIgc3Ryb2tlPSIjRkZGRkZGIi8+DQo8cGF0aCBkPSJNMTQuOTAwNCAxTDE5Ljc1NDggNkwxNC45MDA0IDExIiBzdHJva2U9IiNGRkZGRkYiLz4NCjwvc3ZnPg0K") !important;
        content: " ";
        background-color: #000;
        padding: 24px;
        color: #fff;
        position: absolute;
        top: 39%;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer; } }
    .page-personalization .product-recommendation-listing .swiper-btn-next:not([role="button"]),
    .page-personalization .product-recommendation-listing .swiper-btn-prev:not([role="button"]),
    .page-personalization .product-listing .swiper-btn-next:not([role="button"]),
    .page-personalization .product-listing .swiper-btn-prev:not([role="button"]) {
      display: none; }
    @media (min-width: 768px) {
      .page-personalization .product-recommendation-listing .swiper-btn-next::after,
      .page-personalization .product-listing .swiper-btn-next::after {
        right: 0;
        margin-right: 40px; } }
    @media (min-width: 768px) {
      .page-personalization .product-recommendation-listing .swiper-btn-prev::after,
      .page-personalization .product-listing .swiper-btn-prev::after {
        left: 0;
        transform: scaleX(-1);
        margin-left: 40px; } }
    .page-personalization .product-recommendation-listing .swiper-button-disabled,
    .page-personalization .product-listing .swiper-button-disabled {
      display: none; }
    .page-personalization .product-recommendation-listing .swiper-prev::after,
    .page-personalization .product-recommendation-listing .swiper-next::after,
    .page-personalization .product-listing .swiper-prev::after,
    .page-personalization .product-listing .swiper-next::after {
      display: none; }
  .page-personalization .tumi-shop-plus-btn {
    width: 85%;
    max-width: 1400px;
    padding-top: 2%;
    padding-bottom: 1%;
    margin: auto; }

.campaign-form-content .container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 600px;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center; }

.campaign-form-content .calendar-section {
  text-align: center; }
  .campaign-form-content .calendar-section .calendar {
    font-size: 9px; }
    @media (min-width: 576px) {
      .campaign-form-content .calendar-section .calendar {
        font-size: inherit; } }

.campaign-form-content .date-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
  margin-top: 10px; }
  .campaign-form-content .date-header .day {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer; }
    @media (min-width: 768px) {
      .campaign-form-content .date-header .day {
        min-width: 50px; } }
    @media (min-width: 1200px) {
      .campaign-form-content .date-header .day {
        min-width: none; } }

.campaign-form-content .calendar-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
  margin-top: 10px; }
  .campaign-form-content .calendar-body .day-of-week {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer; }
    .campaign-form-content .calendar-body .day-of-week.selected {
      background-color: #007bff !important;
      color: white; }
    .campaign-form-content .calendar-body .day-of-week.disabled {
      color: #aaa;
      pointer-events: none; }
    .campaign-form-content .calendar-body .day-of-week:hover:not(.disabled) {
      background-color: #ddd; }

.campaign-form-content .time-section {
  width: 100%;
  text-align: center; }
  @media (min-width: 1200px) {
    .campaign-form-content .time-section {
      width: auto; } }

.campaign-form-content .time-slots {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px 0; }
  @media (min-width: 1200px) {
    .campaign-form-content .time-slots {
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: center;
          align-items: center; } }

.campaign-form-content .time-slot {
  padding: 10px 20px;
  border: 1px solid #007bff;
  color: #007bff;
  background: #aaa;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
  pointer-events: none; }
  .campaign-form-content .time-slot.selected {
    background-color: #007bff !important;
    color: #fff; }
  .campaign-form-content .time-slot.active {
    pointer-events: auto;
    cursor: pointer;
    background: #fff; }

.campaign-form-content .nav-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 10px; }

.search-results-wrapper .search-result-content .product-grid .strike-through {
  margin-right: 0.1rem; }
  @media (min-width: 1600px) {
    .search-results-wrapper .search-result-content .product-grid .strike-through {
      margin-right: 0.938rem; } }

.collections-template .content-slot-wrapper .firstly-content .hero-banner {
  padding: 0;
  box-sizing: border-box; }

.collections-template .sub-categories-container {
  margin-top: 32px;
  padding: 0 16px; }
  .collections-template .sub-categories-container .nav-tabs {
    padding: 2px 2px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    cursor: pointer;
    margin: 40px 0 62px;
    overflow-x: auto;
    overflow-y: hidden; }
    .collections-template .sub-categories-container .nav-tabs .nav-item {
      max-width: 156px;
      text-align: center; }
      .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link {
        display: inline-block;
        width: 156px;
        padding-top: 17px;
        padding-bottom: 17px;
        letter-spacing: 0.005em;
        font-size: 15px;
        line-height: 16px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-right: none;
        border-left: none;
        border-top: none;
        border-bottom: 3px solid transparent; }
        @media (min-width: 768px) {
          .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link {
            width: 260px;
            text-align: center;
            letter-spacing: unset; } }
        @media (min-width: 992px) {
          .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link {
            width: 170px; } }
      .collections-template .sub-categories-container .nav-tabs .nav-item .nav-link.active {
        border-bottom: 3px solid #000;
        color: #000;
        background-color: transparent; }
      @media (min-width: 768px) {
        .collections-template .sub-categories-container .nav-tabs .nav-item {
          max-width: 170px; } }
      @media (min-width: 992px) {
        .collections-template .sub-categories-container .nav-tabs .nav-item {
          max-width: 260px; } }
    .collections-template .sub-categories-container .nav-tabs .nav-item > .nav-link {
      color: #000;
      background-color: transparent; }
      @media (min-width: 768px) {
        .collections-template .sub-categories-container .nav-tabs .nav-item > .nav-link {
          color: #000; } }
    .collections-template .sub-categories-container .nav-tabs .nav-link:hover {
      border-color: transparent;
      cursor: pointer; }
    .collections-template .sub-categories-container .nav-tabs .nav-link:focus {
      outline: 1px dashed #000; }
    @media (min-width: 768px) {
      .collections-template .sub-categories-container .nav-tabs {
        margin: 32px 0 64px; } }
    @media (min-width: 992px) {
      .collections-template .sub-categories-container .nav-tabs {
        margin: 44px 0 80px; } }
  .collections-template .sub-categories-container .container {
    padding: 0;
    margin-bottom: 60px; }
    .collections-template .sub-categories-container .container .row {
      background-color: #fafafa; }
      .collections-template .sub-categories-container .container .row .right-section {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center; }
        .collections-template .sub-categories-container .container .row .right-section .right-container {
          padding: 40px 21px;
          margin: 0 auto; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .tile-image-container .tile-wrapper-1 {
            padding-right: 8px;
            padding-left: 0; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .tile-image-container .tile-wrapper-2 {
            padding: 0 4px; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .tile-image-container .tile-wrapper-3 {
            padding-left: 8px;
            padding-right: 0;
            margin-right: 0; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text {
            margin-top: 40px; }
            .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text .title {
              color: #000;
              font-size: 20px;
              line-height: 20px; }
            .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text .description {
              margin-top: 11px;
              color: #595959;
              font-size: 15px;
              line-height: 20px; }
          .collections-template .sub-categories-container .container .row .right-section .right-container .shop-all-cta {
            margin-top: 20px; }
            @media (min-width: 768px) {
              .collections-template .sub-categories-container .container .row .right-section .right-container .shop-all-cta {
                margin-top: 34px; } }
            @media (min-width: 992px) {
              .collections-template .sub-categories-container .container .row .right-section .right-container .shop-all-cta {
                margin-top: 20px; } }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container .padding-right-text {
              padding-right: 81px; } }
          .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text-top {
            padding-left: 0; }
            @media (min-width: 992px) {
              .collections-template .sub-categories-container .container .row .right-section .right-container .contect-text-top {
                margin-top: 0; } }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container .padding-right-image-tile {
              padding: 0 0 0 81px; } }
          @media (min-width: 768px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container {
              padding: 20px 21px; } }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .row .right-section .right-container {
              padding-top: 40px;
              max-width: calc(68% + 40px); } }
    .collections-template .sub-categories-container .container .flex-md-column .right-section .right-container .d-md-flex {
      -ms-flex-align: center;
          align-items: center; }
    @media (min-width: 992px) {
      .collections-template .sub-categories-container .container .flex-md-column .right-section .right-container {
        max-width: 100%;
        padding: 60px 80px 40px; } }
    .collections-template .sub-categories-container .container .no-gutters {
      margin-left: 0;
      margin-right: 0; }
    .collections-template .sub-categories-container .container .product-grid {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
          grid-template-columns: repeat(2, 1fr);
      grid-gap: 32px;
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0;
      background-color: #fff; }
      @media (min-width: 768px) {
        .collections-template .sub-categories-container .container .product-grid {
          row-gap: 45px;
          column-gap: 32px; } }
      @media (min-width: 992px) {
        .collections-template .sub-categories-container .container .product-grid {
          -ms-grid-columns: (1fr)[3];
              grid-template-columns: repeat(3, 1fr); } }
      .collections-template .sub-categories-container .container .product-grid .product-tile-col {
        max-width: unset;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden; }
        @media (min-width: 992px) {
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile:hover .product-comparition {
            display: -ms-flexbox;
            display: flex; }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile:hover .product-bookmark {
            display: block; } }
        .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image {
          position: relative; }
          @media (min-width: 992px) {
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image:hover .pagination {
              display: -ms-flexbox;
              display: flex; } }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .tile-image {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .image-wrapper {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: justify;
                justify-content: space-between;
            -ms-flex-direction: row;
                flex-direction: row;
            position: absolute;
            top: 0;
            height: 100%;
            width: 100%;
            background: none; }
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .image-wrapper::after {
              content: '';
              position: absolute;
              opacity: 0.03;
              background-color: #000;
              left: 0;
              top: 0;
              height: 100%;
              width: 100%;
              z-index: 0; }
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .image-wrapper .image-items {
              -ms-flex-preferred-size: 100%;
                  flex-basis: 100%;
              z-index: 1; }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .pagination {
            position: absolute;
            bottom: 10px;
            width: 100%;
            z-index: 1;
            display: none;
            -ms-flex-pack: center;
                justify-content: center; }
            .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .pagination span {
              box-sizing: content-box;
              -ms-flex: 0 1 auto;
                  flex: 0 1 auto;
              width: 17px;
              height: 2px;
              margin-right: 8px;
              margin-left: 0;
              text-indent: -999px;
              cursor: pointer;
              background-color: #ccc;
              background-clip: padding-box;
              border-top: 10px solid transparent;
              border-bottom: 10px solid transparent;
              transition: opacity 0.6s ease;
              border-radius: unset;
              display: inline-block; }
              .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .pagination span.active {
                background-color: #1b1c1e; }
          .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .primary-image .gray-overlay {
            position: absolute;
            opacity: 0.03;
            background-color: #000;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%; }
        .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .add-to-cart-global,
        .collections-template .sub-categories-container .container .product-grid .product-tile-col .product-tile .notify-me {
          display: none; }
        @media (min-width: 992px) {
          .collections-template .sub-categories-container .container .product-grid .product-tile-col {
            padding-left: 18px;
            padding-right: 18px;
            margin-bottom: 14px; } }
      @media (min-width: 992px) {
        .collections-template .sub-categories-container .container .product-grid .product-promotion-col {
          max-height: 688.906px; } }
      .collections-template .sub-categories-container .container .product-grid .two-tile {
        -ms-grid-column: span 2;
            grid-column: span 2; }
  .collections-template .sub-categories-container .best-seller-heading {
    color: #000;
    text-align: center;
    margin-top: 100px;
    font-size: 30px;
    line-height: 16px; }
    @media (min-width: 768px) {
      .collections-template .sub-categories-container .best-seller-heading {
        margin-top: 71px;
        letter-spacing: -0.1px;
        font-size: 30px;
        line-height: 34px; } }
    @media (min-width: 992px) {
      .collections-template .sub-categories-container .best-seller-heading {
        margin-top: 100px;
        font-size: 42px;
        line-height: 58px; } }
  @media (min-width: 768px) {
    .collections-template .sub-categories-container {
      padding: 0 32px; } }
  @media (min-width: 992px) {
    .collections-template .sub-categories-container {
      padding: 0 120px; } }

.collections-template .haft-image-container {
  position: relative;
  min-height: 30vh; }
  .collections-template .haft-image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (min-width: 992px) {
    .collections-template .haft-image-container + div {
      min-height: 60vh; } }

.collections-template .collections-sticky-bar {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9;
  transition: top 0.5s;
  transition-duration: 0.5s; }

.collections-template .button {
  padding: 0 20px;
  margin: 0;
  min-width: 128px;
  background-color: #1b1c1e;
  color: #fff;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  border: none;
  border-radius: 0;
  cursor: pointer;
  height: 44px;
  font-size: 15px;
  line-height: 44px;
  -webkit-font-smoothing: antialiased; }

.collections-template button:hover {
  text-decoration: none;
  background: #595959; }

.collections-template .button-primary {
  background-color: #1b1c1e;
  color: #fff; }

.collections-template .button-primary:hover {
  background-color: #595959; }

.collections-template .button-secondary {
  background-color: transparent;
  color: #1b1c1e;
  border: 1px solid #1b1c1e; }

.collections-template .button-secondary:hover {
  background-color: #fff;
  color: #595959;
  text-decoration: none;
  border: 1px solid #595959; }

.collections-template .grid-footer {
  display: none; }

.collections-template .search-recommendations .row {
  background-color: transparent !important; }

.collections-template .search-recommendations .tile-item,
.collections-template .search-recommendations .recommendation-banner {
  margin-bottom: 30px; }

.collections-template .search-recommendations .recommendation-banner {
  position: relative;
  min-height: 30vh;
  overflow: hidden; }
  .collections-template .search-recommendations .recommendation-banner img {
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(100% - 32px);
    object-fit: cover; }

.collections-template .search-recommendations .product-tile .image-container .primary-image {
  position: relative; }
  .collections-template .search-recommendations .product-tile .image-container .primary-image img.background {
    display: none; }
  .collections-template .search-recommendations .product-tile .image-container .primary-image img.tile-image {
    position: relative;
    top: 0;
    transform: none; }
  .collections-template .search-recommendations .product-tile .image-container .primary-image .gray-overlay {
    position: absolute;
    opacity: 0.03;
    background-color: #000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; }

.collections-template .search-recommendations .cta-button {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  min-width: 137px;
  text-align: center;
  transition: 0.3s ease all;
  text-transform: capitalize;
  padding: 10px;
  color: #1b1c1e;
  border: 1px solid #1b1c1e;
  background-color: #fff; }
  .collections-template .search-recommendations .cta-button:hover {
    color: #595959 !important;
    border-color: #595959; }

.collections-template .search-recommendations .promotions {
  left: 18px; }
  @media (min-width: 768px) {
    .collections-template .search-recommendations .promotions {
      left: 20px; } }

.collections-template .search-recommendations .product-tile .product-bookmark .bookmark {
  right: 18px; }

.category-content .category-content-link {
  text-decoration: underline; }
  .category-content .category-content-link:hover {
    color: #bb2131; }
