/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden */
.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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: scaleX(1);
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(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-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: initial;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:focus {
  outline: none;
}
html {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: #f6f5f5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  width: 100%;
  font-family: Raleway, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: auto;
  color: #000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:after {
  content: '320';
  display: none;
}
.oswald {
  font-family: Oswald, sans-serif;
  font-weight: 300;
}
.poppins {
  font-family: Poppins, sans-serif;
  font-weight: 400;
}
.raleway {
  font-family: Raleway, sans-serif;
  font-weight: 500;
}
a {
  color: #251e19;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #9d9c9c;
  text-decoration: none;
}
.button {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 700;
  background-color: #251e19;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  display: inline-block;
  border-radius: 5px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.button,
.button:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  background-color: #fff;
  color: #251e19;
}
.button.off-green {
  background-color: #cfdcd3;
  color: #251e19;
}
.button.off-green:hover {
  background-color: #251e19;
  color: #fff;
}
.old-price {
  text-decoration: line-through;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1em;
}
h1 {
  font-size: 40px;
  font-weight: 300;
  font-family: Poppins;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  h1 {
    font-size: 32px;
  }
}
h2 {
  font-size: 30px;
  font-weight: 300;
  font-family: Poppins;
  margin-bottom: 10px;
}
@media screen and (max-width: 668px) {
  h2 {
    font-size: 24px;
  }
}
h3 {
  font-size: 20px;
  font-weight: 300;
  font-family: Poppins;
  margin-bottom: 7px;
}
@media screen and (max-width: 668px) {
  h3 {
    font-size: 16px;
  }
}
.strike {
  text-decoration: line-through;
}
hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
img {
  width: 100%;
  height: auto;
  line-height: 0;
}
b,
strong {
  font-weight: 700;
}
.light {
  font-weight: 300;
}
.heavy {
  font-weight: 700;
}
.wow {
  visibility: hidden;
}
div.section,
section {
  margin: 0 auto;
}
div.section.full,
section.full {
  width: 100%;
  max-width: 1730px;
}
div.section.wide,
section.wide {
  width: 100%;
  max-width: 1340px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 668px) {
  div.section.wide,
  section.wide {
    padding-left: 14px;
    padding-right: 14px;
  }
}
div.section.wide-no-padding,
section.wide-no-padding {
  width: 100%;
  max-width: 1340px;
}
div.section.wide-mega-no-padding,
section.wide-mega-no-padding {
  width: 100%;
  max-width: 1730px;
}
div.section.wide-mega,
section.wide-mega {
  width: 100%;
  max-width: 1730px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 668px) {
  div.section.wide-mega,
  section.wide-mega {
    padding-left: 14px;
    padding-right: 14px;
  }
}
div.section.wide-to-full-on-mobile,
section.wide-to-full-on-mobile {
  width: 100%;
  max-width: 1340px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 668px) {
  div.section.wide-to-full-on-mobile,
  section.wide-to-full-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}
.extra-padding {
  display: block;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .extra-padding {
    padding-top: 30px;
  }
}
.top-nav-ups-holder {
  background-color: #f2ecdd;
  z-index: 100;
  position: absolute;
}
.top-nav-ups-holder .usp-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 12px 24px 13px;
}
@media screen and (max-width: 768px) {
  .top-nav-ups-holder .usp-holder {
    padding: 11px 24px 12px;
  }
}
@media screen and (max-width: 668px) {
  .top-nav-ups-holder .usp-holder {
    padding: 13px 14px 12px;
  }
}
.top-nav-ups-holder .usp-holder .usp {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 700;
}
.top-nav-ups-holder .usp-holder .usp span {
  color: #ffb4d2;
}
@media screen and (max-width: 668px) {
  .top-nav-ups-holder .usp-holder .usp {
    display: none;
  }
  .top-nav-ups-holder .usp-holder .usp:first-child,
  .top-nav-ups-holder .usp-holder .usp:nth-child(2) {
    display: inline-block;
  }
}
.no-top-padding {
  padding-top: 0 !important;
}
nav {
  padding-top: 60px;
  padding-bottom: 6px;
  justify-content: space-between;
}
nav,
nav .logo-and-hamburger {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
nav .logo-and-hamburger {
  max-width: 150px;
}
nav .logo-and-hamburger .ham {
  line-height: 0;
}
nav .logo-and-hamburger .ham img {
  height: 37px;
}
nav .logo-and-hamburger .logo {
  margin-left: 10px;
  line-height: 0;
}
nav .logo-and-hamburger .logo img {
  width: 80px;
}
nav .searchbox {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 1px;
  align-items: center;
  justify-content: space-between;
  width: 400px;
}
@media screen and (max-width: 768px) {
  nav .searchbox {
    width: 275px;
  }
}
@media screen and (max-width: 668px) {
  nav .searchbox {
    display: none;
  }
}
nav .searchbox input {
  flex-grow: 1;
  -webkit-appearance: none;
  border: 0;
  height: 35px;
  font-size: 16px;
  padding-left: 10px;
}
nav .searchbox .button-search {
  display: block;
  height: 39px;
  aspect-ratio: 1/1;
  background-color: #afd39a;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .searchbox .button-search img {
  max-width: 21px;
}
nav .info {
  max-width: 150px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
nav .info img {
  width: 24px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 668px) {
  nav .info img {
    width: 30px;
  }
}
nav .info div {
  min-width: 50px;
  justify-content: flex-end;
  text-align: right;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
nav .info div a:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
@media screen and (max-width: 668px) {
  nav .info div {
    min-width: 50px;
  }
}
nav .info .search {
  display: none;
}
@media screen and (max-width: 668px) {
  nav .info .search {
    justify-content: flex-end;
    text-align: right;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    min-width: 50px;
  }
}
@media screen and (max-width: 668px) {
  nav .info .account {
    position: relative;
  }
  nav .info .account.has-favs {
    min-width: 63px;
    padding-right: 13px;
  }
}
@media screen and (max-width: 668px) and (max-width: 668px) {
  nav .info .account.has-favs {
    min-width: 60px;
  }
}
@media screen and (max-width: 668px) {
  nav .info .account.has-favs:after {
    content: attr(favs);
    position: absolute;
    font-size: 14px;
    text-align: center;
    width: 24px;
    height: 24px;
    right: 0;
    border-radius: 50%;
    background-color: #cfdcd3;
    pointer-events: none;
  }
}
nav .info .favourites {
  position: relative;
}
@media screen and (max-width: 668px) {
  nav .info .favourites {
    display: none;
  }
}
nav .info .favourites.has-favs {
  min-width: 63px;
  padding-right: 13px;
}
@media screen and (max-width: 668px) {
  nav .info .favourites.has-favs {
    min-width: 60px;
  }
}
nav .info .favourites.has-favs:after {
  content: attr(favs);
  position: absolute;
  font-size: 14px;
  text-align: center;
  width: 24px;
  height: 24px;
  right: 0;
  border-radius: 50%;
  background-color: #cfdcd3;
  pointer-events: none;
}
nav .info .cart {
  position: relative;
}
nav .info .cart.has-items {
  min-width: 63px;
  padding-right: 13px;
}
@media screen and (max-width: 668px) {
  nav .info .cart.has-items {
    min-width: 60px;
  }
}
nav .info .cart.has-items:after {
  content: attr(items);
  position: absolute;
  font-size: 14px;
  text-align: center;
  width: 24px;
  height: 24px;
  right: 0;
  border-radius: 50%;
  background-color: #cfdcd3;
  pointer-events: none;
}
.top-banner {
  background-color: #e1eded;
  position: relative;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-weight: 300;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .top-banner {
    height: 60px;
  }
}
.top-banner .remove {
  position: absolute;
  top: 12px;
  right: 24px;
}
.top-banner .remove img {
  width: 14px;
}
@media screen and (max-width: 768px) {
  .top-banner {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 668px) {
  .top-banner .show-desktop-and-tablet {
    display: none;
  }
}
.top-banner .show-mobile {
  display: none;
}
@media screen and (max-width: 668px) {
  .top-banner .show-mobile {
    display: inline-block;
  }
}
.desktop-nav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.desktop-nav ul.subpage {
  border-bottom: 1px solid #d1dcd4;
  margin-bottom: 14px;
}
.desktop-nav ul li {
  font-family: Raleway, sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.desktop-nav ul li a {
  text-decoration: none;
  display: block;
  margin-top: 14px;
  margin-bottom: 14px;
  position: relative;
}
.desktop-nav ul li a,
.desktop-nav ul li a:after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.desktop-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 8px;
  background: #cfdcd3;
}
.desktop-nav ul li a.active {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
}
.desktop-nav ul li a.active:after {
  height: 4px;
  background: #251e19;
}
.desktop-nav ul li a.active:after,
.desktop-nav ul li a:hover:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.desktop-nav ul li a:hover:after {
  height: 8px;
  background: #cfdcd3;
}
@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}
.breadcrumb {
  margin-bottom: 25px;
}
.breadcrumb ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumb ul li {
  font-family: Raleway, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #aaa;
}
.breadcrumb ul li a {
  text-decoration: none;
  position: relative;
  padding-right: 15px;
  margin-right: 5px;
}
.breadcrumb ul li a:after {
  content: '/';
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 10px;
  }
}
.no-scroll {
  margin: 0;
  height: 100%;
  overflow: hidden;
}
.mobile-navigation-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #e1eded;
  opacity: 0;
  cursor: none;
  pointer-events: none;
}
.mobile-navigation-holder,
.mobile-navigation-holder.show {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mobile-navigation-holder.show {
  opacity: 1;
  cursor: auto;
  pointer-events: all;
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder.show {
    overflow: auto;
  }
}
.mobile-navigation-holder .holder-of-close {
  position: relative;
}
.mobile-navigation-holder .holder-of-close .close-nav {
  position: absolute;
  top: 61px;
  left: 2px;
  width: 27px;
  height: 27px;
  z-index: 100;
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder .holder-of-close .close-nav {
    position: fixed;
    left: 15px;
  }
}
.mobile-navigation-holder .placement {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder .placement {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}
.mobile-navigation-holder .placement .mobile-navigation {
  width: 80%;
  font-family: Poppins;
}
@media screen and (max-width: 768px) {
  .mobile-navigation-holder .placement .mobile-navigation {
    width: 100%;
  }
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder .placement .mobile-navigation {
    display: block;
    padding-top: 75px;
    position: relative;
  }
}
.mobile-navigation-holder .placement .mobile-navigation h3 {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.mobile-navigation-holder .placement .mobile-navigation .columns {
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder .placement .mobile-navigation .columns {
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.mobile-navigation-holder .placement .mobile-navigation .columns div {
  width: 33.33333%;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder .placement .mobile-navigation .columns div {
    width: 100%;
  }
}
.mobile-navigation-holder .placement .mobile-navigation .columns div ul li {
  font-size: 21px;
  margin-bottom: 15px;
}
.mobile-navigation-holder .placement .mobile-navigation .extra-things {
  padding-top: 60px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 668px) {
  .mobile-navigation-holder .placement .mobile-navigation .extra-things {
    padding-top: 30px;
  }
}
.mobile-navigation-holder .placement .mobile-navigation .extra-things ul li {
  display: inline-block;
  margin: 12px;
  font-size: 18px;
}
.mobile-navigation-holder .placement .mobile-navigation .extra-things:before {
  content: '';
  width: 46px;
  height: 6px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: calc(50% - 23px);
}
.footer {
  background-color: #363636;
  color: #fff;
}
.footer #FailMessage,
.footer #SuccessMessage {
  display: none;
}
.footer footer {
  padding-top: 60px;
  padding-bottom: 30px;
  margin-left: -12px;
  margin-right: -12px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer footer .one-row {
  padding-top: 5px;
  padding-left: 12px;
  padding-right: 12px;
  min-width: 180px;
}
@media screen and (max-width: 768px) {
  .footer footer .one-row:last-child {
    text-align: center;
    width: 100%;
  }
}
.footer footer .one-row img {
  width: 100%;
}
.footer footer .one-row h3 {
  font-size: 18px;
  font-family: Poppins;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer footer .one-row ul {
  margin-bottom: 30px;
}
.footer footer .one-row ul li {
  line-height: 1.25em;
  margin-bottom: 10px;
}
.footer footer .one-row a {
  color: #fff;
}
.footer footer .one-row .newsletter {
  border: 1px solid #e2e2e2;
  background-color: #fff;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 1px;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .footer footer .one-row .newsletter {
    width: 100%;
  }
}
.footer footer .one-row .newsletter input {
  flex-grow: 1;
  -webkit-appearance: none;
  border: 0;
  height: 35px;
  font-size: 16px;
  padding-left: 10px;
}
.footer footer .one-row .newsletter a {
  color: #251e19;
  font-weight: 400;
}
@media screen and (max-width: 668px) {
  .footer footer .one-row .klarna-stuff {
    width: 100%;
  }
}
.footer .copy {
  border-top: 1px solid hsla(0, 0%, 100%, 0.15);
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
  font-family: Poppins;
  font-weight: 700;
}
.big-puff-holder {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .big-puff-holder {
    padding-bottom: 15px;
  }
}
.big-puff-holder .left {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 1/5;
  grid-row: 1/2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #f2ecdd;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .big-puff-holder .left {
    min-height: 350px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/6;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder .left {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
    background-color: rgba(37, 30, 25, 0.4);
    min-height: 450px;
  }
}
.big-puff-holder .left .content {
  text-align: center;
  padding: 24px;
}
@media screen and (max-width: 668px) {
  .big-puff-holder .left .content {
    color: #fff;
  }
}
.big-puff-holder .left .content h1 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .big-puff-holder .left .content h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
.big-puff-holder .left .content h2 {
  font-family: Poppins;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .big-puff-holder .left .content h2 {
    margin-bottom: 12px;
    font-size: 24px;
  }
}
.big-puff-holder .left .content p {
  font-size: 18px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .big-puff-holder .left .content p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder .left .content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder .left .content .button {
    background-color: #cfdcd3;
    color: #251e19;
  }
}
.big-puff-holder .left.subpage {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 1/5;
  grid-row: 1/2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #e1eded;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .big-puff-holder .left.subpage {
    min-height: 350px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/6;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder .left.subpage {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
    background-color: rgba(37, 30, 25, 0.4);
    min-height: 450px;
  }
}
.big-puff-holder .right {
  -ms-grid-column: 5;
  -ms-grid-column-span: 8;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 5/13;
  grid-row: 1/2;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.big-puff-holder .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 668px) {
  .big-puff-holder .right img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .big-puff-holder .right {
    aspect-ratio: auto;
    -ms-grid-column: 6;
    -ms-grid-column-span: 7;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 6/13;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder .right {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
    z-index: -1;
  }
}
.big-puff-holder.inverted {
  flex-direction: row-reverse;
}
.big-puff-holder.inverted,
.big-puff-holder.inverted .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.big-puff-holder.inverted .left {
  background-color: #f2ecdd;
  align-items: center;
  justify-content: center;
  width: 60%;
}
@media screen and (max-width: 668px) {
  .big-puff-holder.inverted .left {
    background-color: rgba(37, 30, 25, 0.4);
  }
}
.big-puff-holder.inverted .left .content {
  text-align: left;
  padding: 48px;
}
@media screen and (max-width: 668px) {
  .big-puff-holder.inverted .left .content {
    color: #fff;
  }
}
.big-puff-holder.inverted .left .content p {
  font-size: 18px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .big-puff-holder.inverted .left .content p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder.inverted .left .content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 668px) {
  .big-puff-holder.inverted .left .content .button {
    background-color: #251e19;
    color: #fff;
  }
}
.big-puff-holder.inverted .right {
  position: relative;
  width: 40%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.big-puff-holder.inverted .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
@media screen and (max-width: 668px) {
  .big-puff-holder.inverted .right img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .big-puff-holder.inverted .right {
    aspect-ratio: auto;
  }
}
.fullscreen-campaigns {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .fullscreen-campaigns {
    padding-bottom: 15px;
  }
}
.fullscreen-campaigns .left,
.fullscreen-campaigns .right {
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 1/7;
  grid-row: 1/2;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 668px) {
  .fullscreen-campaigns .left,
  .fullscreen-campaigns .right {
    height: 245px;
    aspect-ratio: auto;
  }
}
.fullscreen-campaigns .left img,
.fullscreen-campaigns .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  z-index: -1;
}
.fullscreen-campaigns .left .content-holder,
.fullscreen-campaigns .right .content-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-campaigns .left .content-holder .holder,
.fullscreen-campaigns .right .content-holder .holder {
  color: #fff;
  text-align: center;
  background-color: rgba(37, 30, 25, 0.57);
  width: 90%;
  padding: 60px;
}
@media screen and (max-width: 668px) {
  .fullscreen-campaigns .left .content-holder .holder,
  .fullscreen-campaigns .right .content-holder .holder {
    padding: 10px;
  }
}
.fullscreen-campaigns .left .content-holder .holder h2,
.fullscreen-campaigns .right .content-holder .holder h2 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
.fullscreen-campaigns .left .content-holder .holder h2.intro,
.fullscreen-campaigns .right .content-holder .holder h2.intro {
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .fullscreen-campaigns .left .content-holder .holder h2.intro,
  .fullscreen-campaigns .right .content-holder .holder h2.intro {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .fullscreen-campaigns .left .content-holder .holder h2,
  .fullscreen-campaigns .right .content-holder .holder h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 668px) {
  .fullscreen-campaigns .left .content-holder .holder h2,
  .fullscreen-campaigns .right .content-holder .holder h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 668px) {
  .fullscreen-campaigns .left .content-holder .holder .button,
  .fullscreen-campaigns .right .content-holder .holder .button {
    font-size: 14px;
  }
}
.fullscreen-campaigns .right {
  -ms-grid-column: 7;
  -ms-grid-column-span: 6;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 7/13;
  grid-row: 1/2;
}
.brand-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .brand-grid {
    padding-bottom: 15px;
  }
}
.brand-grid .brand-holder {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.brand-grid .brand-holder:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 1/5;
  grid-row: 1/2;
}
.brand-grid .brand-holder:nth-child(2) {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 5/9;
  grid-row: 1/2;
}
.brand-grid .brand-holder:nth-child(3) {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 9/13;
  grid-row: 1/2;
}
.brand-grid .brand-holder:nth-child(4) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-column: 1/5;
  grid-row: 2/3;
}
.brand-grid .brand-holder:nth-child(5) {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-column: 5/9;
  grid-row: 2/3;
}
.brand-grid .brand-holder:nth-child(6) {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-column: 9/13;
  grid-row: 2/3;
}
@media screen and (max-width: 668px) {
  .brand-grid .brand-holder:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/7;
    grid-row: 1/2;
  }
  .brand-grid .brand-holder:nth-child(2) {
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 7/13;
    grid-row: 1/2;
  }
  .brand-grid .brand-holder:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-column: 1/7;
    grid-row: 2/3;
  }
  .brand-grid .brand-holder:nth-child(4) {
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-column: 7/13;
    grid-row: 2/3;
  }
  .brand-grid .brand-holder:nth-child(5) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-column: 1/7;
    grid-row: 3/4;
  }
  .brand-grid .brand-holder:nth-child(6) {
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-column: 7/13;
    grid-row: 3/4;
  }
}
.brand-grid .brand-holder img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  z-index: -1;
}
.brand-grid .brand-holder a {
  text-decoration: none;
}
.brand-grid .brand-holder .content-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-grid .brand-holder .content-holder,
.brand-grid .brand-holder .content-holder:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.brand-grid .brand-holder .content-holder:after {
  content: '';
  background-color: rgba(37, 30, 25, 0);
}
@media screen and (max-width: 768px) {
  .brand-grid .brand-holder .content-holder:after {
    background-color: rgba(37, 30, 25, 0.4);
  }
}
.brand-grid .brand-holder .content-holder:hover:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(37, 30, 25, 0.57);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.brand-grid .brand-holder .content-holder .holder {
  color: #fff;
  text-align: center;
  width: 90%;
  z-index: 1;
  padding: 60px;
}
.brand-grid .brand-holder .content-holder .holder h2 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
.brand-grid .brand-holder .content-holder .holder h2.intro {
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .brand-grid .brand-holder .content-holder .holder h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .brand-grid .brand-holder .content-holder .holder h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 668px) {
  .brand-grid .brand-holder .content-holder .holder h2 {
    font-size: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .brand-grid .brand-holder .content-holder .holder {
    padding: 10px;
  }
}
.backgroundColorGrey {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
.four-highighted-products {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .four-highighted-products {
    padding-bottom: 15px;
  }
}
.four-highighted-products .header h2 {
  font-size: 32px;
  font-family: Poppins;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .four-highighted-products .header h2 {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 668px) {
  .four-highighted-products .header h2 {
    font-size: 21px;
  }
}
.four-highighted-products .holder-of-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .four-highighted-products .holder-of-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.four-highighted-products .holder-of-products .one-product {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.four-highighted-products .holder-of-products .one-product a {
  text-decoration: none;
  color: #251e19;
}
.four-highighted-products .holder-of-products .one-product a:hover {
  color: #251e19;
}
.four-highighted-products .holder-of-products .one-product .image-holder {
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media screen and (max-width: 768px) {
  .four-highighted-products .holder-of-products .one-product .image-holder {
    background-color: #f4f4f4;
  }
}
.four-highighted-products .holder-of-products .one-product .image-holder .heart {
  position: absolute;
  width: 24px;
  top: 10px;
  left: 10px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .four-highighted-products .holder-of-products .one-product .image-holder .heart {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.four-highighted-products .holder-of-products .one-product .image-holder img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  mix-blend-mode: multiply;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .four-highighted-products .holder-of-products .one-product .image-holder img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.four-highighted-products .holder-of-products .one-product h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.four-highighted-products .holder-of-products .one-product .name {
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  min-height: 45px;
  line-height: 1.25em;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 668px) {
  .four-highighted-products .holder-of-products .one-product .name {
    font-size: 14px;
    line-height: 1.5em;
    padding-left: 0;
    padding-right: 0;
  }
}
.four-highighted-products .holder-of-products .one-product .price {
  font-size: 24px;
  font-weight: 700;
  font-family: Poppins;
}
.four-highighted-products .holder-of-products .one-product .price .old {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
  color: #aaa;
}
@media screen and (max-width: 668px) {
  .four-highighted-products .holder-of-products .one-product .price .old {
    font-size: 14px;
  }
}
.four-highighted-products .holder-of-products .one-product.reduced-prize {
  position: relative;
}
.four-highighted-products .holder-of-products .one-product.reduced-prize:after {
  content: attr(data-discount);
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #cfdcd3;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .four-highighted-products .holder-of-products .one-product.reduced-prize:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    right: 0;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .four-highighted-products .holder-of-products .one-product.reduced-prize:after {
    top: 0;
    right: 0;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.four-highighted-products .holder-of-products .one-product.reduced-prize .price {
  color: #dd5c5b;
}
.four-highighted-products .holder-of-products .one-product.reduced-prize-second {
  position: relative;
}
.four-highighted-products .holder-of-products .one-product.reduced-prize-second:before {
  z-index: 2;
  content: attr(data-discount);
  position: absolute;
  top: -10px;
  right: 60px;
  background-color: #cfdcd3;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .four-highighted-products .holder-of-products .one-product.reduced-prize-second:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    right: 50px;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .four-highighted-products .holder-of-products .one-product.reduced-prize-second:before {
    top: 0;
    right: 40px;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.four-highighted-products .holder-of-products .one-product.reduced-prize-second .price {
  color: #dd5c5b;
}
.four-highighted-products .holder-of-products .one-product.new-product {
  position: relative;
}
.four-highighted-products .holder-of-products .one-product.new-product:after {
  content: 'Nyhet!';
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #f2ecdd;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .four-highighted-products .holder-of-products .one-product.new-product:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    right: 0;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .four-highighted-products .holder-of-products .one-product.new-product:after {
    top: 0;
    right: 0;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.four-highighted-products .holder-of-products .one-product:hover .image-holder {
  background-color: #f4f4f4;
}
.four-highighted-products .holder-of-products .one-product:hover .image-holder,
.four-highighted-products .holder-of-products .one-product:hover .image-holder .heart {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.four-highighted-products .holder-of-products .one-product:hover .image-holder .heart {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.four-highighted-products .holder-of-products .one-product:hover .image-holder img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}
.four-highighted-products .holder-of-products .one-product:hover.reduced-prize:after {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.category-grid {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.category-grid .category-holder {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .category-grid .category-holder {
    width: 33.33333%;
  }
}
@media screen and (max-width: 668px) {
  .category-grid .category-holder {
    width: 50%;
  }
}
.category-grid .category-holder img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  z-index: -1;
}
.category-grid .category-holder a {
  text-decoration: none;
}
.category-grid .category-holder .content-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.category-grid .category-holder .content-holder:after {
  background-color: rgba(37, 30, 25, 0.25);
}
.category-grid .category-holder .content-holder:after,
.category-grid .category-holder .content-holder:hover:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.category-grid .category-holder .content-holder:hover:after {
  background-color: rgba(37, 30, 25, 0.57);
}
.category-grid .category-holder .content-holder .holder {
  color: #fff;
  text-align: center;
  width: 100%;
  z-index: 1;
  padding: 0;
}
.category-grid .category-holder .content-holder .holder h2 {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.category-grid .category-holder .content-holder .holder h2.intro {
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .category-grid .category-holder .content-holder .holder h2 {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .category-grid .category-holder:last-child {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .category-grid .category-holder:last-child {
    display: inline-block;
  }
}
.header-and-text {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 30px;
}
.header-and-text .content {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 3/11;
  grid-row: 1/2;
  text-align: center;
}
.header-and-text .content h2 {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 24px;
}
@media screen and (max-width: 668px) {
  .header-and-text .content h2 {
    font-size: 21px;
  }
}
.header-and-text .content p {
  font-size: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .header-and-text .content {
    -ms-grid-column: 2;
    -ms-grid-column-span: 10;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 2/12;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 668px) {
  .header-and-text .content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
  }
}
.header-and-logos {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 30px;
}
.header-and-logos .content {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 3/11;
  grid-row: 1/2;
  text-align: center;
}
.header-and-logos .content h2 {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 24px;
}
@media screen and (max-width: 668px) {
  .header-and-logos .content h2 {
    font-size: 21px;
  }
}
.header-and-logos .content .logo-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.header-and-logos .content .logo-holder .logo {
  width: 16.66667%;
}
@media screen and (max-width: 768px) {
  .header-and-logos .content .logo-holder .logo {
    width: 25%;
  }
}
@media screen and (max-width: 668px) {
  .header-and-logos .content .logo-holder .logo {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .header-and-logos .content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
  }
}
.upper-footer {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 30px;
  margin-left: -12px;
  margin-right: -12px;
}
.upper-footer .left .content,
.upper-footer .right .content {
  height: 100%;
}
.upper-footer .left {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 1/8;
  grid-row: 1/2;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .upper-footer .left {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
  }
}
.upper-footer .left .content {
  background-color: #f4f4f4;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.upper-footer .left .content .image {
  overflow: hidden;
  max-height: 150px;
}
.upper-footer .left .content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .upper-footer .left .content .image {
    max-height: 400px;
  }
}
.upper-footer .left .content .text-holder {
  padding: 48px;
  flex-grow: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media screen and (max-width: 668px) {
  .upper-footer .left .content .text-holder {
    padding: 14px;
  }
}
.upper-footer .left .content .text-holder .header {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.25em;
  font-weight: 700;
  font-family: Poppins;
  width: 90%;
  margin-bottom: 24px;
}
.upper-footer .left .content .text-holder .header img {
  width: 19px;
}
@media screen and (max-width: 668px) {
  .upper-footer .left .content .text-holder .header {
    width: 100%;
  }
}
.upper-footer .left .content .text-holder .text {
  width: 60%;
  font-size: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .upper-footer .left .content .text-holder .text {
    width: 50%;
  }
}
@media screen and (max-width: 668px) {
  .upper-footer .left .content .text-holder .text {
    width: 100%;
    padding-bottom: 14px;
  }
}
.upper-footer .left .content .text-holder .list {
  width: 40%;
  font-size: 18px;
  line-height: 1.5em;
}
.upper-footer .left .content .text-holder .list span {
  color: #ffb4d2;
}
@media screen and (max-width: 768px) {
  .upper-footer .left .content .text-holder .list {
    padding-left: 24px;
    width: 50%;
  }
}
@media screen and (max-width: 668px) {
  .upper-footer .left .content .text-holder .list {
    width: 100%;
    padding-left: 0;
  }
}
.upper-footer .right {
  -ms-grid-column: 8;
  -ms-grid-column-span: 5;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 8/13;
  grid-row: 1/2;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .upper-footer .right {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 2/3;
  }
}
.upper-footer .right .content {
  background-color: #f2ecdd;
  padding: 48px;
}
@media screen and (max-width: 668px) {
  .upper-footer .right .content {
    padding: 28px 14px;
  }
}
.upper-footer .right .content h2 {
  font-size: 24px;
  font-family: Poppins;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.upper-footer .right .content p {
  font-size: 18px;
  line-height: 1.5em;
}
.upper-footer .right .content a {
  text-decoration: underline;
}
.subpage_categories {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .subpage_categories {
    padding-bottom: 15px;
  }
}
.subpage_categories .header h2 {
  font-size: 32px;
  font-family: Poppins;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5em;
  padding-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .subpage_categories .header h2 {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 668px) {
  .subpage_categories .header h2 {
    font-size: 21px;
  }
}
.subpage_categories .display-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
}
.subpage_categories .holder-of-categories {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 2/12;
  grid-row: 1/2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .subpage_categories .holder-of-categories {
    -ms-grid-column: 1;
    -ms-grid-column-span: 12;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1/13;
    grid-row: 1/2;
  }
}
.subpage_categories .holder-of-categories .one-category {
  padding-left: 12px;
  padding-right: 12px;
  width: 20%;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .subpage_categories .holder-of-categories .one-category {
    width: 33.33333%;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 668px) {
  .subpage_categories .holder-of-categories .one-category {
    width: 50%;
    margin-bottom: 15px;
  }
}
.subpage_categories .holder-of-categories .one-category .content {
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 14px 0;
}
.subpage_categories .holder-of-categories .one-category .content a {
  text-decoration: none;
  color: #251e19;
}
.subpage_categories .holder-of-categories .one-category .content a:hover {
  color: #251e19;
}
.subpage_categories .holder-of-categories .one-category .content .image-holder {
  width: 100%;
  aspect-ratio: 1/1;
  padding-left: 10px;
  padding-right: 10px;
}
.subpage_categories .holder-of-categories .one-category .content .image-holder img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  mix-blend-mode: multiply;
  width: 100%;
}
@media screen and (max-width: 668px) {
  .subpage_categories .holder-of-categories .one-category .content .image-holder {
    display: none;
  }
}
.subpage_categories .holder-of-categories .one-category .content h3 {
  font-family: Raleway;
  font-weight: 400;
  font-size: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 668px) {
  .subpage_categories .holder-of-categories .one-category .content h3 {
    font-size: 16px;
  }
}
.subpage_categories .holder-of-categories .one-category .content:hover .image-holder img {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.no-padding-left {
  padding-left: 0 !important;
}
.subpage-puff-holder {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder {
    padding-bottom: 15px;
    flex-direction: column-reverse;
  }
}
.subpage-puff-holder .grey-background {
  background-color: #f4f4f4 !important;
}
.subpage-puff-holder .left {
  width: 60%;
  background-color: #f2ecdd;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder .left {
    width: 100%;
  }
}
.subpage-puff-holder .left .content {
  text-align: left;
  padding: 48px 96px 48px 48px;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder .left .content {
    padding: 24px;
  }
}
.subpage-puff-holder .left .content h1 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .subpage-puff-holder .left .content h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
.subpage-puff-holder .left .content h2 {
  font-family: Poppins;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .subpage-puff-holder .left .content h2 {
    margin-bottom: 12px;
    font-size: 24px;
  }
}
.subpage-puff-holder .left .content p {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .subpage-puff-holder .left .content p {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder .left .content p {
    font-size: 16px;
  }
}
.subpage-puff-holder .right {
  position: relative;
  width: 40%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder .right {
    width: 100%;
  }
}
.subpage-puff-holder .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder .right img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .subpage-puff-holder .right {
    aspect-ratio: 1/1;
  }
}
.subpage-puff-holder.inverted {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder.inverted {
    flex-direction: column-reverse;
  }
}
.subpage-puff-holder.inverted .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #f2ecdd;
  align-items: center;
  justify-content: center;
  width: 60%;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder.inverted .left {
    width: 100%;
  }
}
.subpage-puff-holder.inverted .left .content p {
  font-size: 18px;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .subpage-puff-holder.inverted .left .content p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.subpage-puff-holder.inverted .right {
  position: relative;
  width: 40%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder.inverted .right {
    width: 100%;
  }
}
.subpage-puff-holder.inverted .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
@media screen and (max-width: 668px) {
  .subpage-puff-holder.inverted .right img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .subpage-puff-holder.inverted .right {
    aspect-ratio: 1/1;
  }
}
.subpage-with-subnav-hero-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .subpage-with-subnav-hero-holder {
    flex-wrap: wrap;
  }
}
.subpage-with-subnav-hero-holder .content {
  width: 50%;
  padding-right: 48px;
}
@media screen and (max-width: 768px) {
  .subpage-with-subnav-hero-holder .content {
    width: 100%;
  }
}
.subpage-with-subnav-hero-holder .content h1 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .subpage-with-subnav-hero-holder .content h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
.subpage-with-subnav-hero-holder .content .read-more,
.subpage-with-subnav-hero-holder .content p {
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.5em;
  cursor: pointer;
}
.subpage-with-subnav-hero-holder .content .read-more span,
.subpage-with-subnav-hero-holder .content p span {
  display: none;
}
@media screen and (max-width: 768px) {
  .subpage-with-subnav-hero-holder .content .read-more,
  .subpage-with-subnav-hero-holder .content p {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
@media screen and (max-width: 668px) {
  .subpage-with-subnav-hero-holder .content .read-more,
  .subpage-with-subnav-hero-holder .content p {
    font-size: 18px;
  }
}
.subpage-with-subnav-hero-holder .sub-nav {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .subpage-with-subnav-hero-holder .sub-nav {
    width: 100%;
  }
}
.subpage-with-subnav-hero-holder .sub-nav .holder-of-categories {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  flex-wrap: wrap;
  align-items: center;
}
.subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category {
  padding-left: 12px;
  padding-right: 12px;
  width: 33.33333%;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category {
    width: 25%;
  }
}
@media screen and (max-width: 668px) {
  .subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category {
    width: 50%;
    margin-bottom: 15px;
  }
}
.subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category .content-like {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 668px) {
  .subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category .content-like {
    font-size: 16px;
  }
}
.subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category .content-like a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: #251e19;
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 14px 0;
  font-family: Raleway;
  font-weight: 400;
  font-size: 18px;
}
.subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category .content-like a:hover {
  color: #fff;
  background-color: #251e19;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.subpage-with-subnav-hero-holder .sub-nav .holder-of-categories .one-category.active .content-like a {
  color: #fff;
  background-color: #251e19;
  cursor: default;
  pointer-events: none;
}
.product-listing {
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .product-listing {
    padding-bottom: 15px;
  }
}
.product-listing .filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #d1dcd4;
  margin-bottom: 30px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .product-listing .filter {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-listing .filter .filtering {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 33.33333%;
}
.product-listing .filter .filtering img {
  height: 24px;
  margin-right: 10px;
}
.product-listing .filter .filtering:hover {
  cursor: pointer;
}
.product-listing .filter .numbers {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 33.33333%;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .product-listing .filter .numbers {
    width: auto;
  }
}
@media screen and (max-width: 668px) {
  .product-listing .filter .numbers {
    width: 33.33333%;
  }
}
.product-listing .filter .sort {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: #838383;
  width: 33.33333%;
  justify-content: flex-end;
}
.product-listing .filter .sort img {
  height: 24px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .product-listing .filter .sort {
    width: auto;
  }
}
@media screen and (max-width: 668px) {
  .product-listing .filter .sort {
    width: 33.33333%;
  }
}
.product-listing .filter .sort span {
  color: #000;
  display: inline-block;
  margin-left: 0;
}
@media screen and (max-width: 668px) {
  .product-listing .filter .sort .text {
    display: none;
  }
}
.product-listing .filter-holder-thing {
  display: none;
}
.product-listing .actual-filters {
  border-bottom: 1px solid #d1dcd4;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.product-listing .actual-filters .filter-one {
  width: 50%;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .product-listing .actual-filters .filter-one {
    width: 100%;
  }
}
.product-listing .actual-filters .filter-one:nth-child(odd) {
  border-right: 1px solid #d1dcd4;
}
@media screen and (max-width: 668px) {
  .product-listing .actual-filters .filter-one:nth-child(odd) {
    border: none;
  }
}
.product-listing .actual-filters .filter-one:nth-child(2n) {
  padding-left: 15px;
}
@media screen and (max-width: 668px) {
  .product-listing .actual-filters .filter-one:nth-child(2n) {
    padding-left: 0;
  }
}
.product-listing .actual-filters .filter-one h2 {
  font-size: 16px;
  font-weight: 700;
  font-family: Poppins;
  margin-bottom: 15px;
}
.product-listing .actual-filters .filter-one ul {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.product-listing .actual-filters .filter-one ul li {
  display: inline-block;
  width: 33.33333%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .product-listing .actual-filters .filter-one ul li {
    width: 50%;
  }
}
.product-listing .actual-filters .filter-one ul li label {
  display: inline;
}
.product-listing .actual-filters .filter-one ul li .regular-checkbox {
  display: none;
}
.product-listing .actual-filters .filter-one ul li .regular-checkbox + label {
  background-color: #fff;
  border: 1px solid #000;
  padding: 10px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
.product-listing .actual-filters .filter-one ul li .regular-checkbox:checked + label {
  background-color: #000;
  position: relative;
}
.product-listing .actual-filters .filter-one ul li .regular-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.product-listing .actual-filters .filter-one ul li .tag {
  font-family: Arial, sans-serif;
  width: 200px;
  position: relative;
  top: 5px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  float: left;
}
.product-listing .actual-filters .filter-one ul li .radio-1 {
  width: 193px;
}
.product-listing .actual-filters .filter-one ul li .button-holder {
  float: left;
}
.product-listing .holder-of-products {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.product-listing .holder-of-products .product {
  padding-left: 12px;
  padding-right: 12px;
  width: 25%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .product-listing .holder-of-products .product {
    width: 33.33333%;
  }
}
@media screen and (max-width: 668px) {
  .product-listing .holder-of-products .product {
    width: 50%;
  }
}
.product-listing .holder-of-products .product .content {
  border-bottom: 1px solid #d1dcd4;
  height: 100%;
}
.product-listing .holder-of-products .product .content .image-holder {
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  background-color: #f4f4f4;
  min-height: 250px;
}
@media screen and (max-width: 668px) {
  .product-listing .holder-of-products .product .content .image-holder {
    min-height: 150px;
  }
}
.product-listing .holder-of-products .product .content .image-holder .heart {
  position: absolute;
  width: 24px;
  top: 10px;
  left: 10px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-listing .holder-of-products .product .content .image-holder .heart {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.product-listing .holder-of-products .product .content .image-holder img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  mix-blend-mode: multiply;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .product-listing .holder-of-products .product .content .image-holder img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.product-listing .holder-of-products .product .content .text {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.product-listing .holder-of-products .product .content .text .brand {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}
.product-listing .holder-of-products .product .content .text .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 5px;
  padding: 0 20px;
  min-height: 52px;
}
@media screen and (max-width: 1024px) {
  .product-listing .holder-of-products .product .content .text .name {
    padding: 0;
  }
}
.product-listing .holder-of-products .product .content .text .price {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-listing .holder-of-products .product .content .text .price.sale {
  color: #dd5c5b;
}
.product-listing .holder-of-products .product .content .text .price.sale span {
  margin-top: 5px;
  display: block;
  color: #6c6c6c;
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 300;
}
.product-listing .holder-of-products .product .content a {
  text-decoration: none;
}
.product-listing .holder-of-products .product .content a:hover .image-holder {
  position: relative;
}
.product-listing .holder-of-products .product .content a:hover .image-holder .heart {
  position: absolute;
  width: 24px;
  top: 10px;
  left: 10px;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.product-listing .holder-of-products .product .content a:hover .image-holder .heart,
.product-listing .holder-of-products .product .content a:hover .image-holder img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.product-listing .holder-of-products .product .content a:hover .image-holder img {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}
@media screen and (max-width: 768px) {
  .product-listing .holder-of-products .product .content a:hover .image-holder img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.product-listing .holder-of-products .product .content.reduced-prize {
  position: relative;
}
.product-listing .holder-of-products .product .content.reduced-prize:after {
  content: attr(data-discount);
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #cfdcd3;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-listing .holder-of-products .product .content.reduced-prize:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    right: 0;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .product-listing .holder-of-products .product .content.reduced-prize:after {
    top: 0;
    right: 0;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.product-listing .holder-of-products .product .content.reduced-prize .price {
  color: #dd5c5b;
}
.product-listing .holder-of-products .product .content.reduced-prize-second {
  position: relative;
}
.product-listing .holder-of-products .product .content.reduced-prize-second:before {
  z-index: 2;
  content: attr(data-discount);
  position: absolute;
  top: -10px;
  right: 60px;
  background-color: #cfdcd3;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-listing .holder-of-products .product .content.reduced-prize-second:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    right: 50px;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .product-listing .holder-of-products .product .content.reduced-prize-second:before {
    top: 0;
    right: 40px;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.product-listing .holder-of-products .product .content.reduced-prize-second .price {
  color: #dd5c5b;
}
.product-listing .holder-of-products .product .content.new-product {
  position: relative;
}
.product-listing .holder-of-products .product .content.new-product:after {
  content: 'Nyhet!';
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #f2ecdd;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-listing .holder-of-products .product .content.new-product:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    right: 0;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .product-listing .holder-of-products .product .content.new-product:after {
    top: 0;
    right: 0;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.paginate {
  font-size: 18px;
  text-align: center;
  width: 100%;
  margin-top: 25px;
}
.paginate,
.paginate .holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paginate .holder .pages {
  margin-left: 24px;
  margin-right: 24px;
}
.paginate .holder .pages a {
  text-decoration: none;
  padding: 10px 15px;
}
.paginate .holder .pages a:hover {
  background-color: #000;
  border-radius: 3px;
  color: #fff;
}
.paginate .holder .pages a.active {
  background-color: #f4f4f4;
  color: #000;
  border-radius: 3px;
}
@media screen and (max-width: 668px) {
  .paginate .holder .pages a {
    display: none;
  }
  .paginate .holder .pages a.active {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.product-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.product-holder .button-container--error .button__text,
.product-holder .button-container--loading .button__text,
.product-holder .button-container--success .button__text {
  visibility: hidden;
  opacity: 0;
}
.product-holder .button-container--loading .button:after {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border-color: #eee #eee transparent transparent;
  border-style: solid;
  border-width: 2px;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -11px;
  animation: spin-loading 1s linear infinite;
}
.product-holder .button-container--success .button:after {
  content: 'âœ“';
  color: #eee;
  font-size: 20px;
}
.product-holder .button-container--error .button:after,
.product-holder .button-container--success .button:after {
  font-weight: 700;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 0.1s linear forwards;
}
.product-holder .button-container--error .button:after {
  content: 'Ã—';
  color: red;
  font-size: 30px;
}
@keyframes spin-loading {
  0% {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product-holder .disabled .button {
  pointer-events: none;
  background-color: #666;
}
@media screen and (max-width: 768px) {
  .product-holder {
    flex-wrap: wrap;
  }
}
.product-holder .image-container {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product-holder .image-container {
    width: 100%;
    margin-bottom: 48px;
  }
}
.product-holder .image-container.reduced-prize {
  position: relative;
}
.product-holder .image-container.reduced-prize:after {
  content: attr(data-discount);
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #cfdcd3;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-holder .image-container.reduced-prize:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    left: 0;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .product-holder .image-container.reduced-prize:after {
    top: 0;
    left: 0;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.product-holder .image-container.reduced-prize .price {
  color: #dd5c5b;
}
.product-holder .image-container.reduced-prize-second {
  position: relative;
}
.product-holder .image-container.reduced-prize-second:before {
  z-index: 2;
  content: attr(data-discount);
  position: absolute;
  top: -10px;
  left: 60px;
  background-color: #cfdcd3;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-holder .image-container.reduced-prize-second:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    left: 50px;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .product-holder .image-container.reduced-prize-second:before {
    top: 0;
    left: 40px;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.product-holder .image-container.reduced-prize-second .price {
  color: #dd5c5b;
}
.product-holder .image-container.new-product {
  position: relative;
}
.product-holder .image-container.new-product:after {
  content: 'Nyhet!';
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #f2ecdd;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  font-size: 22px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .product-holder .image-container.new-product:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    top: 0;
    left: 0;
    font-size: 12px;
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 668px) {
  .product-holder .image-container.new-product:after {
    top: 0;
    left: 0;
    font-size: 12px;
    height: 35px;
    width: 35px;
  }
}
.product-holder .image-container .everything {
  max-width: 644px;
  position: relative;
  padding-right: 24px;
}
@media screen and (max-width: 1024px) {
  .product-holder .image-container .everything {
    max-width: 468px;
  }
}
@media screen and (max-width: 768px) {
  .product-holder .image-container .everything {
    max-width: 100%;
    padding-right: 0;
  }
}
.product-holder .image-container .everything .large img {
  max-width: 100%;
}
.product-holder .image-container .everything .small {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.product-holder .image-container .everything .small img {
  width: 16.66667%;
  cursor: pointer;
}
.product-holder .image-container .everything .small img:hover {
  border: 2px solid #000;
}
.product-holder .image-container .everything.stuck {
  position: fixed;
  top: 0;
  max-width: inherit;
  max-width: 644px;
}
@media screen and (max-width: 1024px) {
  .product-holder .image-container .everything.stuck {
    max-width: 468px;
  }
}
@media screen and (max-width: 768px) {
  .product-holder .image-container .everything.stuck {
    position: relative;
    max-width: 100%;
  }
}
.product-holder .image-container .everything.sticky-surpassed {
  position: absolute;
  bottom: 0;
  max-width: 644px;
}
@media screen and (max-width: 1024px) {
  .product-holder .image-container .everything.sticky-surpassed {
    max-width: 468px;
  }
}
@media screen and (max-width: 768px) {
  .product-holder .image-container .everything.sticky-surpassed {
    max-width: 100%;
    position: relative;
  }
}
.product-holder .text-container {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .product-holder .text-container {
    width: 100%;
  }
}
.product-holder .text-container .content-holder .main-text .varumarke {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}
.product-holder .text-container .content-holder .main-text h1 {
  font-size: 40px;
  font-weight: 300;
  font-family: Poppins;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .main-text h1 {
    font-size: 32px;
  }
}
.product-holder .text-container .content-holder .main-text p {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.product-holder .text-container .content-holder .main-text p .read-more-holder-thing {
  display: none;
}
.product-holder .text-container .content-holder .main-options {
  margin-bottom: 60px;
}
.product-holder .text-container .content-holder .main-options .option-holder {
  margin-bottom: 30px;
}
.product-holder .text-container .content-holder .main-options .option-holder .header {
  font-family: Poppins;
  font-size: 21px;
  font-weight: 700;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .main-options .option-holder .header {
    font-size: 16px;
  }
}
.product-holder .text-container .content-holder .main-options .option-holder .header a {
  margin-right: 5px;
  margin-left: 5px;
}
.product-holder .text-container .content-holder .main-options .option-holder .header a:hover {
  color: #251e19;
}
.product-holder .text-container .content-holder .main-options .option-holder .header span {
  font-weight: 400;
}
.product-holder .text-container .content-holder .main-options .option-holder .header .in-stock {
  margin-left: 10px;
  margin-top: 2px;
}
.product-holder .text-container .content-holder .main-options .option-holder .options {
  display: none;
  margin-left: -12px;
  margin-right: -12px;
}
.product-holder .text-container .content-holder .main-options .option-holder .options.active {
  display: inline-block;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents {
  padding: 24px 24px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .product-holder .text-container .content-holder .main-options .option-holder .options .contents {
    padding: 24px 0 0;
  }
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 10px;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .product-holder .text-container .content-holder .main-options .option-holder .options .contents .single {
    width: 33.33333%;
  }
}
@media screen and (max-width: 768px) {
  .product-holder .text-container .content-holder .main-options .option-holder .options .contents .single {
    width: 25%;
  }
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .main-options .option-holder .options .contents .single {
    width: 50%;
  }
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single a {
  border: 2px solid #e5e5e5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 5px;
  text-decoration: none;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single a:hover {
  border: 2px solid #000;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single a.active {
  border: 2px solid #000;
  position: relative;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single a.active:after {
  content: 'âœ“';
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  font-size: 10px;
  background-color: #000;
  border-bottom-right-radius: 50%;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single a .image img {
  width: 100%;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single a .name {
  font-size: 12px;
  font-weight: 700;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single-variant {
  padding-left: 12px;
  padding-right: 12px;
  margin-right: 12px;
  margin-bottom: 10px;
  width: 150px;
  border: 2px solid #e5e5e5;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single-variant:hover {
  border: 2px solid #000;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single-variant.active {
  border: 2px solid #000;
  position: relative;
}
.product-holder
  .text-container
  .content-holder
  .main-options
  .option-holder
  .options
  .contents
  .single-variant.active:after {
  content: 'âœ“';
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  font-size: 10px;
  background-color: #000;
  border-bottom-right-radius: 50%;
}
.product-holder .text-container .content-holder .main-options .option-holder .options .contents .single-variant a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 5px;
  text-decoration: none;
}
.product-holder
  .text-container
  .content-holder
  .main-options
  .option-holder
  .options
  .contents
  .single-variant
  a
  .image
  img {
  width: 100%;
}
.product-holder
  .text-container
  .content-holder
  .main-options
  .option-holder
  .options
  .contents
  .single-variant
  a
  .name {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 668px) {
  .product-holder
    .text-container
    .content-holder
    .main-options
    .option-holder
    .options
    .contents
    .single-variant
    a
    .show-desktop-and-tablet {
    display: none !important;
  }
}
.product-holder .text-container .content-holder .price-and-such .price {
  font-family: Poppins;
  font-size: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding-top: 30px;
  font-weight: 300;
  border-top: 1px solid #d1dcd4;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .product-holder .text-container .content-holder .price-and-such .price {
    justify-content: center;
  }
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .price-and-such .price {
    flex-wrap: wrap;
  }
}
.product-holder .text-container .content-holder .price-and-such .price .new,
.product-holder .text-container .content-holder .price-and-such .price .normal,
.product-holder .text-container .content-holder .price-and-such .price .old {
  font-size: 40px;
  font-weight: 700;
  font-family: Poppins;
  margin-left: 10px;
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .price-and-such .price .new,
  .product-holder .text-container .content-holder .price-and-such .price .normal,
  .product-holder .text-container .content-holder .price-and-such .price .old {
    width: 100%;
    text-align: center;
    line-height: 1em;
  }
}
.product-holder .text-container .content-holder .price-and-such .price .new {
  color: #dd5c5b;
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .price-and-such .price .new {
    margin-top: 5px;
  }
}
.product-holder .text-container .content-holder .price-and-such .price .old {
  text-decoration: line-through;
  color: #aaa;
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .price-and-such .price .old {
    font-size: 28px;
  }
}
.product-holder .text-container .content-holder .price-and-such.disabled .add-to-cart-holder {
  pointer-events: none !important;
}
.product-holder .text-container .content-holder .price-and-such .add-to-cart-holder {
  margin-bottom: 15px;
  cursor: pointer;
}
.product-holder .text-container .content-holder .price-and-such .add-to-cart-holder a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  width: 100%;
  text-align: center;
}
.product-holder .text-container .content-holder .price-and-such .usps-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .product-holder .text-container .content-holder .price-and-such .usps-holder {
    flex-wrap: wrap;
  }
}
.product-holder .text-container .content-holder .price-and-such .usps-holder .usp {
  font-family: Oswald;
  font-weight: 500;
  font-size: 16px;
}
.product-holder .text-container .content-holder .price-and-such .usps-holder .usp span {
  color: #ffb4d2;
}
@media screen and (max-width: 1024px) {
  .product-holder .text-container .content-holder .price-and-such .usps-holder .usp {
    width: 50%;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 668px) {
  .product-holder .text-container .content-holder .price-and-such .usps-holder .usp {
    font-size: 15px;
  }
}
.product-holder .text-container .content-holder .price-and-such .price-history__text {
  text-align: center;
  margin-top: 15px;
}
.large-information-holder {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 668px) {
  .large-information-holder {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
  }
}
.large-information-holder .left {
  position: relative;
  width: 50%;
  padding-right: 24px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 668px) {
  .large-information-holder .left {
    width: 100%;
    padding-right: 0;
  }
}
.large-information-holder .left img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
}
@media screen and (max-width: 668px) {
  .large-information-holder .left img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .large-information-holder .left {
    aspect-ratio: 1/1;
  }
}
.large-information-holder .right {
  width: 50%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .large-information-holder .right {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
  }
}
.large-information-holder .right h2 {
  font-family: Poppins;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 25px;
}
@media screen and (max-width: 668px) {
  .large-information-holder .right h2 {
    font-size: 21px;
  }
}
.large-information-holder .right p {
  font-size: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 668px) {
  .large-information-holder .right p {
    font-size: 16px;
  }
}
.tecnical-info-holder {
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .tecnical-info-holder {
    padding-bottom: 15px;
    width: 100%;
  }
}
.tecnical-info-holder h2 {
  font-weight: 300;
  font-size: 32px;
  font-family: Poppins;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 668px) {
  .tecnical-info-holder h2 {
    font-size: 21px;
  }
}
.tecnical-info-holder .info-boxes {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 668px) {
  .tecnical-info-holder .info-boxes {
    flex-wrap: wrap;
  }
}
.tecnical-info-holder .info-boxes .left,
.tecnical-info-holder .info-boxes .right {
  width: 50%;
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 668px) {
  .tecnical-info-holder .info-boxes .left,
  .tecnical-info-holder .info-boxes .right {
    width: 100%;
  }
}
.tecnical-info-holder .info-boxes .left .one-row,
.tecnical-info-holder .info-boxes .right .one-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 15px;
}
.tecnical-info-holder .info-boxes .left .one-row span,
.tecnical-info-holder .info-boxes .right .one-row span {
  background-color: #fff;
}
.tecnical-info-holder .info-boxes .left .one-row span:nth-child(odd),
.tecnical-info-holder .info-boxes .right .one-row span:nth-child(odd) {
  font-weight: 700;
  padding-right: 10px;
}
.tecnical-info-holder .info-boxes .left .one-row span:nth-child(2n),
.tecnical-info-holder .info-boxes .right .one-row span:nth-child(2n) {
  padding-left: 10px;
}
.tecnical-info-holder .info-boxes .left .one-row:after,
.tecnical-info-holder .info-boxes .right .one-row:after {
  content: '';
  border-bottom: 1px dashed #e5e5e5;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
}
.tecnical-info-holder .info-boxes .left {
  padding-right: 24px;
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 668px) {
  .tecnical-info-holder .info-boxes .left {
    border-right: 0;
    padding-right: 0;
  }
}
.tecnical-info-holder .info-boxes .right {
  padding-left: 24px;
}
@media screen and (max-width: 668px) {
  .tecnical-info-holder .info-boxes .right {
    padding-left: 0;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.embed-container embed,
.embed-container iframe,
.embed-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stock-info {
  font-size: 11px;
  font-family: Raleway;
  font-weight: 300;
}
.in-stock,
.out-of-stock,
.sold-out {
  position: relative;
  padding-left: 15px;
}
.in-stock:before,
.out-of-stock:before,
.sold-out:before {
  content: 'âœ“';
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  color: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #578d37;
}
.out-of-stock:before {
  content: 'âœ“';
  background-color: gold;
}
.sold-out:before {
  content: 'âœ•';
  background-color: red;
}
.om-oss-holder .image {
  margin-bottom: 24px;
}
.om-oss-holder .image img {
  width: 100%;
}
.om-oss-holder h1 {
  font-size: 40px;
  font-weight: 300;
  font-family: Poppins;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .om-oss-holder h1 {
    font-size: 32px;
  }
}
.om-oss-holder p {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 30px;
  column-gap: 24px;
}
@media screen and (max-width: 668px) {
  .om-oss-holder p {
    column-count: 1;
  }
}
.info-holder {
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .info-holder {
    padding-bottom: 15px;
    width: 100%;
  }
}
.info-holder h2 {
  font-weight: 300;
  font-size: 32px;
  font-family: Poppins;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 668px) {
  .info-holder h2 {
    font-size: 21px;
  }
}
.info-holder .info-boxes {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 668px) {
  .info-holder .info-boxes {
    flex-wrap: wrap;
  }
}
.info-holder .info-boxes .left,
.info-holder .info-boxes .right {
  width: 50%;
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 668px) {
  .info-holder .info-boxes .left,
  .info-holder .info-boxes .right {
    width: 100%;
  }
}
.info-holder .info-boxes .left .one-row,
.info-holder .info-boxes .right .one-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 15px;
}
.info-holder .info-boxes .left .one-row span,
.info-holder .info-boxes .right .one-row span {
  background-color: #fff;
}
.info-holder .info-boxes .left .one-row span:nth-child(odd),
.info-holder .info-boxes .right .one-row span:nth-child(odd) {
  font-weight: 700;
  padding-right: 10px;
}
.info-holder .info-boxes .left .one-row span:nth-child(2n),
.info-holder .info-boxes .right .one-row span:nth-child(2n) {
  padding-left: 10px;
}
.info-holder .info-boxes .left .one-row:after,
.info-holder .info-boxes .right .one-row:after {
  content: '';
  border-bottom: 1px dashed #e5e5e5;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
}
.info-holder .info-boxes .left {
  padding-right: 24px;
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 668px) {
  .info-holder .info-boxes .left {
    border-right: 0;
    padding-right: 0;
  }
}
.info-holder .info-boxes .right {
  padding-left: 24px;
}
@media screen and (max-width: 668px) {
  .info-holder .info-boxes .right {
    padding-left: 0;
  }
}
.presentkort-holder .image {
  margin-bottom: 24px;
}
.presentkort-holder .image img {
  width: 100%;
}
.presentkort-holder h1 {
  font-size: 40px;
  font-weight: 300;
  font-family: Poppins;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .presentkort-holder h1 {
    font-size: 32px;
  }
}
.presentkort-holder .iformation-holder {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 668px) {
  .presentkort-holder .iformation-holder {
    flex-wrap: wrap;
  }
}
.presentkort-holder .iformation-holder .left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .presentkort-holder .iformation-holder .left {
    width: 50%;
  }
}
@media screen and (max-width: 668px) {
  .presentkort-holder .iformation-holder .left {
    width: 100%;
  }
}
.presentkort-holder .iformation-holder .left p {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .presentkort-holder .iformation-holder .left p {
    column-count: 1;
  }
}
.presentkort-holder .iformation-holder .right {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .presentkort-holder .iformation-holder .right {
    width: 50%;
  }
}
@media screen and (max-width: 668px) {
  .presentkort-holder .iformation-holder .right {
    width: 100%;
  }
}
.presentkort-holder .iformation-holder .right .gift-card {
  width: 360px;
}
.presentkort-holder .iformation-holder .right .gift-card .custom-select {
  position: relative;
  font-family: Arial;
}
.presentkort-holder .iformation-holder .right .gift-card .custom-select select {
  display: none;
}
.presentkort-holder .iformation-holder .right .gift-card .select-selected {
  background-color: #fff;
  color: #000;
}
.presentkort-holder .iformation-holder .right .gift-card .select-selected:after {
  position: absolute;
  content: '';
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #000;
}
.presentkort-holder .iformation-holder .right .gift-card .select-selected.select-arrow-active:after {
  border-color: transparent transparent #000;
  top: 9px;
}
.presentkort-holder .iformation-holder .right .gift-card .select-items div,
.presentkort-holder .iformation-holder .right .gift-card .select-selected {
  color: #000;
  padding: 8px 16px;
  border: 1px solid #e2e2e2;
  cursor: pointer;
}
.presentkort-holder .iformation-holder .right .gift-card .select-items div {
  border-color: transparent #e2e2e2;
}
.presentkort-holder .iformation-holder .right .gift-card .select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.presentkort-holder .iformation-holder .right .gift-card .select-hide {
  display: none;
}
.presentkort-holder .iformation-holder .right .gift-card .same-as-selected,
.presentkort-holder .iformation-holder .right .gift-card .select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.presentkort-holder .iformation-holder .right .gift-card input {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  height: 45px;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
.presentkort-holder .iformation-holder .right .gift-card input::placeholder {
  color: #aaa;
  font-family: Oswald;
  font-size: 14px;
  font-weight: 400;
}
.presentkort-holder .iformation-holder .right .gift-card textarea {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
.presentkort-holder .iformation-holder .right .gift-card textarea::placeholder {
  color: #aaa;
  font-family: Oswald;
  font-size: 14px;
  font-weight: 400;
}
.presentkort-holder .iformation-holder .right .gift-card button {
  width: 100%;
  text-transform: uppercase;
}
.mini-cart-active {
  overflow: hidden;
}
.mini-cart-background {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
}
.mini-cart-background,
.mini-cart-background.active {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mini-cart-background.active {
  opacity: 1;
  pointer-events: all;
}
.mini-cart-holder {
  position: absolute;
  top: 0;
  right: -560px;
  background-color: #fff;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 550px;
  z-index: 200;
  padding: 24px;
  box-shadow: -10px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 668px) {
  .mini-cart-holder {
    width: 100%;
    right: 100%;
  }
}
.mini-cart-holder.active {
  right: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 668px) {
  .mini-cart-holder.active {
    width: 100%;
  }
}
.mini-cart-holder .mini-cart {
  flex-direction: column;
  height: 100%;
}
.mini-cart-holder .mini-cart,
.mini-cart-holder .mini-cart .header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.mini-cart-holder .mini-cart .header {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d1dcd4;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.mini-cart-holder .mini-cart .header h3 {
  font-family: Poppins;
  font-size: 21px;
  font-weight: 300;
  line-height: 1em;
}
@media screen and (max-width: 668px) {
  .mini-cart-holder .mini-cart .header h3 {
    font-size: 18px;
  }
}
.mini-cart-holder .mini-cart .header .mini-cart-toggle {
  width: 15px;
  margin-top: 8px;
}
.mini-cart-holder .mini-cart .item-list {
  border-bottom: 1px solid #d1dcd4;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.mini-cart-holder .mini-cart .item-list .item {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-columns: repeat(12, 1fr);
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 20px;
  margin-top: 20px;
}
.mini-cart-holder .mini-cart .item-list .item .image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-column: 1/2;
  grid-row: 1/3;
  background-color: #f4f4f4;
  padding: 3px;
}
.mini-cart-holder .mini-cart .item-list .item .image img {
  width: 100%;
  aspect-ratio: 1/1;
  mix-blend-mode: multiply;
}
.mini-cart-holder .mini-cart .item-list .item .name-and-price {
  -ms-grid-column: 2;
  -ms-grid-column-span: 11;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-column: 2/13;
  grid-row: 1/2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 15px;
}
.mini-cart-holder .mini-cart .item-list .item .name-and-price .price {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 700;
  min-width: 75px;
  text-align: right;
}
.mini-cart-holder .mini-cart .item-list .item .name-and-price .price .new {
  color: #dd5c5b;
}
.mini-cart-holder .mini-cart .item-list .item .name-and-price .price .old {
  text-decoration: line-through;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase {
  -ms-grid-column: 2;
  -ms-grid-column-span: 11;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-column: 2/13;
  grid-row: 2/3;
  padding-left: 15px;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase,
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .stock-info {
  min-width: 100px;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input {
  border-radius: 3px;
  display: inline-flex;
  padding-left: 15px;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input input[type='number'] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.mini-cart-holder
  .mini-cart
  .item-list
  .item
  .stock-and-erase
  .stock
  .number-input
  input[type='number']::-webkit-inner-spin-button,
.mini-cart-holder
  .mini-cart
  .item-list
  .item
  .stock-and-erase
  .stock
  .number-input
  input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: initial;
  border: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 30px;
  cursor: pointer;
  margin: 0;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input button {
    width: 24px;
  }
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input button:after {
  content: '-';
  position: absolute;
  width: 25px;
  font-weight: 700;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background-color: #000;
  top: 2px;
  left: 0;
  font-size: 21px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input button.plus:after {
  content: '+';
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input button:hover:after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #afd39a;
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input input[type='number'] {
  font-family: sans-serif;
  width: 40px;
  border-width: 0;
  font-size: 18px;
  text-align: center;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input input[type='number'] {
    width: 30px;
  }
}
@media screen and (max-width: 668px) {
  .mini-cart-holder .mini-cart .item-list .item .stock-and-erase .stock .number-input {
    display: none;
  }
}
.mini-cart-holder .mini-cart .item-list .item .stock-and-erase .erase {
  font-size: 11px;
}
.mini-cart-holder .mini-cart .values {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: Poppins;
  margin-bottom: 5px;
}
.mini-cart-holder .mini-cart .values.bigger {
  font-size: 18px;
  font-weight: 700;
}
.mini-cart-holder .mini-cart .values.bigger .red {
  color: #dd5c5b;
}
.mini-cart-holder .mini-cart .values.bigger .black {
  color: #000;
}
@media screen and (max-width: 668px) {
  .mini-cart-holder .mini-cart .values.bigger {
    margin-bottom: 24px;
  }
}
.mini-cart-holder .mini-cart .button-holder {
  text-align: center;
  margin-bottom: 48px;
}
.mini-cart-holder .mini-cart .button-holder .button {
  font-size: 16px;
  font-weight: 700;
  background-color: #251e19;
  color: #fff;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 5px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.mini-cart-holder .mini-cart .button-holder .button,
.mini-cart-holder .mini-cart .button-holder .button:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mini-cart-holder .mini-cart .button-holder .button:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
  background-color: #cfdcd3;
  color: #251e19;
}
.mini-cart-holder .mini-cart .upsell-header {
  text-align: center;
  margin-bottom: 24px;
}
.mini-cart-holder .mini-cart .upsell-header h3 {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 700;
}
.mini-cart-holder .mini-cart .upsell-items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 24px;
  justify-content: space-between;
}
@media screen and (max-width: 668px) {
  .mini-cart-holder .mini-cart .upsell-items {
    flex-wrap: wrap;
  }
}
.mini-cart-holder .mini-cart .upsell-items .item {
  width: 23%;
}
@media screen and (max-width: 668px) {
  .mini-cart-holder .mini-cart .upsell-items .item {
    width: 45%;
    margin-bottom: 15px;
  }
}
.mini-cart-holder .mini-cart .upsell-items .item .image {
  background-color: #f4f4f4;
  padding: 5px;
}
.mini-cart-holder .mini-cart .upsell-items .item .image img {
  width: 100%;
  aspect-ratio: 1/1;
  mix-blend-mode: multiply;
}
.mini-cart-holder .mini-cart .upsell-items .item .image.reduced-prize {
  position: relative;
}
.mini-cart-holder .mini-cart .upsell-items .item .image.reduced-prize:after {
  content: attr(data-discount);
  position: absolute;
  background-color: #dd5c5b;
  color: #fff;
  font-family: Oswald;
  font-weight: 500;
  top: -5px;
  right: -5px;
  font-size: 12px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .mini-cart-holder .mini-cart .upsell-items .item .image.reduced-prize:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.mini-cart-holder .mini-cart .upsell-items .item .image.reduced-prize .price {
  color: #dd5c5b;
}
.mini-cart-holder .mini-cart .upsell-items .item .text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.mini-cart-holder .mini-cart .upsell-items .item .text .brand {
  font-size: 12px;
  font-weight: 700;
}
.mini-cart-holder .mini-cart .upsell-items .item .text .name {
  font-size: 11px;
  line-height: 1.5em;
}
.mini-cart-holder .mini-cart .upsell-items .item .text .price {
  font-family: Poppins;
  font-weight: 700;
}
.margin-top-cart-item {
  margin-top: 30px !important;
}
.kassa-holder {
  margin-top: 72px;
}
.kassa-holder .items-listing .row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #d1dcd4;
  padding-bottom: 20px;
  padding-top: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row {
    flex-wrap: wrap;
  }
}
.kassa-holder .items-listing .row.header {
  padding-top: 0;
  padding-bottom: 5px;
  color: #7c7c7c;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row.header .amount,
  .kassa-holder .items-listing .row.header .availability,
  .kassa-holder .items-listing .row.header .information,
  .kassa-holder .items-listing .row.header .price {
    display: none;
  }
}
.kassa-holder .items-listing .row .product {
  width: 9%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .product {
    width: 20%;
  }
}
.kassa-holder .items-listing .row .information {
  width: 34%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .information {
    width: 80%;
  }
}
.kassa-holder .items-listing .row .availability {
  width: 19%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .availability {
    width: 80%;
    margin-left: 20%;
  }
}
.kassa-holder .items-listing .row .amount {
  width: 14%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .amount {
    width: 40%;
    margin-left: 20%;
  }
}
.kassa-holder .items-listing .row .price {
  width: 14%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .price {
    width: 40%;
  }
}
.kassa-holder .items-listing .row .x {
  cursor: pointer;
  width: 5%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .x {
    width: 0;
  }
}
.kassa-holder .items-listing .row .y {
  cursor: pointer;
  width: 5%;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .y {
    width: 0;
  }
}
.kassa-holder .items-listing .row .product {
  padding-right: 20px;
}
.kassa-holder .items-listing .row .product img {
  width: 100%;
}
.kassa-holder .items-listing .row .information .name {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .information .name {
    padding-right: 50px;
  }
}
@media screen and (max-width: 668px) {
  .kassa-holder .items-listing .row .information .name {
    padding-right: 20px;
  }
}
.kassa-holder .items-listing .row .information .sub-information .one-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.kassa-holder .items-listing .row .information .sub-information .one-row span {
  font-size: 16px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .information .sub-information .one-row .stock-info {
    width: 1px;
    overflow: hidden;
    height: 22px;
  }
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .information .sub-information .one-row {
    display: inline-block;
  }
  .kassa-holder .items-listing .row .information .sub-information .one-row span {
    margin-right: 3px;
  }
  .kassa-holder .items-listing .row .information .sub-information .one-row .stock-info {
    display: inline-block;
  }
}
.kassa-holder .items-listing .row .availability .availability-icon {
  padding-top: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 45px;
  line-height: 1em;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .availability .availability-icon {
    padding-top: 10px;
    padding-left: 30px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .availability .availability-icon {
    padding-top: 10px;
    padding-left: 30px;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 11px;
  }
}
.kassa-holder .items-listing .row .availability .availability-icon span {
  font-size: 14px;
  color: #afafaf;
  display: block;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .availability .availability-icon span {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .availability .availability-icon span {
    font-size: 11px;
  }
}
.kassa-holder .items-listing .row .availability .availability-icon.available:before,
.kassa-holder .items-listing .row .availability .availability-icon.unavailable:before {
  content: 'âœ“';
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #578d37;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .availability .availability-icon.available:before,
  .kassa-holder .items-listing .row .availability .availability-icon.unavailable:before {
    top: 8px;
    font-size: 11px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .availability .availability-icon.available:before,
  .kassa-holder .items-listing .row .availability .availability-icon.unavailable:before {
    top: 8px;
    font-size: 11px;
    width: 20px;
    height: 20px;
  }
}
.kassa-holder .items-listing .row .availability .availability-icon.unavailable:before {
  content: 'âœ•';
  background-color: gold;
}
.kassa-holder .items-listing .row .amount .number-input {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  display: inline-flex;
  padding: 10px;
}
.kassa-holder .items-listing .row .amount .number-input input[type='number'] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.kassa-holder .items-listing .row .amount .number-input input[type='number']::-webkit-inner-spin-button,
.kassa-holder .items-listing .row .amount .number-input input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.kassa-holder .items-listing .row .amount .number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: initial;
  border: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 30px;
  cursor: pointer;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .amount .number-input button {
    width: 24px;
  }
}
.kassa-holder .items-listing .row .amount .number-input button:after {
  content: '-';
  position: absolute;
  width: 25px;
  font-weight: 700;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background-color: #000;
  top: 2px;
  left: 0;
  font-size: 21px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.kassa-holder .items-listing .row .amount .number-input button.plus:after {
  content: '+';
}
.kassa-holder .items-listing .row .amount .number-input button:hover:after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #afd39a;
}
.kassa-holder .items-listing .row .amount .number-input input[type='number'] {
  font-family: sans-serif;
  width: 40px;
  border-width: 0;
  font-size: 18px;
  text-align: center;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .amount .number-input input[type='number'] {
    width: 30px;
  }
}
.kassa-holder .items-listing .row .price .prices {
  font-family: Poppins;
  font-weight: 700;
  font-size: 24px;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .kassa-holder .items-listing .row .price .prices {
    font-size: 18px;
  }
}
.kassa-holder .items-listing .row .price span {
  display: block;
}
.kassa-holder .items-listing .row .price .new {
  color: #dd5c5b;
}
.kassa-holder .items-listing .row .price .old {
  color: #aaa;
  font-size: 18px;
  text-decoration: line-through;
}
@media screen and (max-width: 668px) {
  .kassa-holder .items-listing .row .price .old {
    font-size: 14px;
  }
}
.kassa-holder .items-listing .row .x {
  font-family: Oswald;
  font-size: 21px;
  font-weight: 700;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .x {
    position: absolute;
    top: 5px;
    right: 50px;
  }
}
@media screen and (max-width: 668px) {
  .kassa-holder .items-listing .row .x {
    position: absolute;
    top: 5px;
    right: 18px;
  }
}
.kassa-holder .items-listing .row .y {
  font-family: Oswald;
  font-size: 21px;
  font-weight: 700;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .kassa-holder .items-listing .row .y {
    position: absolute;
    top: 5px;
    right: 18px;
  }
}
@media screen and (max-width: 668px) {
  .kassa-holder .items-listing .row .y {
    position: absolute;
    top: 5px;
    right: -10px;
  }
}
.klarna {
  text-align: center;
}
.klarna,
.klarna .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.klarna .box {
  height: 300px;
  width: 100%;
  color: #fff;
  max-width: 460px;
  background-color: #000;
}
.checkout {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.checkout-info__container,
.checkout__container {
  border: 1px solid #eee;
  margin-bottom: 1.875rem;
}
.checkout__title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.875rem;
}
.checkout__section-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.checkout__submit-button {
  width: 100%;
  font-size: 1.5rem;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  padding: 0.625rem;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
}
.checkout__submit-button[disabled] {
  background-color: #999;
}
.checkout__link,
.checkout__link:active,
.checkout__link:hover {
  color: #09f;
}
.checkout__text--in-line {
  margin-left: 5px;
}
.checkout__validator--error {
  color: #f04124;
}
.checkout-info__container .form__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-info__checkbox-input {
  display: none;
}
.checkout-info__checkbox-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 2em;
  width: 100%;
  margin-bottom: 1rem;
}
.checkout-info__checkbox-label:before {
  content: '';
  display: inline-block;
  border: 0.0625rem solid #999;
  width: 1rem;
  height: 1rem;
  margin: 0 0.3125rem 0 0;
  -moz-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  vertical-align: text-top;
}
.checkout-info__checkbox-label:hover:before {
  border: 1px solid #333;
}
.checkout-info__checkbox-input:checked ~ .checkout-info__checkbox-label:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='4.976 -199.505 250 250' fill='%23333'%3E%3Cpath d='M93.645 47.43l158.469-196.422-6.411-7.946L97.18 27.169l-3.535 4.382-3.537-4.383-75.86-94.052-6.411 7.963z'/%3E%3C/svg%3E")
    50% no-repeat;
  background-size: 75%;
}
.checkout-info__checkbox-radio {
  margin-top: 6px;
}
.checkout-info__summary--full-height {
  display: flex;
  flex-flow: column wrap;
}
.checkout-info__summary--full-row > * {
  display: flex;
}
.checkout-info__summary--expand {
  flex: 1 1 auto;
}
.checkout-info__messages {
  min-height: 100px;
  flex: 1 1 auto;
}
.checkout-info__campaign-button {
  font-size: 1rem;
  padding: 0.625rem;
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
}
.checkout-info__placeholder-container {
  height: 28px;
}
.checkout-cart__image {
  flex: 0 0 auto;
  max-width: 80px;
}
.checkout-cart__image-wrapper {
  display: inline-block;
  margin-right: 10px;
}
.checkout-cart__image-info {
  display: inline-block;
}
.checkout-cart__row {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
}
.checkout-cart__row:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.checkout-cart__row .cart__product-row__quantity {
  margin-top: 0;
}
.checkout-cart__row-content {
  display: flex;
  flex-wrap: wrap;
}
.checkout-cart__total {
  text-align: right;
  white-space: nowrap;
}
.checkout-cart__original-price {
  white-space: nowrap;
  font-size: 0.875rem;
  color: #aaa;
}
.checkout-cart__total-price {
  font-weight: 700;
}
@media screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}
body .row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
body .row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  body .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  body .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
body .row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
body .row.expanded {
  max-width: none;
}
body .row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
body .row:not(.expanded) .row {
  max-width: none;
}
body .row.collapse > .column,
body .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
body .row.collapse > .column > .row,
body .row.collapse > .columns > .row,
body .row.is-collapse-child {
  margin-right: 0;
  margin-left: 0;
}
body .column,
body .columns {
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}
body .banner-block__image {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 40em) {
  body .column,
  body .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
body .column.row.row,
body .row.row.columns {
  float: none;
  display: block;
}
body .row .column.row.row,
body .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
body .small-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
body .small-offset-0 {
  margin-left: 0;
}
body .small-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
body .small-offset-1 {
  margin-left: 8.33333%;
}
body .small-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
body .small-offset-2 {
  margin-left: 16.66667%;
}
body .small-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
body .small-offset-3 {
  margin-left: 25%;
}
body .small-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
body .small-offset-4 {
  margin-left: 33.33333%;
}
body .small-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
body .small-offset-5 {
  margin-left: 41.66667%;
}
body .small-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
body .small-offset-6 {
  margin-left: 50%;
}
body .small-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
body .small-offset-7 {
  margin-left: 58.33333%;
}
body .small-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
body .small-offset-8 {
  margin-left: 66.66667%;
}
body .small-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
body .small-offset-9 {
  margin-left: 75%;
}
body .small-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
body .small-offset-10 {
  margin-left: 83.33333%;
}
body .small-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
body .small-offset-11 {
  margin-left: 91.66667%;
}
body .small-up-1 {
  flex-wrap: wrap;
}
body .small-up-1 > .column,
body .small-up-1 > .columns {
  flex: 0 0 100%;
  max-width: 100%;
}
body .small-up-2 {
  flex-wrap: wrap;
}
body .small-up-2 > .column,
body .small-up-2 > .columns {
  flex: 0 0 50%;
  max-width: 50%;
}
body .small-up-3 {
  flex-wrap: wrap;
}
body .small-up-3 > .column,
body .small-up-3 > .columns {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
body .small-up-4 {
  flex-wrap: wrap;
}
body .small-up-4 > .column,
body .small-up-4 > .columns {
  flex: 0 0 25%;
  max-width: 25%;
}
body .small-up-5 {
  flex-wrap: wrap;
}
body .small-up-5 > .column,
body .small-up-5 > .columns {
  flex: 0 0 20%;
  max-width: 20%;
}
body .small-up-6 {
  flex-wrap: wrap;
}
body .small-up-6 > .column,
body .small-up-6 > .columns {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
body .small-up-7 {
  flex-wrap: wrap;
}
body .small-up-7 > .column,
body .small-up-7 > .columns {
  flex: 0 0 14.28571%;
  max-width: 14.28571%;
}
body .small-up-8 {
  flex-wrap: wrap;
}
body .small-up-8 > .column,
body .small-up-8 > .columns {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}
body .small-collapse > .column,
body .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
body .small-uncollapse > .column,
body .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  body .medium-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  body .medium-offset-0 {
    margin-left: 0;
  }
  body .medium-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  body .medium-offset-1 {
    margin-left: 8.33333%;
  }
  body .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  body .medium-offset-2 {
    margin-left: 16.66667%;
  }
  body .medium-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  body .medium-offset-3 {
    margin-left: 25%;
  }
  body .medium-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  body .medium-offset-4 {
    margin-left: 33.33333%;
  }
  body .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  body .medium-offset-5 {
    margin-left: 41.66667%;
  }
  body .medium-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  body .medium-offset-6 {
    margin-left: 50%;
  }
  body .medium-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  body .medium-offset-7 {
    margin-left: 58.33333%;
  }
  body .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  body .medium-offset-8 {
    margin-left: 66.66667%;
  }
  body .medium-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  body .medium-offset-9 {
    margin-left: 75%;
  }
  body .medium-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  body .medium-offset-10 {
    margin-left: 83.33333%;
  }
  body .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body .medium-offset-11 {
    margin-left: 91.66667%;
  }
  body .medium-up-1 {
    flex-wrap: wrap;
  }
  body .medium-up-1 > .column,
  body .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body .medium-up-2 {
    flex-wrap: wrap;
  }
  body .medium-up-2 > .column,
  body .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  body .medium-up-3 {
    flex-wrap: wrap;
  }
  body .medium-up-3 > .column,
  body .medium-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  body .medium-up-4 {
    flex-wrap: wrap;
  }
  body .medium-up-4 > .column,
  body .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  body .medium-up-5 {
    flex-wrap: wrap;
  }
  body .medium-up-5 > .column,
  body .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  body .medium-up-6 {
    flex-wrap: wrap;
  }
  body .medium-up-6 > .column,
  body .medium-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  body .medium-up-7 {
    flex-wrap: wrap;
  }
  body .medium-up-7 > .column,
  body .medium-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  body .medium-up-8 {
    flex-wrap: wrap;
  }
  body .medium-up-8 > .column,
  body .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  body .medium-expand {
    flex: 1 1 0px;
  }
}
body .row.medium-unstack > .column,
body .row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 40em) {
  body .row.medium-unstack > .column,
  body .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 40em) {
  body .medium-collapse > .column,
  body .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  body .medium-uncollapse > .column,
  body .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  body .large-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  body .large-offset-0 {
    margin-left: 0;
  }
  body .large-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  body .large-offset-1 {
    margin-left: 8.33333%;
  }
  body .large-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  body .large-offset-2 {
    margin-left: 16.66667%;
  }
  body .large-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  body .large-offset-3 {
    margin-left: 25%;
  }
  body .large-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  body .large-offset-4 {
    margin-left: 33.33333%;
  }
  body .large-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  body .large-offset-5 {
    margin-left: 41.66667%;
  }
  body .large-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  body .large-offset-6 {
    margin-left: 50%;
  }
  body .large-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  body .large-offset-7 {
    margin-left: 58.33333%;
  }
  body .large-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  body .large-offset-8 {
    margin-left: 66.66667%;
  }
  body .large-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  body .large-offset-9 {
    margin-left: 75%;
  }
  body .large-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  body .large-offset-10 {
    margin-left: 83.33333%;
  }
  body .large-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body .large-offset-11 {
    margin-left: 91.66667%;
  }
  body .large-up-1 {
    flex-wrap: wrap;
  }
  body .large-up-1 > .column,
  body .large-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  body .large-up-2 {
    flex-wrap: wrap;
  }
  body .large-up-2 > .column,
  body .large-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  body .large-up-3 {
    flex-wrap: wrap;
  }
  body .large-up-3 > .column,
  body .large-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  body .large-up-4 {
    flex-wrap: wrap;
  }
  body .large-up-4 > .column,
  body .large-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  body .large-up-5 {
    flex-wrap: wrap;
  }
  body .large-up-5 > .column,
  body .large-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  body .large-up-6 {
    flex-wrap: wrap;
  }
  body .large-up-6 > .column,
  body .large-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  body .large-up-7 {
    flex-wrap: wrap;
  }
  body .large-up-7 > .column,
  body .large-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  body .large-up-8 {
    flex-wrap: wrap;
  }
  body .large-up-8 > .column,
  body .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 64em) {
  body .large-expand {
    flex: 1 1 0px;
  }
}
body .row.large-unstack > .column,
body .row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 64em) {
  body .row.large-unstack > .column,
  body .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  body .large-collapse > .column,
  body .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  body .large-uncollapse > .column,
  body .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
body .shrink {
  flex: 0 0 auto;
  max-width: 100%;
}
body .column-block {
  margin-bottom: 1.25rem;
}
body .column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  body .column-block {
    margin-bottom: 1.875rem;
  }
  body .column-block > :last-child {
    margin-bottom: 0;
  }
}
body .align-left {
  justify-content: flex-start;
}
body .align-right {
  justify-content: flex-end;
}
body .align-center {
  justify-content: center;
}
body .align-justify {
  justify-content: space-between;
}
body .align-spaced {
  justify-content: space-around;
}
body .align-left.vertical.menu > li > a {
  justify-content: flex-start;
}
body .align-right.vertical.menu > li > a {
  justify-content: flex-end;
}
body .align-center.vertical.menu > li > a {
  justify-content: center;
}
body .align-top {
  align-items: flex-start;
}
body .align-self-top {
  align-self: flex-start;
}
body .align-bottom {
  align-items: flex-end;
}
body .align-self-bottom {
  align-self: flex-end;
}
body .align-middle {
  align-items: center;
}
body .align-self-middle {
  align-self: center;
}
body .align-stretch {
  align-items: stretch;
}
body .align-self-stretch {
  align-self: stretch;
}
body .align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}
body .small-order-1 {
  order: 1;
}
body .small-order-2 {
  order: 2;
}
body .small-order-3 {
  order: 3;
}
body .small-order-4 {
  order: 4;
}
body .small-order-5 {
  order: 5;
}
body .small-order-6 {
  order: 6;
}
@media print, screen and (min-width: 40em) {
  body .medium-order-1 {
    order: 1;
  }
  body .medium-order-2 {
    order: 2;
  }
  body .medium-order-3 {
    order: 3;
  }
  body .medium-order-4 {
    order: 4;
  }
  body .medium-order-5 {
    order: 5;
  }
  body .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  body .large-order-1 {
    order: 1;
  }
  body .large-order-2 {
    order: 2;
  }
  body .large-order-3 {
    order: 3;
  }
  body .large-order-4 {
    order: 4;
  }
  body .large-order-5 {
    order: 5;
  }
  body .large-order-6 {
    order: 6;
  }
}
body .faceted-search {
  padding-left: 0;
  margin-top: 0;
  font-family: Raleway, sans-serif;
}
@media (min-width: 1024px) {
  body .faceted-search__group {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eaeaea;
    -moz-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
  }
  body .faceted-search__group:first-of-type {
    margin-top: 0;
  }
  body .faceted-search__group--showmore {
    border: none;
  }
}
@media print, screen and (min-width: 64em) {
  body .hide-for-large {
    display: none !important;
  }
}
body .faceted-search__group-header {
  list-style: none;
  font-size: 1.25rem;
  color: #333;
  font-family: inherit;
  margin: 0 0 1rem;
  justify-content: center;
}
body .faceted-search__item {
  list-style: none;
  display: flex;
}
body .faceted-search__item.color-wrapper {
  display: inline-flex;
  margin: 0 20px 13px 0;
}
body .faceted-search__show-more-wrapper {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eaeaea;
}
body .faceted-search__show-more {
  position: relative;
  font-family: Raleway, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: block;
}
body .faceted-search__show-more:focus {
  outline: none;
}
body .faceted-search__show-more:after {
  position: absolute;
  content: '-';
  margin-left: 5px;
  font-size: 1.25rem;
  top: -7px;
}
body .faceted-search__show-more--collapsed:after {
  position: absolute;
  content: '+';
  margin-left: 5px;
  font-size: 1.25rem;
  top: -7px;
}
body .faceted-filter {
  white-space: nowrap;
}
body .faceted-filter__input {
  display: none;
}
body .faceted-filter__label {
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2em;
}
body .faceted-filter__label:before {
  content: '';
  display: inline-block;
  border: 0.0625rem solid #cbcbcb;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0.5rem 0 0;
  background-color: #f4f4f4;
  top: 2px;
  vertical-align: top;
  -moz-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
body .faceted-filter__label:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  position: absolute;
}
body .faceted-filter__label.color:before {
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  background-color: initial;
  border: 1px solid transparent;
}
body .faceted-filter__label.color:after {
  border: 0.0625rem solid #eee;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  position: inherit;
  margin-left: -43px;
}
body .faceted-filter__label.black:after {
  background-color: #141432;
}
body .faceted-filter__label.beige:after {
  background-color: beige;
}
body .faceted-filter__label.rose:after {
  background-color: #ff007f;
}
body .faceted-filter__label.grey:after {
  background-color: #f2f2f2;
}
body .faceted-filter__label.red:after {
  background-color: #f04124;
}
body .faceted-filter__label.brown:after {
  background-color: #b5651d;
}
body .faceted-filter__label.green:after {
  background-color: green;
}
body .faceted-filter__label.black:after {
  background-color: #000;
}
body .faceted-filter__label.blue:after {
  background-color: #00a5f0;
}
body .faceted-filter__label.green:after {
  background-color: #7dba00;
}
body .faceted-filter__label.grey:after {
  background-color: #c5c5c5;
}
body .faceted-filter__label.multi:after {
  background: linear-gradient(45deg, #ffa537 20%, #ea172f 50%, #00a5f0);
}
body .faceted-filter__label.orange:after {
  background-color: #ffa537;
}
body .faceted-filter__label.pink:after {
  background-color: #ea3b6e;
}
body .faceted-filter__label.purple:after {
  background-color: #a461b0;
}
body .faceted-filter__label.red:after {
  background-color: #ea172f;
}
body .faceted-filter__label.turqouise:after {
  background-color: #1fc5b6;
}
body .faceted-filter__label.white:after {
  background-color: #fff;
}
body .faceted-filter__label.yellow:after {
  background-color: #fee939;
}
body .faceted-filter__quantity {
  color: #666;
}
body .faceted-filter__input:checked ~ .faceted-filter__label:before {
  background-size: 75%;
}
body .faceted-filter__input:checked ~ .faceted-filter__label:after {
  background-color: #000;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.black:after {
  background-color: #141432;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.beige:after {
  background-color: beige;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.rose:after {
  background-color: #ff007f;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.blue:after {
  background-color: #00a5f0;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.grey:after {
  background-color: #f2f2f2;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.red:after {
  background-color: #f04124;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.white:after {
  background-color: #fff;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.brown:after {
  background-color: #b5651d;
}
body .faceted-filter__input:checked ~ .faceted-filter__label.beige:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.black:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.blue:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.brown:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.grey:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.red:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.rose:before,
body .faceted-filter__input:checked ~ .faceted-filter__label.white:before {
  border: 0.0625rem solid #aaa;
}
body .compact-filter.category-theme {
  margin-left: -0.4375rem;
  margin-right: -0.4375rem;
}
body .compact-filter .columns {
  padding: 0 0.4375rem;
}
body .compact-filter .accordion__header-container {
  display: flex;
  border-bottom: none;
  padding: 0;
  background: #f2f2f2;
  margin-bottom: 10px;
}
body .compact-filter .accordion__header {
  width: 100%;
  background-color: #111;
  color: #fff;
  border: none;
  text-transform: capitalize;
  margin: 0.9375rem 0;
}
@media screen and (max-width: 390px) {
  body .accordion__header {
    font-size: 12px !important;
  }
}
body .compact-filter .accordion__header.active {
  border: none;
  font-weight: 500;
}
body .compact-filter .accordion__panel {
  border: none;
  background: #f2f2f2;
  padding: 1px 0;
}
body .compact-filter .faceted-search.faceted-search--compact {
  margin: 0;
}
body .compact-filter .faceted-search__group {
  margin-top: 0;
  margin-bottom: 0.625rem;
  position: relative;
  list-style: none;
}
@media (min-width: 1024px) {
  body .compact-filter .faceted-search__group {
    overflow: visible;
  }
}
@media screen and (max-width: 63.99875em) {
  body .show-for-large {
    display: none !important;
  }
}
body .compact-filter .faceted-search__item {
  margin-bottom: 10px;
}
body .compact-filter .faceted-search__group-header {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 0.3125rem 0.625rem;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
}
body .compact-filter .faceted-search__group-header:after {
  display: none;
  content: '';
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='131.58 298.692 367.2 183.6'%3E%3Cpath fill='%23333' stroke='%23333' d='M141.372 298.692L315.18 467.604 489.6 298.692l9.18 5.508-183.6 178.092L131.58 304.2z'/%3E%3C/svg%3E")
    50% no-repeat;
  margin-left: auto;
  width: 1rem;
  height: 1rem;
}
body .compact-filter .faceted-search__group-header--show-compact:after {
  transform: rotate(180deg);
}
body .compact-filter .faceted-search__group-header--show-compact ~ .faceted-search__sublist {
  display: block;
}
body .compact-filter .faceted-search__sublist {
  display: none;
  margin-left: 0;
  background-color: #fff;
  position: absolute;
  top: calc(100% - 1px);
  left: 0.4375rem;
  padding: 0.625rem 0.625rem 0;
  z-index: 5;
  user-select: none;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid #aaa;
}
body .compact-filter .faceted-search__sublist:before {
  content: '';
  background-color: #fff;
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  z-index: 999;
  position: absolute;
  top: -0.375rem;
  left: 0.875rem;
  transform: rotate(45deg);
  border-color: #aaa transparent transparent #aaa;
  border-style: solid;
  border-width: 1px;
}
body .compact-filter .filter {
  padding: 0.9375rem 0.625rem;
}
body .compact-filter .filter__container {
  margin-top: 2.5rem;
  background-color: #f2f2f2;
  position: relative;
}
body .compact-filter .filter__container #facetedSearchCompact,
body .compact-filter .filter__container #sortCompact {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .compact-filter .filter__button {
  padding: 1rem;
  flex: 1;
  font-size: 1rem;
  color: #fff;
  background-color: #111;
  cursor: pointer;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
body .compact-filter .filter__button:focus {
  outline: none;
}
body .compact-filter .filter__button:hover {
  background-color: #141432;
}
body .selected-filter {
  padding: 0 0.625rem 0.625rem;
}
body .selected-filter__tag {
  margin-left: 0.3125rem;
  margin-bottom: 0.3125rem;
  padding: 0.3125rem 0.625rem;
  display: inline-block;
  background-color: #f2f2f2;
  cursor: pointer;
  border-radius: 3px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body .selected-filter__tag:after {
  margin-left: 0.3125rem;
  content: '';
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='119.952 219.132 367.2 367.2'%3E%3Cpath fill='%23333' d='M474.912 219.132l-171.36 171.972L131.58 219.132l-11.628 11.628 171.36 171.972-171.36 171.972 11.628 11.628L303.552 414.36l171.36 171.972 12.24-11.628L315.18 402.732 487.152 230.76z'/%3E%3C/svg%3E")
    50% no-repeat;
}
body .selected-filter__tag:hover {
  background-color: #f2f2f2;
}
body .subnav {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  font-family: Raleway, sans-serif;
  border-bottom: 1px solid #eaeaea;
  flex-direction: column;
}
body .subnav--compact {
  padding: 0 1.25rem 0.625rem;
}
body .subnav__header {
  list-style: none;
  font-size: 1.25rem;
  color: #333;
  font-family: inherit;
  margin: 0 0 1rem;
  align-self: start;
}
body .subnav__list {
  padding-left: 1.5rem;
  margin: 0;
}
body .subnav > .subnav__list {
  padding-left: 0;
}
body .subnav__link {
  padding: 0.3125rem 0;
  display: inline-block;
  font-size: 0.875rem;
  font-family: Raleway, sans-serif;
  font-weight: 500;
}
body .subnav__item {
  list-style: none;
}
body .subnav__item.active > .subnav__link {
  font-weight: 600;
  color: #000;
}
body .subnav > .subnav__list > .subnav__item > .subnav__link {
  font-size: 0.875rem;
}
body .accordion__header-container {
  border-bottom: 0.0625rem solid #f2f2f2;
}
body .accordion__header {
  display: inline-block;
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  cursor: pointer;
  margin-bottom: -0.0625rem;
  border: 0.0625rem solid #ccc;
}
body .accordion__header.active {
  background-color: #fff;
  cursor: default;
  color: #000;
  border-bottom-color: #fff;
}
body .accordion__panel {
  display: none;
  border: 0.0625rem solid #f2f2f2;
  border-top: none;
  background-color: #fff;
  padding: 1.25rem;
}
body .accordion__panel.active {
  display: block;
}
body .form__input {
  border-radius: 0;
  background-color: #fff;
  color: #000;
  border: 1px solid;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.tab__header-container {
  display: flex;
  border-bottom: 1px solid #999;
}
.tab__header {
  cursor: pointer;
  padding: 0.375rem 0 0;
  display: inline-block;
  color: #999;
  font-weight: 400;
  font-size: 0.75em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
}
.tab__radio {
  display: none;
}
.tab__content {
  display: none;
  font-size: 0.75em;
}
.tab__content .columns strong,
.tab__content p {
  font-size: 18px;
}
.tab__content--small-padding {
  padding: 0.875rem;
}
.tab .tab__radio:first-of-type:checked ~ .tab__header-container .tab__header:first-of-type {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:first-of-type:checked ~ .tab__content-container .tab__content:first-of-type {
  display: block;
}
.tab .tab__radio:nth-of-type(2):checked ~ .tab__header-container .tab__header:nth-of-type(2) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(2):checked ~ .tab__content-container .tab__content:nth-of-type(2) {
  display: block;
}
.tab .tab__radio:nth-of-type(3):checked ~ .tab__header-container .tab__header:nth-of-type(3) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(3):checked ~ .tab__content-container .tab__content:nth-of-type(3) {
  display: block;
}
.tab .tab__radio:nth-of-type(4):checked ~ .tab__header-container .tab__header:nth-of-type(4) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(4):checked ~ .tab__content-container .tab__content:nth-of-type(4) {
  display: block;
}
.tab .tab__radio:nth-of-type(5):checked ~ .tab__header-container .tab__header:nth-of-type(5) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(5):checked ~ .tab__content-container .tab__content:nth-of-type(5) {
  display: block;
}
.tab .tab__radio:nth-of-type(6):checked ~ .tab__header-container .tab__header:nth-of-type(6) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(6):checked ~ .tab__content-container .tab__content:nth-of-type(6) {
  display: block;
}
.tab .tab__radio:nth-of-type(7):checked ~ .tab__header-container .tab__header:nth-of-type(7) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(7):checked ~ .tab__content-container .tab__content:nth-of-type(7) {
  display: block;
}
.tab .tab__radio:nth-of-type(8):checked ~ .tab__header-container .tab__header:nth-of-type(8) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(8):checked ~ .tab__content-container .tab__content:nth-of-type(8) {
  display: block;
}
.tab .tab__radio:nth-of-type(9):checked ~ .tab__header-container .tab__header:nth-of-type(9) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(9):checked ~ .tab__content-container .tab__content:nth-of-type(9) {
  display: block;
}
.tab .tab__radio:nth-of-type(10):checked ~ .tab__header-container .tab__header:nth-of-type(10) {
  cursor: default;
  color: #333;
  border-bottom: 1px solid #333;
  margin: -1px 20px -1px -1px;
}
.tab .tab__radio:nth-of-type(10):checked ~ .tab__content-container .tab__content:nth-of-type(10) {
  display: block;
}
.row.medium-unstack > .column,
.row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 40em) {
  .row.medium-unstack > .column,
  .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}
.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row.collapse > .column > .row,
.row.collapse > .columns > .row,
.row.is-collapse-child {
  margin-right: 0;
  margin-left: 0;
}
.column,
.columns {
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}
@media print, screen and (min-width: 40em) {
  .column,
  .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column.row.row,
.row.row.columns {
  float: none;
  display: block;
}
.row .column.row.row,
.row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}
.row-inner {
  margin: 0 -0.625rem;
  display: flex;
  flex-flow: row wrap;
}
@media print, screen and (min-width: 40em) {
  .row-inner {
    margin: 0 -0.9375rem;
  }
}
.order-table,
.simple-table {
  background-color: #fff;
  word-break: break-word;
}
.order-table .row:nth-of-type(odd):not(:first-of-type),
.simple-table .row:nth-of-type(odd):not(:first-of-type) {
  background-color: #fbfbfb;
}
.simple-table__cell--no-break-word {
  word-break: keep-all;
}
.order-table .columns,
.simple-table .columns {
  padding: 0.625rem;
}
.order-table .order-table__header,
.order-table .simple-table__header,
.simple-table .simple-table__header {
  border-bottom: 1px solid #f2f2f2;
  font-weight: 700;
  text-transform: capitalize;
}
.order-table .order-table__header .columns,
.order-table .simple-table__header .columns,
.simple-table .simple-table__header .columns {
  padding: 1.25rem 0.625rem;
}
.order-table .table__icon,
.simple-table .table__icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0.3125rem;
}
.order-table .table__icon--edit,
.simple-table .table__icon--edit {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 90 612 611.999' fill='%23333'%3E%3Cpath d='M607.298 165.492l-70.789-70.79C533.385 91.578 529.313 90 525.313 90c-.687 0-1.332.289-2.013.382-.527.076-1.042.168-1.551.299a13.905 13.905 0 00-3.479 1.387 13.77 13.77 0 00-1.681 1.112c-.494.379-1.088.565-1.542 1.018L87.269 521.974.38 690.881c-1.751 5.604 2.82 11.118 8.279 11.118a8.35 8.35 0 002.465-.378l168.904-86.889 427.774-427.781c5.79-5.784 5.562-15.393-.504-21.459zM91.591 543.162l67.966 66.246L21.5 681.5l70.091-138.338zm80.53 57.717l-72.913-71.067L525.5 108.5 595 178 172.121 600.879z'/%3E%3C/svg%3E")
    50% no-repeat;
}
.order-table .table__icon--delete,
.simple-table .table__icon--delete {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='10 10 592 592' fill='%23333'%3E%3Cpath d='M201.25 239.5h18.25v247.75h-18.25V239.5zm95.625 247.75h18.25V239.5h-18.25v247.75zm95.625 0h18.25V239.5H392.5v247.75zm133 105.625c0 5.031-4.094 9.125-9.125 9.125H95.625c-5.032 0-9.125-4.094-9.125-9.125V143H19.125c-5.032 0-9.125-4.094-9.125-9.125s4.093-9.125 9.125-9.125H163V19.125c0-5.031 4.094-9.125 9.125-9.125h267.75c5.031 0 9.125 4.094 9.125 9.125V124.75h143.875c5.031 0 9.125 4.094 9.125 9.125S597.906 143 592.875 143H525.5m-94.75-18.25v-96.5h-249.5v96.5M114.75 143h-10v440.75h402.5V143'/%3E%3C/svg%3E")
    50% no-repeat;
}
.order-table .table__icon--accept,
.simple-table .table__icon--accept {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='4.976 -199.505 250 250' fill='%23333'%3E%3Cpath d='M93.645 47.43l158.469-196.422-6.411-7.946L97.18 27.169l-3.535 4.382-3.537-4.383-75.86-94.052-6.411 7.963z'/%3E%3C/svg%3E")
    50% no-repeat;
}
.order-table .table__icon--cancel,
.simple-table .table__icon--cancel {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='119.952 219.132 367.2 367.2'%3E%3Cpath fill='%23333' d='M474.912 219.132l-171.36 171.972L131.58 219.132l-11.628 11.628 171.36 171.972-171.36 171.972 11.628 11.628L303.552 414.36l171.36 171.972 12.24-11.628L315.18 402.732 487.152 230.76z'/%3E%3C/svg%3E")
    50% no-repeat;
  background-size: 75%;
}
.order-table .table__icon--reorder,
.simple-table .table__icon--reorder {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='10 10 592 592' fill='%23333'%3E%3Cpath d='M10 210.375V19.125C10 14.094 14.093 10 19.125 10s9.125 4.094 9.125 9.125v177.533l18.747-33.839c25.209-45.503 62.079-83.741 106.622-110.582C199.475 24.605 252.167 10 306 10c36.9 0 72.884 6.707 106.95 19.936 32.904 12.776 63.021 31.219 89.517 54.814 50.815 45.255 84.394 106.333 95.346 173h-18.574C556.126 126.311 440.177 28.25 306 28.25c-106.53 0-204.971 62.296-250.791 158.708l-6.792 14.292h161.958c5.031 0 9.125 4.094 9.125 9.125s-4.094 9.125-9.125 9.125h-191c-.413-.037-2.917-.309-5.231-1.501-2.152-1.11-4.144-2.802-4.144-7.624zm588.831 183.462c-1.681-.996-3.944-1.35-5.373-1.35h-.034l-.386.036-.163-.023h-191.25c-5.031 0-9.125 4.094-9.125 9.125s4.094 9.125 9.125 9.125H563.48l-6.806 14.298C510.785 521.456 412.39 583.75 306 583.75c-134.177 0-250.126-98.061-273.238-229.5H14.187c10.954 66.661 44.531 127.736 95.347 172.993 26.496 23.598 56.613 42.041 89.517 54.819C233.117 595.292 269.1 602 306 602c53.832 0 106.525-14.605 152.381-42.237 44.544-26.841 81.413-65.079 106.622-110.581l18.747-33.839v177.533c0 5.031 4.094 9.125 9.125 9.125s9.125-4.094 9.125-9.125v-191.25c0-5.909-2.303-7.274-3.169-7.789z'/%3E%3C/svg%3E")
    50% no-repeat;
}
.order-summary {
  border: 1px solid #f2f2f2;
  margin-top: 1.25rem;
  border-radius: 5px;
}
.order-summary h1,
.order-summary h2,
.order-summary h3 {
  font-family:
    Open Sans,
    sans-serif;
}
.order-summary .order-table .order-table__header,
.order-summary .simple-table__header,
.order-table .order-summary .order-table__header {
  border-bottom: none;
}
.order-summary .order-table .order-table__header .columns,
.order-summary .simple-table__header .columns,
.order-table .order-summary .order-table__header .columns {
  padding: 0.625rem;
}
.order-summary .row:nth-of-type(odd):not(:first-of-type) {
  background-color: initial;
}
.order-summary__separator {
  padding-top: 0.9375rem;
}
.order-table {
  margin-top: 1.25rem;
}
.order-table .order-table__header {
  border: 1px solid #f2f2f2;
  width: 100%;
}
.order-table .order-table__header .columns {
  padding: 0.625rem;
}
.order-table .order-table__body {
  border: 1px solid #f2f2f2;
  border-top: none;
  width: 100%;
}
.order-table .order-table__body .columns {
  padding: 0.3125rem 0.625rem;
}
.order-table__space-delimiter {
  height: 1.875rem;
}
.order-detail__container {
  padding: 0.625rem;
}
.order-detail__button-container {
  margin-bottom: 1.875rem;
}
.order-detail__button,
.order-detail__button:active,
.order-detail__button:focus,
.order-detail__button:hover {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0.625rem 0.9375rem;
  line-height: 1em;
  text-align: center;
  background-color: #111;
  color: #fff;
  border: none;
  outline: none;
  margin-bottom: 0.625rem;
  margin-right: 0.3125rem;
  cursor: pointer;
}
.order-detail__product-link,
.order-detail__product-link:active,
.order-detail__product-link:focus,
.order-detail__product-link:hover {
  color: #09f;
}
.order__checkbox-container {
  margin-top: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .medium-offset-0 {
    margin-left: 0;
  }
  .medium-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .medium-offset-1 {
    margin-left: 8.33333%;
  }
  .medium-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.66667%;
  }
  .medium-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .medium-offset-4 {
    margin-left: 33.33333%;
  }
  .medium-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.66667%;
  }
  .medium-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .medium-offset-7 {
    margin-left: 58.33333%;
  }
  .medium-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.66667%;
  }
  .medium-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .medium-offset-10 {
    margin-left: 83.33333%;
  }
  .medium-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.66667%;
  }
  .medium-up-1 {
    flex-wrap: wrap;
  }
  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    flex-wrap: wrap;
  }
  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    flex-wrap: wrap;
  }
  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .medium-up-4 {
    flex-wrap: wrap;
  }
  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    flex-wrap: wrap;
  }
  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    flex-wrap: wrap;
  }
  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .medium-up-7 {
    flex-wrap: wrap;
  }
  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.text--right {
  text-align: right;
}
.text--center {
  text-align: center;
}
.no-margin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.button-small {
  font-size: 12px;
  padding: 10px 15px;
}
.active-header {
  border-bottom: 2px solid #000;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100003;
  background-color: #dce5f5;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .cookie-banner {
    display: block;
    padding: 20px;
    margin-bottom: -1px;
  }
}
.cookie-banner .text-container {
  flex-grow: 1;
}
.cookie-banner .text-container a {
  color: #304b7d;
  text-decoration: underline;
}
.cookie-banner .text-container p {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .cookie-banner .text-container p {
    margin-left: auto;
  }
}
.cookie-banner .button-container .manage-cookies-link {
  color: #304b7d;
}
.cookie-banner .button-container .button {
  margin: 10px 50px 10px 20px;
}
@media screen and (max-width: 768px) {
  .cookie-banner .button-container .button {
    margin: auto auto 20px;
  }
}
.cookie-banner .cookie-lightbox-content {
  display: none;
}
.cookie-banner .cookie-lightbox-content h4 {
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .cookie-banner .cookie-lightbox-content h4 {
    padding-left: 0;
  }
}
.cookie-banner .cookie-lightbox-content p {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .cookie-banner .cookie-lightbox-content p {
    padding-left: 0;
  }
}
.cookie-banner .cookie-lightbox-content p a {
  color: #304b7d;
}
.cookie-banner .cookie-lightbox-content .button {
  display: block;
  margin: 20px 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cookie-banner .cookie-lightbox-content .button {
    margin: 20px 0;
  }
}
.cookie-banner .cookie-lightbox-content .consent-option {
  margin-right: 30px;
}
.cookie-banner .cookie-lightbox-content .consent-option :first-child {
  display: inline-block;
  font-weight: 700;
}
.cookie-banner .cookie-lightbox-content .consent-option .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.cookie-banner .cookie-lightbox-content .consent-option .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-banner .cookie-lightbox-content .consent-option .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #658dd5;
}
.cookie-banner .cookie-lightbox-content .consent-option .slider:before {
  position: absolute;
  content: '';
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: #a1bbeb;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #658dd5;
}
.cookie-banner .cookie-lightbox-content .consent-option input:checked + .slider {
  background-color: #3d6fcb;
  border-color: #3d6fcb;
}
.cookie-banner .cookie-lightbox-content .consent-option input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.cookie-banner .cookie-lightbox-content .consent-option input:disabled + .slider {
  background-color: initial;
  border-color: #afb1b5;
}
.cookie-banner .cookie-lightbox-content .consent-option input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  border-color: #3d6fcb;
  background-color: #dce5f5;
}
.cookie-banner .cookie-lightbox-content .consent-option input:disabled + .slider:before {
  background-color: #a0a0a0;
  border-color: #a0a0a0;
}
.cookie-banner .cookie-lightbox-content .consent-option .slider.round {
  border-radius: 34px;
}
.cookie-banner .cookie-lightbox-content .consent-option .slider.round:before {
  border-radius: 50%;
}
.cookie-banner .cookie-lightbox-content .consent-option .switch {
  float: right;
}
.cookie-banner .close {
  color: #000;
  top: 10px;
  right: 25px;
  font-size: 25px;
  font-weight: 700;
  float: right;
  width: 100%;
}
.cookie-banner .close i {
  float: right;
}
.cookie-banner .close i:before {
  content: 'âœ•';
}
.cookie-banner .close i:focus,
.cookie-banner .close i:hover {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.cookie-banner.box,
.cookie-banner.box .cookie-lightbox-content {
  display: block;
}
.cookie-banner.box .button-container,
.cookie-banner.box .text-container {
  display: none;
}
.cookie-lightbox {
  display: none;
  position: fixed;
  z-index: 100002;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .cookie-lightbox {
    display: none !important;
  }
}
.cookiepolicy-box {
  padding: 80px 20%;
}
.cookiepolicy-box h1 {
  margin-bottom: 0.7em;
}
.cookiepolicy-box .button {
  margin-top: 40px;
}
@keyframes open {
  0% {
    position: fixed;
    top: 90%;
    left: 0;
    width: 100%;
    display: flex;
    bottom: 0;
  }
  to {
    position: fixed;
    display: block;
    padding: 20px;
    width: 30%;
    top: 0;
    margin: 100px auto auto;
    left: 35%;
    bottom: unset;
  }
}
@keyframes open-tablet {
  0% {
    position: fixed;
    top: 75%;
    bottom: 0;
    padding: 20px;
    margin-bottom: -1px;
  }
  to {
    position: fixed;
    display: block;
    padding: 20px;
    top: 0;
    bottom: unset;
    height: 100%;
    margin: 0 auto auto;
  }
}
@keyframes close {
  0% {
    display: block;
    position: fixed;
    padding: 20px;
    width: 30%;
    top: 0;
    margin: 100px auto auto;
    left: 35%;
    bottom: 90%;
    height: 70%;
  }
  25% {
    top: 25%;
    bottom: 65%;
    width: 50%;
    left: 26%;
    height: 50%;
  }
  50% {
    top: 50%;
    bottom: 40%;
    width: 70%;
    left: 17%;
    height: 30%;
  }
  75% {
    top: 75%;
    bottom: 15%;
    width: 90%;
    left: 8%;
    height: 15%;
  }
  to {
    position: fixed;
    top: unset;
    left: 0;
    width: 100%;
    display: flex;
    bottom: 0;
    height: unset;
  }
}
@keyframes close-tablet {
  0% {
    position: fixed;
    display: block;
    padding: 20px;
    top: 0;
    bottom: 90%;
    height: 100%;
    margin: 0 auto auto;
  }
  to {
    position: fixed;
    top: 75%;
    bottom: 0;
    padding: 20px;
    margin-bottom: -1px;
  }
}
.open-desk {
  animation-name: open;
  animation-fill-mode: forwards;
}
.open-desk,
.open-tab {
  animation-duration: 0.5s;
}
.open-tab {
  animation-name: open-tablet;
  animation-fill-mode: forwards;
}
.close-desk {
  animation-name: close;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.close-tab {
  animation-name: close-tablet;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
.show-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .show-mobile,
  .show-mobile .manage-cookies-link {
    display: block;
  }
}
/*# sourceMappingURL=pyret.min.css.map*/
