@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

  80% {
    -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: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

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

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

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

  80% {
    -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: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

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

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

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

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

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

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

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

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

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

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

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

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

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

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

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
@charset "UTF-8";
@font-face {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../documents/fonts/Yantramanav-Regular.ttf") format("trueType");
}
@font-face {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../documents/fonts/Yantramanav-Medium.ttf") format("trueType");
}
@font-face {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../documents/fonts/Yantramanav-Bold.ttf") format("trueType");
}
@font-face {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../documents/fonts/Yantramanav-Light.ttf") format("trueType");
}
@font-face {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../documents/fonts/Yantramanav-Black.ttf") format("trueType");
}
@font-face {
  font-family: "Kaushan Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Kaushan Script"), local("KaushanScript"), url("../documents/fonts/Kaushan_Script/KaushanScript-Regular.ttf") format("trueType");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto"), url("../documents/fonts/Roboto-Light.ttf") format("trueType");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), url("../documents/fonts/Roboto-Regular.ttf") format("trueType");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto"), url("../documents/fonts/Roboto-Medium.ttf") format("trueType");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto"), url("../documents/fonts/Roboto-Bold.ttf") format("trueType");
}
/*!
 * Bootstrap v4.2.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #008ebd;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #d4021d;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #FF1743;
  --secondary: #d4021d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #d4021d;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Yantramanav", Helvetica, Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #FF1743;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(201.5, 0, 38.2155172414);
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #333;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: normal;
  color: inherit;
}

h1, .h1 {
  font-size: 44px;
}

h2, .h2 {
  font-size: 40px;
}

h3, .h3 {
  font-size: 34px;
}

h4, .h4 {
  font-size: 30px;
}

h5, .h5 {
  font-size: 25px;
}

h6, .h6 {
  font-size: 22px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 4rem;
  font-weight: 300;
  line-height: normal;
}

.display-2 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: normal;
}

.display-3 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: normal;
}

.display-4 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: normal;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #dcdbd8;
}

small,
.small,
.btn-labeled {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 5px;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.1rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.15rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid, .container-max, .scroll-list__content > div, .myaccount__container, .serien-tabs-widget__container, .single__lower-container, .single__container, .checkout__footer--container, .checkout__header--container, .cat-widget__wrapper, .video-widget__wrapper, .usp-widget__wrapper, .homepage__categories--container, .content__categories--container, .homepage__crossselling--container, .single__crossselling--container, .homepage__seo--container, .homepage__image-text-widget--container, .single__image-text-widget--container, .homepage__category-widget--container, .category__container, .footer__copyright-container, .header__container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row, .configurator__row, .single__item-series, .homepage__categories--cat-row, .content__categories--cat-row, .category__categories--cat-row, .homepage__image-text-widget--row, .single__image-text-widget--row, .category__image-text-widget--row, .homepage__category-widget--row, .reset-pwd h1.h2, .header-controls, .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .checkout__header--contact, .homepage__category-widget-col--big, .col-lg-5, .col-lg-4, .homepage__category-widget--inspiration .homepage__category-widget-col, .col-lg-3, .checkout__header--back, .homepage__category-widget-col, .col-lg-2, .checkout__header-brand, .category__categories--cat-outer, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .configurator__col, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .homepage__image-text-widget--col, .single__image-text-widget--col, .col-md-5, .col-md-4, .col-md-3, .homepage__categories--cat-outer, .content__categories--cat-outer, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .is-amazon-error-page #page-body .col-xs-12, .single__item-series .col-xs-12, .col-11, .col-10, .single__item-series .col-xs-10, .col-9, .col-8, .single__item-series .col-xs-8, .col-7, .col-6, .single__item-series .col-xs-6, .col-5, .col-4, .single__item-series .col-xs-4, .header-controls__wrapper, .header-brand, .header-mobile-nav-toggle, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4, .single__item-series .col-xs-4, .checkout__header-brand, .header-controls__wrapper, .header-brand, .header-mobile-nav-toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6, .single__item-series .col-xs-6, .homepage__categories--cat-outer, .content__categories--cat-outer, .category__categories--cat-outer, .homepage__category-widget-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8, .single__item-series .col-xs-8, .checkout__header--back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10, .single__item-series .col-xs-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12, .is-amazon-error-page #page-body .col-xs-12, .single__item-series .col-xs-12, .checkout__header--contact, .homepage__image-text-widget--col, .single__image-text-widget--col, .homepage__category-widget--inspiration .homepage__category-widget-col, .homepage__category-widget-col--big {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3, .homepage__categories--cat-outer, .content__categories--cat-outer, .category__categories--cat-outer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6, .homepage__image-text-widget--col, .single__image-text-widget--col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12, .configurator__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2, .checkout__header-brand, .category__categories--cat-outer {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3, .checkout__header--back, .homepage__category-widget-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4, .homepage__category-widget--inspiration .homepage__category-widget-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6, .checkout__header--contact, .homepage__category-widget-col--big {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1, .checkout__header--contact {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd), .single__table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(255, 190.04, 202.36);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(255, 134.36, 157.24);
}

.table-hover .table-primary:hover {
  background-color: rgb(255, 164.54, 181.6962068966);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(255, 164.54, 181.6962068966);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(242.96, 184.16, 191.72);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(232.64, 123.44, 137.48);
}

.table-hover .table-secondary:hover {
  background-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(194.8, 230.36, 202.92);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(143.2, 209.24, 158.28);
}

.table-hover .table-success:hover {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(242.96, 184.16, 191.72);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(232.64, 123.44, 137.48);
}

.table-hover .table-danger:hover {
  background-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}

.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: rgb(50.0574324324, 56.125, 62.1925675676);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(50.0574324324, 56.125, 62.1925675676);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd), .table-dark.single__table tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border: 1px solid #222 !important;
  border-radius: 4px !important;
  border-radius: 0.1rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5);
          box-shadow: rgba(0, 0, 0, 0.5);
}
.form-control::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::placeholder {
  color: #999;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.25;
}

.col-form-label-lg {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  font-size: 1.25rem;
  line-height: 1.3333333333;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  line-height: 1.25;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.15rem;
}

.form-control-lg {
  height: calc(2.6666666667rem + 2px);
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 0.2rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.5rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #333;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0.5rem;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.1rem;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right calc(2.25rem / 4);
  background-size: calc(2.25rem / 2) calc(2.25rem / 2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: 2.25rem;
  background-position: top calc(2.25rem / 4) right calc(2.25rem / 4);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: 3.6875rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat center right 2rem/1.125rem 1.125rem;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #d4021d;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(212, 2, 29, 0.9);
  border-radius: 0.1rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #d4021d;
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right calc(2.25rem / 4);
  background-size: calc(2.25rem / 2) calc(2.25rem / 2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4021d' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #d4021d;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: 2.25rem;
  background-position: top calc(2.25rem / 4) right calc(2.25rem / 4);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #d4021d;
  padding-right: 3.6875rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d4021d' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") no-repeat center right 2rem/1.125rem 1.125rem;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #d4021d;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
}
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #d4021d;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #d4021d;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #d4021d;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(252.7102803738, 12.2897196262, 43.2009345794);
  background-color: rgb(252.7102803738, 12.2897196262, 43.2009345794);
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #d4021d;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #d4021d;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #d4021d;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, .single__series-button, .feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0.1rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn, .single__series-button, .feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover, .single__series-button:hover, .feedback-container .btn-secondary:hover, .feedback-container .feedback-info-segment.btn-default:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .single__series-button:focus, .feedback-container .btn-secondary:focus, .feedback-container .feedback-info-segment.btn-default:focus, .btn.focus, .focus.single__series-button, .feedback-container .focus.btn-secondary, .feedback-container .focus.feedback-info-segment.btn-default {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.25);
}
.btn.disabled, .disabled.single__series-button, .feedback-container .disabled.btn-secondary, .feedback-container .disabled.feedback-info-segment.btn-default, .btn:disabled, .single__series-button:disabled, .feedback-container .btn-secondary:disabled, .feedback-container .feedback-info-segment.btn-default:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled), .single__series-button:not(:disabled):not(.disabled), .feedback-container .btn-secondary:not(:disabled):not(.disabled), .feedback-container .feedback-info-segment.btn-default:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled, a.disabled.single__series-button, .feedback-container a.disabled.btn-secondary, .feedback-container a.disabled.feedback-info-segment.btn-default,
fieldset:disabled a.btn,
fieldset:disabled a.single__series-button,
fieldset:disabled .feedback-container a.btn-secondary,
fieldset:disabled .feedback-container a.feedback-info-segment.btn-default,
.feedback-container fieldset:disabled a.btn-secondary,
.feedback-container fieldset:disabled a.feedback-info-segment.btn-default {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(239.75, 0, 45.4698275862);
  border-color: rgb(227, 0, 43.0517241379);
}
.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(227, 0, 43.0517241379);
  border-color: rgb(214.25, 0, 40.6336206897);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
}

.btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-secondary:hover, .feedback-container .feedback-info-segment.btn-default:hover {
  color: #fff;
  background-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
  border-color: rgb(161.476635514, 1.523364486, 22.0887850467);
}
.btn-secondary:focus, .feedback-container .feedback-info-segment.btn-default:focus, .btn-secondary.focus, .feedback-container .focus.feedback-info-segment.btn-default {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}
.btn-secondary.disabled, .feedback-container .disabled.feedback-info-segment.btn-default, .btn-secondary:disabled, .feedback-container .feedback-info-segment.btn-default:disabled {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .feedback-container .feedback-info-segment.btn-default:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .feedback-container .feedback-info-segment.btn-default:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle, .feedback-container .show > .dropdown-toggle.feedback-info-segment.btn-default {
  color: #fff;
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
  border-color: rgb(148.8457943925, 1.4042056075, 20.3609813084);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .feedback-container .feedback-info-segment.btn-default:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .feedback-container .feedback-info-segment.btn-default:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus, .feedback-container .show > .dropdown-toggle.feedback-info-segment.btn-default:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #fff;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
  border-color: rgb(161.476635514, 1.523364486, 22.0887850467);
}
.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
  border-color: rgb(148.8457943925, 1.4042056075, 20.3609813084);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #FF1743;
  border-color: #FF1743;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #FF1743;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.5);
}

.btn-outline-secondary {
  color: #d4021d;
  border-color: #d4021d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #d4021d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #d4021d;
  border-color: #d4021d;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #d4021d;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(212, 2, 29, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #FF1743;
}
.btn-link:hover {
  color: rgb(201.5, 0, 38.2155172414);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .single__series-button, .feedback-container .btn-group-lg > .btn-secondary, .feedback-container .btn-group-lg > .feedback-info-segment.btn-default {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 0.2rem;
}

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .single__series-button, .feedback-container .btn-group-sm > .btn-secondary, .feedback-container .btn-group-sm > .feedback-info-segment.btn-default {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.15rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.1rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:first-child {
  border-top-left-radius: calc(0.1rem - 1px);
  border-top-right-radius: calc(0.1rem - 1px);
}
.dropdown-item:last-child {
  border-bottom-right-radius: calc(0.1rem - 1px);
  border-bottom-left-radius: calc(0.1rem - 1px);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #FF1743;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .btn-group > .single__series-button, .feedback-container .btn-group > .btn-secondary, .feedback-container .btn-group > .feedback-info-segment.btn-default,
.btn-group-vertical > .btn,
.btn-group-vertical > .single__series-button,
.feedback-container .btn-group-vertical > .btn-secondary,
.feedback-container .btn-group-vertical > .feedback-info-segment.btn-default {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.btn-group > .btn:hover, .btn-group > .single__series-button:hover, .feedback-container .btn-group > .btn-secondary:hover, .feedback-container .btn-group > .feedback-info-segment.btn-default:hover,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .single__series-button:hover,
.feedback-container .btn-group-vertical > .btn-secondary:hover,
.feedback-container .btn-group-vertical > .feedback-info-segment.btn-default:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .single__series-button:focus, .feedback-container .btn-group > .btn-secondary:focus, .feedback-container .btn-group > .feedback-info-segment.btn-default:focus, .btn-group > .btn:active, .btn-group > .single__series-button:active, .feedback-container .btn-group > .btn-secondary:active, .feedback-container .btn-group > .feedback-info-segment.btn-default:active, .btn-group > .btn.active, .btn-group > .active.single__series-button, .feedback-container .btn-group > .active.btn-secondary, .feedback-container .btn-group > .active.feedback-info-segment.btn-default,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .single__series-button:focus,
.feedback-container .btn-group-vertical > .btn-secondary:focus,
.feedback-container .btn-group-vertical > .feedback-info-segment.btn-default:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .single__series-button:active,
.feedback-container .btn-group-vertical > .btn-secondary:active,
.feedback-container .btn-group-vertical > .feedback-info-segment.btn-default:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .active.single__series-button,
.feedback-container .btn-group-vertical > .active.btn-secondary,
.feedback-container .btn-group-vertical > .active.feedback-info-segment.btn-default {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .btn-group > .single__series-button:not(:first-child), .feedback-container .btn-group > .btn-secondary:not(:first-child), .feedback-container .btn-group > .feedback-info-segment.btn-default:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .single__series-button:not(:last-child):not(.dropdown-toggle), .feedback-container .btn-group > .btn-secondary:not(:last-child):not(.dropdown-toggle), .feedback-container .btn-group > .feedback-info-segment.btn-default:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn-group:not(:last-child) > .single__series-button,
.feedback-container .btn-group > .btn-group:not(:last-child) > .btn-secondary,
.feedback-container .btn-group > .btn-group:not(:last-child) > .feedback-info-segment.btn-default {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child), .btn-group > .single__series-button:not(:first-child), .feedback-container .btn-group > .btn-secondary:not(:first-child), .feedback-container .btn-group > .feedback-info-segment.btn-default:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn-group:not(:first-child) > .single__series-button,
.feedback-container .btn-group > .btn-group:not(:first-child) > .btn-secondary,
.feedback-container .btn-group > .btn-group:not(:first-child) > .feedback-info-segment.btn-default {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .btn-group-sm > .single__series-button + .dropdown-toggle-split, .feedback-container .btn-group-sm > .btn-secondary + .dropdown-toggle-split, .feedback-container .btn-group-sm > .feedback-info-segment.btn-default + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > .single__series-button + .dropdown-toggle-split, .feedback-container .btn-group-lg > .btn-secondary + .dropdown-toggle-split, .feedback-container .btn-group-lg > .feedback-info-segment.btn-default + .dropdown-toggle-split {
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group-vertical > .btn, .btn-group-vertical > .single__series-button, .feedback-container .btn-group-vertical > .btn-secondary, .feedback-container .btn-group-vertical > .feedback-info-segment.btn-default,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .single__series-button:not(:first-child), .feedback-container .btn-group-vertical > .btn-secondary:not(:first-child), .feedback-container .btn-group-vertical > .feedback-info-segment.btn-default:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .single__series-button:not(:last-child):not(.dropdown-toggle), .feedback-container .btn-group-vertical > .btn-secondary:not(:last-child):not(.dropdown-toggle), .feedback-container .btn-group-vertical > .feedback-info-segment.btn-default:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn-group:not(:last-child) > .single__series-button,
.feedback-container .btn-group-vertical > .btn-group:not(:last-child) > .btn-secondary,
.feedback-container .btn-group-vertical > .btn-group:not(:last-child) > .feedback-info-segment.btn-default {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .single__series-button:not(:first-child), .feedback-container .btn-group-vertical > .btn-secondary:not(:first-child), .feedback-container .btn-group-vertical > .feedback-info-segment.btn-default:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .single__series-button,
.feedback-container .btn-group-vertical > .btn-group:not(:first-child) > .btn-secondary,
.feedback-container .btn-group-vertical > .btn-group:not(:first-child) > .feedback-info-segment.btn-default {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .btn-group-toggle > .single__series-button, .feedback-container .btn-group-toggle > .btn-secondary, .feedback-container .btn-group-toggle > .feedback-info-segment.btn-default,
.btn-group-toggle > .btn-group > .btn,
.btn-group-toggle > .btn-group > .single__series-button,
.feedback-container .btn-group-toggle > .btn-group > .btn-secondary,
.feedback-container .btn-group-toggle > .btn-group > .feedback-info-segment.btn-default {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .single__series-button input[type=radio], .feedback-container .btn-group-toggle > .btn-secondary input[type=radio], .feedback-container .btn-group-toggle > .feedback-info-segment.btn-default input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .single__series-button input[type=checkbox],
.feedback-container .btn-group-toggle > .btn-secondary input[type=checkbox],
.feedback-container .btn-group-toggle > .feedback-info-segment.btn-default input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .single__series-button input[type=radio],
.feedback-container .btn-group-toggle > .btn-group > .btn-secondary input[type=radio],
.feedback-container .btn-group-toggle > .btn-group > .feedback-info-segment.btn-default input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .single__series-button input[type=checkbox],
.feedback-container .btn-group-toggle > .btn-group > .btn-secondary input[type=checkbox],
.feedback-container .btn-group-toggle > .btn-group > .feedback-info-segment.btn-default input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend .single__series-button, .input-group-prepend .feedback-container .btn-secondary, .input-group-prepend .feedback-container .feedback-info-segment.btn-default, .feedback-container .input-group-prepend .btn-secondary, .feedback-container .input-group-prepend .feedback-info-segment.btn-default,
.input-group-append .btn,
.input-group-append .single__series-button,
.input-group-append .feedback-container .btn-secondary,
.input-group-append .feedback-container .feedback-info-segment.btn-default,
.feedback-container .input-group-append .btn-secondary,
.feedback-container .input-group-append .feedback-info-segment.btn-default {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend .single__series-button:focus, .input-group-prepend .feedback-container .btn-secondary:focus, .input-group-prepend .feedback-container .feedback-info-segment.btn-default:focus, .feedback-container .input-group-prepend .btn-secondary:focus, .feedback-container .input-group-prepend .feedback-info-segment.btn-default:focus,
.input-group-append .btn:focus,
.input-group-append .single__series-button:focus,
.input-group-append .feedback-container .btn-secondary:focus,
.input-group-append .feedback-container .feedback-info-segment.btn-default:focus,
.feedback-container .input-group-append .btn-secondary:focus,
.feedback-container .input-group-append .feedback-info-segment.btn-default:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend .single__series-button + .btn, .input-group-prepend .feedback-container .btn-secondary + .btn, .input-group-prepend .feedback-container .feedback-info-segment.btn-default + .btn, .feedback-container .input-group-prepend .btn-secondary + .btn, .feedback-container .input-group-prepend .feedback-info-segment.btn-default + .btn, .input-group-prepend .btn + .single__series-button, .input-group-prepend .feedback-container .btn + .btn-secondary, .input-group-prepend .feedback-container .btn + .feedback-info-segment.btn-default, .feedback-container .input-group-prepend .btn + .btn-secondary, .feedback-container .input-group-prepend .btn + .feedback-info-segment.btn-default, .input-group-prepend .single__series-button + .single__series-button, .input-group-prepend .feedback-container .btn-secondary + .single__series-button, .input-group-prepend .feedback-container .feedback-info-segment.btn-default + .single__series-button, .feedback-container .input-group-prepend .btn-secondary + .single__series-button, .feedback-container .input-group-prepend .feedback-info-segment.btn-default + .single__series-button, .input-group-prepend .feedback-container .single__series-button + .btn-secondary, .input-group-prepend .feedback-container .single__series-button + .feedback-info-segment.btn-default, .feedback-container .input-group-prepend .single__series-button + .btn-secondary, .feedback-container .input-group-prepend .single__series-button + .feedback-info-segment.btn-default, .input-group-prepend .feedback-container .btn-secondary + .btn-secondary, .input-group-prepend .feedback-container .feedback-info-segment.btn-default + .btn-secondary, .input-group-prepend .feedback-container .btn-secondary + .feedback-info-segment.btn-default, .input-group-prepend .feedback-container .feedback-info-segment.btn-default + .feedback-info-segment.btn-default, .feedback-container .input-group-prepend .btn-secondary + .btn-secondary, .feedback-container .input-group-prepend .feedback-info-segment.btn-default + .btn-secondary, .feedback-container .input-group-prepend .btn-secondary + .feedback-info-segment.btn-default, .feedback-container .input-group-prepend .feedback-info-segment.btn-default + .feedback-info-segment.btn-default,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .single__series-button + .input-group-text,
.input-group-prepend .feedback-container .btn-secondary + .input-group-text,
.input-group-prepend .feedback-container .feedback-info-segment.btn-default + .input-group-text,
.feedback-container .input-group-prepend .btn-secondary + .input-group-text,
.feedback-container .input-group-prepend .feedback-info-segment.btn-default + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .single__series-button,
.input-group-prepend .feedback-container .input-group-text + .btn-secondary,
.input-group-prepend .feedback-container .input-group-text + .feedback-info-segment.btn-default,
.feedback-container .input-group-prepend .input-group-text + .btn-secondary,
.feedback-container .input-group-prepend .input-group-text + .feedback-info-segment.btn-default,
.input-group-append .btn + .btn,
.input-group-append .single__series-button + .btn,
.input-group-append .feedback-container .btn-secondary + .btn,
.input-group-append .feedback-container .feedback-info-segment.btn-default + .btn,
.feedback-container .input-group-append .btn-secondary + .btn,
.feedback-container .input-group-append .feedback-info-segment.btn-default + .btn,
.input-group-append .btn + .single__series-button,
.input-group-append .feedback-container .btn + .btn-secondary,
.input-group-append .feedback-container .btn + .feedback-info-segment.btn-default,
.feedback-container .input-group-append .btn + .btn-secondary,
.feedback-container .input-group-append .btn + .feedback-info-segment.btn-default,
.input-group-append .single__series-button + .single__series-button,
.input-group-append .feedback-container .btn-secondary + .single__series-button,
.input-group-append .feedback-container .feedback-info-segment.btn-default + .single__series-button,
.feedback-container .input-group-append .btn-secondary + .single__series-button,
.feedback-container .input-group-append .feedback-info-segment.btn-default + .single__series-button,
.input-group-append .feedback-container .single__series-button + .btn-secondary,
.input-group-append .feedback-container .single__series-button + .feedback-info-segment.btn-default,
.feedback-container .input-group-append .single__series-button + .btn-secondary,
.feedback-container .input-group-append .single__series-button + .feedback-info-segment.btn-default,
.input-group-append .feedback-container .btn-secondary + .btn-secondary,
.input-group-append .feedback-container .feedback-info-segment.btn-default + .btn-secondary,
.input-group-append .feedback-container .btn-secondary + .feedback-info-segment.btn-default,
.input-group-append .feedback-container .feedback-info-segment.btn-default + .feedback-info-segment.btn-default,
.feedback-container .input-group-append .btn-secondary + .btn-secondary,
.feedback-container .input-group-append .feedback-info-segment.btn-default + .btn-secondary,
.feedback-container .input-group-append .btn-secondary + .feedback-info-segment.btn-default,
.feedback-container .input-group-append .feedback-info-segment.btn-default + .feedback-info-segment.btn-default,
.input-group-append .btn + .input-group-text,
.input-group-append .single__series-button + .input-group-text,
.input-group-append .feedback-container .btn-secondary + .input-group-text,
.input-group-append .feedback-container .feedback-info-segment.btn-default + .input-group-text,
.feedback-container .input-group-append .btn-secondary + .input-group-text,
.feedback-container .input-group-append .feedback-info-segment.btn-default + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .single__series-button,
.input-group-append .feedback-container .input-group-text + .btn-secondary,
.input-group-append .feedback-container .input-group-text + .feedback-info-segment.btn-default,
.feedback-container .input-group-append .input-group-text + .btn-secondary,
.feedback-container .input-group-append .input-group-text + .feedback-info-segment.btn-default {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.1rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(2.6666666667rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .single__series-button,
.feedback-container .input-group-lg > .input-group-prepend > .btn-secondary,
.feedback-container .input-group-lg > .input-group-prepend > .feedback-info-segment.btn-default,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .single__series-button,
.feedback-container .input-group-lg > .input-group-append > .btn-secondary,
.feedback-container .input-group-lg > .input-group-append > .feedback-info-segment.btn-default {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 0.2rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.8125rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .single__series-button,
.feedback-container .input-group-sm > .input-group-prepend > .btn-secondary,
.feedback-container .input-group-sm > .input-group-prepend > .feedback-info-segment.btn-default,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .single__series-button,
.feedback-container .input-group-sm > .input-group-append > .btn-secondary,
.feedback-container .input-group-sm > .input-group-append > .feedback-info-segment.btn-default {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.15rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 2rem;
}

.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .single__series-button, .feedback-container .input-group > .input-group-prepend > .btn-secondary, .feedback-container .input-group > .input-group-prepend > .feedback-info-segment.btn-default,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .single__series-button,
.feedback-container .input-group > .input-group-append:not(:last-child) > .btn-secondary,
.feedback-container .input-group > .input-group-append:not(:last-child) > .feedback-info-segment.btn-default,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .single__series-button:not(:last-child):not(.dropdown-toggle),
.feedback-container .input-group > .input-group-append:last-child > .btn-secondary:not(:last-child):not(.dropdown-toggle),
.feedback-container .input-group > .input-group-append:last-child > .feedback-info-segment.btn-default:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .single__series-button, .feedback-container .input-group > .input-group-append > .btn-secondary, .feedback-container .input-group > .input-group-append > .feedback-info-segment.btn-default,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .single__series-button,
.feedback-container .input-group > .input-group-prepend:not(:first-child) > .btn-secondary,
.feedback-container .input-group > .input-group-prepend:not(:first-child) > .feedback-info-segment.btn-default,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .single__series-button:not(:first-child),
.feedback-container .input-group > .input-group-prepend:first-child > .btn-secondary:not(:first-child),
.feedback-container .input-group > .input-group-prepend:first-child > .feedback-info-segment.btn-default:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #FF1743;
  background-color: #FF1743;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
          box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #66afe9;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #84c6ff;
  border-color: #84c6ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #767676;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #eee;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.1rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #0074d9;
  background-color: #0074d9;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 23, 67, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(255, 23, 67, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 23, 67, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 23, 67, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 0.8rem 2rem 0.8rem 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px;
  background-color: #fff;
  border: 0px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(102, 175, 233, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(102, 175, 233, 0.5);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 1rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(2.6666666667rem + 2px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 2.5rem;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 2.5rem;
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #66afe9;
  -webkit-box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
          box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0074d9;
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 2.5rem;
  padding: 1rem 0.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.1rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 1rem 0.5rem;
  line-height: 1.25;
  color: #555;
  content: "Browse";
  background-color: #eee;
  border-left: inherit;
  border-radius: 0 0.1rem 0.1rem 0;
}

.custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 1px #fff, rgba(0, 0, 0, 0.5);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, rgba(0, 0, 0, 0.5);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, rgba(0, 0, 0, 0.5);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #FF1743;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(255, 201.5, 211.6465517241);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #FF1743;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(255, 201.5, 211.6465517241);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #FF1743;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: rgb(255, 201.5, 211.6465517241);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #3f3f3f;
  background-color: #3f3f3f;
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(63, 63, 63, 0.5);
}

.widget-cookie-bar .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default {
  border-radius: 5px;
  border: 2px solid #FF1743;
  background: white !important;
  height: 52px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 20px;
}
.widget-cookie-bar .btn.btn-primary.btn-block.btn-appearance:hover, .widget-cookie-bar .btn-primary.btn-block.btn-appearance.single__series-button:hover, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary:hover, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default:hover, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.btn-secondary:hover, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default:hover, .widget-cookie-bar .btn.btn-primary.btn-block.btn-appearance:focus, .widget-cookie-bar .btn-primary.btn-block.btn-appearance.single__series-button:focus, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary:focus, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default:focus, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.btn-secondary:focus, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default:focus, .widget-cookie-bar .btn.btn-primary.btn-block.btn-appearance:active, .widget-cookie-bar .btn-primary.btn-block.btn-appearance.single__series-button:active, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary:active, .widget-cookie-bar .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default:active, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.btn-secondary:active, .feedback-container .widget-cookie-bar .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default:active {
  background-color: #FF1743 !important;
  color: #fff !important;
}

.widget-cookie-bar .cookie-bar {
  max-height: 100vh;
  padding-top: 0;
  overflow: auto;
}

.widget-cookie-bar .col-4.col-md-3 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.col-md-3 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.col-md-3 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.col-md-3 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.col-md-3 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.col-md-3 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.checkout__header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.checkout__header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.checkout__header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.checkout__header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-4.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.header-controls__wrapper .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.header-controls__wrapper .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.header-controls__wrapper .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-brand.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-brand.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-brand.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-brand.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default {
  height: 40px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .widget-cookie-bar .col-4.col-md-3 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.col-md-3 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.col-md-3 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.col-md-3 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.col-md-3 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.col-md-3 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.checkout__header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.checkout__header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.checkout__header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.checkout__header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-4.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-4.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-4.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-4.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-4.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-4.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn.btn-primary.btn-block.btn-appearance, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.single__series-button, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.header-controls__wrapper .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.header-controls__wrapper .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.header-controls__wrapper .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.header-brand .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.header-brand .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.header-brand .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.header-brand .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.header-brand .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-brand .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-brand.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-brand.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-brand.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-brand.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-brand.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn.btn-primary.btn-block.btn-appearance, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .feedback-container .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-primary.btn-block.btn-appearance.feedback-info-segment.btn-default {
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .widget-cookie-bar .col-4.col-md-3 .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-4.col-md-3 .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-4.col-md-3 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-4.col-md-3 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-4.col-md-3 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-4.col-md-3 .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .col-md-3.col-xs-4 .btn-block.btn-block.btn-default.feedback-info-segment, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn.btn-block.btn-block.btn-default, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-block.btn-block.btn-default.single__series-button, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .col-md-3.col-xs-4 .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-md-3.checkout__header-brand .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-md-3.checkout__header-brand .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-md-3.checkout__header-brand .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-md-3.checkout__header-brand .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-md-3.checkout__header-brand .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.checkout__header-brand .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-4.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-4.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-4.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-4.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-4.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-4.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-4.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-4.homepage__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-4.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn.btn-block.btn-block.btn-default, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.single__series-button, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-4.category__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-4.category__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-4.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-4.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-4.category__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-4.category__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.feedback-info-segment, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn.btn-block.btn-block.btn-default, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.single__series-button, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4 .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-md-3.header-controls__wrapper .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-md-3.header-controls__wrapper .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-md-3.header-controls__wrapper .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-controls__wrapper .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-md-3.header-brand .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-md-3.header-brand .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-md-3.header-brand .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-md-3.header-brand .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-md-3.header-brand .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-brand .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-brand.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-brand.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-brand.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-brand.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.homepage__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-brand.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-brand.category__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-brand.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-brand.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-brand.category__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .col-md-3.header-mobile-nav-toggle .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn.btn-block.btn-block.btn-default, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-block.btn-block.btn-default.single__series-button, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.btn-secondary, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .feedback-container .btn-block.btn-block.btn-default.feedback-info-segment, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-block.btn-block.btn-default.btn-secondary, .feedback-container .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer .btn-block.btn-block.btn-default.feedback-info-segment {
    margin-bottom: 5px;
  }
}

@media (max-width: 767.98px) {
  .widget-cookie-bar .col-4.col-md-3, .widget-cookie-bar .single__item-series .col-md-3.col-xs-4, .single__item-series .widget-cookie-bar .col-md-3.col-xs-4, .widget-cookie-bar .col-md-3.checkout__header-brand, .widget-cookie-bar .col-4.homepage__categories--cat-outer, .widget-cookie-bar .col-4.content__categories--cat-outer, .widget-cookie-bar .single__item-series .homepage__categories--cat-outer.col-xs-4, .widget-cookie-bar .single__item-series .col-xs-4.content__categories--cat-outer, .single__item-series .widget-cookie-bar .homepage__categories--cat-outer.col-xs-4, .single__item-series .widget-cookie-bar .col-xs-4.content__categories--cat-outer, .widget-cookie-bar .homepage__categories--cat-outer.checkout__header-brand, .widget-cookie-bar .checkout__header-brand.content__categories--cat-outer, .widget-cookie-bar .col-4.category__categories--cat-outer, .widget-cookie-bar .single__item-series .category__categories--cat-outer.col-xs-4, .single__item-series .widget-cookie-bar .category__categories--cat-outer.col-xs-4, .widget-cookie-bar .category__categories--cat-outer.checkout__header-brand, .widget-cookie-bar .col-md-3.header-controls__wrapper, .widget-cookie-bar .header-controls__wrapper.homepage__categories--cat-outer, .widget-cookie-bar .header-controls__wrapper.content__categories--cat-outer, .widget-cookie-bar .header-controls__wrapper.category__categories--cat-outer, .widget-cookie-bar .col-md-3.header-brand, .widget-cookie-bar .header-brand.homepage__categories--cat-outer, .widget-cookie-bar .header-brand.content__categories--cat-outer, .widget-cookie-bar .header-brand.category__categories--cat-outer, .widget-cookie-bar .col-md-3.header-mobile-nav-toggle, .widget-cookie-bar .header-mobile-nav-toggle.homepage__categories--cat-outer, .widget-cookie-bar .header-mobile-nav-toggle.content__categories--cat-outer, .widget-cookie-bar .header-mobile-nav-toggle.category__categories--cat-outer {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.widget-cookie-bar .btn.btn-default.btn-block, .widget-cookie-bar .btn-default.btn-block.single__series-button, .widget-cookie-bar .feedback-container .btn-default.btn-block.btn-secondary, .widget-cookie-bar .feedback-container .btn-default.btn-block.feedback-info-segment, .feedback-container .widget-cookie-bar .btn-default.btn-block.btn-secondary, .feedback-container .widget-cookie-bar .btn-default.btn-block.feedback-info-segment {
  border-radius: 5px;
  border: 2px solid #000;
  background: white !important;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.widget-cookie-bar .btn.btn-default.btn-block:hover, .widget-cookie-bar .btn-default.btn-block.single__series-button:hover, .widget-cookie-bar .feedback-container .btn-default.btn-block.btn-secondary:hover, .widget-cookie-bar .feedback-container .btn-default.btn-block.feedback-info-segment:hover, .feedback-container .widget-cookie-bar .btn-default.btn-block.btn-secondary:hover, .feedback-container .widget-cookie-bar .btn-default.btn-block.feedback-info-segment:hover, .widget-cookie-bar .btn.btn-default.btn-block:focus, .widget-cookie-bar .btn-default.btn-block.single__series-button:focus, .widget-cookie-bar .feedback-container .btn-default.btn-block.btn-secondary:focus, .widget-cookie-bar .feedback-container .btn-default.btn-block.feedback-info-segment:focus, .feedback-container .widget-cookie-bar .btn-default.btn-block.btn-secondary:focus, .feedback-container .widget-cookie-bar .btn-default.btn-block.feedback-info-segment:focus, .widget-cookie-bar .btn.btn-default.btn-block:active, .widget-cookie-bar .btn-default.btn-block.single__series-button:active, .widget-cookie-bar .feedback-container .btn-default.btn-block.btn-secondary:active, .widget-cookie-bar .feedback-container .btn-default.btn-block.feedback-info-segment:active, .feedback-container .widget-cookie-bar .btn-default.btn-block.btn-secondary:active, .feedback-container .widget-cookie-bar .btn-default.btn-block.feedback-info-segment:active {
  border: 2px solid #FF1743;
}

.cookie-bar.out.fixed-bottom > div > .btn.btn-primary.btn-appearance, .cookie-bar.out.fixed-bottom > div > .btn-primary.btn-appearance.single__series-button, .feedback-container .cookie-bar.out.fixed-bottom > div > .btn-primary.btn-appearance.btn-secondary, .feedback-container .cookie-bar.out.fixed-bottom > div > .btn-primary.btn-appearance.feedback-info-segment.btn-default {
  border-color: #3f3f3f !important;
  background-color: #3f3f3f !important;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 1.3rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #ddd;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.1rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #FF1743;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-max,
.scroll-list__content.navbar > div,
.navbar > .myaccount__container,
.navbar > .serien-tabs-widget__container,
.navbar > .single__lower-container,
.navbar > .single__container,
.navbar > .checkout__footer--container,
.navbar > .checkout__header--container,
.navbar > .cat-widget__wrapper,
.navbar > .video-widget__wrapper,
.navbar > .usp-widget__wrapper,
.navbar > .homepage__categories--container,
.navbar > .content__categories--container,
.navbar > .homepage__crossselling--container,
.navbar > .single__crossselling--container,
.navbar > .homepage__seo--container,
.navbar > .homepage__image-text-widget--container,
.navbar > .single__image-text-widget--container,
.navbar > .homepage__category-widget--container,
.navbar > .category__container,
.navbar > .footer__copyright-container,
.navbar > .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 1.1125rem;
  padding-bottom: 1.1125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.1rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-max,
  .scroll-list__content.navbar-expand-sm > div,
  .navbar-expand-sm > .myaccount__container,
  .navbar-expand-sm > .serien-tabs-widget__container,
  .navbar-expand-sm > .single__lower-container,
  .navbar-expand-sm > .single__container,
  .navbar-expand-sm > .checkout__footer--container,
  .navbar-expand-sm > .checkout__header--container,
  .navbar-expand-sm > .cat-widget__wrapper,
  .navbar-expand-sm > .video-widget__wrapper,
  .navbar-expand-sm > .usp-widget__wrapper,
  .navbar-expand-sm > .homepage__categories--container,
  .navbar-expand-sm > .content__categories--container,
  .navbar-expand-sm > .homepage__crossselling--container,
  .navbar-expand-sm > .single__crossselling--container,
  .navbar-expand-sm > .homepage__seo--container,
  .navbar-expand-sm > .homepage__image-text-widget--container,
  .navbar-expand-sm > .single__image-text-widget--container,
  .navbar-expand-sm > .homepage__category-widget--container,
  .navbar-expand-sm > .category__container,
  .navbar-expand-sm > .footer__copyright-container,
  .navbar-expand-sm > .header__container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-max,
  .scroll-list__content.navbar-expand-sm > div,
  .navbar-expand-sm > .myaccount__container,
  .navbar-expand-sm > .serien-tabs-widget__container,
  .navbar-expand-sm > .single__lower-container,
  .navbar-expand-sm > .single__container,
  .navbar-expand-sm > .checkout__footer--container,
  .navbar-expand-sm > .checkout__header--container,
  .navbar-expand-sm > .cat-widget__wrapper,
  .navbar-expand-sm > .video-widget__wrapper,
  .navbar-expand-sm > .usp-widget__wrapper,
  .navbar-expand-sm > .homepage__categories--container,
  .navbar-expand-sm > .content__categories--container,
  .navbar-expand-sm > .homepage__crossselling--container,
  .navbar-expand-sm > .single__crossselling--container,
  .navbar-expand-sm > .homepage__seo--container,
  .navbar-expand-sm > .homepage__image-text-widget--container,
  .navbar-expand-sm > .single__image-text-widget--container,
  .navbar-expand-sm > .homepage__category-widget--container,
  .navbar-expand-sm > .category__container,
  .navbar-expand-sm > .footer__copyright-container,
  .navbar-expand-sm > .header__container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-max,
  .scroll-list__content.navbar-expand-md > div,
  .navbar-expand-md > .myaccount__container,
  .navbar-expand-md > .serien-tabs-widget__container,
  .navbar-expand-md > .single__lower-container,
  .navbar-expand-md > .single__container,
  .navbar-expand-md > .checkout__footer--container,
  .navbar-expand-md > .checkout__header--container,
  .navbar-expand-md > .cat-widget__wrapper,
  .navbar-expand-md > .video-widget__wrapper,
  .navbar-expand-md > .usp-widget__wrapper,
  .navbar-expand-md > .homepage__categories--container,
  .navbar-expand-md > .content__categories--container,
  .navbar-expand-md > .homepage__crossselling--container,
  .navbar-expand-md > .single__crossselling--container,
  .navbar-expand-md > .homepage__seo--container,
  .navbar-expand-md > .homepage__image-text-widget--container,
  .navbar-expand-md > .single__image-text-widget--container,
  .navbar-expand-md > .homepage__category-widget--container,
  .navbar-expand-md > .category__container,
  .navbar-expand-md > .footer__copyright-container,
  .navbar-expand-md > .header__container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-max,
  .scroll-list__content.navbar-expand-md > div,
  .navbar-expand-md > .myaccount__container,
  .navbar-expand-md > .serien-tabs-widget__container,
  .navbar-expand-md > .single__lower-container,
  .navbar-expand-md > .single__container,
  .navbar-expand-md > .checkout__footer--container,
  .navbar-expand-md > .checkout__header--container,
  .navbar-expand-md > .cat-widget__wrapper,
  .navbar-expand-md > .video-widget__wrapper,
  .navbar-expand-md > .usp-widget__wrapper,
  .navbar-expand-md > .homepage__categories--container,
  .navbar-expand-md > .content__categories--container,
  .navbar-expand-md > .homepage__crossselling--container,
  .navbar-expand-md > .single__crossselling--container,
  .navbar-expand-md > .homepage__seo--container,
  .navbar-expand-md > .homepage__image-text-widget--container,
  .navbar-expand-md > .single__image-text-widget--container,
  .navbar-expand-md > .homepage__category-widget--container,
  .navbar-expand-md > .category__container,
  .navbar-expand-md > .footer__copyright-container,
  .navbar-expand-md > .header__container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-max,
  .scroll-list__content.navbar-expand-lg > div,
  .navbar-expand-lg > .myaccount__container,
  .navbar-expand-lg > .serien-tabs-widget__container,
  .navbar-expand-lg > .single__lower-container,
  .navbar-expand-lg > .single__container,
  .navbar-expand-lg > .checkout__footer--container,
  .navbar-expand-lg > .checkout__header--container,
  .navbar-expand-lg > .cat-widget__wrapper,
  .navbar-expand-lg > .video-widget__wrapper,
  .navbar-expand-lg > .usp-widget__wrapper,
  .navbar-expand-lg > .homepage__categories--container,
  .navbar-expand-lg > .content__categories--container,
  .navbar-expand-lg > .homepage__crossselling--container,
  .navbar-expand-lg > .single__crossselling--container,
  .navbar-expand-lg > .homepage__seo--container,
  .navbar-expand-lg > .homepage__image-text-widget--container,
  .navbar-expand-lg > .single__image-text-widget--container,
  .navbar-expand-lg > .homepage__category-widget--container,
  .navbar-expand-lg > .category__container,
  .navbar-expand-lg > .footer__copyright-container,
  .navbar-expand-lg > .header__container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-max,
  .scroll-list__content.navbar-expand-lg > div,
  .navbar-expand-lg > .myaccount__container,
  .navbar-expand-lg > .serien-tabs-widget__container,
  .navbar-expand-lg > .single__lower-container,
  .navbar-expand-lg > .single__container,
  .navbar-expand-lg > .checkout__footer--container,
  .navbar-expand-lg > .checkout__header--container,
  .navbar-expand-lg > .cat-widget__wrapper,
  .navbar-expand-lg > .video-widget__wrapper,
  .navbar-expand-lg > .usp-widget__wrapper,
  .navbar-expand-lg > .homepage__categories--container,
  .navbar-expand-lg > .content__categories--container,
  .navbar-expand-lg > .homepage__crossselling--container,
  .navbar-expand-lg > .single__crossselling--container,
  .navbar-expand-lg > .homepage__seo--container,
  .navbar-expand-lg > .homepage__image-text-widget--container,
  .navbar-expand-lg > .single__image-text-widget--container,
  .navbar-expand-lg > .homepage__category-widget--container,
  .navbar-expand-lg > .category__container,
  .navbar-expand-lg > .footer__copyright-container,
  .navbar-expand-lg > .header__container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-max,
  .scroll-list__content.navbar-expand-xl > div,
  .navbar-expand-xl > .myaccount__container,
  .navbar-expand-xl > .serien-tabs-widget__container,
  .navbar-expand-xl > .single__lower-container,
  .navbar-expand-xl > .single__container,
  .navbar-expand-xl > .checkout__footer--container,
  .navbar-expand-xl > .checkout__header--container,
  .navbar-expand-xl > .cat-widget__wrapper,
  .navbar-expand-xl > .video-widget__wrapper,
  .navbar-expand-xl > .usp-widget__wrapper,
  .navbar-expand-xl > .homepage__categories--container,
  .navbar-expand-xl > .content__categories--container,
  .navbar-expand-xl > .homepage__crossselling--container,
  .navbar-expand-xl > .single__crossselling--container,
  .navbar-expand-xl > .homepage__seo--container,
  .navbar-expand-xl > .homepage__image-text-widget--container,
  .navbar-expand-xl > .single__image-text-widget--container,
  .navbar-expand-xl > .homepage__category-widget--container,
  .navbar-expand-xl > .category__container,
  .navbar-expand-xl > .footer__copyright-container,
  .navbar-expand-xl > .header__container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-max,
  .scroll-list__content.navbar-expand-xl > div,
  .navbar-expand-xl > .myaccount__container,
  .navbar-expand-xl > .serien-tabs-widget__container,
  .navbar-expand-xl > .single__lower-container,
  .navbar-expand-xl > .single__container,
  .navbar-expand-xl > .checkout__footer--container,
  .navbar-expand-xl > .checkout__header--container,
  .navbar-expand-xl > .cat-widget__wrapper,
  .navbar-expand-xl > .video-widget__wrapper,
  .navbar-expand-xl > .usp-widget__wrapper,
  .navbar-expand-xl > .homepage__categories--container,
  .navbar-expand-xl > .content__categories--container,
  .navbar-expand-xl > .homepage__crossselling--container,
  .navbar-expand-xl > .single__crossselling--container,
  .navbar-expand-xl > .homepage__seo--container,
  .navbar-expand-xl > .homepage__image-text-widget--container,
  .navbar-expand-xl > .single__image-text-widget--container,
  .navbar-expand-xl > .homepage__category-widget--container,
  .navbar-expand-xl > .category__container,
  .navbar-expand-xl > .footer__copyright-container,
  .navbar-expand-xl > .header__container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-max,
.scroll-list__content.navbar-expand > div,
.navbar-expand > .myaccount__container,
.navbar-expand > .serien-tabs-widget__container,
.navbar-expand > .single__lower-container,
.navbar-expand > .single__container,
.navbar-expand > .checkout__footer--container,
.navbar-expand > .checkout__header--container,
.navbar-expand > .cat-widget__wrapper,
.navbar-expand > .video-widget__wrapper,
.navbar-expand > .usp-widget__wrapper,
.navbar-expand > .homepage__categories--container,
.navbar-expand > .content__categories--container,
.navbar-expand > .homepage__crossselling--container,
.navbar-expand > .single__crossselling--container,
.navbar-expand > .homepage__seo--container,
.navbar-expand > .homepage__image-text-widget--container,
.navbar-expand > .single__image-text-widget--container,
.navbar-expand > .homepage__category-widget--container,
.navbar-expand > .category__container,
.navbar-expand > .footer__copyright-container,
.navbar-expand > .header__container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-max,
.scroll-list__content.navbar-expand > div,
.navbar-expand > .myaccount__container,
.navbar-expand > .serien-tabs-widget__container,
.navbar-expand > .single__lower-container,
.navbar-expand > .single__container,
.navbar-expand > .checkout__footer--container,
.navbar-expand > .checkout__header--container,
.navbar-expand > .cat-widget__wrapper,
.navbar-expand > .video-widget__wrapper,
.navbar-expand > .usp-widget__wrapper,
.navbar-expand > .homepage__categories--container,
.navbar-expand > .content__categories--container,
.navbar-expand > .homepage__crossselling--container,
.navbar-expand > .single__crossselling--container,
.navbar-expand > .homepage__seo--container,
.navbar-expand > .homepage__image-text-widget--container,
.navbar-expand > .single__image-text-widget--container,
.navbar-expand > .homepage__category-widget--container,
.navbar-expand > .category__container,
.navbar-expand > .footer__copyright-container,
.navbar-expand > .header__container {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: #7a7f7f;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: #9498A0;
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: #7a7f7f;
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%237a7f7f' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: #7a7f7f;
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card, .cmp-address-list .items > div:first-child {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.1rem;
}
.card > hr, .cmp-address-list .items > div:first-child > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child, .cmp-address-list .items > div:first-child > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
}
.card > .list-group:last-child .list-group-item:last-child, .cmp-address-list .items > div:first-child > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  color: inherit;
  background-color: #e9ebef;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.1rem - 1px) calc(0.1rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.1rem - 1px) calc(0.1rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.1rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.1rem - 1px);
  border-top-right-radius: calc(0.1rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.1rem - 1px);
  border-bottom-left-radius: calc(0.1rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-deck .card, .card-deck .cmp-address-list .items > div:first-child, .cmp-address-list .card-deck .items > div:first-child {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card, .card-deck .cmp-address-list .items > div:first-child, .cmp-address-list .card-deck .items > div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-group > .card, .cmp-address-list .items.card-group > div:first-child {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card, .cmp-address-list .items.card-group > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card, .cmp-address-list .items.card-group > div:first-child + .card, .cmp-address-list .items.card-group > .card + div:first-child, .cmp-address-list .items.card-group > div:first-child + div:first-child {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child, .cmp-address-list .items.card-group > div:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top, .cmp-address-list .items.card-group > div:first-child .card-img-top,
  .card-group > .card:first-child .card-header,
  .cmp-address-list .items.card-group > div:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom, .cmp-address-list .items.card-group > div:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer,
  .cmp-address-list .items.card-group > div:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child, .cmp-address-list .items.card-group > div:last-child:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top, .cmp-address-list .items.card-group > div:last-child:first-child .card-img-top,
  .card-group > .card:last-child .card-header,
  .cmp-address-list .items.card-group > div:last-child:first-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom, .cmp-address-list .items.card-group > div:last-child:first-child .card-img-bottom,
  .card-group > .card:last-child .card-footer,
  .cmp-address-list .items.card-group > div:last-child:first-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child, .cmp-address-list .items.card-group > div:only-child:first-child {
    border-radius: 0.1rem;
  }
  .card-group > .card:only-child .card-img-top, .cmp-address-list .items.card-group > div:only-child:first-child .card-img-top,
  .card-group > .card:only-child .card-header,
  .cmp-address-list .items.card-group > div:only-child:first-child .card-header {
    border-top-left-radius: 0.1rem;
    border-top-right-radius: 0.1rem;
  }
  .card-group > .card:only-child .card-img-bottom, .cmp-address-list .items.card-group > div:only-child:first-child .card-img-bottom,
  .card-group > .card:only-child .card-footer,
  .cmp-address-list .items.card-group > div:only-child:first-child .card-footer {
    border-bottom-right-radius: 0.1rem;
    border-bottom-left-radius: 0.1rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child), .cmp-address-list .items.card-group > div:not(:first-child):not(:last-child):not(:only-child):first-child {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, .cmp-address-list .items.card-group > div:not(:first-child):not(:last-child):not(:only-child):first-child .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .cmp-address-list .items.card-group > div:not(:first-child):not(:last-child):not(:only-child):first-child .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .cmp-address-list .items.card-group > div:not(:first-child):not(:last-child):not(:only-child):first-child .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer,
  .cmp-address-list .items.card-group > div:not(:first-child):not(:last-child):not(:only-child):first-child .card-footer {
    border-radius: 0;
  }
}

.card-columns .card, .card-columns .cmp-address-list .items > div:first-child, .cmp-address-list .card-columns .items > div:first-child {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card, .card-columns .cmp-address-list .items > div:first-child, .cmp-address-list .card-columns .items > div:first-child {
    display: inline-block;
    width: 100%;
  }
}

.accordion .card, .accordion .cmp-address-list .items > div:first-child, .cmp-address-list .accordion .items > div:first-child {
  overflow: hidden;
}
.accordion .card:not(:first-of-type) .card-header:first-child, .accordion .cmp-address-list .items > div:not(:first-of-type):first-child .card-header:first-child, .cmp-address-list .accordion .items > div:not(:first-of-type):first-child .card-header:first-child {
  border-radius: 0;
}
.accordion .card:not(:first-of-type):not(:last-of-type), .accordion .cmp-address-list .items > div:not(:first-of-type):not(:last-of-type):first-child, .cmp-address-list .accordion .items > div:not(:first-of-type):not(:last-of-type):first-child {
  border-bottom: 0;
  border-radius: 0;
}
.accordion .card:first-of-type, .accordion .cmp-address-list .items > div:first-of-type:first-child, .cmp-address-list .accordion .items > div:first-of-type:first-child {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion .card:last-of-type, .accordion .cmp-address-list .items > div:last-of-type:first-child, .cmp-address-list .accordion .items > div:last-of-type:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion .card .card-header, .accordion .cmp-address-list .items > div:first-child .card-header, .cmp-address-list .accordion .items > div:first-child .card-header {
  margin-bottom: -1px;
}

/*.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: $breadcrumb-padding-y $breadcrumb-padding-x;
  margin-bottom: $breadcrumb-margin-bottom;
  list-style: none;
  background-color: $breadcrumb-bg;
  @include border-radius($breadcrumb-border-radius);
}

.breadcrumb-item {
  // The separator between breadcrumbs (by default, a forward-slash: "/")
  + .breadcrumb-item {
    padding-left: $breadcrumb-item-padding;

    &::before {
      display: inline-block; // Suppress underlining of the separator in modern browsers
      padding-right: $breadcrumb-item-padding;
      color: $breadcrumb-divider-color;
      content: $breadcrumb-divider;
    }
  }

  // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
  // without `<ul>`s. The `::before` pseudo-element generates an element
  // *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
  //
  // To trick IE into suppressing the underline, we give the pseudo-element an
  // underline and then immediately remove it.
  + .breadcrumb-item:hover::before {
    text-decoration: underline;
  }
  // stylelint-disable-next-line no-duplicate-selectors
  + .breadcrumb-item:hover::before {
    text-decoration: none;
  }

  &.active {
    color: $breadcrumb-active-color;
  }
}*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.1rem;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pagination {
    max-width: 220px;
  }
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #FF1743;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(201.5, 0, 38.2155172414);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(255, 23, 67, 0.25);
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.15rem;
  border-bottom-left-radius: 0.15rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.15rem;
  border-bottom-right-radius: 0.15rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.1rem;
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge, .single__series-button .badge, .feedback-container .btn-secondary .badge, .feedback-container .feedback-info-segment.btn-default .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #FF1743;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: rgb(227, 0, 43.0517241379);
}

.badge-secondary {
  color: #fff;
  background-color: #d4021d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
}

.badge-danger {
  color: #fff;
  background-color: #d4021d;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.2rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.1rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(132.6, 11.96, 34.84);
  background-color: rgb(255, 208.6, 217.4);
  border-color: rgb(255, 190.04, 202.36);
}
.alert-primary hr {
  border-top-color: rgb(255, 164.54, 181.6962068966);
}
.alert-primary .alert-link {
  color: rgb(85.8194244604, 7.7405755396, 22.5486330935);
}

.alert-secondary {
  color: rgb(110.24, 1.04, 15.08);
  background-color: rgb(246.4, 204.4, 209.8);
  border-color: rgb(242.96, 184.16, 191.72);
}
.alert-secondary hr {
  border-top-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}
.alert-secondary .alert-link {
  color: rgb(59.716635514, 0.563364486, 8.1687850467);
}

.alert-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(212, 237.4, 217.8);
  border-color: rgb(194.8, 230.36, 202.92);
}
.alert-success hr {
  border-top-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.alert-success .alert-link {
  color: rgb(10.9449275362, 45.6950724638, 18.88);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger {
  color: rgb(110.24, 1.04, 15.08);
  background-color: rgb(246.4, 204.4, 209.8);
  border-color: rgb(242.96, 184.16, 191.72);
}
.alert-danger hr {
  border-top-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}
.alert-danger .alert-link {
  color: rgb(59.716635514, 0.563364486, 8.1687850467);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.1rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #FF1743;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
}
.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: rgb(132.6, 11.96, 34.84);
  background-color: rgb(255, 190.04, 202.36);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(132.6, 11.96, 34.84);
  background-color: rgb(255, 164.54, 181.6962068966);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 11.96, 34.84);
  border-color: rgb(132.6, 11.96, 34.84);
}

.list-group-item-secondary {
  color: rgb(110.24, 1.04, 15.08);
  background-color: rgb(242.96, 184.16, 191.72);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(110.24, 1.04, 15.08);
  background-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(110.24, 1.04, 15.08);
  border-color: rgb(110.24, 1.04, 15.08);
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(110.24, 1.04, 15.08);
  background-color: rgb(242.96, 184.16, 191.72);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(110.24, 1.04, 15.08);
  background-color: rgb(239.2556081081, 162.3643918919, 172.2504054054);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(110.24, 1.04, 15.08);
  border-color: rgb(110.24, 1.04, 15.08);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1080;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0px;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 0px * 2);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 0px * 2);
  content: "";
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 5px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1070;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-header h3 {
  margin-bottom: 0;
}

.modal-title {
  margin-bottom: 0;
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .modal-title {
    font-size: 30px !important;
  }
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  border-bottom-right-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - 1.75rem * 2);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 1.75rem * 2);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 900px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
#contact-modal-wrapper .input-unit {
  border: 1px solid #D5D7DB !important;
}
#contact-modal-wrapper .form-check-input {
  margin-top: 5px !important;
}
@media (min-width: 768px) {
  #contact-modal-wrapper .form-check-input {
    margin-top: 8px !important;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.1rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  display: block;
  max-width: 276px;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.2rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.2rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top .arrow, .bs-popover-auto[x-placement^=top] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^=top] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right .arrow, .bs-popover-auto[x-placement^=right] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.2rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^=right] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=bottom] .arrow {
  top: calc((0.5rem + 1px) * -1);
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left .arrow, .bs-popover-auto[x-placement^=left] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.2rem 0;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^=left] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-top-left-radius: calc(0.2rem - 1px);
  border-top-right-radius: calc(0.2rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: 0s 0.6s opacity;
  transition: 0s 0.6s opacity;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #FF1743 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(227, 0, 43.0517241379) !important;
}

.bg-secondary {
  background-color: #d4021d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467) !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #d4021d !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #FF1743 !important;
}

.border-secondary {
  border-color: #d4021d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #d4021d !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.1rem !important;
}

.rounded-top {
  border-top-left-radius: 0.1rem !important;
  border-top-right-radius: 0.1rem !important;
}

.rounded-right {
  border-top-right-radius: 0.1rem !important;
  border-bottom-right-radius: 0.1rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.1rem !important;
  border-bottom-left-radius: 0.1rem !important;
}

.rounded-left {
  border-top-left-radius: 0.1rem !important;
  border-bottom-left-radius: 0.1rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-3by4::before {
  padding-top: 133.3333333333%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5) !important;
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #FF1743 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(201.5, 0, 38.2155172414) !important;
}

.text-secondary {
  color: #d4021d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(136.214953271, 1.285046729, 18.6331775701) !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #d4021d !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(136.214953271, 1.285046729, 18.6331775701) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #333 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn):not(.single__series-button) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../documents/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../documents/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../documents/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../documents/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../documents/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../documents/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.flag-icon-background, .flag-icon {
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}

.flag-icon {
  position: relative;
  display: inline-block;
  width: 1.3333333333em;
  line-height: 1em;
}
.flag-icon:before {
  content: " ";
}
.flag-icon.flag-icon-squared {
  width: 1em;
}

.flag-icon-ad {
  background-image: url(../images/flags/4x3/ad.svg);
}
.flag-icon-ad.flag-icon-squared {
  background-image: url(../images/flags/1x1/ad.svg);
}

.flag-icon-ae {
  background-image: url(../images/flags/4x3/ae.svg);
}
.flag-icon-ae.flag-icon-squared {
  background-image: url(../images/flags/1x1/ae.svg);
}

.flag-icon-af {
  background-image: url(../images/flags/4x3/af.svg);
}
.flag-icon-af.flag-icon-squared {
  background-image: url(../images/flags/1x1/af.svg);
}

.flag-icon-ag {
  background-image: url(../images/flags/4x3/ag.svg);
}
.flag-icon-ag.flag-icon-squared {
  background-image: url(../images/flags/1x1/ag.svg);
}

.flag-icon-ai {
  background-image: url(../images/flags/4x3/ai.svg);
}
.flag-icon-ai.flag-icon-squared {
  background-image: url(../images/flags/1x1/ai.svg);
}

.flag-icon-al {
  background-image: url(../images/flags/4x3/al.svg);
}
.flag-icon-al.flag-icon-squared {
  background-image: url(../images/flags/1x1/al.svg);
}

.flag-icon-am {
  background-image: url(../images/flags/4x3/am.svg);
}
.flag-icon-am.flag-icon-squared {
  background-image: url(../images/flags/1x1/am.svg);
}

.flag-icon-ao {
  background-image: url(../images/flags/4x3/ao.svg);
}
.flag-icon-ao.flag-icon-squared {
  background-image: url(../images/flags/1x1/ao.svg);
}

.flag-icon-aq {
  background-image: url(../images/flags/4x3/aq.svg);
}
.flag-icon-aq.flag-icon-squared {
  background-image: url(../images/flags/1x1/aq.svg);
}

.flag-icon-ar {
  background-image: url(../images/flags/4x3/ar.svg);
}
.flag-icon-ar.flag-icon-squared {
  background-image: url(../images/flags/1x1/ar.svg);
}

.flag-icon-as {
  background-image: url(../images/flags/4x3/as.svg);
}
.flag-icon-as.flag-icon-squared {
  background-image: url(../images/flags/1x1/as.svg);
}

.flag-icon-at {
  background-image: url(../images/flags/4x3/at.svg);
}
.flag-icon-at.flag-icon-squared {
  background-image: url(../images/flags/1x1/at.svg);
}

.flag-icon-au {
  background-image: url(../images/flags/4x3/au.svg);
}
.flag-icon-au.flag-icon-squared {
  background-image: url(../images/flags/1x1/au.svg);
}

.flag-icon-aw {
  background-image: url(../images/flags/4x3/aw.svg);
}
.flag-icon-aw.flag-icon-squared {
  background-image: url(../images/flags/1x1/aw.svg);
}

.flag-icon-ax {
  background-image: url(../images/flags/4x3/ax.svg);
}
.flag-icon-ax.flag-icon-squared {
  background-image: url(../images/flags/1x1/ax.svg);
}

.flag-icon-az {
  background-image: url(../images/flags/4x3/az.svg);
}
.flag-icon-az.flag-icon-squared {
  background-image: url(../images/flags/1x1/az.svg);
}

.flag-icon-ba {
  background-image: url(../images/flags/4x3/ba.svg);
}
.flag-icon-ba.flag-icon-squared {
  background-image: url(../images/flags/1x1/ba.svg);
}

.flag-icon-bb {
  background-image: url(../images/flags/4x3/bb.svg);
}
.flag-icon-bb.flag-icon-squared {
  background-image: url(../images/flags/1x1/bb.svg);
}

.flag-icon-bd {
  background-image: url(../images/flags/4x3/bd.svg);
}
.flag-icon-bd.flag-icon-squared {
  background-image: url(../images/flags/1x1/bd.svg);
}

.flag-icon-be {
  background-image: url(../images/flags/4x3/be.svg);
}
.flag-icon-be.flag-icon-squared {
  background-image: url(../images/flags/1x1/be.svg);
}

.flag-icon-bf {
  background-image: url(../images/flags/4x3/bf.svg);
}
.flag-icon-bf.flag-icon-squared {
  background-image: url(../images/flags/1x1/bf.svg);
}

.flag-icon-bg {
  background-image: url(../images/flags/4x3/bg.svg);
}
.flag-icon-bg.flag-icon-squared {
  background-image: url(../images/flags/1x1/bg.svg);
}

.flag-icon-bh {
  background-image: url(../images/flags/4x3/bh.svg);
}
.flag-icon-bh.flag-icon-squared {
  background-image: url(../images/flags/1x1/bh.svg);
}

.flag-icon-bi {
  background-image: url(../images/flags/4x3/bi.svg);
}
.flag-icon-bi.flag-icon-squared {
  background-image: url(../images/flags/1x1/bi.svg);
}

.flag-icon-bj {
  background-image: url(../images/flags/4x3/bj.svg);
}
.flag-icon-bj.flag-icon-squared {
  background-image: url(../images/flags/1x1/bj.svg);
}

.flag-icon-bl {
  background-image: url(../images/flags/4x3/bl.svg);
}
.flag-icon-bl.flag-icon-squared {
  background-image: url(../images/flags/1x1/bl.svg);
}

.flag-icon-bm {
  background-image: url(../images/flags/4x3/bm.svg);
}
.flag-icon-bm.flag-icon-squared {
  background-image: url(../images/flags/1x1/bm.svg);
}

.flag-icon-bn {
  background-image: url(../images/flags/4x3/bn.svg);
}
.flag-icon-bn.flag-icon-squared {
  background-image: url(../images/flags/1x1/bn.svg);
}

.flag-icon-bo {
  background-image: url(../images/flags/4x3/bo.svg);
}
.flag-icon-bo.flag-icon-squared {
  background-image: url(../images/flags/1x1/bo.svg);
}

.flag-icon-bq {
  background-image: url(../images/flags/4x3/bq.svg);
}
.flag-icon-bq.flag-icon-squared {
  background-image: url(../images/flags/1x1/bq.svg);
}

.flag-icon-br {
  background-image: url(../images/flags/4x3/br.svg);
}
.flag-icon-br.flag-icon-squared {
  background-image: url(../images/flags/1x1/br.svg);
}

.flag-icon-bs {
  background-image: url(../images/flags/4x3/bs.svg);
}
.flag-icon-bs.flag-icon-squared {
  background-image: url(../images/flags/1x1/bs.svg);
}

.flag-icon-bt {
  background-image: url(../images/flags/4x3/bt.svg);
}
.flag-icon-bt.flag-icon-squared {
  background-image: url(../images/flags/1x1/bt.svg);
}

.flag-icon-bv {
  background-image: url(../images/flags/4x3/bv.svg);
}
.flag-icon-bv.flag-icon-squared {
  background-image: url(../images/flags/1x1/bv.svg);
}

.flag-icon-bw {
  background-image: url(../images/flags/4x3/bw.svg);
}
.flag-icon-bw.flag-icon-squared {
  background-image: url(../images/flags/1x1/bw.svg);
}

.flag-icon-by {
  background-image: url(../images/flags/4x3/by.svg);
}
.flag-icon-by.flag-icon-squared {
  background-image: url(../images/flags/1x1/by.svg);
}

.flag-icon-bz {
  background-image: url(../images/flags/4x3/bz.svg);
}
.flag-icon-bz.flag-icon-squared {
  background-image: url(../images/flags/1x1/bz.svg);
}

.flag-icon-ca {
  background-image: url(../images/flags/4x3/ca.svg);
}
.flag-icon-ca.flag-icon-squared {
  background-image: url(../images/flags/1x1/ca.svg);
}

.flag-icon-cc {
  background-image: url(../images/flags/4x3/cc.svg);
}
.flag-icon-cc.flag-icon-squared {
  background-image: url(../images/flags/1x1/cc.svg);
}

.flag-icon-cd {
  background-image: url(../images/flags/4x3/cd.svg);
}
.flag-icon-cd.flag-icon-squared {
  background-image: url(../images/flags/1x1/cd.svg);
}

.flag-icon-cf {
  background-image: url(../images/flags/4x3/cf.svg);
}
.flag-icon-cf.flag-icon-squared {
  background-image: url(../images/flags/1x1/cf.svg);
}

.flag-icon-cg {
  background-image: url(../images/flags/4x3/cg.svg);
}
.flag-icon-cg.flag-icon-squared {
  background-image: url(../images/flags/1x1/cg.svg);
}

.flag-icon-ch {
  background-image: url(../images/flags/4x3/ch.svg);
}
.flag-icon-ch.flag-icon-squared {
  background-image: url(../images/flags/1x1/ch.svg);
}

.flag-icon-ci {
  background-image: url(../images/flags/4x3/ci.svg);
}
.flag-icon-ci.flag-icon-squared {
  background-image: url(../images/flags/1x1/ci.svg);
}

.flag-icon-ck {
  background-image: url(../images/flags/4x3/ck.svg);
}
.flag-icon-ck.flag-icon-squared {
  background-image: url(../images/flags/1x1/ck.svg);
}

.flag-icon-cl {
  background-image: url(../images/flags/4x3/cl.svg);
}
.flag-icon-cl.flag-icon-squared {
  background-image: url(../images/flags/1x1/cl.svg);
}

.flag-icon-cm {
  background-image: url(../images/flags/4x3/cm.svg);
}
.flag-icon-cm.flag-icon-squared {
  background-image: url(../images/flags/1x1/cm.svg);
}

.flag-icon-cn {
  background-image: url(../images/flags/4x3/cn.svg);
}
.flag-icon-cn.flag-icon-squared {
  background-image: url(../images/flags/1x1/cn.svg);
}

.flag-icon-co {
  background-image: url(../images/flags/4x3/co.svg);
}
.flag-icon-co.flag-icon-squared {
  background-image: url(../images/flags/1x1/co.svg);
}

.flag-icon-cr {
  background-image: url(../images/flags/4x3/cr.svg);
}
.flag-icon-cr.flag-icon-squared {
  background-image: url(../images/flags/1x1/cr.svg);
}

.flag-icon-cu {
  background-image: url(../images/flags/4x3/cu.svg);
}
.flag-icon-cu.flag-icon-squared {
  background-image: url(../images/flags/1x1/cu.svg);
}

.flag-icon-cv {
  background-image: url(../images/flags/4x3/cv.svg);
}
.flag-icon-cv.flag-icon-squared {
  background-image: url(../images/flags/1x1/cv.svg);
}

.flag-icon-cw {
  background-image: url(../images/flags/4x3/cw.svg);
}
.flag-icon-cw.flag-icon-squared {
  background-image: url(../images/flags/1x1/cw.svg);
}

.flag-icon-cx {
  background-image: url(../images/flags/4x3/cx.svg);
}
.flag-icon-cx.flag-icon-squared {
  background-image: url(../images/flags/1x1/cx.svg);
}

.flag-icon-cy {
  background-image: url(../images/flags/4x3/cy.svg);
}
.flag-icon-cy.flag-icon-squared {
  background-image: url(../images/flags/1x1/cy.svg);
}

.flag-icon-cz {
  background-image: url(../images/flags/4x3/cz.svg);
}
.flag-icon-cz.flag-icon-squared {
  background-image: url(../images/flags/1x1/cz.svg);
}

.flag-icon-de {
  background-image: url(../images/flags/4x3/de.svg);
}
.flag-icon-de.flag-icon-squared {
  background-image: url(../images/flags/1x1/de.svg);
}

.flag-icon-dj {
  background-image: url(../images/flags/4x3/dj.svg);
}
.flag-icon-dj.flag-icon-squared {
  background-image: url(../images/flags/1x1/dj.svg);
}

.flag-icon-dk {
  background-image: url(../images/flags/4x3/dk.svg);
}
.flag-icon-dk.flag-icon-squared {
  background-image: url(../images/flags/1x1/dk.svg);
}

.flag-icon-dm {
  background-image: url(../images/flags/4x3/dm.svg);
}
.flag-icon-dm.flag-icon-squared {
  background-image: url(../images/flags/1x1/dm.svg);
}

.flag-icon-do {
  background-image: url(../images/flags/4x3/do.svg);
}
.flag-icon-do.flag-icon-squared {
  background-image: url(../images/flags/1x1/do.svg);
}

.flag-icon-dz {
  background-image: url(../images/flags/4x3/dz.svg);
}
.flag-icon-dz.flag-icon-squared {
  background-image: url(../images/flags/1x1/dz.svg);
}

.flag-icon-ec {
  background-image: url(../images/flags/4x3/ec.svg);
}
.flag-icon-ec.flag-icon-squared {
  background-image: url(../images/flags/1x1/ec.svg);
}

.flag-icon-ee {
  background-image: url(../images/flags/4x3/ee.svg);
}
.flag-icon-ee.flag-icon-squared {
  background-image: url(../images/flags/1x1/ee.svg);
}

.flag-icon-eg {
  background-image: url(../images/flags/4x3/eg.svg);
}
.flag-icon-eg.flag-icon-squared {
  background-image: url(../images/flags/1x1/eg.svg);
}

.flag-icon-eh {
  background-image: url(../images/flags/4x3/eh.svg);
}
.flag-icon-eh.flag-icon-squared {
  background-image: url(../images/flags/1x1/eh.svg);
}

.flag-icon-er {
  background-image: url(../images/flags/4x3/er.svg);
}
.flag-icon-er.flag-icon-squared {
  background-image: url(../images/flags/1x1/er.svg);
}

.flag-icon-es {
  background-image: url(../images/flags/4x3/es.svg);
}
.flag-icon-es.flag-icon-squared {
  background-image: url(../images/flags/1x1/es.svg);
}

.flag-icon-et {
  background-image: url(../images/flags/4x3/et.svg);
}
.flag-icon-et.flag-icon-squared {
  background-image: url(../images/flags/1x1/et.svg);
}

.flag-icon-fi {
  background-image: url(../images/flags/4x3/fi.svg);
}
.flag-icon-fi.flag-icon-squared {
  background-image: url(../images/flags/1x1/fi.svg);
}

.flag-icon-fj {
  background-image: url(../images/flags/4x3/fj.svg);
}
.flag-icon-fj.flag-icon-squared {
  background-image: url(../images/flags/1x1/fj.svg);
}

.flag-icon-fk {
  background-image: url(../images/flags/4x3/fk.svg);
}
.flag-icon-fk.flag-icon-squared {
  background-image: url(../images/flags/1x1/fk.svg);
}

.flag-icon-fm {
  background-image: url(../images/flags/4x3/fm.svg);
}
.flag-icon-fm.flag-icon-squared {
  background-image: url(../images/flags/1x1/fm.svg);
}

.flag-icon-fo {
  background-image: url(../images/flags/4x3/fo.svg);
}
.flag-icon-fo.flag-icon-squared {
  background-image: url(../images/flags/1x1/fo.svg);
}

.flag-icon-fr {
  background-image: url(../images/flags/4x3/fr.svg);
}
.flag-icon-fr.flag-icon-squared {
  background-image: url(../images/flags/1x1/fr.svg);
}

.flag-icon-ga {
  background-image: url(../images/flags/4x3/ga.svg);
}
.flag-icon-ga.flag-icon-squared {
  background-image: url(../images/flags/1x1/ga.svg);
}

.flag-icon-gb {
  background-image: url(../images/flags/4x3/gb.svg);
}
.flag-icon-gb.flag-icon-squared {
  background-image: url(../images/flags/1x1/gb.svg);
}

.flag-icon-gd {
  background-image: url(../images/flags/4x3/gd.svg);
}
.flag-icon-gd.flag-icon-squared {
  background-image: url(../images/flags/1x1/gd.svg);
}

.flag-icon-ge {
  background-image: url(../images/flags/4x3/ge.svg);
}
.flag-icon-ge.flag-icon-squared {
  background-image: url(../images/flags/1x1/ge.svg);
}

.flag-icon-gf {
  background-image: url(../images/flags/4x3/gf.svg);
}
.flag-icon-gf.flag-icon-squared {
  background-image: url(../images/flags/1x1/gf.svg);
}

.flag-icon-gg {
  background-image: url(../images/flags/4x3/gg.svg);
}
.flag-icon-gg.flag-icon-squared {
  background-image: url(../images/flags/1x1/gg.svg);
}

.flag-icon-gh {
  background-image: url(../images/flags/4x3/gh.svg);
}
.flag-icon-gh.flag-icon-squared {
  background-image: url(../images/flags/1x1/gh.svg);
}

.flag-icon-gi {
  background-image: url(../images/flags/4x3/gi.svg);
}
.flag-icon-gi.flag-icon-squared {
  background-image: url(../images/flags/1x1/gi.svg);
}

.flag-icon-gl {
  background-image: url(../images/flags/4x3/gl.svg);
}
.flag-icon-gl.flag-icon-squared {
  background-image: url(../images/flags/1x1/gl.svg);
}

.flag-icon-gm {
  background-image: url(../images/flags/4x3/gm.svg);
}
.flag-icon-gm.flag-icon-squared {
  background-image: url(../images/flags/1x1/gm.svg);
}

.flag-icon-gn {
  background-image: url(../images/flags/4x3/gn.svg);
}
.flag-icon-gn.flag-icon-squared {
  background-image: url(../images/flags/1x1/gn.svg);
}

.flag-icon-gp {
  background-image: url(../images/flags/4x3/gp.svg);
}
.flag-icon-gp.flag-icon-squared {
  background-image: url(../images/flags/1x1/gp.svg);
}

.flag-icon-gq {
  background-image: url(../images/flags/4x3/gq.svg);
}
.flag-icon-gq.flag-icon-squared {
  background-image: url(../images/flags/1x1/gq.svg);
}

.flag-icon-gr {
  background-image: url(../images/flags/4x3/gr.svg);
}
.flag-icon-gr.flag-icon-squared {
  background-image: url(../images/flags/1x1/gr.svg);
}

.flag-icon-gs {
  background-image: url(../images/flags/4x3/gs.svg);
}
.flag-icon-gs.flag-icon-squared {
  background-image: url(../images/flags/1x1/gs.svg);
}

.flag-icon-gt {
  background-image: url(../images/flags/4x3/gt.svg);
}
.flag-icon-gt.flag-icon-squared {
  background-image: url(../images/flags/1x1/gt.svg);
}

.flag-icon-gu {
  background-image: url(../images/flags/4x3/gu.svg);
}
.flag-icon-gu.flag-icon-squared {
  background-image: url(../images/flags/1x1/gu.svg);
}

.flag-icon-gw {
  background-image: url(../images/flags/4x3/gw.svg);
}
.flag-icon-gw.flag-icon-squared {
  background-image: url(../images/flags/1x1/gw.svg);
}

.flag-icon-gy {
  background-image: url(../images/flags/4x3/gy.svg);
}
.flag-icon-gy.flag-icon-squared {
  background-image: url(../images/flags/1x1/gy.svg);
}

.flag-icon-hk {
  background-image: url(../images/flags/4x3/hk.svg);
}
.flag-icon-hk.flag-icon-squared {
  background-image: url(../images/flags/1x1/hk.svg);
}

.flag-icon-hm {
  background-image: url(../images/flags/4x3/hm.svg);
}
.flag-icon-hm.flag-icon-squared {
  background-image: url(../images/flags/1x1/hm.svg);
}

.flag-icon-hn {
  background-image: url(../images/flags/4x3/hn.svg);
}
.flag-icon-hn.flag-icon-squared {
  background-image: url(../images/flags/1x1/hn.svg);
}

.flag-icon-hr {
  background-image: url(../images/flags/4x3/hr.svg);
}
.flag-icon-hr.flag-icon-squared {
  background-image: url(../images/flags/1x1/hr.svg);
}

.flag-icon-ht {
  background-image: url(../images/flags/4x3/ht.svg);
}
.flag-icon-ht.flag-icon-squared {
  background-image: url(../images/flags/1x1/ht.svg);
}

.flag-icon-hu {
  background-image: url(../images/flags/4x3/hu.svg);
}
.flag-icon-hu.flag-icon-squared {
  background-image: url(../images/flags/1x1/hu.svg);
}

.flag-icon-id {
  background-image: url(../images/flags/4x3/id.svg);
}
.flag-icon-id.flag-icon-squared {
  background-image: url(../images/flags/1x1/id.svg);
}

.flag-icon-ie {
  background-image: url(../images/flags/4x3/ie.svg);
}
.flag-icon-ie.flag-icon-squared {
  background-image: url(../images/flags/1x1/ie.svg);
}

.flag-icon-il {
  background-image: url(../images/flags/4x3/il.svg);
}
.flag-icon-il.flag-icon-squared {
  background-image: url(../images/flags/1x1/il.svg);
}

.flag-icon-im {
  background-image: url(../images/flags/4x3/im.svg);
}
.flag-icon-im.flag-icon-squared {
  background-image: url(../images/flags/1x1/im.svg);
}

.flag-icon-in {
  background-image: url(../images/flags/4x3/in.svg);
}
.flag-icon-in.flag-icon-squared {
  background-image: url(../images/flags/1x1/in.svg);
}

.flag-icon-io {
  background-image: url(../images/flags/4x3/io.svg);
}
.flag-icon-io.flag-icon-squared {
  background-image: url(../images/flags/1x1/io.svg);
}

.flag-icon-iq {
  background-image: url(../images/flags/4x3/iq.svg);
}
.flag-icon-iq.flag-icon-squared {
  background-image: url(../images/flags/1x1/iq.svg);
}

.flag-icon-ir {
  background-image: url(../images/flags/4x3/ir.svg);
}
.flag-icon-ir.flag-icon-squared {
  background-image: url(../images/flags/1x1/ir.svg);
}

.flag-icon-is {
  background-image: url(../images/flags/4x3/is.svg);
}
.flag-icon-is.flag-icon-squared {
  background-image: url(../images/flags/1x1/is.svg);
}

.flag-icon-it {
  background-image: url(../images/flags/4x3/it.svg);
}
.flag-icon-it.flag-icon-squared {
  background-image: url(../images/flags/1x1/it.svg);
}

.flag-icon-je {
  background-image: url(../images/flags/4x3/je.svg);
}
.flag-icon-je.flag-icon-squared {
  background-image: url(../images/flags/1x1/je.svg);
}

.flag-icon-jm {
  background-image: url(../images/flags/4x3/jm.svg);
}
.flag-icon-jm.flag-icon-squared {
  background-image: url(../images/flags/1x1/jm.svg);
}

.flag-icon-jo {
  background-image: url(../images/flags/4x3/jo.svg);
}
.flag-icon-jo.flag-icon-squared {
  background-image: url(../images/flags/1x1/jo.svg);
}

.flag-icon-jp {
  background-image: url(../images/flags/4x3/jp.svg);
}
.flag-icon-jp.flag-icon-squared {
  background-image: url(../images/flags/1x1/jp.svg);
}

.flag-icon-ke {
  background-image: url(../images/flags/4x3/ke.svg);
}
.flag-icon-ke.flag-icon-squared {
  background-image: url(../images/flags/1x1/ke.svg);
}

.flag-icon-kg {
  background-image: url(../images/flags/4x3/kg.svg);
}
.flag-icon-kg.flag-icon-squared {
  background-image: url(../images/flags/1x1/kg.svg);
}

.flag-icon-kh {
  background-image: url(../images/flags/4x3/kh.svg);
}
.flag-icon-kh.flag-icon-squared {
  background-image: url(../images/flags/1x1/kh.svg);
}

.flag-icon-ki {
  background-image: url(../images/flags/4x3/ki.svg);
}
.flag-icon-ki.flag-icon-squared {
  background-image: url(../images/flags/1x1/ki.svg);
}

.flag-icon-km {
  background-image: url(../images/flags/4x3/km.svg);
}
.flag-icon-km.flag-icon-squared {
  background-image: url(../images/flags/1x1/km.svg);
}

.flag-icon-kn {
  background-image: url(../images/flags/4x3/kn.svg);
}
.flag-icon-kn.flag-icon-squared {
  background-image: url(../images/flags/1x1/kn.svg);
}

.flag-icon-kp {
  background-image: url(../images/flags/4x3/kp.svg);
}
.flag-icon-kp.flag-icon-squared {
  background-image: url(../images/flags/1x1/kp.svg);
}

.flag-icon-kr {
  background-image: url(../images/flags/4x3/kr.svg);
}
.flag-icon-kr.flag-icon-squared {
  background-image: url(../images/flags/1x1/kr.svg);
}

.flag-icon-kw {
  background-image: url(../images/flags/4x3/kw.svg);
}
.flag-icon-kw.flag-icon-squared {
  background-image: url(../images/flags/1x1/kw.svg);
}

.flag-icon-ky {
  background-image: url(../images/flags/4x3/ky.svg);
}
.flag-icon-ky.flag-icon-squared {
  background-image: url(../images/flags/1x1/ky.svg);
}

.flag-icon-kz {
  background-image: url(../images/flags/4x3/kz.svg);
}
.flag-icon-kz.flag-icon-squared {
  background-image: url(../images/flags/1x1/kz.svg);
}

.flag-icon-la {
  background-image: url(../images/flags/4x3/la.svg);
}
.flag-icon-la.flag-icon-squared {
  background-image: url(../images/flags/1x1/la.svg);
}

.flag-icon-lb {
  background-image: url(../images/flags/4x3/lb.svg);
}
.flag-icon-lb.flag-icon-squared {
  background-image: url(../images/flags/1x1/lb.svg);
}

.flag-icon-lc {
  background-image: url(../images/flags/4x3/lc.svg);
}
.flag-icon-lc.flag-icon-squared {
  background-image: url(../images/flags/1x1/lc.svg);
}

.flag-icon-li {
  background-image: url(../images/flags/4x3/li.svg);
}
.flag-icon-li.flag-icon-squared {
  background-image: url(../images/flags/1x1/li.svg);
}

.flag-icon-lk {
  background-image: url(../images/flags/4x3/lk.svg);
}
.flag-icon-lk.flag-icon-squared {
  background-image: url(../images/flags/1x1/lk.svg);
}

.flag-icon-lr {
  background-image: url(../images/flags/4x3/lr.svg);
}
.flag-icon-lr.flag-icon-squared {
  background-image: url(../images/flags/1x1/lr.svg);
}

.flag-icon-ls {
  background-image: url(../images/flags/4x3/ls.svg);
}
.flag-icon-ls.flag-icon-squared {
  background-image: url(../images/flags/1x1/ls.svg);
}

.flag-icon-lt {
  background-image: url(../images/flags/4x3/lt.svg);
}
.flag-icon-lt.flag-icon-squared {
  background-image: url(../images/flags/1x1/lt.svg);
}

.flag-icon-lu {
  background-image: url(../images/flags/4x3/lu.svg);
}
.flag-icon-lu.flag-icon-squared {
  background-image: url(../images/flags/1x1/lu.svg);
}

.flag-icon-lv {
  background-image: url(../images/flags/4x3/lv.svg);
}
.flag-icon-lv.flag-icon-squared {
  background-image: url(../images/flags/1x1/lv.svg);
}

.flag-icon-ly {
  background-image: url(../images/flags/4x3/ly.svg);
}
.flag-icon-ly.flag-icon-squared {
  background-image: url(../images/flags/1x1/ly.svg);
}

.flag-icon-ma {
  background-image: url(../images/flags/4x3/ma.svg);
}
.flag-icon-ma.flag-icon-squared {
  background-image: url(../images/flags/1x1/ma.svg);
}

.flag-icon-mc {
  background-image: url(../images/flags/4x3/mc.svg);
}
.flag-icon-mc.flag-icon-squared {
  background-image: url(../images/flags/1x1/mc.svg);
}

.flag-icon-md {
  background-image: url(../images/flags/4x3/md.svg);
}
.flag-icon-md.flag-icon-squared {
  background-image: url(../images/flags/1x1/md.svg);
}

.flag-icon-me {
  background-image: url(../images/flags/4x3/me.svg);
}
.flag-icon-me.flag-icon-squared {
  background-image: url(../images/flags/1x1/me.svg);
}

.flag-icon-mf {
  background-image: url(../images/flags/4x3/mf.svg);
}
.flag-icon-mf.flag-icon-squared {
  background-image: url(../images/flags/1x1/mf.svg);
}

.flag-icon-mg {
  background-image: url(../images/flags/4x3/mg.svg);
}
.flag-icon-mg.flag-icon-squared {
  background-image: url(../images/flags/1x1/mg.svg);
}

.flag-icon-mh {
  background-image: url(../images/flags/4x3/mh.svg);
}
.flag-icon-mh.flag-icon-squared {
  background-image: url(../images/flags/1x1/mh.svg);
}

.flag-icon-mk {
  background-image: url(../images/flags/4x3/mk.svg);
}
.flag-icon-mk.flag-icon-squared {
  background-image: url(../images/flags/1x1/mk.svg);
}

.flag-icon-ml {
  background-image: url(../images/flags/4x3/ml.svg);
}
.flag-icon-ml.flag-icon-squared {
  background-image: url(../images/flags/1x1/ml.svg);
}

.flag-icon-mm {
  background-image: url(../images/flags/4x3/mm.svg);
}
.flag-icon-mm.flag-icon-squared {
  background-image: url(../images/flags/1x1/mm.svg);
}

.flag-icon-mn {
  background-image: url(../images/flags/4x3/mn.svg);
}
.flag-icon-mn.flag-icon-squared {
  background-image: url(../images/flags/1x1/mn.svg);
}

.flag-icon-mo {
  background-image: url(../images/flags/4x3/mo.svg);
}
.flag-icon-mo.flag-icon-squared {
  background-image: url(../images/flags/1x1/mo.svg);
}

.flag-icon-mp {
  background-image: url(../images/flags/4x3/mp.svg);
}
.flag-icon-mp.flag-icon-squared {
  background-image: url(../images/flags/1x1/mp.svg);
}

.flag-icon-mq {
  background-image: url(../images/flags/4x3/mq.svg);
}
.flag-icon-mq.flag-icon-squared {
  background-image: url(../images/flags/1x1/mq.svg);
}

.flag-icon-mr {
  background-image: url(../images/flags/4x3/mr.svg);
}
.flag-icon-mr.flag-icon-squared {
  background-image: url(../images/flags/1x1/mr.svg);
}

.flag-icon-ms {
  background-image: url(../images/flags/4x3/ms.svg);
}
.flag-icon-ms.flag-icon-squared {
  background-image: url(../images/flags/1x1/ms.svg);
}

.flag-icon-mt {
  background-image: url(../images/flags/4x3/mt.svg);
}
.flag-icon-mt.flag-icon-squared {
  background-image: url(../images/flags/1x1/mt.svg);
}

.flag-icon-mu {
  background-image: url(../images/flags/4x3/mu.svg);
}
.flag-icon-mu.flag-icon-squared {
  background-image: url(../images/flags/1x1/mu.svg);
}

.flag-icon-mv {
  background-image: url(../images/flags/4x3/mv.svg);
}
.flag-icon-mv.flag-icon-squared {
  background-image: url(../images/flags/1x1/mv.svg);
}

.flag-icon-mw {
  background-image: url(../images/flags/4x3/mw.svg);
}
.flag-icon-mw.flag-icon-squared {
  background-image: url(../images/flags/1x1/mw.svg);
}

.flag-icon-mx {
  background-image: url(../images/flags/4x3/mx.svg);
}
.flag-icon-mx.flag-icon-squared {
  background-image: url(../images/flags/1x1/mx.svg);
}

.flag-icon-my {
  background-image: url(../images/flags/4x3/my.svg);
}
.flag-icon-my.flag-icon-squared {
  background-image: url(../images/flags/1x1/my.svg);
}

.flag-icon-mz {
  background-image: url(../images/flags/4x3/mz.svg);
}
.flag-icon-mz.flag-icon-squared {
  background-image: url(../images/flags/1x1/mz.svg);
}

.flag-icon-na {
  background-image: url(../images/flags/4x3/na.svg);
}
.flag-icon-na.flag-icon-squared {
  background-image: url(../images/flags/1x1/na.svg);
}

.flag-icon-nc {
  background-image: url(../images/flags/4x3/nc.svg);
}
.flag-icon-nc.flag-icon-squared {
  background-image: url(../images/flags/1x1/nc.svg);
}

.flag-icon-ne {
  background-image: url(../images/flags/4x3/ne.svg);
}
.flag-icon-ne.flag-icon-squared {
  background-image: url(../images/flags/1x1/ne.svg);
}

.flag-icon-nf {
  background-image: url(../images/flags/4x3/nf.svg);
}
.flag-icon-nf.flag-icon-squared {
  background-image: url(../images/flags/1x1/nf.svg);
}

.flag-icon-ng {
  background-image: url(../images/flags/4x3/ng.svg);
}
.flag-icon-ng.flag-icon-squared {
  background-image: url(../images/flags/1x1/ng.svg);
}

.flag-icon-ni {
  background-image: url(../images/flags/4x3/ni.svg);
}
.flag-icon-ni.flag-icon-squared {
  background-image: url(../images/flags/1x1/ni.svg);
}

.flag-icon-nl {
  background-image: url(../images/flags/4x3/nl.svg);
}
.flag-icon-nl.flag-icon-squared {
  background-image: url(../images/flags/1x1/nl.svg);
}

.flag-icon-no {
  background-image: url(../images/flags/4x3/no.svg);
}
.flag-icon-no.flag-icon-squared {
  background-image: url(../images/flags/1x1/no.svg);
}

.flag-icon-np {
  background-image: url(../images/flags/4x3/np.svg);
}
.flag-icon-np.flag-icon-squared {
  background-image: url(../images/flags/1x1/np.svg);
}

.flag-icon-nr {
  background-image: url(../images/flags/4x3/nr.svg);
}
.flag-icon-nr.flag-icon-squared {
  background-image: url(../images/flags/1x1/nr.svg);
}

.flag-icon-nu {
  background-image: url(../images/flags/4x3/nu.svg);
}
.flag-icon-nu.flag-icon-squared {
  background-image: url(../images/flags/1x1/nu.svg);
}

.flag-icon-nz {
  background-image: url(../images/flags/4x3/nz.svg);
}
.flag-icon-nz.flag-icon-squared {
  background-image: url(../images/flags/1x1/nz.svg);
}

.flag-icon-om {
  background-image: url(../images/flags/4x3/om.svg);
}
.flag-icon-om.flag-icon-squared {
  background-image: url(../images/flags/1x1/om.svg);
}

.flag-icon-pa {
  background-image: url(../images/flags/4x3/pa.svg);
}
.flag-icon-pa.flag-icon-squared {
  background-image: url(../images/flags/1x1/pa.svg);
}

.flag-icon-pe {
  background-image: url(../images/flags/4x3/pe.svg);
}
.flag-icon-pe.flag-icon-squared {
  background-image: url(../images/flags/1x1/pe.svg);
}

.flag-icon-pf {
  background-image: url(../images/flags/4x3/pf.svg);
}
.flag-icon-pf.flag-icon-squared {
  background-image: url(../images/flags/1x1/pf.svg);
}

.flag-icon-pg {
  background-image: url(../images/flags/4x3/pg.svg);
}
.flag-icon-pg.flag-icon-squared {
  background-image: url(../images/flags/1x1/pg.svg);
}

.flag-icon-ph {
  background-image: url(../images/flags/4x3/ph.svg);
}
.flag-icon-ph.flag-icon-squared {
  background-image: url(../images/flags/1x1/ph.svg);
}

.flag-icon-pk {
  background-image: url(../images/flags/4x3/pk.svg);
}
.flag-icon-pk.flag-icon-squared {
  background-image: url(../images/flags/1x1/pk.svg);
}

.flag-icon-pl {
  background-image: url(../images/flags/4x3/pl.svg);
}
.flag-icon-pl.flag-icon-squared {
  background-image: url(../images/flags/1x1/pl.svg);
}

.flag-icon-pm {
  background-image: url(../images/flags/4x3/pm.svg);
}
.flag-icon-pm.flag-icon-squared {
  background-image: url(../images/flags/1x1/pm.svg);
}

.flag-icon-pn {
  background-image: url(../images/flags/4x3/pn.svg);
}
.flag-icon-pn.flag-icon-squared {
  background-image: url(../images/flags/1x1/pn.svg);
}

.flag-icon-pr {
  background-image: url(../images/flags/4x3/pr.svg);
}
.flag-icon-pr.flag-icon-squared {
  background-image: url(../images/flags/1x1/pr.svg);
}

.flag-icon-ps {
  background-image: url(../images/flags/4x3/ps.svg);
}
.flag-icon-ps.flag-icon-squared {
  background-image: url(../images/flags/1x1/ps.svg);
}

.flag-icon-pt {
  background-image: url(../images/flags/4x3/pt.svg);
}
.flag-icon-pt.flag-icon-squared {
  background-image: url(../images/flags/1x1/pt.svg);
}

.flag-icon-pw {
  background-image: url(../images/flags/4x3/pw.svg);
}
.flag-icon-pw.flag-icon-squared {
  background-image: url(../images/flags/1x1/pw.svg);
}

.flag-icon-py {
  background-image: url(../images/flags/4x3/py.svg);
}
.flag-icon-py.flag-icon-squared {
  background-image: url(../images/flags/1x1/py.svg);
}

.flag-icon-qa {
  background-image: url(../images/flags/4x3/qa.svg);
}
.flag-icon-qa.flag-icon-squared {
  background-image: url(../images/flags/1x1/qa.svg);
}

.flag-icon-re {
  background-image: url(../images/flags/4x3/re.svg);
}
.flag-icon-re.flag-icon-squared {
  background-image: url(../images/flags/1x1/re.svg);
}

.flag-icon-ro {
  background-image: url(../images/flags/4x3/ro.svg);
}
.flag-icon-ro.flag-icon-squared {
  background-image: url(../images/flags/1x1/ro.svg);
}

.flag-icon-rs {
  background-image: url(../images/flags/4x3/rs.svg);
}
.flag-icon-rs.flag-icon-squared {
  background-image: url(../images/flags/1x1/rs.svg);
}

.flag-icon-ru {
  background-image: url(../images/flags/4x3/ru.svg);
}
.flag-icon-ru.flag-icon-squared {
  background-image: url(../images/flags/1x1/ru.svg);
}

.flag-icon-rw {
  background-image: url(../images/flags/4x3/rw.svg);
}
.flag-icon-rw.flag-icon-squared {
  background-image: url(../images/flags/1x1/rw.svg);
}

.flag-icon-sa {
  background-image: url(../images/flags/4x3/sa.svg);
}
.flag-icon-sa.flag-icon-squared {
  background-image: url(../images/flags/1x1/sa.svg);
}

.flag-icon-sb {
  background-image: url(../images/flags/4x3/sb.svg);
}
.flag-icon-sb.flag-icon-squared {
  background-image: url(../images/flags/1x1/sb.svg);
}

.flag-icon-sc {
  background-image: url(../images/flags/4x3/sc.svg);
}
.flag-icon-sc.flag-icon-squared {
  background-image: url(../images/flags/1x1/sc.svg);
}

.flag-icon-sd {
  background-image: url(../images/flags/4x3/sd.svg);
}
.flag-icon-sd.flag-icon-squared {
  background-image: url(../images/flags/1x1/sd.svg);
}

.flag-icon-se {
  background-image: url(../images/flags/4x3/se.svg);
}
.flag-icon-se.flag-icon-squared {
  background-image: url(../images/flags/1x1/se.svg);
}

.flag-icon-sg {
  background-image: url(../images/flags/4x3/sg.svg);
}
.flag-icon-sg.flag-icon-squared {
  background-image: url(../images/flags/1x1/sg.svg);
}

.flag-icon-sh {
  background-image: url(../images/flags/4x3/sh.svg);
}
.flag-icon-sh.flag-icon-squared {
  background-image: url(../images/flags/1x1/sh.svg);
}

.flag-icon-si {
  background-image: url(../images/flags/4x3/si.svg);
}
.flag-icon-si.flag-icon-squared {
  background-image: url(../images/flags/1x1/si.svg);
}

.flag-icon-sj {
  background-image: url(../images/flags/4x3/sj.svg);
}
.flag-icon-sj.flag-icon-squared {
  background-image: url(../images/flags/1x1/sj.svg);
}

.flag-icon-sk {
  background-image: url(../images/flags/4x3/sk.svg);
}
.flag-icon-sk.flag-icon-squared {
  background-image: url(../images/flags/1x1/sk.svg);
}

.flag-icon-sl {
  background-image: url(../images/flags/4x3/sl.svg);
}
.flag-icon-sl.flag-icon-squared {
  background-image: url(../images/flags/1x1/sl.svg);
}

.flag-icon-sm {
  background-image: url(../images/flags/4x3/sm.svg);
}
.flag-icon-sm.flag-icon-squared {
  background-image: url(../images/flags/1x1/sm.svg);
}

.flag-icon-sn {
  background-image: url(../images/flags/4x3/sn.svg);
}
.flag-icon-sn.flag-icon-squared {
  background-image: url(../images/flags/1x1/sn.svg);
}

.flag-icon-so {
  background-image: url(../images/flags/4x3/so.svg);
}
.flag-icon-so.flag-icon-squared {
  background-image: url(../images/flags/1x1/so.svg);
}

.flag-icon-sr {
  background-image: url(../images/flags/4x3/sr.svg);
}
.flag-icon-sr.flag-icon-squared {
  background-image: url(../images/flags/1x1/sr.svg);
}

.flag-icon-ss {
  background-image: url(../images/flags/4x3/ss.svg);
}
.flag-icon-ss.flag-icon-squared {
  background-image: url(../images/flags/1x1/ss.svg);
}

.flag-icon-st {
  background-image: url(../images/flags/4x3/st.svg);
}
.flag-icon-st.flag-icon-squared {
  background-image: url(../images/flags/1x1/st.svg);
}

.flag-icon-sv {
  background-image: url(../images/flags/4x3/sv.svg);
}
.flag-icon-sv.flag-icon-squared {
  background-image: url(../images/flags/1x1/sv.svg);
}

.flag-icon-sx {
  background-image: url(../images/flags/4x3/sx.svg);
}
.flag-icon-sx.flag-icon-squared {
  background-image: url(../images/flags/1x1/sx.svg);
}

.flag-icon-sy {
  background-image: url(../images/flags/4x3/sy.svg);
}
.flag-icon-sy.flag-icon-squared {
  background-image: url(../images/flags/1x1/sy.svg);
}

.flag-icon-sz {
  background-image: url(../images/flags/4x3/sz.svg);
}
.flag-icon-sz.flag-icon-squared {
  background-image: url(../images/flags/1x1/sz.svg);
}

.flag-icon-tc {
  background-image: url(../images/flags/4x3/tc.svg);
}
.flag-icon-tc.flag-icon-squared {
  background-image: url(../images/flags/1x1/tc.svg);
}

.flag-icon-td {
  background-image: url(../images/flags/4x3/td.svg);
}
.flag-icon-td.flag-icon-squared {
  background-image: url(../images/flags/1x1/td.svg);
}

.flag-icon-tf {
  background-image: url(../images/flags/4x3/tf.svg);
}
.flag-icon-tf.flag-icon-squared {
  background-image: url(../images/flags/1x1/tf.svg);
}

.flag-icon-tg {
  background-image: url(../images/flags/4x3/tg.svg);
}
.flag-icon-tg.flag-icon-squared {
  background-image: url(../images/flags/1x1/tg.svg);
}

.flag-icon-th {
  background-image: url(../images/flags/4x3/th.svg);
}
.flag-icon-th.flag-icon-squared {
  background-image: url(../images/flags/1x1/th.svg);
}

.flag-icon-tj {
  background-image: url(../images/flags/4x3/tj.svg);
}
.flag-icon-tj.flag-icon-squared {
  background-image: url(../images/flags/1x1/tj.svg);
}

.flag-icon-tk {
  background-image: url(../images/flags/4x3/tk.svg);
}
.flag-icon-tk.flag-icon-squared {
  background-image: url(../images/flags/1x1/tk.svg);
}

.flag-icon-tl {
  background-image: url(../images/flags/4x3/tl.svg);
}
.flag-icon-tl.flag-icon-squared {
  background-image: url(../images/flags/1x1/tl.svg);
}

.flag-icon-tm {
  background-image: url(../images/flags/4x3/tm.svg);
}
.flag-icon-tm.flag-icon-squared {
  background-image: url(../images/flags/1x1/tm.svg);
}

.flag-icon-tn {
  background-image: url(../images/flags/4x3/tn.svg);
}
.flag-icon-tn.flag-icon-squared {
  background-image: url(../images/flags/1x1/tn.svg);
}

.flag-icon-to {
  background-image: url(../images/flags/4x3/to.svg);
}
.flag-icon-to.flag-icon-squared {
  background-image: url(../images/flags/1x1/to.svg);
}

.flag-icon-tr {
  background-image: url(../images/flags/4x3/tr.svg);
}
.flag-icon-tr.flag-icon-squared {
  background-image: url(../images/flags/1x1/tr.svg);
}

.flag-icon-tt {
  background-image: url(../images/flags/4x3/tt.svg);
}
.flag-icon-tt.flag-icon-squared {
  background-image: url(../images/flags/1x1/tt.svg);
}

.flag-icon-tv {
  background-image: url(../images/flags/4x3/tv.svg);
}
.flag-icon-tv.flag-icon-squared {
  background-image: url(../images/flags/1x1/tv.svg);
}

.flag-icon-tw {
  background-image: url(../images/flags/4x3/tw.svg);
}
.flag-icon-tw.flag-icon-squared {
  background-image: url(../images/flags/1x1/tw.svg);
}

.flag-icon-tz {
  background-image: url(../images/flags/4x3/tz.svg);
}
.flag-icon-tz.flag-icon-squared {
  background-image: url(../images/flags/1x1/tz.svg);
}

.flag-icon-ua {
  background-image: url(../images/flags/4x3/ua.svg);
}
.flag-icon-ua.flag-icon-squared {
  background-image: url(../images/flags/1x1/ua.svg);
}

.flag-icon-ug {
  background-image: url(../images/flags/4x3/ug.svg);
}
.flag-icon-ug.flag-icon-squared {
  background-image: url(../images/flags/1x1/ug.svg);
}

.flag-icon-um {
  background-image: url(../images/flags/4x3/um.svg);
}
.flag-icon-um.flag-icon-squared {
  background-image: url(../images/flags/1x1/um.svg);
}

.flag-icon-us {
  background-image: url(../images/flags/4x3/us.svg);
}
.flag-icon-us.flag-icon-squared {
  background-image: url(../images/flags/1x1/us.svg);
}

.flag-icon-uy {
  background-image: url(../images/flags/4x3/uy.svg);
}
.flag-icon-uy.flag-icon-squared {
  background-image: url(../images/flags/1x1/uy.svg);
}

.flag-icon-uz {
  background-image: url(../images/flags/4x3/uz.svg);
}
.flag-icon-uz.flag-icon-squared {
  background-image: url(../images/flags/1x1/uz.svg);
}

.flag-icon-va {
  background-image: url(../images/flags/4x3/va.svg);
}
.flag-icon-va.flag-icon-squared {
  background-image: url(../images/flags/1x1/va.svg);
}

.flag-icon-vc {
  background-image: url(../images/flags/4x3/vc.svg);
}
.flag-icon-vc.flag-icon-squared {
  background-image: url(../images/flags/1x1/vc.svg);
}

.flag-icon-ve {
  background-image: url(../images/flags/4x3/ve.svg);
}
.flag-icon-ve.flag-icon-squared {
  background-image: url(../images/flags/1x1/ve.svg);
}

.flag-icon-vg {
  background-image: url(../images/flags/4x3/vg.svg);
}
.flag-icon-vg.flag-icon-squared {
  background-image: url(../images/flags/1x1/vg.svg);
}

.flag-icon-vi {
  background-image: url(../images/flags/4x3/vi.svg);
}
.flag-icon-vi.flag-icon-squared {
  background-image: url(../images/flags/1x1/vi.svg);
}

.flag-icon-vn {
  background-image: url(../images/flags/4x3/vn.svg);
}
.flag-icon-vn.flag-icon-squared {
  background-image: url(../images/flags/1x1/vn.svg);
}

.flag-icon-vu {
  background-image: url(../images/flags/4x3/vu.svg);
}
.flag-icon-vu.flag-icon-squared {
  background-image: url(../images/flags/1x1/vu.svg);
}

.flag-icon-wf {
  background-image: url(../images/flags/4x3/wf.svg);
}
.flag-icon-wf.flag-icon-squared {
  background-image: url(../images/flags/1x1/wf.svg);
}

.flag-icon-ws {
  background-image: url(../images/flags/4x3/ws.svg);
}
.flag-icon-ws.flag-icon-squared {
  background-image: url(../images/flags/1x1/ws.svg);
}

.flag-icon-ye {
  background-image: url(../images/flags/4x3/ye.svg);
}
.flag-icon-ye.flag-icon-squared {
  background-image: url(../images/flags/1x1/ye.svg);
}

.flag-icon-yt {
  background-image: url(../images/flags/4x3/yt.svg);
}
.flag-icon-yt.flag-icon-squared {
  background-image: url(../images/flags/1x1/yt.svg);
}

.flag-icon-za {
  background-image: url(../images/flags/4x3/za.svg);
}
.flag-icon-za.flag-icon-squared {
  background-image: url(../images/flags/1x1/za.svg);
}

.flag-icon-zm {
  background-image: url(../images/flags/4x3/zm.svg);
}
.flag-icon-zm.flag-icon-squared {
  background-image: url(../images/flags/1x1/zm.svg);
}

.flag-icon-zw {
  background-image: url(../images/flags/4x3/zw.svg);
}
.flag-icon-zw.flag-icon-squared {
  background-image: url(../images/flags/1x1/zw.svg);
}

.flag-icon-es-ct {
  background-image: url(../images/flags/4x3/es-ct.svg);
}
.flag-icon-es-ct.flag-icon-squared {
  background-image: url(../images/flags/1x1/es-ct.svg);
}

.flag-icon-eu {
  background-image: url(../images/flags/4x3/eu.svg);
}
.flag-icon-eu.flag-icon-squared {
  background-image: url(../images/flags/1x1/eu.svg);
}

.flag-icon-gb-eng {
  background-image: url(../images/flags/4x3/gb-eng.svg);
}
.flag-icon-gb-eng.flag-icon-squared {
  background-image: url(../images/flags/1x1/gb-eng.svg);
}

.flag-icon-gb-nir {
  background-image: url(../images/flags/4x3/gb-nir.svg);
}
.flag-icon-gb-nir.flag-icon-squared {
  background-image: url(../images/flags/1x1/gb-nir.svg);
}

.flag-icon-gb-sct {
  background-image: url(../images/flags/4x3/gb-sct.svg);
}
.flag-icon-gb-sct.flag-icon-squared {
  background-image: url(../images/flags/1x1/gb-sct.svg);
}

.flag-icon-gb-wls {
  background-image: url(../images/flags/4x3/gb-wls.svg);
}
.flag-icon-gb-wls.flag-icon-squared {
  background-image: url(../images/flags/1x1/gb-wls.svg);
}

.flag-icon-un {
  background-image: url(../images/flags/4x3/un.svg);
}
.flag-icon-un.flag-icon-squared {
  background-image: url(../images/flags/1x1/un.svg);
}

.square-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
.square-container .square-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.center-xy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.center-xy img {
  -ms-flex-item-align: center;
      align-self: center;
}

.star-rating {
  border: none;
}
.star-rating::after {
  display: block;
  clear: both;
  content: "";
}
.star-rating > input {
  display: none;
}
.star-rating > label {
  margin: 0;
  padding: 0;
  color: #dcdbd8;
  float: right;
}
.star-rating > label:before {
  content: "\f005";
  font-family: FontAwesome;
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 0.25em;
}
.star-rating > label:nth-of-type(even):before {
  content: "\f089";
  position: absolute;
}
.star-rating > input:checked ~ label, .star-rating:not(:checked) > label:hover, .star-rating:not(:checked) > label:hover ~ label { /* hover previous stars in list */
  color: #FFD700;
}
.star-rating > input:checked + label:hover, .star-rating > input:checked ~ label:hover, .star-rating > label:hover ~ input:checked ~ label, .star-rating > input:checked ~ label:hover ~ label {
  color: #FFED85;
}
.star-rating .rate-link {
  float: right;
  margin-left: 0.25em;
}

.img-cover-container {
  position: relative;
  overflow: hidden;
}
.img-cover-container > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}

.img-contain-container {
  position: relative;
  overflow: hidden;
}
.img-contain-container > noscript, .img-contain-container a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.img-contain-container .owl-carousel {
  height: 100%;
}
.img-contain-container .owl-carousel .owl-stage-outer {
  height: 100%;
}
.img-contain-container .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.img-contain-container .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.img-contain-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.pipe {
  height: 1em;
  border-left: 1px solid #9498A0;
  margin: 0 0.45em 0 0.25em;
}

.prop-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.prop-row [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.prop-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.prop-xl-6-6, .prop-xl-6-5, .prop-xl-6-4, .prop-xl-6-3, .prop-xl-6-2, .prop-xl-6-1, .prop-xl-5-6, .prop-xl-5-5, .prop-xl-5-4, .prop-xl-5-3, .prop-xl-5-2, .prop-xl-5-1, .prop-xl-4-6, .prop-xl-4-5, .prop-xl-4-4, .prop-xl-4-3, .prop-xl-4-2, .prop-xl-4-1, .prop-xl-3-6, .prop-xl-3-5, .prop-xl-3-4, .prop-xl-3-3, .prop-xl-3-2, .prop-xl-3-1, .prop-xl-2-6, .prop-xl-2-5, .prop-xl-2-4, .prop-xl-2-3, .prop-xl-2-2, .prop-xl-2-1, .prop-xl-1-6, .prop-xl-1-5, .prop-xl-1-4, .prop-xl-1-3, .prop-xl-1-2, .prop-xl-1-1, .prop-lg-6-6, .prop-lg-6-5, .prop-lg-6-4, .prop-lg-6-3, .prop-lg-6-2, .prop-lg-6-1, .prop-lg-5-6, .prop-lg-5-5, .prop-lg-5-4, .prop-lg-5-3, .prop-lg-5-2, .prop-lg-5-1, .prop-lg-4-6, .prop-lg-4-5, .prop-lg-4-4, .prop-lg-4-3, .prop-lg-4-2, .prop-lg-4-1, .prop-lg-3-6, .prop-lg-3-5, .prop-lg-3-4, .prop-lg-3-3, .prop-lg-3-2, .prop-lg-3-1, .prop-lg-2-6, .prop-lg-2-5, .prop-lg-2-4, .prop-lg-2-3, .prop-lg-2-2, .prop-lg-2-1, .prop-lg-1-6, .prop-lg-1-5, .prop-lg-1-4, .prop-lg-1-3, .prop-lg-1-2, .prop-lg-1-1, .prop-md-6-6, .prop-md-6-5, .prop-md-6-4, .prop-md-6-3, .prop-md-6-2, .prop-md-6-1, .prop-md-5-6, .prop-md-5-5, .prop-md-5-4, .prop-md-5-3, .prop-md-5-2, .prop-md-5-1, .prop-md-4-6, .prop-md-4-5, .prop-md-4-4, .prop-md-4-3, .prop-md-4-2, .prop-md-4-1, .prop-md-3-6, .prop-md-3-5, .prop-md-3-4, .prop-md-3-3, .prop-md-3-2, .prop-md-3-1, .prop-md-2-6, .prop-md-2-5, .prop-md-2-4, .prop-md-2-3, .prop-md-2-2, .prop-md-2-1, .prop-md-1-6, .prop-md-1-5, .prop-md-1-4, .prop-md-1-3, .prop-md-1-2, .prop-md-1-1, .prop-sm-6-6, .prop-sm-6-5, .prop-sm-6-4, .prop-sm-6-3, .prop-sm-6-2, .prop-sm-6-1, .prop-sm-5-6, .prop-sm-5-5, .prop-sm-5-4, .prop-sm-5-3, .prop-sm-5-2, .prop-sm-5-1, .prop-sm-4-6, .prop-sm-4-5, .prop-sm-4-4, .prop-sm-4-3, .prop-sm-4-2, .prop-sm-4-1, .prop-sm-3-6, .prop-sm-3-5, .prop-sm-3-4, .prop-sm-3-3, .prop-sm-3-2, .prop-sm-3-1, .prop-sm-2-6, .prop-sm-2-5, .prop-sm-2-4, .prop-sm-2-3, .prop-sm-2-2, .prop-sm-2-1, .prop-sm-1-6, .prop-sm-1-5, .prop-sm-1-4, .prop-sm-1-3, .prop-sm-1-2, .prop-sm-1-1, .prop-xs-6-6, .prop-xs-6-5, .prop-xs-6-4, .prop-xs-6-3, .prop-xs-6-2, .prop-xs-6-1, .prop-xs-5-6, .prop-xs-5-5, .prop-xs-5-4, .prop-xs-5-3, .prop-xs-5-2, .prop-xs-5-1, .prop-xs-4-6, .prop-xs-4-5, .prop-xs-4-4, .prop-xs-4-3, .prop-xs-4-2, .prop-xs-4-1, .prop-xs-3-6, .prop-xs-3-5, .prop-xs-3-4, .prop-xs-3-3, .prop-xs-3-2, .prop-xs-3-1, .prop-xs-2-6, .prop-xs-2-5, .prop-xs-2-4, .prop-xs-2-3, .prop-xs-2-2, .prop-xs-2-1, .prop-xs-1-6, .prop-xs-1-5, .prop-xs-1-4, .prop-xs-1-3, .prop-xs-1-2, .prop-xs-1-1 {
  position: relative;
  width: 100% !important;
  height: 0 !important;
}

.sqr-xs-reset {
  height: auto;
  padding-bottom: 0;
}

.prop-xs-1-1 {
  padding-bottom: 100% !important;
  min-height: auto !important;
}

.prop-xs-1-2 {
  padding-bottom: 200% !important;
  min-height: auto !important;
}

.prop-xs-1-3 {
  padding-bottom: 300% !important;
  min-height: auto !important;
}

.prop-xs-1-4 {
  padding-bottom: 400% !important;
  min-height: auto !important;
}

.prop-xs-1-5 {
  padding-bottom: 500% !important;
  min-height: auto !important;
}

.prop-xs-1-6 {
  padding-bottom: 600% !important;
  min-height: auto !important;
}

.prop-xs-2-1 {
  padding-bottom: 50% !important;
  min-height: auto !important;
}

.prop-xs-2-2 {
  padding-bottom: 100% !important;
  min-height: auto !important;
}

.prop-xs-2-3 {
  padding-bottom: 150% !important;
  min-height: auto !important;
}

.prop-xs-2-4 {
  padding-bottom: 200% !important;
  min-height: auto !important;
}

.prop-xs-2-5 {
  padding-bottom: 250% !important;
  min-height: auto !important;
}

.prop-xs-2-6 {
  padding-bottom: 300% !important;
  min-height: auto !important;
}

.prop-xs-3-1 {
  padding-bottom: 33.3333333333% !important;
  min-height: auto !important;
}

.prop-xs-3-2 {
  padding-bottom: 66.6666666667% !important;
  min-height: auto !important;
}

.prop-xs-3-3 {
  padding-bottom: 100% !important;
  min-height: auto !important;
}

.prop-xs-3-4 {
  padding-bottom: 133.3333333333% !important;
  min-height: auto !important;
}

.prop-xs-3-5 {
  padding-bottom: 166.6666666667% !important;
  min-height: auto !important;
}

.prop-xs-3-6 {
  padding-bottom: 200% !important;
  min-height: auto !important;
}

.prop-xs-4-1 {
  padding-bottom: 25% !important;
  min-height: auto !important;
}

.prop-xs-4-2 {
  padding-bottom: 50% !important;
  min-height: auto !important;
}

.prop-xs-4-3 {
  padding-bottom: 75% !important;
  min-height: auto !important;
}

.prop-xs-4-4 {
  padding-bottom: 100% !important;
  min-height: auto !important;
}

.prop-xs-4-5 {
  padding-bottom: 125% !important;
  min-height: auto !important;
}

.prop-xs-4-6 {
  padding-bottom: 150% !important;
  min-height: auto !important;
}

.prop-xs-5-1 {
  padding-bottom: 20% !important;
  min-height: auto !important;
}

.prop-xs-5-2 {
  padding-bottom: 40% !important;
  min-height: auto !important;
}

.prop-xs-5-3 {
  padding-bottom: 60% !important;
  min-height: auto !important;
}

.prop-xs-5-4 {
  padding-bottom: 80% !important;
  min-height: auto !important;
}

.prop-xs-5-5 {
  padding-bottom: 100% !important;
  min-height: auto !important;
}

.prop-xs-5-6 {
  padding-bottom: 120% !important;
  min-height: auto !important;
}

.prop-xs-6-1 {
  padding-bottom: 16.6666666667% !important;
  min-height: auto !important;
}

.prop-xs-6-2 {
  padding-bottom: 33.3333333333% !important;
  min-height: auto !important;
}

.prop-xs-6-3 {
  padding-bottom: 50% !important;
  min-height: auto !important;
}

.prop-xs-6-4 {
  padding-bottom: 66.6666666667% !important;
  min-height: auto !important;
}

.prop-xs-6-5 {
  padding-bottom: 83.3333333333% !important;
  min-height: auto !important;
}

.prop-xs-6-6 {
  padding-bottom: 100% !important;
  min-height: auto !important;
}

@media (min-width: 576px) {
  .sqr-sm-reset {
    height: auto;
    padding-bottom: 0;
  }
  .prop-sm-1-1 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-sm-1-2 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-sm-1-3 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-sm-1-4 {
    padding-bottom: 400% !important;
    min-height: auto !important;
  }
  .prop-sm-1-5 {
    padding-bottom: 500% !important;
    min-height: auto !important;
  }
  .prop-sm-1-6 {
    padding-bottom: 600% !important;
    min-height: auto !important;
  }
  .prop-sm-2-1 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-sm-2-2 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-sm-2-3 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-sm-2-4 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-sm-2-5 {
    padding-bottom: 250% !important;
    min-height: auto !important;
  }
  .prop-sm-2-6 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-sm-3-1 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-sm-3-2 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-sm-3-3 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-sm-3-4 {
    padding-bottom: 133.3333333333% !important;
    min-height: auto !important;
  }
  .prop-sm-3-5 {
    padding-bottom: 166.6666666667% !important;
    min-height: auto !important;
  }
  .prop-sm-3-6 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-sm-4-1 {
    padding-bottom: 25% !important;
    min-height: auto !important;
  }
  .prop-sm-4-2 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-sm-4-3 {
    padding-bottom: 75% !important;
    min-height: auto !important;
  }
  .prop-sm-4-4 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-sm-4-5 {
    padding-bottom: 125% !important;
    min-height: auto !important;
  }
  .prop-sm-4-6 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-sm-5-1 {
    padding-bottom: 20% !important;
    min-height: auto !important;
  }
  .prop-sm-5-2 {
    padding-bottom: 40% !important;
    min-height: auto !important;
  }
  .prop-sm-5-3 {
    padding-bottom: 60% !important;
    min-height: auto !important;
  }
  .prop-sm-5-4 {
    padding-bottom: 80% !important;
    min-height: auto !important;
  }
  .prop-sm-5-5 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-sm-5-6 {
    padding-bottom: 120% !important;
    min-height: auto !important;
  }
  .prop-sm-6-1 {
    padding-bottom: 16.6666666667% !important;
    min-height: auto !important;
  }
  .prop-sm-6-2 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-sm-6-3 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-sm-6-4 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-sm-6-5 {
    padding-bottom: 83.3333333333% !important;
    min-height: auto !important;
  }
  .prop-sm-6-6 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
}
@media (min-width: 768px) {
  .sqr-md-reset {
    height: auto;
    padding-bottom: 0;
  }
  .prop-md-1-1 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-md-1-2 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-md-1-3 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-md-1-4 {
    padding-bottom: 400% !important;
    min-height: auto !important;
  }
  .prop-md-1-5 {
    padding-bottom: 500% !important;
    min-height: auto !important;
  }
  .prop-md-1-6 {
    padding-bottom: 600% !important;
    min-height: auto !important;
  }
  .prop-md-2-1 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-md-2-2 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-md-2-3 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-md-2-4 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-md-2-5 {
    padding-bottom: 250% !important;
    min-height: auto !important;
  }
  .prop-md-2-6 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-md-3-1 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-md-3-2 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-md-3-3 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-md-3-4 {
    padding-bottom: 133.3333333333% !important;
    min-height: auto !important;
  }
  .prop-md-3-5 {
    padding-bottom: 166.6666666667% !important;
    min-height: auto !important;
  }
  .prop-md-3-6 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-md-4-1 {
    padding-bottom: 25% !important;
    min-height: auto !important;
  }
  .prop-md-4-2 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-md-4-3 {
    padding-bottom: 75% !important;
    min-height: auto !important;
  }
  .prop-md-4-4 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-md-4-5 {
    padding-bottom: 125% !important;
    min-height: auto !important;
  }
  .prop-md-4-6 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-md-5-1 {
    padding-bottom: 20% !important;
    min-height: auto !important;
  }
  .prop-md-5-2 {
    padding-bottom: 40% !important;
    min-height: auto !important;
  }
  .prop-md-5-3 {
    padding-bottom: 60% !important;
    min-height: auto !important;
  }
  .prop-md-5-4 {
    padding-bottom: 80% !important;
    min-height: auto !important;
  }
  .prop-md-5-5 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-md-5-6 {
    padding-bottom: 120% !important;
    min-height: auto !important;
  }
  .prop-md-6-1 {
    padding-bottom: 16.6666666667% !important;
    min-height: auto !important;
  }
  .prop-md-6-2 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-md-6-3 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-md-6-4 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-md-6-5 {
    padding-bottom: 83.3333333333% !important;
    min-height: auto !important;
  }
  .prop-md-6-6 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
}
@media (min-width: 992px) {
  .sqr-lg-reset {
    height: auto;
    padding-bottom: 0;
  }
  .prop-lg-1-1 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-lg-1-2 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-lg-1-3 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-lg-1-4 {
    padding-bottom: 400% !important;
    min-height: auto !important;
  }
  .prop-lg-1-5 {
    padding-bottom: 500% !important;
    min-height: auto !important;
  }
  .prop-lg-1-6 {
    padding-bottom: 600% !important;
    min-height: auto !important;
  }
  .prop-lg-2-1 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-lg-2-2 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-lg-2-3 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-lg-2-4 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-lg-2-5 {
    padding-bottom: 250% !important;
    min-height: auto !important;
  }
  .prop-lg-2-6 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-lg-3-1 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-lg-3-2 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-lg-3-3 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-lg-3-4 {
    padding-bottom: 133.3333333333% !important;
    min-height: auto !important;
  }
  .prop-lg-3-5 {
    padding-bottom: 166.6666666667% !important;
    min-height: auto !important;
  }
  .prop-lg-3-6 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-lg-4-1 {
    padding-bottom: 25% !important;
    min-height: auto !important;
  }
  .prop-lg-4-2 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-lg-4-3 {
    padding-bottom: 75% !important;
    min-height: auto !important;
  }
  .prop-lg-4-4 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-lg-4-5 {
    padding-bottom: 125% !important;
    min-height: auto !important;
  }
  .prop-lg-4-6 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-lg-5-1 {
    padding-bottom: 20% !important;
    min-height: auto !important;
  }
  .prop-lg-5-2 {
    padding-bottom: 40% !important;
    min-height: auto !important;
  }
  .prop-lg-5-3 {
    padding-bottom: 60% !important;
    min-height: auto !important;
  }
  .prop-lg-5-4 {
    padding-bottom: 80% !important;
    min-height: auto !important;
  }
  .prop-lg-5-5 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-lg-5-6 {
    padding-bottom: 120% !important;
    min-height: auto !important;
  }
  .prop-lg-6-1 {
    padding-bottom: 16.6666666667% !important;
    min-height: auto !important;
  }
  .prop-lg-6-2 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-lg-6-3 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-lg-6-4 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-lg-6-5 {
    padding-bottom: 83.3333333333% !important;
    min-height: auto !important;
  }
  .prop-lg-6-6 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
}
@media (min-width: 1200px) {
  .sqr-xl-reset {
    height: auto;
    padding-bottom: 0;
  }
  .prop-xl-1-1 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-xl-1-2 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-xl-1-3 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-xl-1-4 {
    padding-bottom: 400% !important;
    min-height: auto !important;
  }
  .prop-xl-1-5 {
    padding-bottom: 500% !important;
    min-height: auto !important;
  }
  .prop-xl-1-6 {
    padding-bottom: 600% !important;
    min-height: auto !important;
  }
  .prop-xl-2-1 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-xl-2-2 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-xl-2-3 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-xl-2-4 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-xl-2-5 {
    padding-bottom: 250% !important;
    min-height: auto !important;
  }
  .prop-xl-2-6 {
    padding-bottom: 300% !important;
    min-height: auto !important;
  }
  .prop-xl-3-1 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-xl-3-2 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-xl-3-3 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-xl-3-4 {
    padding-bottom: 133.3333333333% !important;
    min-height: auto !important;
  }
  .prop-xl-3-5 {
    padding-bottom: 166.6666666667% !important;
    min-height: auto !important;
  }
  .prop-xl-3-6 {
    padding-bottom: 200% !important;
    min-height: auto !important;
  }
  .prop-xl-4-1 {
    padding-bottom: 25% !important;
    min-height: auto !important;
  }
  .prop-xl-4-2 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-xl-4-3 {
    padding-bottom: 75% !important;
    min-height: auto !important;
  }
  .prop-xl-4-4 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-xl-4-5 {
    padding-bottom: 125% !important;
    min-height: auto !important;
  }
  .prop-xl-4-6 {
    padding-bottom: 150% !important;
    min-height: auto !important;
  }
  .prop-xl-5-1 {
    padding-bottom: 20% !important;
    min-height: auto !important;
  }
  .prop-xl-5-2 {
    padding-bottom: 40% !important;
    min-height: auto !important;
  }
  .prop-xl-5-3 {
    padding-bottom: 60% !important;
    min-height: auto !important;
  }
  .prop-xl-5-4 {
    padding-bottom: 80% !important;
    min-height: auto !important;
  }
  .prop-xl-5-5 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
  .prop-xl-5-6 {
    padding-bottom: 120% !important;
    min-height: auto !important;
  }
  .prop-xl-6-1 {
    padding-bottom: 16.6666666667% !important;
    min-height: auto !important;
  }
  .prop-xl-6-2 {
    padding-bottom: 33.3333333333% !important;
    min-height: auto !important;
  }
  .prop-xl-6-3 {
    padding-bottom: 50% !important;
    min-height: auto !important;
  }
  .prop-xl-6-4 {
    padding-bottom: 66.6666666667% !important;
    min-height: auto !important;
  }
  .prop-xl-6-5 {
    padding-bottom: 83.3333333333% !important;
    min-height: auto !important;
  }
  .prop-xl-6-6 {
    padding-bottom: 100% !important;
    min-height: auto !important;
  }
}
.section-header {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dcdbd8;
}

@media (min-width: 1500px) {
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
body .wrapper-main {
  overflow-x: hidden;
}

.hidden {
  display: none;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hidden-sm {
    display: none;
  }
}

html {
  overflow-x: hidden;
}

.page-content {
  padding-top: 1rem;
  background-color: #f7f7f9;
}
.page-content.basket, .page-content.checkout, .page-content.contact, .page-content.myaccount {
  color: #282d2f;
  margin-top: 30px;
  padding-bottom: 30px;
}
.page-content.basket:not(.checkout):not(.basket), .page-content.checkout:not(.checkout):not(.basket), .page-content.contact:not(.checkout):not(.basket), .page-content.myaccount:not(.checkout):not(.basket) {
  background-color: #fff;
}

.container-max, .scroll-list__content > div, .myaccount__container, .serien-tabs-widget__container, .single__lower-container, .single__container, .checkout__footer--container, .checkout__header--container, .cat-widget__wrapper, .video-widget__wrapper, .usp-widget__wrapper, .homepage__categories--container, .content__categories--container, .homepage__crossselling--container, .single__crossselling--container, .homepage__seo--container, .homepage__image-text-widget--container, .single__image-text-widget--container, .homepage__category-widget--container, .category__container, .footer__copyright-container, .header__container {
  max-width: 1200px;
  z-index: auto;
}
.container-max.login, .scroll-list__content > div.login, .login.myaccount__container, .login.serien-tabs-widget__container, .login.single__lower-container, .login.single__container, .login.checkout__footer--container, .login.checkout__header--container, .login.cat-widget__wrapper, .login.video-widget__wrapper, .login.usp-widget__wrapper, .login.homepage__categories--container, .login.content__categories--container, .login.homepage__crossselling--container, .login.single__crossselling--container, .login.homepage__seo--container, .login.homepage__image-text-widget--container, .login.single__image-text-widget--container, .login.homepage__category-widget--container, .login.category__container, .login.footer__copyright-container, .login.header__container {
  margin-top: 2rem;
}

.page-not-found i.fa-search {
  font-size: 10em;
}
.page-not-found i.fa-home {
  margin-left: 5px;
  margin-top: 2px;
}
.page-not-found .default-not-found {
  background-color: rgb(247, 247, 249);
}
.page-not-found .not-found-text {
  font-size: 115px;
  text-shadow: 4px 3px 0 #F7F7F9, 9px 8px 0 rgba(218, 218, 227, 0.5);
}

.rating {
  line-height: 1;
}
.rating .tag,
.rating .badge {
  padding-right: 0;
  overflow: hidden;
  cursor: pointer;
}
.rating .tag .amount,
.rating .badge .amount {
  padding: 0.1rem 0.6rem 0.1rem 0.4rem;
  margin-left: 0.2rem;
  background-color: #7a7f7f;
}

dt {
  font-weight: 400;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: #FF1743;
}

.border-left {
  border-left: 1px solid #4D4F4D;
}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.content-center {
  margin: 0 auto;
  float: none;
}

.bg-white {
  background-color: #fff !important;
}

.text-wrap {
  white-space: normal;
}

.is_stuck {
  z-index: 1;
}

.bg-primary {
  background-color: #FF1743 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(227, 0, 43.0517241379) !important;
}

.bg-primary {
  background-color: #FF1743;
  color: #fff;
}

.bg-secondary {
  background-color: #d4021d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467) !important;
}

.bg-secondary {
  background-color: #d4021d;
  color: #fff;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-success {
  background-color: #28a745;
  color: #fff;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-info {
  background-color: #17a2b8;
  color: #fff;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-warning {
  background-color: #ffc107;
  color: #212529;
}

.bg-danger {
  background-color: #d4021d !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467) !important;
}

.bg-danger {
  background-color: #d4021d;
  color: #fff;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-light {
  background-color: #f8f9fa;
  color: #212529;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

.bg-dark {
  background-color: #343a40;
  color: #fff;
}

#tsbadge4_db8d3657bdbe440c985ae127463eaad4[data-shopname=WeberBÜRO] {
  z-index: 122 !important;
}

.text-muted {
  color: #9498A0 !important;
}

.inner-p-0 {
  padding: 0 !important;
}
.inner-p-0 .widget-inner {
  padding: 0 !important;
}

.registration__form-wrapper .input-group[data-model=vatNumber] .input-group-prepend {
  border: none !important;
  margin-right: 3px !important;
}

html {
  font-size: 14px;
}

body {
  background-color: #fff;
  background: #e9ebef !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.page-login > #vue-app, body.page-register > #vue-app, body.page-checkout > #vue-app {
    margin-top: 0 !important;
  }
}
body > #vue-app,
body > #vue-error {
  background-color: #e9ebef;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body > #vue-app,
  body > #vue-error {
    margin-top: 120px !important;
  }
}
body > #vue-app.is-home,
body > #vue-error.is-home {
  background-color: #fff;
}
body > #vue-app > .wrapper-top, body > #vue-app > .wrapper-left, body > #vue-app > .wrapper-right, body > #vue-app > .wrapper-bottom,
body > #vue-error > .wrapper-top,
body > #vue-error > .wrapper-left,
body > #vue-error > .wrapper-right,
body > #vue-error > .wrapper-bottom {
  position: absolute;
  z-index: 1090;
}
body > #vue-app .wrapper-main,
body > #vue-error .wrapper-main {
  position: relative;
}
body > #vue-app .wrapper-top,
body > #vue-error .wrapper-top {
  top: 0;
  right: 0;
  left: 0;
}
body > #vue-app .wrapper-right,
body > #vue-error .wrapper-right {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 0;
  border-radius: 5px 0 0 0;
  overflow: hidden;
  background-color: transparent;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: width 310ms 0ms, -webkit-transform 300ms ease-in-out;
  transition: width 310ms 0ms, -webkit-transform 300ms ease-in-out;
  transition: width 310ms 0ms, transform 300ms ease-in-out;
  transition: width 310ms 0ms, transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
body > #vue-app .wrapper-right .wrapper-inner,
body > #vue-error .wrapper-right .wrapper-inner {
  width: 100%;
  height: 100%;
}
body > #vue-app .wrapper-bottom,
body > #vue-error .wrapper-bottom {
  z-index: 2000;
}
body > #vue-app .wrapper-left,
body > #vue-error .wrapper-left {
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (max-width: 767.98px) {
  body > #vue-app.overlay, body > #vue-app.open-right, body > #vue-app.open-left, body > #vue-app.open-top, body > #vue-app.open-bottom,
  body > #vue-error.overlay,
  body > #vue-error.open-right,
  body > #vue-error.open-left,
  body > #vue-error.open-top,
  body > #vue-error.open-bottom {
    margin-top: 0 !important;
  }
}
body > #vue-app.overlay::after, body > #vue-app.open-right::after, body > #vue-app.open-left::after, body > #vue-app.open-top::after, body > #vue-app.open-bottom::after,
body > #vue-error.overlay::after,
body > #vue-error.open-right::after,
body > #vue-error.open-left::after,
body > #vue-error.open-top::after,
body > #vue-error.open-bottom::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1070;
  background-color: rgba(0, 0, 0, 0.5);
}
body > #vue-app.open-right,
body > #vue-error.open-right {
  overflow: hidden;
}
@media (max-width: 767.98px) {
  body > #vue-app.open-right,
  body > #vue-error.open-right {
    position: fixed;
  }
}
body > #vue-app.open-right .wrapper-right,
body > #vue-error.open-right .wrapper-right {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: width 0ms, -webkit-transform 300ms 10ms ease-in-out;
  transition: width 0ms, -webkit-transform 300ms 10ms ease-in-out;
  transition: width 0ms, transform 300ms 10ms ease-in-out;
  transition: width 0ms, transform 300ms 10ms ease-in-out, -webkit-transform 300ms 10ms ease-in-out;
}
@media (min-width: 768px) {
  body > #vue-app.open-right .wrapper-right,
  body > #vue-error.open-right .wrapper-right {
    width: 100vw;
  }
}
@media (max-width: 991.98px) {
  body > #vue-app.open-right .wrapper-right,
  body > #vue-error.open-right .wrapper-right {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  body > #vue-app.open-hover,
  body > #vue-error.open-hover {
    position: fixed;
  }
}
body > #vue-app.open-hover .basket-preview-hover-wrapper,
body > #vue-error.open-hover .basket-preview-hover-wrapper {
  display: block;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
@media (min-width: 768px) {
  body > #vue-app.open-right .wrapper-right,
  body > #vue-error.open-right .wrapper-right {
    width: 30em;
  }
}

.modal-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-footer > .fa {
  margin-top: 1px;
  margin-left: 5px;
}

.modal {
  padding: 20px 15px;
}
@media (min-width: 768px) {
  .modal {
    padding: 30px;
  }
}
@media (min-width: 992px) {
  .modal {
    padding: 0;
  }
}

.tooltip.fade.show {
  z-index: 1080;
}

.loading-quickview:after {
  content: "";
  position: fixed;
  z-index: 111111;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-open .quick-view__backdrop.modal-visible {
  z-index: 1081;
}

.quick-view__backdrop.modal-visible {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1080;
}
.quick-view__right-side .single__modal-btn-wraper {
  max-width: 100% !important;
}
.quick-view__right-side .price span:first-child {
  font-weight: bold;
}
.quick-view__close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  height: 41px;
  width: 41px;
  background-color: #E3E3E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  z-index: 1111;
}
.quick-view__goto-item {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  background: white;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Yantramanav";
}
.quick-view__goto-item:focus, .quick-view__goto-item:active, .quick-view__goto-item:hover {
  color: #000 !important;
  border: 2px solid #FF1743;
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.quick-view__modal {
  display: none;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.quick-view__modal .left-side > div:first-child {
  position: relative;
  z-index: 111;
}
@media (min-width: 992px) {
  .quick-view__modal .single-swiper-pagination {
    position: initial;
    width: 100%;
  }
}
.quick-view__modal .drift-zoom-pane.drift-open {
  left: 53.3%;
  right: auto;
  height: 495px;
  width: 495px;
  top: 23%;
}
.quick-view__modal .modal-content {
  border-radius: 10px;
}
.quick-view__modal.modal-visible {
  display: block;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1080;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  outline: 0;
}
.quick-view__modal .single__thumb-swiper-container {
  margin-top: 10px;
}
.quick-view__modal .base-price {
  display: none;
}
.quick-view__modal .single__stock-availability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.quick-view__modal .single-swiper {
  height: auto !important;
}
.quick-view__modal .single__name, .quick-view__modal .single .title-outer h1, .single .title-outer .quick-view__modal h1 {
  line-height: 30px;
  max-width: 388px;
}
.quick-view__modal .single__prices {
  margin-bottom: 20px;
}
.quick-view__modal .single__prices sup {
  display: none;
}
.quick-view__modal .single__wishlist {
  margin-bottom: 20px;
}
.quick-view__modal .thumb-swiper-prev {
  top: -10px !important;
}
.quick-view__modal .thumb-swiper-next {
  bottom: -10px !important;
}
.quick-view__modal .modal-body {
  padding: 30px;
  position: relative;
}
.quick-view__modal .modal-dialog {
  top: 40px;
  max-width: 1135px;
}

.page-singleitem .quick-view__modal .col-7.left-side {
  z-index: 1;
}
html.ios input,
html.ios select,
html.ios textarea {
  font-size: 16px !important;
}

.input-group .input-unit + .input-group-btn {
  padding-bottom: 15px;
}
.input-group .input-unit + .input-group-btn .btn, .input-group .input-unit + .input-group-btn .single__series-button, .input-group .input-unit + .input-group-btn .feedback-container .btn-secondary, .input-group .input-unit + .input-group-btn .feedback-container .feedback-info-segment.btn-default, .feedback-container .input-group .input-unit + .input-group-btn .btn-secondary, .feedback-container .input-group .input-unit + .input-group-btn .feedback-info-segment.btn-default {
  height: calc(2.8em + 1px);
}
.input-group.vert .input-group-btn {
  display: block;
  width: 100%;
}
.input-group.vert .input-group-btn .btn, .input-group.vert .input-group-btn .single__series-button, .input-group.vert .input-group-btn .feedback-container .btn-secondary, .input-group.vert .input-group-btn .feedback-container .feedback-info-segment.btn-default, .feedback-container .input-group.vert .input-group-btn .btn-secondary, .feedback-container .input-group.vert .input-group-btn .feedback-info-segment.btn-default {
  width: 100%;
  margin: 0;
}
.input-group.vert .input-group-addon:not(:last-child),
.input-group.vert .input-group-btn:not(:last-child) > .btn,
.input-group.vert .input-group-btn:not(:last-child) > .single__series-button,
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .btn-secondary,
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .feedback-info-segment.btn-default,
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .btn-secondary,
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .feedback-info-segment.btn-default,
.input-group.vert .input-group-btn:not(:last-child) > .btn-group > .btn,
.input-group.vert .input-group-btn:not(:last-child) > .btn-group > .single__series-button,
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .btn-group > .btn-secondary,
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .btn-group > .feedback-info-segment.btn-default,
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .btn-group > .btn-secondary,
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .btn-group > .feedback-info-segment.btn-default,
.input-group.vert .input-group-btn:not(:last-child) > .dropdown-toggle,
.input-group.vert .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
.input-group.vert .input-group-btn:not(:first-child) > .single__series-button:not(:last-child):not(.dropdown-toggle),
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .btn-secondary:not(:last-child):not(.dropdown-toggle),
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .feedback-info-segment.btn-default:not(:last-child):not(.dropdown-toggle),
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .btn-secondary:not(:last-child):not(.dropdown-toggle),
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .feedback-info-segment.btn-default:not(:last-child):not(.dropdown-toggle),
.input-group.vert .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn,
.input-group.vert .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .single__series-button,
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn-secondary,
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .feedback-info-segment.btn-default,
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn-secondary,
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .feedback-info-segment.btn-default {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
  border-bottom: none;
}
.input-group.vert .input-group-addon:not(:last-child) {
  border-bottom: 0;
}
.input-group.vert .input-group .form-control:not(:first-child),
.input-group.vert .input-group-addon:not(:first-child),
.input-group.vert .input-group-btn:not(:first-child) > .btn,
.input-group.vert .input-group-btn:not(:first-child) > .single__series-button,
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .btn-secondary,
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .feedback-info-segment.btn-default,
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .btn-secondary,
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .feedback-info-segment.btn-default,
.input-group.vert .input-group-btn:not(:first-child) > .btn-group > .btn,
.input-group.vert .input-group-btn:not(:first-child) > .btn-group > .single__series-button,
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .btn-group > .btn-secondary,
.input-group.vert .feedback-container .input-group-btn:not(:first-child) > .btn-group > .feedback-info-segment.btn-default,
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .btn-group > .btn-secondary,
.feedback-container .input-group.vert .input-group-btn:not(:first-child) > .btn-group > .feedback-info-segment.btn-default,
.input-group.vert .input-group-btn:not(:first-child) > .dropdown-toggle,
.input-group.vert .input-group-btn:not(:last-child) > .btn:not(:first-child),
.input-group.vert .input-group-btn:not(:last-child) > .single__series-button:not(:first-child),
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .btn-secondary:not(:first-child),
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .feedback-info-segment.btn-default:not(:first-child),
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .btn-secondary:not(:first-child),
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .feedback-info-segment.btn-default:not(:first-child),
.input-group.vert .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn,
.input-group.vert .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .single__series-button,
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn-secondary,
.input-group.vert .feedback-container .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .feedback-info-segment.btn-default,
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn-secondary,
.feedback-container .input-group.vert .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .feedback-info-segment.btn-default {
  border-bottom-right-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
}
.input-group.vert .form-control + .input-group-addon:not(:first-child) {
  border-top: 0;
}
.input-group.vert .form-control {
  display: block;
  float: none;
  border-radius: 0 !important;
}

button:focus {
  outline: none;
}

.btn-group.extended,
.input-group.extended {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn-group.extended .extended,
.input-group.extended .extended {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.btn-group.extended .extended .btn, .btn-group.extended .extended .single__series-button, .btn-group.extended .extended .feedback-container .btn-secondary, .btn-group.extended .extended .feedback-container .feedback-info-segment.btn-default, .feedback-container .btn-group.extended .extended .btn-secondary, .feedback-container .btn-group.extended .extended .feedback-info-segment.btn-default,
.input-group.extended .extended .btn,
.input-group.extended .extended .single__series-button,
.input-group.extended .extended .feedback-container .btn-secondary,
.input-group.extended .extended .feedback-container .feedback-info-segment.btn-default,
.feedback-container .input-group.extended .extended .btn-secondary,
.feedback-container .input-group.extended .extended .feedback-info-segment.btn-default {
  width: 100%;
}
.btn-group.extended .input-group-btn,
.input-group.extended .input-group-btn {
  width: auto;
}

.btn, .single__series-button, .feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  outline: 0 !important;
}
.btn .btn-label.btn-trans, .single__series-button .btn-label.btn-trans, .feedback-container .btn-secondary .btn-label.btn-trans, .feedback-container .feedback-info-segment.btn-default .btn-label.btn-trans {
  background: transparent;
}
.btn > .fa, .single__series-button > .fa, .feedback-container .btn-secondary > .fa, .feedback-container .feedback-info-segment.btn-default > .fa {
  float: right;
}
.btn > .fa.default-float, .single__series-button > .fa.default-float, .feedback-container .btn-secondary > .fa.default-float, .feedback-container .feedback-info-segment.btn-default > .fa.default-float {
  float: none;
}
.btn > span + .fa, .single__series-button > span + .fa, .feedback-container .btn-secondary > span + .fa, .feedback-container .feedback-info-segment.btn-default > span + .fa {
  margin-left: 5px;
  margin-top: 1px;
}
.btn.btn-medium, .btn-medium.single__series-button, .feedback-container .btn-medium.btn-secondary, .feedback-container .btn-medium.feedback-info-segment.btn-default {
  min-width: 10rem;
}
.btn.btn-medium-large, .btn-medium-large.single__series-button, .feedback-container .btn-medium-large.btn-secondary, .feedback-container .btn-medium-large.feedback-info-segment.btn-default {
  min-width: 12rem;
}
.btn.btn-large, .btn-large.single__series-button, .feedback-container .btn-large.btn-secondary, .feedback-container .btn-large.feedback-info-segment.btn-default {
  min-width: 15rem;
}
.btn.btn-block > .fa, .btn-block.single__series-button > .fa, .feedback-container .btn-block.btn-secondary > .fa, .feedback-container .btn-block.feedback-info-segment.btn-default > .fa {
  line-height: inherit;
  margin-top: 0;
}

@media (max-width: 575.98px) {
  .btn-xs-max-width {
    width: 100% !important;
  }
}

.btn-labeled {
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.btn-labeled .btn-label {
  position: relative;
  right: -0.5rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.15);
  border-top-right-radius: 0.15rem;
  border-bottom-right-radius: 0.15rem;
}
.btn-labeled.label-right .btn-label {
  right: auto;
  left: -0.5rem;
}
.btn-labeled.btn-link {
  padding-left: 0;
  padding-right: 0;
}
.btn-labeled.btn-link .btn-label {
  background-color: rgba(0, 0, 0, 0);
  padding: 0.25rem 0;
}

.btn-icon {
  padding: 0.5rem;
}
.btn-icon .fa {
  width: 14px;
  text-align: center;
}
.btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn, .btn-group-sm > .btn-icon.single__series-button, .feedback-container .btn-group-sm > .btn-icon.btn-secondary, .feedback-container .btn-group-sm > .btn-icon.feedback-info-segment.btn-default {
  padding: 0.2rem;
}
.btn-icon.btn-sm .fa, .btn-group-sm > .btn-icon.btn .fa, .btn-group-sm > .btn-icon.single__series-button .fa, .feedback-container .btn-group-sm > .btn-icon.btn-secondary .fa, .feedback-container .btn-group-sm > .btn-icon.feedback-info-segment.btn-default .fa {
  width: 12px;
}
.btn-icon.btn-circle {
  border-radius: 50%;
}

.btn-default {
  color: #212529;
  background-color: #dcdbd8;
  border-color: #dcdbd8;
}
.btn-default:hover {
  color: #212529;
  background-color: rgb(201.9087837838, 200.3918918919, 195.8412162162);
  border-color: rgb(195.8783783784, 194.1891891892, 189.1216216216);
}
.btn-default:focus, .btn-default.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(191.95, 191.7, 189.75, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(191.95, 191.7, 189.75, 0.5);
}
.btn-default.disabled, .btn-default:disabled {
  color: #212529;
  background-color: #dcdbd8;
  border-color: #dcdbd8;
}
.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle {
  color: #212529;
  background-color: rgb(195.8783783784, 194.1891891892, 189.1216216216);
  border-color: rgb(189.847972973, 187.9864864865, 182.402027027);
}
.btn-default:not(:disabled):not(.disabled):active:focus, .btn-default:not(:disabled):not(.disabled).active:focus, .show > .btn-default.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(191.95, 191.7, 189.75, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(191.95, 191.7, 189.75, 0.5);
}

.btn-only-icon-xs-up {
  width: 2.2rem !important;
  padding-right: 8px;
  height: 2.2rem;
}
.btn-only-icon-xs-up span {
  display: none !important;
}

@media (max-width: 575.98px) {
  .btn-only-icon-xs-down span {
    display: none !important;
  }
  .btn-only-icon-xs-down i {
    margin: 0 !important;
    float: none !important;
  }
}

@media (min-width: 576px) {
  .btn-only-icon-sm-up {
    width: 2.2rem !important;
    padding-right: 8px;
    height: 2.2rem;
  }
  .btn-only-icon-sm-up span {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .btn-only-icon-sm-down span {
    display: none !important;
  }
  .btn-only-icon-sm-down i {
    margin: 0 !important;
    float: none !important;
  }
}

@media (min-width: 768px) {
  .btn-only-icon-md-up {
    width: 2.2rem !important;
    padding-right: 8px;
    height: 2.2rem;
  }
  .btn-only-icon-md-up span {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .btn-only-icon-md-down span {
    display: none !important;
  }
  .btn-only-icon-md-down i {
    margin: 0 !important;
    float: none !important;
  }
}

@media (min-width: 992px) {
  .btn-only-icon-lg-up {
    width: 2.2rem !important;
    padding-right: 8px;
    height: 2.2rem;
  }
  .btn-only-icon-lg-up span {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .btn-only-icon-lg-down span {
    display: none !important;
  }
  .btn-only-icon-lg-down i {
    margin: 0 !important;
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .btn-only-icon-xl-up {
    width: 2.2rem !important;
    padding-right: 8px;
    height: 2.2rem;
  }
  .btn-only-icon-xl-up span {
    display: none !important;
  }
}

.btn-only-icon-xl-down span {
  display: none !important;
}
.btn-only-icon-xl-down i {
  margin: 0 !important;
  float: none !important;
}

.bs4-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0.75rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.bs4-progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  background-color: #FF1743;
  color: #fff;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 50%;
  left: 0;
  float: left;
}

.lb-nav a.lb-next {
  width: 50%;
  right: 0;
  float: right;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

/**
* Owl Carousel v2.2.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .owl-carousel:hover .owl-single-item-nav {
    opacity: 0.3;
  }
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  width: 99%;
  -webkit-transform-style: preserve-3d;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

#single-carousel .owl-item img {
  height: 300px;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-single-item-nav.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-prev {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-next {
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

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

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

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

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

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

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

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

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

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0, 0, 0.26, 1), opacity 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
}

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

/**
* Owl Carousel v2.2.0
* Copyright 2013-2016 David Deutsch
* Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
*/
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-theme .owl-nav [class*=owl-] {
  font-size: 22px;
  margin: 5px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.75);
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #e9ebef;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
Custom classes
**/
.owl-single-item-nav {
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  bottom: 40%;
  max-width: 45px;
  margin: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-36%);
          transform: translateY(-36%);
}
@media (max-width: 767.98px) {
  .owl-single-item-nav {
    display: none;
  }
}
.owl-single-item-nav:hover {
  opacity: 0.5 !important;
}
.owl-single-item-nav.right {
  right: -45px;
}
.owl-single-item-nav.left {
  left: -45px;
}
.owl-single-item-nav .owl-single-item-control {
  margin: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-36%);
          transform: translateY(-36%);
}

.owl-carousel .disabled {
  display: none;
}

.disabled .owl-single-item-nav {
  display: none;
}

.owl-single-item .owl-dots {
  display: none;
}

.owl-thumbs {
  display: none;
}

.owl-carousel .carousel-control {
  background-image: none !important;
  opacity: 1;
  display: block;
  text-align: left;
}
.owl-carousel .carousel-control.right {
  text-align: right;
  right: 0;
}
.owl-carousel .carousel-control.right .owl-single-item-control {
  right: -50px;
}
.owl-carousel .carousel-control.left .owl-single-item-control {
  left: -50px;
}
.owl-carousel .carousel-control:hover {
  opacity: 1 !important;
}
.owl-carousel .carousel-control:hover i {
  color: #FF1743;
}
.owl-carousel .owl-single-item-control {
  text-shadow: none;
  font-size: 3rem;
  color: #000;
}
@media (max-width: 767.98px) {
  .owl-carousel .owl-single-item-control {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
}
.owl-carousel .owl-dots {
  display: block;
}

#thumb-carousel .carousel-control {
  width: 5%;
}

@media (min-width: 576px) {
  #single-carousel .owl-item img {
    height: 500px;
  }
}
.owl-thumbs {
  display: inline-block;
}
.owl-thumbs .owl-thumb {
  -o-object-fit: contain;
     object-fit: contain;
  width: 8em;
  height: 8em;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border: 1px solid transparent;
  margin: 0.5rem 0.5rem 0 0;
}
.owl-thumbs .owl-thumb.active, .owl-thumbs .owl-thumb:hover {
  border: 1px solid #FF1743;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .owl-thumbs .owl-thumb {
    height: 4em;
  }
}

@media (min-width: 992px) {
  #single-carousel .owl-item img {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  #single-carousel .owl-item img {
    height: 700px;
  }
}
/* Compatibility for IE */
html.ie #single-carousel .owl-item img {
  width: auto;
  display: inline-block;
}
html.ie #single-carousel .owl-item > div {
  text-align: center;
}
html.ie #thumb-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
html.ie #thumb-carousel .owl-stage .owl-item {
  width: auto !important;
}
html.ie #thumb-carousel .owl-stage .owl-item article {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
}
html.ie #thumb-carousel .owl-stage .owl-item img {
  width: auto;
  margin-right: 0 !important;
}

.cmp-accordion .accordion-control {
  display: none;
}
.cmp-accordion .accordion-header {
  position: relative;
  display: block;
  cursor: normal;
}
.cmp-accordion .accordion-header::after {
  content: none;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmp-accordion .accordion-content {
  height: auto;
  max-height: none;
  overflow: hidden;
}
.cmp-accordion.active-xs-up .accordion-header {
  cursor: pointer;
}
.cmp-accordion.active-xs-up .accordion-header::after {
  content: "";
}
.cmp-accordion.active-xs-up .accordion-content {
  max-height: 0;
}
.cmp-accordion.active-xs-up .accordion-control:checked + .accordion-header::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}
.cmp-accordion.active-xs-up .accordion-control:checked + .accordion-header + .accordion-content {
  max-height: 100em !important;
}
@media (max-width: 575.98px) {
  .cmp-accordion.active-xs-down .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-xs-down .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-xs-down .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-xs-down .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-xs-down .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (min-width: 576px) {
  .cmp-accordion.active-sm-up .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-sm-up .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-sm-up .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-sm-up .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-sm-up .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (max-width: 767.98px) {
  .cmp-accordion.active-sm-down .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-sm-down .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-sm-down .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-sm-down .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-sm-down .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (min-width: 768px) {
  .cmp-accordion.active-md-up .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-md-up .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-md-up .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-md-up .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-md-up .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (max-width: 991.98px) {
  .cmp-accordion.active-md-down .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-md-down .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-md-down .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-md-down .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-md-down .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (min-width: 992px) {
  .cmp-accordion.active-lg-up .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-lg-up .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-lg-up .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-lg-up .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-lg-up .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (max-width: 1199.98px) {
  .cmp-accordion.active-lg-down .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-lg-down .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-lg-down .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-lg-down .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-lg-down .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
@media (min-width: 1200px) {
  .cmp-accordion.active-xl-up .accordion-header {
    cursor: pointer;
  }
  .cmp-accordion.active-xl-up .accordion-header::after {
    content: "";
  }
  .cmp-accordion.active-xl-up .accordion-content {
    max-height: 0;
  }
  .cmp-accordion.active-xl-up .accordion-control:checked + .accordion-header::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
  .cmp-accordion.active-xl-up .accordion-control:checked + .accordion-header + .accordion-content {
    max-height: 100em !important;
  }
}
.cmp-accordion.active-xl-down .accordion-header {
  cursor: pointer;
}
.cmp-accordion.active-xl-down .accordion-header::after {
  content: "";
}
.cmp-accordion.active-xl-down .accordion-content {
  max-height: 0;
}
.cmp-accordion.active-xl-down .accordion-control:checked + .accordion-header::after {
  border-top: 0;
  border-bottom: 0.3em solid;
}
.cmp-accordion.active-xl-down .accordion-control:checked + .accordion-header + .accordion-content {
  max-height: 100em !important;
}

.alert-dynamic {
  position: fixed;
  display: inline-block;
  width: auto;
  top: 10rem;
  right: 0.5rem;
}

.alert {
  width: 100%;
}
@media (min-width: 576px) {
  .alert {
    width: 400px;
  }
}

.password-info {
  padding: 10px !important;
}
.password-info .info-badge {
  margin-left: 0.2rem;
}

.anicon {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 40px;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
.anicon > * {
  display: block;
}
.anicon:hover, .anicon:focus {
  outline: none;
}
.anicon > .anicon-search-item {
  display: inline-block;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
  position: relative;
  -webkit-transform: rotateZ(225deg);
          transform: rotateZ(225deg);
  margin-bottom: 3px;
  width: 18px;
}
.anicon > .anicon-search-item:before {
  display: inline-block;
  height: 1px;
  width: 15px;
  border-radius: 2.85714px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.anicon > .anicon-search-item:after {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #4D4F4D;
  border: 1px solid #fff;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media (min-width: 768px) {
  .anicon.anicon-search-xcross[aria-expanded=false]:hover > .anicon-search-item:after {
    background: #FF1743;
  }
}
.anicon.anicon-search-xcross[aria-expanded=true] > .anicon-search-item {
  width: 15px;
  margin-left: 1px;
}
.anicon.anicon-search-xcross[aria-expanded=true] > .anicon-search-item:before {
  border-radius: 2.85714px;
  background: #fff;
}
.anicon.anicon-search-xcross[aria-expanded=true] > .anicon-search-item:after {
  border-radius: 2.85714px;
  background: #fff;
  height: 1px;
  width: 100%;
  top: 0;
  right: 0;
  border: 0;
  -webkit-transform: rotate3d(0, 0, 1, 90deg);
          transform: rotate3d(0, 0, 1, 90deg);
}

.cmp {
  position: relative;
}
.cmp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 1080;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 300ms, width 0ms 310ms, height 0ms 310ms;
  transition: opacity 300ms, width 0ms 310ms, height 0ms 310ms;
}
.cmp::after {
  content: "Loading…";
  color: white;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 300ms, visibility 0ms 310ms;
  transition: opacity 300ms, visibility 0ms 310ms;
}
.cmp.wait {
  pointer-events: none;
}
.cmp.wait::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: width 0ms, height 0ms, opacity 300ms 10ms;
  transition: width 0ms, height 0ms, opacity 300ms 10ms;
}
.cmp.wait::after {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0ms, opacity 300ms 100ms;
  transition: visibility 0ms, opacity 300ms 100ms;
}
.featured-category {
  display: block;
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.featured-category > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.featured-category .featured-category-inner {
  position: absolute;
  width: auto;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: transparent;
}
.featured-category .featured-category-inner::after {
  display: block;
  clear: both;
  content: "";
}
.featured-category .featured-category-headline {
  font-weight: normal;
  display: block;
  padding: 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 1.25rem;
  margin: 1rem;
  width: auto;
  text-align: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(255, 23, 67, 0.8);
  color: #fff;
}
.featured-category .featured-category-cta {
  display: block;
  border-top: 1px solid #dcdbd8;
  max-height: 0;
  height: auto;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.featured-category .featured-category-cta span {
  display: block;
  padding: 1rem;
}
.featured-category .featured-category-cta .fa {
  margin-left: 0.5rem;
}
.featured-category:hover .featured-category-headline {
  background: #ff1743;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .featured-category .featured-category-headline {
    font-size: 1.75rem;
    padding: 1.5rem;
  }
  .featured-category:hover .featured-category-cta {
    max-height: 5rem;
  }
}
.featured-sale-new {
  display: block;
  height: 100%;
  overflow: hidden;
  color: #fff;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.featured-sale-new > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.featured-sale-new .featured-category-inner {
  position: absolute;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: rgba(212, 2, 29, 0.8);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.featured-sale-new .featured-category-headline {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0;
  text-align: left;
  font-weight: normal;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
}
.featured-sale-new .featured-category-cta {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5em;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.featured-sale-new .featured-category-cta .fa {
  margin-left: 0.5rem;
}
.featured-sale-new:hover .featured-category-inner {
  background: #d4021d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .featured-sale-new .featured-category-inner {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
  }
  .featured-sale-new .featured-category-headline {
    font-size: 4rem;
  }
}
.live-shopping-details {
  position: relative;
  padding: 0;
  margin: 0;
}
.live-shopping-details .live-shopping-item-name {
  padding: 0.8rem;
  margin: 0;
}
.live-shopping-details .live-shopping-item-name > a {
  color: #7a7f7f;
  display: block;
  font-weight: normal;
  line-height: 1.5em;
  position: relative;
  text-align: center;
}
.live-shopping-details .live-shopping-countdown {
  padding: 1rem 0.8rem;
  padding-top: 0.6rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.live-shopping-details .live-shopping-countdown .live-shopping-countdown-separator {
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.live-shopping-details .live-shopping-countdown .live-shopping-countdown-heading {
  text-align: center;
  margin-bottom: 5px;
}
.live-shopping-details .live-shopping-countdown .live-shopping-countdown-thread-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.live-shopping-details .live-shopping-countdown .live-shopping-countdown-thread-container:not(:last-child) {
  margin-bottom: 0.5rem;
}
.live-shopping-details .live-shopping-countdown .live-shopping-countdown-thread-container .live-shopping-countdown-thread {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.live-shopping-details .live-shopping-countdown .live-shopping-countdown-thread-container .live-shopping-countdown-thread .live-shopping-countdown-thread-number {
  line-height: 1.1;
  font-size: 2rem;
  font-weight: bold;
}
.live-shopping-details .live-shopping-prices {
  padding: 0.5rem 1rem 0.8rem 1rem;
}
.live-shopping-details .live-shopping-prices .live-shopping-prices-inner {
  display: grid;
  grid-template-areas: "top" "bottom";
}
.live-shopping-details .live-shopping-prices .live-shopping-prices-inner .live-shopping-prices-rebate {
  grid-area: bottom;
}
.live-shopping-details .live-shopping-prices .live-shopping-prices-inner .live-shopping-prices-container {
  grid-area: top;
  margin-left: 0;
}
.live-shopping-details .live-shopping-prices .live-shopping-prices-inner .live-shopping-prices-container .live-shopping-price {
  line-height: 1.1;
  font-size: 2rem;
}
.live-shopping-details .live-shopping-prices .live-shopping-prices-additional-info {
  font-size: 80%;
  font-weight: normal;
  text-align: left;
  margin-top: 0.25rem;
}
.live-shopping-details .live-shopping-prices .live-shopping-prices-additional-info a {
  color: inherit;
  font-weight: bold;
}
.live-shopping-details .live-shopping-progress:not(:last-child) {
  margin-bottom: 0.5rem;
}
.live-shopping-details .live-shopping-progress .live-shopping-progress-heading {
  text-align: center;
}
.live-shopping-details .live-shopping-progress .live-shopping-progress-heading:not(:last-child) {
  margin-bottom: 0.5rem;
}

.live-shopping-add-to-basket {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.progress-100 {
  background-color: #28a745;
}

.progress-90 {
  background-color: rgb(57.2, 150.5, 65);
}

.progress-80 {
  background-color: rgb(74.4, 134, 61);
}

.progress-70 {
  background-color: rgb(91.6, 117.5, 57);
}

.progress-60 {
  background-color: rgb(108.8, 101, 53);
}

.progress-50 {
  background-color: rgb(126, 84.5, 49);
}

.progress-40 {
  background-color: rgb(143.2, 68, 45);
}

.progress-30 {
  background-color: rgb(160.4, 51.5, 41);
}

.progress-20 {
  background-color: rgb(177.6, 35, 37);
}

.progress-10 {
  background-color: rgb(194.8, 18.5, 33);
}

.progress-0 {
  background-color: #d4021d;
}

.notification-wrapper {
  position: fixed;
  right: 0.5rem;
  top: 10rem;
}
@media (max-width: 575.98px) {
  .notification-wrapper {
    width: 100%;
    padding: 0 15px;
    right: auto;
    z-index: 1111111;
  }
}

@media (max-width: 575.98px) {
  .wrapper-top {
    z-index: 1111111 !important;
  }
}

.popover[x-placement=bottom] .arrow::after {
  border-bottom-color: rgb(247.35, 247.35, 247.35);
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}
.pswp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}
@media (min-width: 768px) {
  .pswp__button--arrow--left {
    left: 25px;
  }
}
.pswp__button--arrow--right {
  right: 0;
}
@media (min-width: 768px) {
  .pswp__button--arrow--right {
    right: 25px;
  }
}
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url("../images/ajax-loader.gif") 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
          animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
          animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  /*
      The idea of animating inner circle is based on Polymer ("material") loading indicator
       by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/swiper/
 *
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under MIT
 *
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 45px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*! ========================================================================
 * Bootstrap Toggle: bootstrap2-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */
label.checkbox .toggle,
label.checkbox.inline .toggle {
  margin-left: -20px;
  margin-right: 5px;
}

.toggle {
  min-width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.toggle input[type=checkbox] {
  display: none;
}

.toggle-group {
  position: absolute;
  width: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  transition: left 0.35s;
  -webkit-transition: left 0.35s;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.toggle.off .toggle-group {
  left: -100%;
}

.toggle-on {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-off {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.toggle-handle {
  position: relative;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%;
  width: 0px;
  border-width: 0 1px;
}

.toggle-handle.btn-mini {
  top: -1px;
}

.toggle.btn, .toggle.single__series-button, .feedback-container .toggle.btn-secondary, .feedback-container .toggle.feedback-info-segment.btn-default {
  min-width: 30px;
}

.toggle-on.btn, .toggle-on.single__series-button, .feedback-container .toggle-on.btn-secondary, .feedback-container .toggle-on.feedback-info-segment.btn-default {
  padding-right: 24px;
}

.toggle-off.btn, .toggle-off.single__series-button, .feedback-container .toggle-off.btn-secondary, .feedback-container .toggle-off.feedback-info-segment.btn-default {
  padding-left: 24px;
}

.toggle.btn-large {
  min-width: 40px;
}

.toggle-on.btn-large {
  padding-right: 35px;
}

.toggle-off.btn-large {
  padding-left: 35px;
}

.toggle.btn-small {
  min-width: 25px;
}

.toggle-on.btn-small {
  padding-right: 20px;
}

.toggle-off.btn-small {
  padding-left: 20px;
}

.toggle.btn-mini {
  min-width: 20px;
}

.toggle-on.btn-mini {
  padding-right: 12px;
}

.toggle-off.btn-mini {
  padding-left: 12px;
}

.input-group-v .input-unit-v1 {
  margin-top: -1px;
  margin-bottom: 0;
  border-radius: 0;
}
.input-group-v > *:first-child {
  margin-top: 0;
  border-top-right-radius: 0.1rem;
  border-top-left-radius: 0.1rem;
}
.input-group-v > *:last-child {
  border-bottom-right-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
}

.input-unit.textarea {
  background-color: #fff;
}
.input-unit.textarea > textarea {
  overflow-y: auto;
  white-space: normal;
}
.input-unit.textarea > label {
  background-color: #fff;
  opacity: 0.9;
}

.input-unit {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #D5D7DB;
  border-radius: 0.1rem;
  overflow: hidden;
}
.input-unit.error {
  border-color: #FF1743 !important;
}
@media (max-width: 575.98px) {
  .input-unit.media-xs-d {
    margin-bottom: 15px !important;
  }
}
.input-unit.no-bottom {
  margin-bottom: 0px;
}
.input-unit input[type=date] {
  max-height: 38px;
}
.input-unit input[type], .input-unit textarea,
.input-unit input:not([type=checkbox]),
.input-unit input:not([type=radio]),
.input-unit .input-unit-preview {
  color: #333;
  background-color: white;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 1.2em !important;
  padding: 1.3rem 1rem 0.3rem 1rem;
  width: 100%;
  font-size: 1em;
  outline: none !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.input-unit input[type]:focus, .input-unit input[type].filled, .input-unit textarea:focus, .input-unit textarea.filled,
.input-unit input:not([type=checkbox]):focus,
.input-unit input:not([type=checkbox]).filled,
.input-unit input:not([type=radio]):focus,
.input-unit input:not([type=radio]).filled,
.input-unit .input-unit-preview:focus,
.input-unit .input-unit-preview.filled {
  color: #4D4F4D;
  background-color: white;
  border-color: #9498A0;
}
.input-unit input[type].disabled, .input-unit input[type]:disabled, .input-unit textarea.disabled, .input-unit textarea:disabled,
.input-unit input:not([type=checkbox]).disabled,
.input-unit input:not([type=checkbox]):disabled,
.input-unit input:not([type=radio]).disabled,
.input-unit input:not([type=radio]):disabled,
.input-unit .input-unit-preview.disabled,
.input-unit .input-unit-preview:disabled {
  background-color: #f7f7f9;
  border-color: #dcdbd8;
  cursor: not-allowed;
}
.input-unit input[type].disabled ~ label, .input-unit input[type]:disabled ~ label, .input-unit textarea.disabled ~ label, .input-unit textarea:disabled ~ label,
.input-unit input:not([type=checkbox]).disabled ~ label,
.input-unit input:not([type=checkbox]):disabled ~ label,
.input-unit input:not([type=radio]).disabled ~ label,
.input-unit input:not([type=radio]):disabled ~ label,
.input-unit .input-unit-preview.disabled ~ label,
.input-unit .input-unit-preview:disabled ~ label {
  color: #dcdbd8;
  cursor: not-allowed;
}
.input-unit input[type] + .symbol, .input-unit textarea + .symbol,
.input-unit input:not([type=checkbox]) + .symbol,
.input-unit input:not([type=radio]) + .symbol,
.input-unit .input-unit-preview + .symbol {
  color: #7a7f7f;
  position: absolute;
  top: 1px;
  right: 1px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.input-unit input[type].disabled + .symbol, .input-unit input[type]:disabled + .symbol, .input-unit textarea.disabled + .symbol, .input-unit textarea:disabled + .symbol,
.input-unit input:not([type=checkbox]).disabled + .symbol,
.input-unit input:not([type=checkbox]):disabled + .symbol,
.input-unit input:not([type=radio]).disabled + .symbol,
.input-unit input:not([type=radio]):disabled + .symbol,
.input-unit .input-unit-preview.disabled + .symbol,
.input-unit .input-unit-preview:disabled + .symbol {
  color: #7a7f7f;
}
.input-unit input[type].disabled + label, .input-unit input[type]:disabled + label, .input-unit textarea.disabled + label, .input-unit textarea:disabled + label,
.input-unit input:not([type=checkbox]).disabled + label,
.input-unit input:not([type=checkbox]):disabled + label,
.input-unit input:not([type=radio]).disabled + label,
.input-unit input:not([type=radio]):disabled + label,
.input-unit .input-unit-preview.disabled + label,
.input-unit .input-unit-preview:disabled + label {
  color: #9498A0 !important;
}
.input-unit label,
.input-unit .input-unit-label {
  font-size: 12px;
  line-height: 1em !important;
  text-transform: none;
  letter-spacing: 0.1px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Yantramanav";
  width: 100%;
  padding: 0.35rem 1rem 0;
  margin-bottom: 0;
  color: #000 !important;
  font-weight: bold !important;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  cursor: pointer;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.input-unit label.disabled, .input-unit label:disabled,
.input-unit .input-unit-label.disabled,
.input-unit .input-unit-label:disabled {
  cursor: not-allowed;
}
.input-unit i {
  font-style: normal;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7f7f9;
  color: #dcdbd8;
  line-height: 1.2em;
  width: 1.2em;
  text-align: center;
  cursor: pointer;
  border-bottom-right-radius: 2px;
}
.input-unit.error, .input-feedback-container.has-error > .input-unit {
  z-index: 1000;
  border-color: #d4021d;
}
.input-unit.error input, .input-feedback-container.has-error > .input-unit input {
  color: #d4021d;
}
.input-unit.error label, .input-feedback-container.has-error > .input-unit label {
  color: #d4021d;
}
.input-unit.error i, .input-feedback-container.has-error > .input-unit i {
  background-color: #d4021d;
  color: white;
}
.input-unit.success, .input-feedback-container.has-success > .input-unit {
  z-index: 1000;
  border-color: #28a745;
}
.input-unit.success input, .input-feedback-container.has-success > .input-unit input {
  color: #28a745;
}
.input-unit.success label, .input-feedback-container.has-success > .input-unit label {
  color: #28a745;
}
.input-unit.success i, .input-feedback-container.has-success > .input-unit i {
  background-color: #28a745;
  color: white;
}
.input-unit .custom-select {
  padding: 1.2rem 2rem 0.4rem 1rem;
  background-position: calc(100% - 1rem) 1.2rem;
  height: 100%;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .input-unit .custom-select {
    font-size: 16px !important;
  }
}
.input-unit .custom-select + label, .input-unit .custom-select label {
  pointer-events: none;
}

.file-input {
  height: 38px;
  cursor: pointer;
}
.file-input > input[type=file] {
  width: 0;
  height: 0;
  padding: 0;
  visibility: hidden;
}
.file-input > .input-unit-preview {
  height: 38px;
}
.file-input > .input-unit-btn {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background-color: #dcdbd8;
  display: block;
  right: 0;
  top: 0;
}
.file-input > .input-unit-btn i {
  margin: 10px;
  width: 18px;
  height: 18px;
  font-weight: 300;
  background-color: #dcdbd8;
  color: #212529;
}
.file-input.success .input-unit-btn, .file-input.success .input-unit-btn i {
  background-color: #28a745;
  color: #fff;
}
.file-input.error .input-unit-btn, .file-input.error .input-unit-btn i {
  background-color: #d4021d;
  color: #fff;
}

.input-unit.multiple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.input-unit.multiple > input {
  width: 70%;
}
.input-unit.multiple > select {
  width: 30%;
  border-left: 1px solid #dcdbd8;
}

.remove-disabled-coloring:disabled {
  background-color: initial !important;
}

.form-check {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}
.form-check.error {
  background: #d4021d !important;
  color: #fff !important;
  border-radius: 0.1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.5em 1.75rem;
}
.form-check.error a {
  color: #fff !important;
}
.form-check.error a:hover {
  color: #f4f4f4 !important;
}
.form-check.error .text-muted {
  color: #fff !important;
}
.form-check .form-check-input {
  cursor: pointer;
}

.input-feedback-container {
  margin-bottom: 15px;
}
.input-feedback-container .input-unit {
  margin-bottom: 0;
}
.input-feedback-container .feedback {
  font-size: 0.8rem;
  text-align: right;
  display: none;
}
.input-feedback-container .feedback-error {
  color: #d4021d;
}
.input-feedback-container .feedback-success {
  color: #28a745;
}
.input-feedback-container.has-error .feedback-error, .input-feedback-container.has-success .feedback-success {
  display: block;
}

input:not([type=checkbox]).has-error, textarea.has-error {
  border: 1px solid #FF1743 !important;
}

.input-unit.textarea textarea.has-error + label {
  background: transparent !important;
}

label.has-error {
  color: #FF1743 !important;
}

body.scrolled:not(.search-visible--lg) #fl-modal-container {
  display: none !important;
}

.fl-as-show-all-results-text {
  cursor: pointer !important;
}

.header {
  height: 124px;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .header {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .header {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    height: 144px;
  }
}
.header__container {
  max-width: 1500px;
}
.header__custom-banner {
  text-align: center;
  position: relative;
  display: none;
  color: #155724;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.header__custom-banner.is-visible {
  display: block;
}
.header__custom-banner-inner {
  height: 45px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__custom-banner-inner .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767.98px) {
  .header__custom-banner-inner .swiper-slide {
    padding-right: 30px;
  }
}
.header__custom-banner-inner .swiper-slide .small, .header__custom-banner-inner .swiper-slide .btn-labeled {
  margin-bottom: 0 !important;
}
.header__custom-banner-text {
  max-width: 1200px;
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  margin: auto;
  padding-right: 25px;
}
@media (min-width: 1200px) {
  .header__custom-banner-text {
    padding-right: 0;
  }
}
.header__custom-banner-close {
  float: right;
  cursor: pointer;
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 11;
}
.header__custom-banner-close svg {
  fill: #000000;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.header__wrapper {
  padding: 0 15px;
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
  background: #FFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
.header__wrapper #tsbadgeResponsiveTop_db8d3657bdbe440c985ae127463eaad4 {
  margin-left: -15px;
  width: calc(100% + 30px);
}
@media (max-width: 575.98px) {
  .header__wrapper {
    padding: 0;
  }
}
.header__wrapper--scroll .header {
  height: 90px;
}
.header__wrapper--scroll .header-brand__image {
  width: auto;
  height: 46px;
}
.header__wrapper .header-search-icon-scroll, .header__wrapper .header-phone-icon-scroll {
  display: none;
}
.header__wrapper.scrolled .mainmenu__link {
  display: inline;
}
.header__wrapper.scrolled .mainmenu__item.has-children .dropdown-menu {
  top: 48px;
}
.header__wrapper.scrolled #login-change span {
  display: none;
}
.header__wrapper.scrolled .header {
  height: 70px;
  overflow: hidden;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
@media (min-width: 768px) {
  .header__wrapper.scrolled .header {
    height: 85px;
  }
}
@media (min-width: 992px) {
  .header__wrapper.scrolled .header {
    height: 50px;
    overflow: visible;
  }
  .header__wrapper.scrolled .header .header-nav, .header__wrapper.scrolled .header .header-controls__wrapper {
    padding-top: 0;
  }
  .header__wrapper.scrolled .header .header-phone-icon-scroll {
    display: block;
    position: absolute;
    right: 145px;
    top: 12px;
    cursor: pointer;
    z-index: 2;
  }
  .header__wrapper.scrolled .header .header-phone-icon-scroll svg {
    fill: #000;
    stroke: #000;
    width: 24px !important;
    height: 21px !important;
  }
  .header__wrapper.scrolled .header .header-phone-icon-scroll:hover svg {
    fill: #FF1743;
    stroke: #FF1743;
  }
  .header__wrapper.scrolled .header .mainmenu__megamenu {
    top: 50px;
    max-height: calc(100vh - 60px);
  }
  .header__wrapper.scrolled .header .header-controls__hotline {
    display: none;
  }
  .header__wrapper.scrolled .header .header-brand__image {
    width: 55px;
    z-index: 1;
    position: relative;
  }
  .header__wrapper.scrolled .header .search-box {
    height: 0px;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 5px;
  }
  .header__wrapper.scrolled .header .header-controls {
    padding-top: 12px !important;
  }
}
.header__wrapper.scrolled .header .header-search-icon-scroll {
  display: block;
  position: absolute;
  right: 110px;
  top: 31px;
  cursor: pointer;
  z-index: 2;
}
.header__wrapper.scrolled .header .header-search-icon-scroll svg {
  fill: #000;
  stroke: #000;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header__wrapper.scrolled .header .header-search-icon-scroll:hover svg {
  fill: #FF1743;
  stroke: #FF1743;
}
@media (min-width: 768px) {
  .header__wrapper.scrolled .header .header-search-icon-scroll {
    top: 39px;
    right: 120px;
  }
}
@media (min-width: 992px) {
  .header__wrapper.scrolled .header .header-search-icon-scroll {
    right: 185px;
    left: unset;
    top: 12px;
  }
}
.header__wrapper.search-visible .header {
  height: 124px;
  overflow: visible;
}
@media (min-width: 768px) {
  .header__wrapper.search-visible .header {
    height: 134px;
  }
}
.header__wrapper.search-visible--lg .header {
  height: 120px;
}
.header__wrapper.search-visible--lg .header .search-box {
  height: auto;
  overflow: visible;
  margin-bottom: 0;
}
.header__wrapper.search-visible--lg .mainmenu__megamenu {
  top: 126px !important;
}
.header__container {
  max-width: 1500px;
}

.search-box__input {
  font-size: 18px;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
}

.is-safari .header-mobile-nav-toggle__text {
  margin-left: 13px !important;
}

.header-mobile-nav-toggle {
  padding-top: 20px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@supports (-webkit-overflow-scrolling: touch) {
  .header-mobile-nav-toggle__wrapper {
    position: relative;
    width: 50px;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  .header-mobile-nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 45px;
  }
}
@media (min-width: 768px) {
  .header-mobile-nav-toggle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .header-mobile-nav-toggle {
    display: none;
  }
}
.header-mobile-nav-toggle__text {
  line-height: 16px;
}
@supports not (-webkit-overflow-scrolling: touch) {
  .header-mobile-nav-toggle__text {
    position: absolute;
    display: block;
    margin-left: 5px;
    font-weight: bold;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  .header-mobile-nav-toggle__text {
    position: relative;
    width: 100%;
    margin-left: 12px;
    text-align: center;
  }
}
.header-mobile-nav-toggle__btn {
  border: none;
  background: none;
}
.header-mobile-nav-toggle__icon {
  width: 35px;
  height: 22px;
  fill: #FF1743;
}
.header-mobile-nav-toggle__icon:hover {
  fill: #000;
}

.header-brand {
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .header-brand {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 20% !important;
            flex: 0 0 20% !important;
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .header-brand {
    text-align: left;
  }
}
.header-brand__image {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 45px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0 0 8px 8px;
}
@media (min-width: 768px) {
  .header-brand__image {
    width: 58px;
  }
}
@media (min-width: 992px) {
  .header-brand__image {
    width: 87px;
  }
}

.header-controls {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 30px;
  gap: 3px;
}
@media (min-width: 576px) {
  .header-controls {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .header-controls {
    padding: 28px 0 0;
    gap: unset;
  }
}
@media (min-width: 992px) {
  .header-controls {
    padding: 27px 0 0;
  }
}
.header-controls__wrapper {
  padding-left: 0;
  transition: transform 0.25s 0.2s, -webkit-transform 0.25s 0.2s;
}
@media (min-width: 992px) {
  .header-controls__wrapper {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 20% !important;
            flex: 0 0 20% !important;
    max-width: 20%;
    padding-top: 10px;
  }
}
@media (min-width: 768px) {
  .header-controls__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .header-controls__wrapper {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: block;
  }
}
.header-controls__item {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 3px;
}
@media (min-width: 768px) {
  .header-controls__item {
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .header-controls__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: 18px;
  }
}
.header-controls__item--wish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-controls__item--wish a {
  position: relative;
}
.header-controls__item--user #login-change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-controls__item--user #login-change a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-controls__item--user #login-change a svg {
  width: 24px !important;
  height: 24px !important;
  margin-right: 5px;
}
.header-controls__item--user #login-change span {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  font-size: 14px !important;
}
@media (min-width: 768px) {
  .header-controls__item--user #login-change span {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 1090px) {
  .header-controls__item--user #login-change span {
    display: none;
  }
}
.header-controls__item--lang i {
  font-size: 20px;
  margin-top: 3px;
}
.header-controls__item--basket a {
  position: relative;
}
.header-controls__item-badge {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  background: #FF1743;
  color: white;
  top: -8px;
  right: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .header-controls__item-badge {
    top: -10px;
    right: -15px;
    width: 22px;
    height: 22px;
  }
}
.header-controls__hotline {
  display: none;
  margin-top: 26px;
  text-align: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-controls__hotline:hover svg {
  fill: #FF1743;
}
.header-controls__hotline:hover .phone-link {
  color: #FF1743;
}
@media (min-width: 992px) {
  .header-controls__hotline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header-controls__icon {
  fill: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 24px;
  height: 24px;
  stroke: #000;
  stroke-width: 0.2;
}
.header-controls__icon:hover {
  fill: #FF1743;
  stroke: #ff1743;
}
.header-controls__icon--hotline {
  margin-right: 5px;
  height: 18px;
}
.header-controls__icon--basket {
  width: 19px;
  height: 16px;
}

.header-nav {
  width: 100%;
}
@media (min-width: 992px) {
  .header-nav {
    padding-top: 10px;
    width: auto;
    -ms-flex: 0 0 60%;
    -webkit-box-flex: 0;
            flex: 0 0 60%;
    max-width: 60%;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 475px;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: 1px solid #9498A0;
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .search {
    -webkit-box-flex: 475px;
        -ms-flex: 475px;
            flex: 475px;
  }
}
.search.focus {
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}
.search__wrapper {
  width: 100%;
  margin: 3px 0;
  padding: 0 15px;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 576px) {
  .search__wrapper {
    margin: 3px 0;
  }
}
@media (min-width: 992px) {
  .search__wrapper {
    max-width: none;
    margin: 18px 0;
  }
}
.search__input {
  width: 100%;
  height: 34px;
  padding: 0 15px;
  border: none;
  background: none;
  outline: none;
}
.search__submit {
  width: 30px;
  height: 31px;
  border: none;
  background: none;
  margin-right: 5px;
}
.search__icon {
  width: 17px;
  height: 17px;
  stroke: #000;
  stroke-width: 0.2;
  margin-right: 5px;
}

.phone-link {
  color: #333;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .phone-link {
    font-size: 18px !important;
  }
}
.phone-link:hover {
  color: #FF1743;
  text-decoration: none;
}

.account-menu a i {
  display: none;
}

#page-body:before {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#page-body.background-active:before {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 1029;
  content: "";
}

.search-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  .search-open {
    overflow: auto;
  }
}
.search-open.is-ios:not(focused) {
  position: fixed;
}
.search-open.is-ios.focused {
  position: unset;
}

.header-search__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.search-box {
  width: 100%;
  position: relative;
  left: 0;
}
@media (min-width: 768px) {
  .search-box {
    margin: 0 auto;
    position: relative;
  }
}
.search-box .autocomplete-suggestions {
  position: absolute;
  background: white;
  z-index: 999999;
  padding: 10px;
  width: 92%;
  margin-left: 3%;
  -webkit-box-shadow: 1px 2px 10px #797979;
          box-shadow: 1px 2px 10px #797979;
}
.search-box .autocomplete-suggestions .autocomplete-suggestion {
  padding: 5px 0;
}
.search-box .autocomplete-suggestions .autocomplete-suggestion:hover {
  cursor: pointer;
  color: #FF1743;
}
.search-box .autocomplete-suggestions .autocomplete-suggestion.autocomplete-selected {
  color: #FF1743;
  background: #FFF;
  margin-left: -10px;
  margin-right: -10px;
  padding: 5px 10px;
}
.search-box__input-group {
  position: relative;
  border: 1px solid #dcdbd8;
  border-radius: 25px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.4);
          box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.4);
  background: #e9ecef;
}
.search-box__input {
  width: 100%;
  height: 40px;
  padding: 2px 50px 0 15px;
  outline: none;
  border: none;
  background: none;
  font-weight: 300;
}
.search-box__input::-webkit-input-placeholder {
  color: #000;
}
.search-box__input::-moz-placeholder {
  color: #000;
}
.search-box__input::-ms-input-placeholder {
  color: #000;
}
.search-box__input::placeholder {
  color: #000;
}
.search-box__button {
  width: 51px;
  height: 32px;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #FFF;
  border: none;
  background: none;
  cursor: pointer;
  background: #d5d7db;
}

.search-autocomplete {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.5);
  left: 0;
  margin: 0 -15px;
  padding: 0 15px;
  top: 52px;
}
@media (min-width: 576px) {
  .search-autocomplete {
    top: 95px;
  }
}
@media (min-width: 768px) {
  .search-autocomplete {
    border-radius: 15px;
    top: 139px;
    position: fixed;
    left: 5%;
    width: 90%;
    z-index: 10;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 992px) {
  .search-autocomplete {
    top: 70px;
  }
}
@media (min-width: 1200px) {
  .search-autocomplete {
    width: 1170px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 52px;
  }
}
.search-autocomplete--active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
@media (min-width: 768px) {
  .search-autocomplete--active {
    max-height: unset;
  }
}
.search-autocomplete__head {
  width: 100%;
  position: relative;
  font-weight: 700;
  color: #3f3f3f;
  padding: 15px 0;
  text-align: center;
  display: none;
}
@media (min-width: 768px) {
  .search-autocomplete__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    color: #F8F8F8;
    background: #FF1743;
    border-radius: 15px 15px 0 0;
    font-size: 20px;
    height: 85px;
    line-height: 85px;
    margin-top: 0px;
    padding: 0;
  }
  .search-autocomplete__head:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #FF1743;
    position: absolute;
    content: "";
    top: -10px;
    left: calc(50% - 10px);
  }
}
.search-autocomplete__body {
  padding: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
  background: #fff;
  max-height: 75vh;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  .search-autocomplete__body {
    padding: 10px 30px 30px 30px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.search-autocomplete__body--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-autocomplete__body-inner {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-autocomplete__body-autocomplete {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  max-height: 75vh;
  overflow-y: auto;
}
.search-autocomplete__body-autocomplete--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .search-autocomplete__body-autocomplete {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.search-autocomplete__body-categories {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .search-autocomplete__body-categories {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    padding: 10px 15px 30px 30px;
    margin: 0;
    border-bottom-left-radius: 15px;
  }
}
@media (min-width: 992px) {
  .search-autocomplete__body-categories {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
.search-autocomplete__body-article {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .search-autocomplete__body-article {
    max-width: 66.6666%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666%;
            flex: 0 0 66.6666%;
    padding: 10px 30px 30px 15px;
    margin: 0;
    border-bottom-right-radius: 15px;
    background: #E9EBEF;
  }
}
@media (min-width: 992px) {
  .search-autocomplete__body-article {
    max-width: 75%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
}
@media (min-width: 768px) {
  .search-autocomplete__body-article--full {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 992px) {
  .search-autocomplete__body-article--full {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.search-autocomplete__body-article .search-autocomplete__headline {
  padding: 0 7.5px;
  padding-bottom: 30px;
}
.search-autocomplete__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .search-autocomplete__item-list {
    margin: 0 -7.5px;
  }
}
.search-autocomplete__article-price {
  font-size: 16px;
  height: auto !important;
}
.search-autocomplete__article-cross-price {
  text-decoration: line-through;
  margin-right: 6px;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
}
.search-autocomplete__headline {
  font-weight: 700;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 20px 0 10px;
  padding: 0;
}
.search-autocomplete__headline a {
  color: #000;
  font-size: 18px;
}
.search-autocomplete__headline--search {
  display: none;
}
@media (min-width: 768px) {
  .search-autocomplete__headline--search {
    display: block;
  }
}
.search-autocomplete__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.search-autocomplete__keywords {
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #E9EBEF;
}
.search-autocomplete__keywords a {
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.search-autocomplete__keywords a:hover {
  color: #FF1743;
}
.search-autocomplete__keyword a {
  font-weight: bold;
}
.search-autocomplete__keyword a b {
  font-weight: normal;
}
.search-autocomplete__item {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 15px;
  padding: 0 7.5px;
}
@media (min-width: 576px) {
  .search-autocomplete__item {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (min-width: 768px) {
  .search-autocomplete__item {
    max-width: 33.333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
  }
}
@media (min-width: 1200px) {
  .search-autocomplete__item {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
.search-autocomplete__item--article-view {
  max-width: 100% !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 100% !important;
          flex: 0 0 100% !important;
  padding: 0;
}
.search-autocomplete__loading {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 150px;
  background: url("../images/loading.gif") no-repeat center center;
}
.search-autocomplete__item-inner {
  height: 50px;
  padding: 0 12px 0 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #e9ebef;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 -1px 0 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 -1px 0 1px rgba(0, 0, 0, 0.05);
  color: #000;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 12px;
}
@media (min-width: 768px) {
  .search-autocomplete__item-inner {
    padding: 0 12px 0 55px;
  }
}
.search-autocomplete__item-inner:hover {
  -webkit-box-shadow: inset 0 -1px 0 1px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 -1px 0 1px rgba(0, 0, 0, 0.07);
  color: #000;
  background: #e9ebef;
}
.search-autocomplete__item-inner i {
  width: 14px;
  height: 20px !important;
  font-size: 18px;
  color: #9498a0;
}
.search-autocomplete__article {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0 2.5px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .search-autocomplete__article {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .search-autocomplete__article {
    max-width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .search-autocomplete__article {
    height: 313px;
  }
}
.search-autocomplete__article-inner {
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #e9ebef;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 12px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .search-autocomplete__article-inner {
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 992px) {
  .search-autocomplete__article-inner {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.search-autocomplete__article-image {
  width: 72px;
  height: 72px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  background: #FFF;
}
@media (min-width: 992px) {
  .search-autocomplete__article-image {
    width: 100%;
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}
.search-autocomplete__article-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-autocomplete__article-name {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #000;
  overflow: hidden;
  padding: 0 5px;
  height: 60px;
  line-height: 19px;
  font-size: 14px;
}
@media (min-width: 992px) {
  .search-autocomplete__article-name {
    padding: 9px 12px;
    width: 100%;
    height: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.search-autocomplete__article-name span {
  width: 100%;
  margin-top: 3px;
  display: block;
  max-height: 35px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .search-autocomplete__article-name span {
    width: auto;
  }
}
@media (min-width: 992px) {
  .search-autocomplete__article-name span {
    height: 58px;
    max-height: unset;
    margin-top: 7px;
  }
}
.search-autocomplete__img {
  width: 45px;
  height: 32px;
  line-height: 32px;
  position: absolute;
  text-align: center;
  left: 5px;
  top: 9px;
}
.search-autocomplete__img img {
  max-width: 100%;
  max-height: 100%;
}
.search-autocomplete__mobile-cats {
  padding: 0 2.5px;
}
@media (min-width: 768px) {
  .search-autocomplete__mobile-cats {
    display: none;
  }
}
.search-autocomplete__mdup-cats {
  display: none;
}
@media (min-width: 768px) {
  .search-autocomplete__mdup-cats {
    display: block;
  }
}

@media (min-width: 1200px) {
  .is-ios .search-autocomplete {
    top: 72px;
  }
}

.mobile-search {
  background: #FFF;
  padding: 0;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 10;
}
.mobile-search--active {
  min-height: 100vh;
  opacity: 1;
  visibility: visible;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .mobile-search--active {
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .mobile-search {
    display: none;
  }
}

.header-search-close__wrapper {
  padding: 20px 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  margin-top: -79px;
  width: 100%;
  background-color: #fff;
  display: none;
}
@media (min-width: 768px) {
  .header-search-close__wrapper {
    display: none;
  }
}
.header-search-close__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  text-align: center;
}
.header-search-close__icon {
  width: 26px;
  height: 27px;
}
.header-search-close__text {
  color: #9498a0;
  font-size: 12px;
}

.od-search__backdrop {
  display: none;
}
@media (min-width: 768px) {
  .od-search__backdrop {
    position: fixed;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
  }
}

.cmp-country-settings,
.cmp-currency-select {
  background-color: #282d2f;
  color: #fff;
  border-bottom: 0;
  z-index: 1070;
  position: fixed;
  top: 30px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cmp-country-settings.collapsing,
.cmp-currency-select.collapsing {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cmp-country-settings,
  .cmp-currency-select {
    overflow: auto;
    max-height: 90vh;
  }
}
@media (max-width: 767.98px) {
  .cmp-country-settings,
  .cmp-currency-select {
    overflow: auto;
    max-height: 60vh;
  }
}
.cmp-country-settings .shipping-settings,
.cmp-country-settings .language-settings,
.cmp-currency-select .shipping-settings,
.cmp-currency-select .language-settings {
  width: 100%;
}
@media (max-width: 767.98px) {
  .cmp-country-settings .shipping-settings ul,
  .cmp-country-settings .language-settings ul,
  .cmp-currency-select .shipping-settings ul,
  .cmp-currency-select .language-settings ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.cmp-country-settings ul,
.cmp-currency-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .cmp-country-settings ul,
  .cmp-currency-select ul {
    overflow: auto;
    max-height: 40vh;
  }
}
.cmp-country-settings ul li,
.cmp-currency-select ul li {
  width: 100%;
  padding: 0;
  display: inline-block;
  float: left;
}
.cmp-country-settings ul li a,
.cmp-currency-select ul li a {
  display: inline-block;
  padding: 0.4rem;
  color: #fff;
}
.cmp-country-settings ul li a:hover,
.cmp-currency-select ul li a:hover {
  background-color: #FF1743;
  color: #fff;
}
.cmp-country-settings ul li a.is-disabled,
.cmp-currency-select ul li a.is-disabled {
  cursor: not-allowed;
}
.cmp-country-settings ul li a.is-disabled:hover,
.cmp-currency-select ul li a.is-disabled:hover {
  background-color: #4D4F4D;
  color: #fff;
}
.cmp-country-settings ul li.active a,
.cmp-currency-select ul li.active a {
  background-color: #FF1743;
  color: #fff;
}
.cmp-country-settings ul li.active a.is-disabled,
.cmp-currency-select ul li.active a.is-disabled {
  background-color: #4D4F4D;
  color: #fff;
}
@media (min-width: 768px) {
  .cmp-country-settings ul li,
  .cmp-currency-select ul li {
    width: 50%;
    padding-right: 0.8rem;
  }
}
@media (min-width: 992px) {
  .cmp-country-settings ul li,
  .cmp-currency-select ul li {
    width: 33.33%;
  }
}
.cmp-country-settings .currency-list ul > li,
.cmp-currency-select .currency-list ul > li {
  width: 16.666667%;
}

.flag-icon-en {
  background-image: url(../images/flags/4x3/gb.svg);
}

.flag-icon-da {
  background-image: url(../images/flags/4x3/dk.svg);
}

.flag-icon-nn {
  background-image: url(../images/flags/4x3/no.svg);
}

.fixed-top .cmp-country-settings,
.fixed-top .cmp-currency-select {
  top: auto;
}

.wrapper-main header .cmp-country-settings .container-max > .row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .row, .wrapper-main header .cmp-country-settings .myaccount__container > .row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .row, .wrapper-main header .cmp-country-settings .container-max > .configurator__row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .configurator__row, .wrapper-main header .cmp-country-settings .myaccount__container > .configurator__row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .configurator__row, .wrapper-main header .cmp-country-settings .single__lower-container > .row, .wrapper-main header .cmp-country-settings .single__lower-container > .configurator__row, .wrapper-main header .cmp-country-settings .single__container > .row, .wrapper-main header .cmp-country-settings .single__container > .configurator__row, .wrapper-main header .cmp-country-settings .container-max > .single__item-series, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .single__item-series, .wrapper-main header .cmp-country-settings .myaccount__container > .single__item-series, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .single__item-series, .wrapper-main header .cmp-country-settings .single__lower-container > .single__item-series, .wrapper-main header .cmp-country-settings .single__container > .single__item-series, .wrapper-main header .cmp-country-settings .checkout__footer--container > .row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .configurator__row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .single__item-series, .wrapper-main header .cmp-country-settings .checkout__header--container > .row, .wrapper-main header .cmp-country-settings .checkout__header--container > .configurator__row, .wrapper-main header .cmp-country-settings .checkout__header--container > .single__item-series, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .configurator__row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .single__item-series, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .configurator__row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .single__item-series, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .configurator__row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .single__item-series, .wrapper-main header .cmp-country-settings .container-max > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .myaccount__container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .container-max > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .myaccount__container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .single__lower-container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .single__lower-container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .single__container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .single__container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .checkout__header--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .checkout__header--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .container-max > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .myaccount__container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .single__lower-container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .single__container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .checkout__header--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .row, .wrapper-main header .cmp-country-settings .content__categories--container > .row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .configurator__row, .wrapper-main header .cmp-country-settings .content__categories--container > .configurator__row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .single__item-series, .wrapper-main header .cmp-country-settings .content__categories--container > .single__item-series, .wrapper-main header .cmp-country-settings .homepage__categories--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .content__categories--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .content__categories--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .content__categories--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .configurator__row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .configurator__row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .single__item-series, .wrapper-main header .cmp-country-settings .single__crossselling--container > .single__item-series, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .configurator__row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .single__item-series, .wrapper-main header .cmp-country-settings .homepage__seo--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .container-max > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .myaccount__container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .container-max > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .myaccount__container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__lower-container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__lower-container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .checkout__header--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .checkout__header--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .content__categories--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .content__categories--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .container-max > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .myaccount__container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__lower-container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .checkout__header--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .content__categories--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .configurator__row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .configurator__row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .single__item-series, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .single__item-series, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .container-max > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .myaccount__container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .single__lower-container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .single__container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .checkout__footer--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .checkout__header--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .homepage__categories--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .content__categories--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .single__crossselling--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .homepage__seo--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .configurator__row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .single__item-series, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .category__container > .row, .wrapper-main header .cmp-country-settings .category__container > .configurator__row, .wrapper-main header .cmp-country-settings .category__container > .single__item-series, .wrapper-main header .cmp-country-settings .category__container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .category__container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .category__container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .category__container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .category__container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .category__container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .category__container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .reset-pwd .container-max > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .scroll-list__content > div > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .myaccount__container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .serien-tabs-widget__container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .single__lower-container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .single__container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .checkout__footer--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .checkout__header--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .cat-widget__wrapper > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .video-widget__wrapper > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .usp-widget__wrapper > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .homepage__categories--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .content__categories--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .homepage__crossselling--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .single__crossselling--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .homepage__seo--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .homepage__image-text-widget--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .single__image-text-widget--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .homepage__category-widget--container > h1.h2, .wrapper-main header .cmp-country-settings .reset-pwd .category__container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .container-max > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .scroll-list__content > div > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .myaccount__container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .single__lower-container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .single__container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .checkout__footer--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .checkout__header--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .cat-widget__wrapper > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .video-widget__wrapper > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .usp-widget__wrapper > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .homepage__categories--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .content__categories--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .homepage__crossselling--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .single__crossselling--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .homepage__seo--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .single__image-text-widget--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .homepage__category-widget--container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .category__container > h1.h2, .wrapper-main header .cmp-country-settings .footer__copyright-container > .row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .configurator__row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .single__item-series, .wrapper-main header .cmp-country-settings .footer__copyright-container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .footer__copyright-container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .reset-pwd .footer__copyright-container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .footer__copyright-container > h1.h2, .wrapper-main header .cmp-country-settings .header__container > .row, .wrapper-main header .cmp-country-settings .header__container > .configurator__row, .wrapper-main header .cmp-country-settings .header__container > .single__item-series, .wrapper-main header .cmp-country-settings .header__container > .homepage__categories--cat-row, .wrapper-main header .cmp-country-settings .header__container > .content__categories--cat-row, .wrapper-main header .cmp-country-settings .header__container > .category__categories--cat-row, .wrapper-main header .cmp-country-settings .header__container > .homepage__image-text-widget--row, .wrapper-main header .cmp-country-settings .header__container > .single__image-text-widget--row, .wrapper-main header .cmp-country-settings .header__container > .category__image-text-widget--row, .wrapper-main header .cmp-country-settings .header__container > .homepage__category-widget--row, .wrapper-main header .cmp-country-settings .reset-pwd .header__container > h1.h2, .reset-pwd .wrapper-main header .cmp-country-settings .header__container > h1.h2, .wrapper-main header .cmp-country-settings .container-max > .header, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .header, .wrapper-main header .cmp-country-settings .myaccount__container > .header, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .header, .wrapper-main header .cmp-country-settings .single__lower-container > .header, .wrapper-main header .cmp-country-settings .single__container > .header, .wrapper-main header .cmp-country-settings .checkout__footer--container > .header, .wrapper-main header .cmp-country-settings .checkout__header--container > .header, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .header, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .header, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .header, .wrapper-main header .cmp-country-settings .homepage__categories--container > .header, .wrapper-main header .cmp-country-settings .content__categories--container > .header, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .header, .wrapper-main header .cmp-country-settings .single__crossselling--container > .header, .wrapper-main header .cmp-country-settings .homepage__seo--container > .header, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .header, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .header, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .header, .wrapper-main header .cmp-country-settings .category__container > .header, .wrapper-main header .cmp-country-settings .footer__copyright-container > .header, .wrapper-main header .cmp-country-settings .header__container > .header, .wrapper-main header .cmp-country-settings .container-max > .header-controls, .wrapper-main header .cmp-country-settings .scroll-list__content > div > .header-controls, .wrapper-main header .cmp-country-settings .myaccount__container > .header-controls, .wrapper-main header .cmp-country-settings .serien-tabs-widget__container > .header-controls, .wrapper-main header .cmp-country-settings .single__lower-container > .header-controls, .wrapper-main header .cmp-country-settings .single__container > .header-controls, .wrapper-main header .cmp-country-settings .checkout__footer--container > .header-controls, .wrapper-main header .cmp-country-settings .checkout__header--container > .header-controls, .wrapper-main header .cmp-country-settings .cat-widget__wrapper > .header-controls, .wrapper-main header .cmp-country-settings .video-widget__wrapper > .header-controls, .wrapper-main header .cmp-country-settings .usp-widget__wrapper > .header-controls, .wrapper-main header .cmp-country-settings .homepage__categories--container > .header-controls, .wrapper-main header .cmp-country-settings .content__categories--container > .header-controls, .wrapper-main header .cmp-country-settings .homepage__crossselling--container > .header-controls, .wrapper-main header .cmp-country-settings .single__crossselling--container > .header-controls, .wrapper-main header .cmp-country-settings .homepage__seo--container > .header-controls, .wrapper-main header .cmp-country-settings .homepage__image-text-widget--container > .header-controls, .wrapper-main header .cmp-country-settings .single__image-text-widget--container > .header-controls, .wrapper-main header .cmp-country-settings .homepage__category-widget--container > .header-controls, .wrapper-main header .cmp-country-settings .category__container > .header-controls, .wrapper-main header .cmp-country-settings .footer__copyright-container > .header-controls, .wrapper-main header .cmp-country-settings .header__container > .header-controls,
.wrapper-main header .cmp-currency-select .container-max > .row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .row,
.wrapper-main header .cmp-currency-select .myaccount__container > .row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .row,
.wrapper-main header .cmp-currency-select .container-max > .configurator__row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .configurator__row,
.wrapper-main header .cmp-currency-select .myaccount__container > .configurator__row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .configurator__row,
.wrapper-main header .cmp-currency-select .single__lower-container > .row,
.wrapper-main header .cmp-currency-select .single__lower-container > .configurator__row,
.wrapper-main header .cmp-currency-select .single__container > .row,
.wrapper-main header .cmp-currency-select .single__container > .configurator__row,
.wrapper-main header .cmp-currency-select .container-max > .single__item-series,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .single__item-series,
.wrapper-main header .cmp-currency-select .myaccount__container > .single__item-series,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .single__item-series,
.wrapper-main header .cmp-currency-select .single__lower-container > .single__item-series,
.wrapper-main header .cmp-currency-select .single__container > .single__item-series,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .configurator__row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .single__item-series,
.wrapper-main header .cmp-currency-select .checkout__header--container > .row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .configurator__row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .single__item-series,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .configurator__row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .single__item-series,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .configurator__row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .single__item-series,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .configurator__row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .single__item-series,
.wrapper-main header .cmp-currency-select .container-max > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .myaccount__container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .container-max > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .myaccount__container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__lower-container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__lower-container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .container-max > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .myaccount__container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__lower-container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .row,
.wrapper-main header .cmp-currency-select .content__categories--container > .row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .configurator__row,
.wrapper-main header .cmp-currency-select .content__categories--container > .configurator__row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .single__item-series,
.wrapper-main header .cmp-currency-select .content__categories--container > .single__item-series,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .content__categories--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .content__categories--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .content__categories--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .configurator__row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .configurator__row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .single__item-series,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .single__item-series,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .configurator__row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .single__item-series,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .container-max > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .myaccount__container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .container-max > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .myaccount__container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__lower-container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__lower-container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .content__categories--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .content__categories--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .container-max > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .myaccount__container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__lower-container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .content__categories--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .configurator__row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .configurator__row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .single__item-series,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .single__item-series,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .container-max > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .myaccount__container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .single__lower-container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .single__container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .checkout__header--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .content__categories--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .configurator__row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .single__item-series,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .category__container > .row,
.wrapper-main header .cmp-currency-select .category__container > .configurator__row,
.wrapper-main header .cmp-currency-select .category__container > .single__item-series,
.wrapper-main header .cmp-currency-select .category__container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .category__container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .category__container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .category__container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .category__container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .category__container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .category__container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .reset-pwd .container-max > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .scroll-list__content > div > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .myaccount__container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .serien-tabs-widget__container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .single__lower-container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .single__container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .checkout__footer--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .checkout__header--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .cat-widget__wrapper > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .video-widget__wrapper > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .usp-widget__wrapper > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .homepage__categories--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .content__categories--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .homepage__crossselling--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .single__crossselling--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .homepage__seo--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .homepage__image-text-widget--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .single__image-text-widget--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .homepage__category-widget--container > h1.h2,
.wrapper-main header .cmp-currency-select .reset-pwd .category__container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .container-max > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .scroll-list__content > div > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .myaccount__container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .serien-tabs-widget__container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .single__lower-container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .single__container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .checkout__footer--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .checkout__header--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .cat-widget__wrapper > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .video-widget__wrapper > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .usp-widget__wrapper > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .homepage__categories--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .content__categories--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .homepage__crossselling--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .single__crossselling--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .homepage__seo--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .single__image-text-widget--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .homepage__category-widget--container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .category__container > h1.h2,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .configurator__row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .single__item-series,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .reset-pwd .footer__copyright-container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .footer__copyright-container > h1.h2,
.wrapper-main header .cmp-currency-select .header__container > .row,
.wrapper-main header .cmp-currency-select .header__container > .configurator__row,
.wrapper-main header .cmp-currency-select .header__container > .single__item-series,
.wrapper-main header .cmp-currency-select .header__container > .homepage__categories--cat-row,
.wrapper-main header .cmp-currency-select .header__container > .content__categories--cat-row,
.wrapper-main header .cmp-currency-select .header__container > .category__categories--cat-row,
.wrapper-main header .cmp-currency-select .header__container > .homepage__image-text-widget--row,
.wrapper-main header .cmp-currency-select .header__container > .single__image-text-widget--row,
.wrapper-main header .cmp-currency-select .header__container > .category__image-text-widget--row,
.wrapper-main header .cmp-currency-select .header__container > .homepage__category-widget--row,
.wrapper-main header .cmp-currency-select .reset-pwd .header__container > h1.h2,
.reset-pwd .wrapper-main header .cmp-currency-select .header__container > h1.h2,
.wrapper-main header .cmp-currency-select .container-max > .header,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .header,
.wrapper-main header .cmp-currency-select .myaccount__container > .header,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .header,
.wrapper-main header .cmp-currency-select .single__lower-container > .header,
.wrapper-main header .cmp-currency-select .single__container > .header,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .header,
.wrapper-main header .cmp-currency-select .checkout__header--container > .header,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .header,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .header,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .header,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .header,
.wrapper-main header .cmp-currency-select .content__categories--container > .header,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .header,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .header,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .header,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .header,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .header,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .header,
.wrapper-main header .cmp-currency-select .category__container > .header,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .header,
.wrapper-main header .cmp-currency-select .header__container > .header,
.wrapper-main header .cmp-currency-select .container-max > .header-controls,
.wrapper-main header .cmp-currency-select .scroll-list__content > div > .header-controls,
.wrapper-main header .cmp-currency-select .myaccount__container > .header-controls,
.wrapper-main header .cmp-currency-select .serien-tabs-widget__container > .header-controls,
.wrapper-main header .cmp-currency-select .single__lower-container > .header-controls,
.wrapper-main header .cmp-currency-select .single__container > .header-controls,
.wrapper-main header .cmp-currency-select .checkout__footer--container > .header-controls,
.wrapper-main header .cmp-currency-select .checkout__header--container > .header-controls,
.wrapper-main header .cmp-currency-select .cat-widget__wrapper > .header-controls,
.wrapper-main header .cmp-currency-select .video-widget__wrapper > .header-controls,
.wrapper-main header .cmp-currency-select .usp-widget__wrapper > .header-controls,
.wrapper-main header .cmp-currency-select .homepage__categories--container > .header-controls,
.wrapper-main header .cmp-currency-select .content__categories--container > .header-controls,
.wrapper-main header .cmp-currency-select .homepage__crossselling--container > .header-controls,
.wrapper-main header .cmp-currency-select .single__crossselling--container > .header-controls,
.wrapper-main header .cmp-currency-select .homepage__seo--container > .header-controls,
.wrapper-main header .cmp-currency-select .homepage__image-text-widget--container > .header-controls,
.wrapper-main header .cmp-currency-select .single__image-text-widget--container > .header-controls,
.wrapper-main header .cmp-currency-select .homepage__category-widget--container > .header-controls,
.wrapper-main header .cmp-currency-select .category__container > .header-controls,
.wrapper-main header .cmp-currency-select .footer__copyright-container > .header-controls,
.wrapper-main header .cmp-currency-select .header__container > .header-controls {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.modal-open .aos-animate {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none !important;
          transform: none !important;
}
.modal-open .wrapper-main {
  z-index: initial !important;
}

/* settings */
.navbar {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: static;
}
@media (min-width: 992px) {
  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 640px;
    margin: 0 auto;
  }
}

.mainmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.mainmenu__cat-img {
  max-width: 300px;
  mix-blend-mode: darken;
  position: absolute;
  right: 0;
  bottom: -75px;
}
@supports (-ms-ime-align: auto) {
  .mainmenu__cat-img {
    display: none;
  }
}
.mainmenu__cat-img-div {
  display: none;
  width: 300px;
  height: 300px;
  position: absolute;
  background-size: contain;
  right: 0;
}
@supports (-ms-ime-align: auto) {
  .mainmenu__cat-img-div {
    display: block;
  }
}
.mainmenu__link {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: "Yantramanav" !important;
  font-style: normal;
  font-weight: 600 !important;
  display: block;
  /* Schwarz */
  color: #000000;
  cursor: pointer;
  padding: 5px 5px 5px;
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__link {
    font-size: 22px !important;
  }
}
@media (min-width: 1200px) {
  .mainmenu__link {
    padding: 5px 8px 5px;
  }
}
.mainmenu__link--has-child {
  position: relative;
  font-family: "Yantramanav" !important;
  font-weight: 600 !important;
  min-width: none;
}
.mainmenu__link--has-child:after {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #FF1743;
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.mainmenu__item {
  margin: 0 8px;
  padding-bottom: 18px;
}
.mainmenu__item.has-children {
  position: relative;
}
.mainmenu__item.has-children .dropdown-menu {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  min-width: 15rem;
  border-top: none;
  display: block;
  max-height: 410px;
  opacity: 0;
  padding: 0 40px;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  overflow: hidden;
  margin-top: 0px;
  visibility: hidden;
  width: 400px;
  top: 55px;
}
.mainmenu__item.has-children .dropdown-menu li {
  height: 58px;
}
.mainmenu__item.has-children .dropdown-menu li a {
  color: #333;
}
.mainmenu__item.has-children div.dropdown-menu {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  min-width: 570px !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  padding: 0 !important;
}
.mainmenu__item.has-children div.dropdown-menu ul {
  list-style: none;
  display: block !important;
}
.mainmenu__item.has-children div.dropdown-menu.just-left {
  min-width: 285px !important;
  max-width: 285px !important;
}
.mainmenu__item.has-children div.dropdown-menu .left-side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 285px;
          flex: 0 0 285px;
  max-width: 285px;
  background-color: #E9EBEF;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .time {
  margin-bottom: 32px;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .time p {
  color: #000;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__item.has-children div.dropdown-menu .left-side .time p {
    font-size: 15px !important;
  }
}
.mainmenu__item.has-children div.dropdown-menu .left-side .time div:first-of-type {
  margin-bottom: 8px;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .time div strong {
  display: block;
  color: #000;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__item.has-children div.dropdown-menu .left-side .time div strong {
    font-size: 18px !important;
  }
}
.mainmenu__item.has-children div.dropdown-menu .left-side .time div span {
  display: block;
  color: #000;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__item.has-children div.dropdown-menu .left-side .time div span {
    font-size: 18px !important;
  }
}
.mainmenu__item.has-children div.dropdown-menu .left-side .contact-options {
  margin-bottom: 32px;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .contact-options p {
  color: #000;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__item.has-children div.dropdown-menu .left-side .contact-options p {
    font-size: 15px !important;
  }
}
.mainmenu__item.has-children div.dropdown-menu .left-side .contact-options div .nav__contact--entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .contact-options div .nav__contact--entry svg {
  width: 20px;
  height: 20px;
  margin-right: 13px;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .contact-options div .nav__contact--entry a {
  color: #000;
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__item.has-children div.dropdown-menu .left-side .contact-options div .nav__contact--entry a {
    font-size: 18px !important;
  }
}
.mainmenu__item.has-children div.dropdown-menu .left-side .contact-options div .nav__contact--entry a:hover {
  color: #FF1743;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .socials i {
  font-size: 22px;
  color: black;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mainmenu__item.has-children div.dropdown-menu .left-side .socials i:hover {
  color: #FF1743;
}
.mainmenu__item.has-children:hover div.dropdown-menu {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-height: unset !important;
  padding: 0 !important;
  min-width: 570px !important;
  width: unset !important;
}
.mainmenu__item.has-children:hover div.dropdown-menu.just-left {
  min-width: 285px !important;
}
.mainmenu__item.has-children:hover div.dropdown-menu ul {
  display: block !important;
  visibility: visible;
  list-style: none;
  padding: 24px 3px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 285px;
          flex: 0 0 285px;
  overflow: auto;
}
.mainmenu__item.has-children:hover div.dropdown-menu ul li {
  padding: 0 !important;
  height: unset !important;
}
.mainmenu__item.has-children:hover div.dropdown-menu ul li a {
  padding: 8px 32px !important;
  color: #000;
  font-family: "Yantramanav";
  font-size: 16px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal !important;
}
.mainmenu__item.has-children:hover div.dropdown-menu ul li a:hover {
  color: #000 !important;
  background-color: #E9EBEF;
  font-weight: 700 !important;
}
.mainmenu__item.has-children:hover .dropdown-menu {
  opacity: 1;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  max-height: 410px;
  border-top: 2px solid #FF1743;
  padding: 40px;
  min-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: visible;
  width: 400px;
}
.mainmenu__item.has-children:hover .dropdown-menu li {
  height: 58px;
}
.mainmenu__item.has-children:hover .dropdown-menu li a {
  padding: 8px 0;
  display: block;
  color: #333;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mainmenu__item.has-children:hover .dropdown-menu li a {
    font-size: 18px !important;
  }
}
.mainmenu__item.has-children:hover .dropdown-menu li a:hover {
  color: #FF1743;
}
.mainmenu__item.has-children:hover .mainmenu__link {
  position: relative;
}
.mainmenu__item.has-children:hover .mainmenu__link:after {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #FF1743;
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 1;
}
.mainmenu__item .mainmenu__link:after {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #FF1743;
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.mainmenu__item:hover .mainmenu__link {
  color: #FF1743;
}
.mainmenu__item:hover .mainmenu__megamenu {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  opacity: 1;
  height: unset !important;
  background-color: #F8F9FA;
  overflow: visible;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.mainmenu__item:hover .mainmenu__megamenu:before {
  left: -100%;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F8F9FA;
  position: absolute;
  z-index: 1;
}
.mainmenu__item:hover .mainmenu__megamenu:after {
  right: -100%;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #F8F9FA;
  position: absolute;
  z-index: 1;
}
.mainmenu__inner {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  overflow: auto;
}
.mainmenu__first-level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 !important;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mainmenu__first-level-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  width: 20%;
  margin-bottom: 24px;
}
.mainmenu__first-level-link {
  display: inline-block;
  margin-bottom: 8px;
}
.mainmenu__first-level-link svg {
  display: block;
  margin-bottom: 8px;
}
.mainmenu__first-level-link span {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-family: "Yantramanav";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #000;
}
@media (min-width: 768px) {
  .mainmenu__first-level-link span {
    font-size: 18px;
  }
}
.mainmenu__first-level-link span:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='9' viewBox='0 0 6 9' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.700196 7.47429L1.36719 8.14001L5.37482 4.14002L1.36719 0.140015L0.700195 0.805736L4.04083 4.14001L0.700196 7.47429Z' fill='black'/%3E%3C/svg%3E");
  width: 6px;
  height: 9px;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mainmenu__first-level-link:hover span {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #FF1743;
  gap: 8px;
}
.mainmenu__first-level-link:hover span:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='9' viewBox='0 0 6 9' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.700196 7.47429L1.36719 8.14001L5.37482 4.14002L1.36719 0.140015L0.700195 0.805736L4.04083 4.14001L0.700196 7.47429Z' fill='%23FF1743'/%3E%3C/svg%3E");
}
.mainmenu__all-btn {
  font-family: "Yantramanav";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 11px 20px;
  color: #000;
  border: 2px solid #3F3F3F;
  border-radius: 5px;
  margin: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mainmenu__all-btn:hover {
  border-color: #FF1743;
  color: #FF1743;
}
.mainmenu__second-level {
  padding: 0;
  list-style: none;
}
.mainmenu__second-level-item {
  margin-bottom: 8px;
  line-height: 1;
}
.mainmenu__second-level-link {
  font-family: "Yantramanav";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #3F3F3F;
  /* 125% */
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .mainmenu__second-level-link {
    font-size: 16px;
  }
}
.mainmenu__second-level-link:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='9' viewBox='0 0 6 9' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.700196 7.47429L1.36719 8.14001L5.37482 4.14002L1.36719 0.140015L0.700195 0.805736L4.04083 4.14001L0.700196 7.47429Z' fill='%23FF1743'/%3E%3C/svg%3E");
  width: 6px;
  height: 9px;
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
}
.mainmenu__second-level-link:hover:after {
  opacity: 1;
  margin-left: 4px;
}
.mainmenu__megamenu {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 0;
  background: #FFF;
  top: 143px;
  left: 50%;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  overflow: hidden;
  -webkit-box-shadow: 2px 6px 12px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 6px 12px 0px rgba(0, 0, 0, 0.1);
  left: 0;
  -webkit-transform: unset;
          transform: unset;
  width: 100%;
}

.mobile-navigation {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #fff;
  font-size: 1.2em;
  opacity: 0.6;
  overflow-y: auto;
  position: fixed;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99999;
  -webkit-overflow-scrolling: touch;
}
.mobile-navigation.open {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 100%;
  right: 0;
  left: auto;
}
.mobile-navigation__close {
  position: absolute;
  top: 14px;
  left: 20px;
  fill: white;
}
.mobile-navigation__overlay {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 12;
  background: rgba(0, 0, 0, 0.4);
}
.mobile-navigation__breadcrumb {
  padding-left: 30px !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  background-color: #3f3f3f;
  border-bottom: 2px solid #3f3f3f;
  height: 61px;
  line-height: 61px;
}
.mobile-navigation__breadcrumb .breadcrumb-item {
  padding: 0;
  color: white;
  overflow: hidden;
  line-height: 61px;
  font-weight: bold;
  font-size: 20px;
}
.mobile-navigation__breadcrumb .breadcrumb-item:not(:last-child) {
  display: none;
}
.mobile-navigation__breadcrumb .breadcrumb-item:last-child:before {
  content: unset;
}
.mobile-navigation__breadcrumb .btn-close:before {
  content: "";
}
.mobile-navigation__breadcrumb .btn-close svg {
  fill: white;
  position: absolute;
  right: 20px;
  top: 17px;
}
.mobile-navigation ul.breadcrumb {
  background: #282d2f;
  max-width: initial;
  font-size: 0.8em;
  padding: 0 calc(15px + 0.5em) 0 15px;
  display: block;
}
.mobile-navigation ul.breadcrumb li {
  display: inline-block;
  cursor: pointer;
}
.mobile-navigation ul.breadcrumb li:last-child {
  pointer-events: none;
}
.mobile-navigation ul.breadcrumb li:not(:first-of-type) a:before {
  content: "\f0da";
  font-family: FontAwesome;
  font-size: 1rem;
  padding: 0 0.3rem;
}
.mobile-navigation ul.breadcrumb li:first-of-type a:before {
  display: none !important;
}
.mobile-navigation ul.mainmenu {
  list-style: none;
  height: 90%;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  display: none;
  margin-top: 60px;
}
.mobile-navigation ul.mainmenu.menu-active {
  display: block !important;
}
.mobile-navigation ul.mainmenu .btn-up {
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
  margin-top: -30px;
}
.mobile-navigation ul.mainmenu .btn-up .breadcrumb-wrapper .breadcrumb-inner:first-child {
  display: none;
}
.mobile-navigation ul.mainmenu .btn-up .breadcrumb-wrapper .breadcrumb-inner:last-child {
  display: block;
}
.mobile-navigation ul.mainmenu li {
  width: 100%;
  cursor: pointer;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 14px;
}
.mobile-navigation ul.mainmenu li.hide-level-0 {
  display: none;
}
.mobile-navigation ul.mainmenu li.hide-level-0 .nav-direction.btn-up {
  margin-top: -30px;
}
.mobile-navigation ul.mainmenu li .nav-direction {
  padding: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}
.mobile-navigation ul.mainmenu li .nav-direction svg {
  fill: #3F3F3F;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-navigation ul.mainmenu li .nav-direction svg:hover, .mobile-navigation ul.mainmenu li .nav-direction svg:active, .mobile-navigation ul.mainmenu li .nav-direction svg:focus {
  fill: #FF1743;
}
.mobile-navigation ul.mainmenu li .nav-direction.btn-up {
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-navigation ul.mainmenu li .nav-direction.btn-up span {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}
.mobile-navigation ul.mainmenu li .nav-direction.btn-up svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  margin-right: 14px;
}
.mobile-navigation ul.mainmenu li a {
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 80%;
          flex: 1 0 80%;
  line-height: 23px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
}
.mobile-navigation ul.mainmenu li a:hover, .mobile-navigation ul.mainmenu li a:active, .mobile-navigation ul.mainmenu li a:focus {
  color: #FF1743;
}
.mobile-navigation ul.mainmenu li:last-child a {
  border-bottom: none;
}
.mobile-navigation ul.mainmenu li:last-child .nav-direction {
  border-bottom: none;
}
.mobile-navigation ul.mainmenu li ul {
  background: #FF1743;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  width: 100%;
}
.mobile-navigation ul.mainmenu li.ddown .nav-direction i {
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
.mobile-navigation ul.mainmenu li.ddown .nav-direction[aria-expanded=true] i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.menu-is-visible #page-header {
  z-index: 1 !important;
}

html.ie nav.navbar #mainNavbarCollapsable {
  width: 100%;
}
html.ie .mobile-navigation ul.mainmenu li a {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
}
html.ie .mobile-navigation ul.mainmenu li .nav-direction {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 10%;
          flex: 1 0 10%;
}

.mainmenu-[class^=animate-],
.mainmenu[class*=" animate-"] {
  display: block !important;
}

.animate-outToRight .ddown {
  -webkit-animation: outToRight 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-navigation.open {
  overflow: hidden;
}
@media (min-width: 768px) {
  .mobile-navigation.open {
    width: 30em;
    left: 0;
  }
}
.mobile-navigation__wrapper {
  padding-left: 0;
  height: calc(100% - 205px);
  padding-bottom: 10px;
  overflow: auto;
}
.mobile-navigation__navtree {
  width: 100%;
  cursor: pointer;
  float: left;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 14px;
}
.mobile-navigation__navtree > a.mobile-navigation__link.active {
  background: transparent !important;
}
.mobile-navigation__navtree li {
  width: 100%;
  cursor: pointer;
  float: left;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 14px;
}
.mobile-navigation li.is-open--li {
  background: #f5f5f5;
}
.mobile-navigation__child-list {
  list-style: none;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-left: 0;
  background: #e9ebef;
}
.mobile-navigation__child-list.is-open {
  height: auto;
  overflow: visible;
}
.mobile-navigation__child-list.is-open--li {
  background: #f5f5f5;
}
.mobile-navigation__child-list li:hover {
  background: #f5f5f5;
}
.mobile-navigation__child-list a {
  padding-left: 20px;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mobile-navigation__child-list a {
    font-size: 18px !important;
  }
}
.mobile-navigation__childChild-list {
  list-style: none;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-left: 0;
}
.mobile-navigation__childChild-list.is-open {
  height: auto;
  overflow: visible;
}
.mobile-navigation__childChild-list a {
  padding-left: 40px;
}
.mobile-navigation__link {
  display: inline-block;
  -ms-flex: 1 0 80%;
  -webkit-box-flex: 1;
          flex: 1 0 80%;
  color: #000 !important;
  padding: 10px 15px;
  border-bottom: 1px solid #333;
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 576px) {
  .mobile-navigation__link {
    -ms-flex: 1 0 30%;
    -webkit-box-flex: 1;
            flex: 1 0 30%;
  }
}
@media (min-width: 768px) {
  .mobile-navigation__link {
    font-size: 22px !important;
    -ms-flex: 1 0 50%;
    -webkit-box-flex: 1;
            flex: 1 0 50%;
  }
}
.mobile-navigation__link.active {
  color: #FF1743 !important;
  background: #f5f5f5;
  font-weight: bold;
}
.mobile-navigation__link--bold {
  font-family: "Yantramanav";
}
.mobile-navigation__open-sub {
  padding: 1rem;
  -ms-flex: 1 0 20%;
  -webkit-box-flex: 1;
          flex: 1 0 20%;
  text-align: center;
  border-bottom: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .mobile-navigation__open-sub {
    -ms-flex: 1 0 10%;
    -webkit-box-flex: 1;
            flex: 1 0 10%;
  }
}
.mobile-navigation__open-sub i {
  color: #FF1743;
  height: 14px;
  width: 14px;
  font-size: 14px;
}
.mobile-navigation__open-sub i.fa-chevron-right:before {
  background-image: none !important;
}

@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate-outToLeft .ddown {
  -webkit-animation: outToLeft 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-inFromLeft .ddown {
  -webkit-animation: inFromLeft 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate-inFromRight .ddown {
  -webkit-animation: inFromRight 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.2s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mobile-nav__contact--entries {
  background-color: #E9EBEF;
  height: 144px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 400px) {
  .mobile-nav__contact--entries {
    display: block;
  }
}
.mobile-nav__contact--entry {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 400px) {
  .mobile-nav__contact--entry {
    display: block;
    max-width: 100%;
    padding: 5px 29px;
  }
  .mobile-nav__contact--entry svg {
    padding-right: 8px;
  }
}
.mobile-nav__contact--entry svg {
  width: 27px;
  height: 27px;
}
.mobile-nav__contact--entry a {
  color: #000;
  -webkit-font-feature-settings: "clig" off, "liga" off;
          font-feature-settings: "clig" off, "liga" off;
  font-family: "Yantramanav", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .mobile-nav__contact--entry a {
    font-size: 18px !important;
  }
}

/*@include media-breakpoint-up(md){
	.wrapper-main {
		& > nav.container-max {
			padding-left:0;
			padding-right:0;
		    display: block;
		    width: 100%;
		    max-width: 100%;
		    background:$breadcrumb-bg;
		}
		.breadcrumbs {
			background: $breadcrumb-bg;
		}
		.breadcrumb{
			max-width: 1200px;
		    margin: 0 auto;
		    background: transparent;
		    padding: .5rem 15px;
		}
	}
}*/
.breadcrumb {
  padding: 20px 0;
}
.breadcrumb__container {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  margin-bottom: 0px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumb__item {
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .breadcrumb__item {
    font-size: 18px;
  }
}
.breadcrumb__item--no-btn {
  display: block;
  font-size: inherit;
}
@media (min-width: 992px) {
  .breadcrumb__item--no-btn {
    display: block;
  }
}
.breadcrumb__item--no-btn:after {
  display: inline-block;
  color: #000;
  padding-left: 5px;
  padding-right: 5px;
  content: "›";
}
.breadcrumb__item--btn {
  font-weight: bold;
}
.breadcrumb__item--btn a {
  color: #000;
}
.breadcrumb__link {
  color: #000;
  line-height: 18px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.breadcrumb__link:hover {
  opacity: 0.8;
}

.to-top {
  display: block;
  background-color: #4D4F4D;
  text-align: center;
  padding: 0.5rem 0.5rem;
  text-decoration: none !important;
  cursor: pointer;
  width: 100%;
}
.to-top:hover {
  background-color: #282d2f;
}
.to-top i {
  color: white;
  font-size: 1.5em;
  padding: 0.5em 0;
}

.back-to-top-center {
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: 1px solid #282d2f;
  cursor: pointer;
  text-align: center;
  position: fixed;
  bottom: -17px;
  left: 50%;
  width: 94px;
  height: 50px;
  margin-left: -47px;
  z-index: 1000;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  display: none;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.back-to-top-center:hover {
  opacity: 1;
}

.back-to-top-center i {
  font-size: 29px;
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 40px;
  display: block;
  z-index: 1;
}

.back-to-top {
  margin: 0;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  z-index: 100;
  display: none;
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  border: 1px solid #282d2f;
  background: #4D4F4D;
  border-radius: 0.1rem;
  cursor: pointer;
  text-align: center;
}
.back-to-top:hover {
  opacity: 1;
}

.back-to-top i {
  font-size: 29px;
  color: #f7f7f9;
}

.footer {
  display: block;
  background-color: #e9ebef;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media print {
  .footer {
    display: none;
  }
}
@media (min-width: 992px) {
  .footer {
    padding-bottom: initial;
  }
}
@media (min-width: 768px) {
  .footer .col.clearfix {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .footer .col.clearfix {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer .widget-inner {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .footer .widget-inner {
    margin-bottom: initial;
  }
}
.footer__brand-line {
  height: 57px;
  width: 100%;
  margin-top: -28px;
  background: #333;
  display: none;
}
.footer__copyright {
  display: none;
  background-color: #ff1743;
  color: #fff;
  font-size: 12px;
  padding-top: 17px;
  padding-bottom: 17px;
}
.footer__copyright-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .footer__copyright-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__contact-img {
  display: none !important;
}
.footer__contact {
  background-color: #e9ebef;
  border-radius: 6px;
  width: 100%;
  position: relative;
  padding: 30px 20px;
  margin: auto;
  margin-top: 60px;
}
.footer__contact:after {
  content: "";
  width: 100%;
  max-width: 1170px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer__contact--headline {
  display: none;
  text-align: center;
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
  font-family: "Yantramanav";
}
.footer__contact--entries {
  text-align: center;
  max-width: 520px;
}
.footer__contact--entries:hover {
  color: #ff1743;
}
@media (min-width: 768px) {
  .footer__contact--entries {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto;
  }
}
.footer__contact--entries a {
  line-height: 21px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.footer__contact--entries a:hover {
  color: #ff1743;
}
.footer__contact--entries svg {
  width: 27px;
  height: 27px;
}
.footer__contact--entries .phone svg {
  width: 27px;
  height: 27px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer__contact--entries .phone svg {
    width: 17px;
    height: 17px;
  }
}
.footer__contact--entry {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  line-height: 36px;
  border-radius: 5px;
  fill: #000;
  margin-top: 10px;
}
.footer__contact--entry svg {
  display: block;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0 auto 10px auto;
}
.footer__contact--entry a {
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #000;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .footer__contact--entry a {
    font-size: 18px !important;
  }
}
.footer__contact--entry a:hover {
  color: #000;
}
.footer__contact--entry:hover {
  color: #FF1743;
}
.footer__contact--entry:hover a {
  color: #d4021d;
}
.footer__contact--entry:hover svg {
  fill: #d4021d;
}
@media (min-width: 768px) {
  .footer__contact--entry {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.footer__contact img {
  margin: auto;
  margin-top: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .footer__contact img {
    width: 77px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .footer__contact img {
    margin-bottom: 40px;
  }
}
.footer__social-media {
  padding: 20px 0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
}
.footer__subfooter p {
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .footer__subfooter p {
    font-size: 14px !important;
  }
}
.footer a {
  color: #4D4F4D;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.footer a:hover {
  color: #FF1743;
}
.footer .svg.plenty-brand {
  padding: 0 0.5em;
}
.footer .svg.plenty-brand path {
  fill: #4D4F4D;
}
.footer .footer-features {
  border-top: 1px solid transparent;
  background-color: rgb(217.8571428571, 217.8571428571, 227.1428571429);
  color: #4D4F4D;
  max-width: 1170px;
}
.footer .footer-features i {
  color: #4D4F4D !important;
}
.footer .footer-content {
  max-width: 1170px;
}
.footer .footer-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.footer .footer-services .services-payment,
.footer .footer-services .services-shipping,
.footer .footer-services .services-certificate {
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.footer .footer-services .services-certificate {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.footer .footer-services .services-title {
  width: 100%;
}
.footer .footer-services a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: inline-block;
  max-width: 5rem;
  margin-right: 0.5rem;
}
.footer .footer-services img {
  max-height: 4rem;
}
.footer .footer-column h2 {
  font-weight: 700;
}
.footer .btn-mail {
  background-color: #7a7f7f;
  color: white;
}
.footer .btn-mail i {
  padding: 0 1rem;
}
.footer .btn-mail:hover {
  background-color: #9498A0;
}
@media (min-width: 576px) {
  .footer .footer-services {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}
.plenty-brand {
  height: 30px;
  margin: 2em 0 0.2em;
}

.static-link-list {
  margin-bottom: -15px;
}

.static-link-list a {
  color: black;
  margin-right: 10px;
}

.footer .widget-inner {
  padding-bottom: 0 !important;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .footer .widget-inner {
    padding-bottom: inherit;
    margin-bottom: inherit;
  }
}

.footer__subfooter .dia-text svg {
  margin: 2px;
}

.footer__subfooter .dia-text p {
  line-height: 1.3 !important;
  font-size: 13px !important;
}

.checkout__footer {
  position: relative;
  margin-top: 0px !important;
  overflow: hidden;
  padding-top: 46px;
  background: #E9EBEF;
}
@media (min-width: 768px) {
  .checkout__footer {
    padding-top: 40px;
  }
}
.checkout__footer .footer__copyright {
  display: block;
  background-color: #fff;
}
.checkout__footer .footer__copyright .text-center {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .checkout__footer .footer__copyright .text-center {
    font-size: 15px !important;
  }
}
.checkout__footer .h4 {
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .checkout__footer .h4 {
    font-size: 22px !important;
  }
}
.checkout__footer a {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .checkout__footer a {
    font-size: 18px !important;
  }
}
.checkout__footer-icon p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 768px) {
  .checkout__footer-outer-grid {
    max-width: calc(100% - 50px);
  }
}
.checkout__footer-outer-grid > .widget-inner:first-child {
  margin-bottom: 32px;
}
.checkout__footer-logo {
  position: absolute;
  top: -46px;
  right: 15px;
  -webkit-filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.15));
}
@media (min-width: 768px) {
  .checkout__footer-logo {
    top: -40px;
  }
}
.checkout__footer-headline.widget .widget-inner {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.checkout__footer-headline.widget .widget-inner:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1.33156L4.28884 5.5L0 9.66842L0.855583 10.5L6 5.5L0.855583 0.5L0 1.33156Z' fill='black'/%3E%3C/svg%3E");
  content: "";
  width: 6px;
  height: 18px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
}
.checkout__footer-headline.widget .widget-inner p {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0px;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .checkout__footer-headline.widget .widget-inner p {
    font-size: 18px !important;
  }
}
.checkout__footer-contact h4 {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  color: #000000;
  margin-bottom: 12px;
  display: block;
}
.checkout__footer-contact ul li {
  padding-left: 24px !important;
  position: relative;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  margin-bottom: 8px;
}
.checkout__footer-contact ul li a:hover {
  color: #000000;
  text-decoration: underline;
}
.checkout__footer-contact ul li:first-child:before {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' id='svg_phone' viewBox='0 0 21 21'%3E%3Cpath fill-rule='evenodd' d='M37.7789525,402.735238 C37.7649184,402.520183 37.5781881,402.35899 37.3645592,402.371479 C37.149371,402.38553 36.9868104,402.571703 37.0008444,402.786758 C37.0990825,404.27731 37.845614,405.836556 39.2205574,407.42117 C39.2977445,407.510159 39.4061183,407.555824 39.5148819,407.555824 C39.6057131,407.555824 39.6969342,407.524209 39.7706128,407.45981 C39.9327836,407.318522 39.9503261,407.072243 39.8092063,406.909488 C38.9422162,405.910322 37.8865465,404.375275 37.7789525,402.735238 M51.1777506,412.491937 C51.1590386,412.562972 51.1212248,412.640251 51.0760041,412.698015 C50.464355,413.477053 49.6636366,413.97 48.6952897,414.162028 C48.0672676,414.286533 47.4439236,414.197545 46.6989514,414.025423 C45.169244,413.671422 43.7186729,412.96537 42.2630339,411.867068 C40.1785931,410.294553 38.4266805,408.437119 37.0560253,406.346286 C36.4065624,405.355317 36.0171185,404.388155 35.8646935,403.388989 C35.6678275,402.09827 35.8034896,401.062416 36.2911716,400.129991 C36.5118175,399.708078 36.8517524,399.325194 37.3604854,398.925137 C37.4864017,398.826002 37.6774202,398.777995 37.8789642,398.777995 C38.1284578,398.777995 38.3931548,398.851761 38.5681902,398.99344 C39.4878078,399.739302 40.1984747,400.417642 40.8042762,401.129157 C41.0794988,401.451544 41.2323136,401.814522 41.2584324,402.207554 C41.2744156,402.438221 41.1987879,402.628687 41.0202441,402.806663 C40.7052584,403.120464 40.3910525,403.436216 40.0784059,403.751187 L39.5833171,404.248428 L39.7057249,404.49861 C40.8838023,406.906366 42.632986,408.756774 44.9049368,409.998316 L45.0113614,410.05569 C45.1287013,410.118918 45.2460412,410.181756 45.3579235,410.252791 C45.471755,410.325387 45.7699777,410.461601 46.062353,410.162242 C46.2034728,410.018221 46.3465417,409.876543 46.4896107,409.734864 C46.7106464,409.515516 46.9320719,409.296168 47.1457008,409.069404 C47.4022114,408.796975 47.6895188,408.713841 48.045437,408.807903 C48.3296257,408.88245 48.5498818,408.979245 48.7007474,409.094383 C49.5423983,409.738377 50.2787942,410.470578 50.8892737,411.270691 C51.1878863,411.661381 51.2849549,412.072366 51.1777506,412.491937 M51.5087194,410.796087 C50.8561379,409.941722 50.070623,409.160343 49.1743953,408.474198 C48.9377663,408.293489 48.633696,408.155713 48.2438623,408.053065 C47.6092131,407.886407 47.032649,408.052284 46.578103,408.533913 C46.3707114,408.754042 46.1555232,408.967145 45.9411147,409.180249 C45.8343003,409.28602 45.7274859,409.391791 45.6195019,409.500294 C45.5407555,409.455019 45.4608396,409.411696 45.3809237,409.368373 L45.2783974,409.31295 C43.2294316,408.193182 41.6330626,406.542217 40.5302231,404.402987 L40.6308002,404.301899 C40.943057,403.987708 41.2560934,403.673127 41.5706892,403.359717 C41.9059462,403.02484 42.0673374,402.608001 42.0365405,402.154863 C41.9987266,401.590881 41.7839283,401.075296 41.3972132,400.622158 C40.7684115,399.884103 40.0035578,399.152682 39.0582111,398.386525 C38.4613757,397.903334 37.4431301,397.867427 36.8794306,398.311197 C36.2802563,398.781507 35.8740495,399.244402 35.6003863,399.767793 C35.0398055,400.840336 34.8737363,402.063143 35.0939923,403.50686 C35.2631802,404.619212 35.6919972,405.687852 36.4042234,406.774835 C37.8239977,408.940605 39.6378938,410.863999 41.7940639,412.490376 C43.3381952,413.6562 44.8854451,414.406745 46.5235262,414.785726 C47.0213439,414.900864 47.5464498,415 48.0867593,415 C48.3370326,415 48.5912041,414.978924 48.846935,414.927795 C50.0031817,414.698299 50.9594438,414.110118 51.6888226,413.180425 C51.8007049,413.037576 51.887248,412.862722 51.9328585,412.686306 C52.1000972,412.031775 51.9535197,411.378024 51.5087194,410.796087' transform='rotate(13 1763.824 54.904)'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-position: center;
}
.checkout__footer-contact ul li:nth-child(2):before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='svg_mail' viewBox='0 0 21 15'%3E%3Cpath fill-rule='evenodd' d='M53.003,301 C53.003,301.552 52.555,302 52.0025,302 L35.0005,302 C34.4485,302 34.0005,301.552 34.0005,301 L34.0005,290 C34.0005,289.8825 34.0245,289.771 34.062,289.666 C34.0685,289.672 34.0715,289.68 34.078,289.686 L43.2715,297.1815 C43.2975,297.2025 43.328,297.2115 43.3565,297.2265 C43.3615,297.2295 43.3665,297.2315 43.371,297.2345 C43.422,297.2595 43.473,297.275 43.528,297.2815 C43.541,297.2835 43.5545,297.284 43.568,297.285 C43.6125,297.287 43.655,297.283 43.6985,297.2735 C43.7245,297.268 43.7485,297.2605 43.774,297.2505 C43.804,297.2385 43.8305,297.224 43.8575,297.2065 C43.8755,297.1955 43.896,297.191 43.913,297.177 L52.9785,289.7855 C52.9935,289.855 53.003,289.9265 53.003,290 L53.003,301 Z M52.0025,289 C52.106,289 52.204,289.0205 52.2985,289.05 L43.5895,296.1505 L34.84,289.016 C34.8925,289.008 34.9455,289 35.0005,289 L52.0025,289 Z M52.5025,288 L34.5005,288 C33.672,288 33,288.672 33,289.5 L33,301.5 C33,302.3285 33.672,303 34.5005,303 L52.5025,303 C53.331,303 54.003,302.3285 54.003,301.5 L54.003,289.5 C54.003,288.672 53.331,288 52.5025,288 L52.5025,288 Z' transform='translate(-33 -288)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-position: center;
}
.checkout__footer-contact ul li:nth-child(3):before {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' id='svg_form' viewBox='0 0 15 16'%3E%3Cpath fill-rule='evenodd' d='M2.71253169,12.4948551 L9.74658249,12.4948551 C9.95496346,12.4948551 10.1239747,12.3254461 10.1239747,12.1174628 C10.1239747,11.9086842 9.95496346,11.7400706 9.74658249,11.7400706 L2.71253169,11.7400706 C2.50454839,11.7400706 2.33513943,11.9086842 2.33513943,12.1174628 C2.33513943,12.3254461 2.50454839,12.4948551 2.71253169,12.4948551 L2.71253169,12.4948551 Z M2.71253169,14.8808968 L8.95123527,14.8808968 C9.15961624,14.8808968 9.32862753,14.7114878 9.32862753,14.5035045 C9.32862753,14.2947259 9.15961624,14.1261122 8.95123527,14.1261122 L2.71253169,14.1261122 C2.50454839,14.1261122 2.33513943,14.2947259 2.33513943,14.5035045 C2.33513943,14.7114878 2.50454839,14.8808968 2.71253169,14.8808968 L2.71253169,14.8808968 Z M2.71253169,10.1088134 L6.96286723,10.1088134 C7.1712482,10.1088134 7.34025948,9.93940448 7.34025948,9.73142119 C7.34025948,9.52264254 7.1712482,9.35402893 6.96286723,9.35402893 L2.71253169,9.35402893 C2.50454839,9.35402893 2.33513943,9.52264254 2.33513943,9.73142119 C2.33513943,9.93940448 2.50454839,10.1088134 2.71253169,10.1088134 L2.71253169,10.1088134 Z M2.71253169,7.72277179 L9.34851121,7.72277179 C9.55728985,7.72277179 9.72630114,7.55336283 9.72630114,7.34537953 C9.72630114,7.13660088 9.55728985,6.96798727 9.34851121,6.96798727 L2.71253169,6.96798727 C2.50454839,6.96798727 2.33513943,7.13660088 2.33513943,7.34537953 C2.33513943,7.55336283 2.50454839,7.72277179 2.71253169,7.72277179 L2.71253169,7.72277179 Z M13.6231048,17.8757767 L0.896753989,17.8757767 L0.900333052,3.81125416 L13.6258886,3.81125416 L13.6231048,17.8757767 Z M14.3508475,3 L0,3 L0.101009097,19 L14.4188497,19 L14.3508475,3 Z' transform='translate(0 -3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-position: center;
}

.cmp-order-item {
  position: relative;
  margin-bottom: 1em;
}
.cmp-order-item .item-main {
  display: table;
}
.cmp-order-item .item-image {
  display: table-cell;
  vertical-align: top;
  position: relative;
  overflow: hidden;
}
.cmp-order-item .item-image > noscript, .cmp-order-item .item-image a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cmp-order-item .item-image .owl-carousel {
  height: 100%;
}
.cmp-order-item .item-image .owl-carousel .owl-stage-outer {
  height: 100%;
}
.cmp-order-item .item-image .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.cmp-order-item .item-image .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.cmp-order-item .item-image .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cmp-order-item .item-details {
  display: table-cell;
  vertical-align: top;
  padding-left: 0.5rem;
}
.cmp-order-item .item-bundle {
  width: 300px;
  font-weight: 700;
  font-size: 80%;
}
.cmp-order-item .item-name {
  display: -webkit-box;
  text-overflow: ellipsis;
  max-height: 4em;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cmp-order-item .item-name:after {
  content: "…";
  display: inline-block;
  height: 50%;
  position: absolute;
  right: 0.25em;
  bottom: 0;
  background-color: white;
}
.cmp-order-item .item-total-price {
  font-size: 1.5em;
  font-weight: 700;
  text-align: right;
}
.cmp-order-item .item-remove {
  position: absolute;
  bottom: 1em;
  right: 0;
  line-height: 1;
  color: #dcdbd8;
  cursor: pointer;
  -webkit-transition: color 250ms;
  transition: color 250ms;
}
.cmp-order-item .item-remove:hover {
  color: #d4021d;
}
@media (min-width: 576px) {
  .cmp-order-item .item-unit-price,
  .cmp-order-item .item-total-price {
    width: auto !important;
    text-align: right;
  }
}
.cmp-order-item .item-word-break {
  word-wrap: break-word;
}
@media (max-width: 575.98px) {
  .cmp-order-item .item-word-break {
    word-break: break-all;
  }
}

.payment-link-style {
  color: #FF1743 !important;
  cursor: pointer !important;
  padding: 0 15px !important;
}
.payment-link-style span {
  text-decoration: underline !important;
}

.top-spacer {
  margin-top: 0.5rem;
}

.page-confirmation .current-payment-width {
  font-size: 16px !important;
}
.page-confirmation .cmp-method-list .method-list-item label .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 72px;
  min-width: 72px;
  max-height: 80px !important;
}
@media (min-width: 576px) {
  .page-confirmation .cmp-method-list .method-list-item label .icon {
    width: 122px;
    min-width: 122px;
  }
}
.page-confirmation .cmp-method-list .method-list-item label .icon img {
  width: 5rem;
}
.page-confirmation .cmp-method-list .method-list-item label .content {
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .page-confirmation .cmp-method-list .method-list-item label .content {
    padding-left: 0;
  }
}
.page-confirmation .cmp-method-list .method-list-item input[value="6002"] + label .icon img,
.page-confirmation .cmp-method-list .method-list-item input[value="6011"] + label .icon img,
.page-confirmation .cmp-method-list .method-list-item input[value="6012"] + label .icon img {
  opacity: 0;
  visibility: hidden;
  width: 72px;
  height: 19px;
}
@media (min-width: 576px) {
  .page-confirmation .cmp-method-list .method-list-item input[value="6002"] + label .icon img,
  .page-confirmation .cmp-method-list .method-list-item input[value="6011"] + label .icon img,
  .page-confirmation .cmp-method-list .method-list-item input[value="6012"] + label .icon img {
    width: 100px;
    height: 26px;
  }
}
.page-confirmation .cmp-method-list .method-list-item input[value="6002"] + label .icon:after,
.page-confirmation .cmp-method-list .method-list-item input[value="6011"] + label .icon:after,
.page-confirmation .cmp-method-list .method-list-item input[value="6012"] + label .icon:after {
  content: "";
  background-repeat: no-repeat;
  width: 72px;
  position: absolute;
  height: 19px;
  left: 0;
  top: 0;
}
@media (min-width: 576px) {
  .page-confirmation .cmp-method-list .method-list-item input[value="6002"] + label .icon:after,
  .page-confirmation .cmp-method-list .method-list-item input[value="6011"] + label .icon:after,
  .page-confirmation .cmp-method-list .method-list-item input[value="6012"] + label .icon:after {
    width: 100px;
    height: 26px;
  }
}
.page-confirmation .cmp-method-list .method-list-item input[value="6002"] + label .icon:after {
  background-image: url(https://www.paypalobjects.com/webstatic/ppplus/images/paypal-logo-100x26.png);
  background-size: 100%;
  height: 26px;
  top: calc(50% - 13px);
}
@media (min-width: 576px) {
  .page-confirmation .cmp-method-list .method-list-item input[value="6002"] + label .icon:after {
    background-size: auto;
  }
}
.page-confirmation .cmp-method-list .method-list-item input[value="6011"] + label .icon:after,
.page-confirmation .cmp-method-list .method-list-item input[value="6012"] + label .icon:after {
  background-image: url(https://www.paypalobjects.com/webstatic/ppplus/images/cc-logo.png);
  background-size: 100%;
  height: 21px;
  top: calc(50% - 10.5px);
}
@media (min-width: 576px) {
  .page-confirmation .cmp-method-list .method-list-item input[value="6011"] + label .icon:after,
  .page-confirmation .cmp-method-list .method-list-item input[value="6012"] + label .icon:after {
    background-size: 97%;
    height: 28px;
    top: calc(50% - 14px);
  }
}
.page-confirmation .cmp-method-list .method-list-item label {
  padding-right: 48px;
}
.page-confirmation .cmp-method-list .method-list-item input:checked + label:after {
  content: "";
  background-image: url(https://www.paypalobjects.com/webstatic/ppplus/icons/checkmark.png);
  background-repeat: no-repeat;
  background-position: right;
  height: 50px;
  width: 25px;
  right: 12px;
  position: absolute;
}
.page-confirmation .cmp-method-list .method-list-item {
  margin-bottom: 0 !important;
}
.page-confirmation .cmp-method-list .method-list-item label, .page-confirmation .cmp-method-list .method-list-item .label {
  border: 1px solid #dfdfdf;
  border-radius: 0;
  border-left: none;
  border-right: none;
  background-color: white;
}
.page-confirmation .cmp-method-list .method-list-item label:hover, .page-confirmation .cmp-method-list .method-list-item .label:hover {
  background-color: #f9f9f9;
}
.page-confirmation .cmp-method-list .method-list-item small {
  font-size: 10px !important;
  display: none;
}
@media (min-width: 768px) {
  .page-confirmation .cmp-method-list .method-list-item small {
    font-size: 8px !important;
  }
}
@media (min-width: 992px) {
  .page-confirmation .cmp-method-list .method-list-item small {
    font-size: 13px !important;
  }
}
.page-confirmation .cmp-method-list .method-list-item input:checked + label {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #f9f9f9;
  cursor: default;
  border: 1px solid #dfdfdf;
  border-left: none;
  border-right: none;
}
.page-confirmation .cmp-method-list .method-list-item input:checked + label small {
  display: block;
}

.cmp-address-list .items {
  position: relative;
}
@media (min-width: 768px) {
  .cmp-address-list .items {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }
}
.cmp-address-list .items > div:first-child {
  margin-bottom: 0;
  min-height: 115px;
}
.cmp-address-list .dropdown-toggle:after {
  position: absolute;
  top: 80%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmp-address-list .items.open .dropdown-toggle {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cmp-address-list .dropdown-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #E9EBEF;
  border-radius: 8px;
}
.cmp-address-list ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 500px;
  overflow-x: none;
  overflow-y: auto;
}
.cmp-address-list .item {
  padding: 0;
  border-bottom: 1px solid #dcdbd8;
  position: relative;
}
.cmp-address-list .item input {
  display: none;
}
.cmp-address-list .item input:checked + .item-inner {
  background-color: #f9f9f9;
  border: none;
  color: #000;
}
.cmp-address-list .item:last-of-type {
  border-bottom: none;
}
.cmp-address-list .item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  padding: 1em;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
}
.cmp-address-list .item-inner .item-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cmp-address-list .item-inner .item-controls .item-edit .fa {
  padding-left: 0.1rem;
  padding-top: 0.3rem;
}
.cmp-address-list .item-inner .item-controls .item-remove .fa {
  padding-top: 0.1rem;
}
.cmp-address-list .item-inner .item-controls .fa {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  float: none;
}
.cmp-address-list .item-inner .item-controls .btn, .cmp-address-list .item-inner .item-controls .single__series-button, .cmp-address-list .item-inner .item-controls .feedback-container .btn-secondary, .cmp-address-list .item-inner .item-controls .feedback-container .feedback-info-segment.btn-default, .feedback-container .cmp-address-list .item-inner .item-controls .btn-secondary, .feedback-container .cmp-address-list .item-inner .item-controls .feedback-info-segment.btn-default {
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 5px;
  padding: 0;
}
.cmp-address-list .item-content {
  display: inline-block;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.cmp-address-list .item-content strong, .cmp-address-list .item-content span {
  display: block;
}

.checkout header h4 {
  line-height: 2.5rem;
}

.add-item {
  position: absolute;
  cursor: pointer;
}
.add-item svg {
  fill: #333;
}
.add-item:hover svg {
  fill: #3f3f3f;
}
.add-item--bank-data {
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 46px;
}
@media (min-width: 1200px) {
  .add-item--bank-data {
    width: 240px;
  }
}
.add-item--white-color span {
  display: none;
}
@media (min-width: 576px) {
  .add-item--white-color span {
    display: inline-block;
  }
}
.add-item--white-color svg {
  fill: #000;
}
@media (min-width: 576px) {
  .add-item--white-color svg {
    margin-left: 5px;
  }
}
.add-item--white-color:hover svg {
  fill: #000;
}
@media (max-width: 575.98px) {
  .add-item {
    top: 1rem;
    right: 1rem;
    bottom: 0;
  }
  .add-item button {
    min-width: auto !important;
    width: 50px;
    height: 74px;
  }
}
@media (min-width: 576px) {
  .add-item {
    top: 1em;
    right: 1em;
  }
}

.cmp-basket-item, .cmp-order-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  border-bottom: 1px solid #dcdbd8;
}
.cmp-basket-item .toggle-description, .cmp-order-item .toggle-description,
.cmp-basket-item .item-toggle,
.cmp-order-item .item-toggle {
  display: none;
}
.cmp-basket-item .item-image, .cmp-order-item .item-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 6em;
          flex: 0 1 6em;
  position: relative;
  overflow: hidden;
}
.cmp-basket-item .item-image > noscript, .cmp-order-item .item-image > noscript, .cmp-basket-item .item-image a > img, .cmp-order-item .item-image a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cmp-basket-item .item-image .owl-carousel, .cmp-order-item .item-image .owl-carousel {
  height: 100%;
}
.cmp-basket-item .item-image .owl-carousel .owl-stage-outer, .cmp-order-item .item-image .owl-carousel .owl-stage-outer {
  height: 100%;
}
.cmp-basket-item .item-image .owl-carousel .owl-stage-outer .owl-stage, .cmp-order-item .item-image .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.cmp-basket-item .item-image .owl-carousel .owl-stage-outer .owl-stage .owl-item, .cmp-order-item .item-image .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.cmp-basket-item .item-image .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .cmp-order-item .item-image .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cmp-basket-item .item-image img, .cmp-order-item .item-image img {
  width: 100%;
  height: auto;
}
.cmp-basket-item .item-details, .cmp-order-item .item-details {
  margin-top: 1em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cmp-basket-item .item-details > div[class^=item-], .cmp-order-item .item-details > div[class^=item-] {
  display: block;
  margin-bottom: 0.5rem;
}
.cmp-basket-item .item-details > div[class^=item-]:last-of-type, .cmp-order-item .item-details > div[class^=item-]:last-of-type {
  margin-bottom: 0;
}
.cmp-basket-item .item-name, .cmp-order-item .item-name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-overflow: ellipsis;
  max-height: 4em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cmp-basket-item .item-name:after, .cmp-order-item .item-name:after {
  content: "…";
  display: inline-block;
  height: 50%;
  position: absolute;
  right: 0.25em;
  bottom: 0;
}
.cmp-basket-item .item-quantity, .cmp-order-item .item-quantity {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  height: 6em;
}
.cmp-basket-item .item-quantity .item-unit-price, .cmp-order-item .item-quantity .item-unit-price {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.cmp-basket-item .item-quantity .item-total-price, .cmp-order-item .item-quantity .item-total-price {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  font-size: 1.5em;
  font-weight: 700;
  text-align: right;
}
.cmp-basket-item .item-quantity .input-group.vert, .cmp-order-item .item-quantity .input-group.vert {
  display: block;
  padding: 0 1em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 5em;
}
.cmp-basket-item .item-quantity .btn, .cmp-basket-item .item-quantity .single__series-button, .cmp-basket-item .item-quantity .feedback-container .btn-secondary, .cmp-basket-item .item-quantity .feedback-container .feedback-info-segment.btn-default, .feedback-container .cmp-basket-item .item-quantity .btn-secondary, .feedback-container .cmp-basket-item .item-quantity .feedback-info-segment.btn-default, .cmp-order-item .item-quantity .btn, .cmp-order-item .item-quantity .single__series-button, .cmp-order-item .item-quantity .feedback-container .btn-secondary, .cmp-order-item .item-quantity .feedback-container .feedback-info-segment.btn-default, .feedback-container .cmp-order-item .item-quantity .btn-secondary, .feedback-container .cmp-order-item .item-quantity .feedback-info-segment.btn-default {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.cmp-basket-item .item-quantity .form-control, .cmp-order-item .item-quantity .form-control {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  text-align: center;
}
.cmp-basket-item .varianten-content, .cmp-order-item .varianten-content {
  padding-top: 0;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.cmp-basket-item .varianten-content, .cmp-order-item .varianten-content,
.cmp-basket-item .item-description,
.cmp-order-item .item-description {
  max-height: 0;
  height: auto;
  overflow: hidden;
  margin-bottom: 0;
  -webkit-transition: max-height 300ms;
  transition: max-height 300ms;
}
.cmp-basket-item .expand-btn, .cmp-order-item .expand-btn {
  display: block;
  position: relative;
  z-index: 999;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.cmp-basket-item .expand-btn:before, .cmp-order-item .expand-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 1.5em;
  border-bottom: 1px solid #dcdbd8;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}
.cmp-basket-item .expand-btn:after, .cmp-order-item .expand-btn:after {
  content: attr(data-show-more);
  font-weight: 700;
  color: #9498A0;
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 0 0.5em;
  top: -0.8em;
}
.cmp-basket-item .toggle-description:checked ~ .item-description, .cmp-order-item .toggle-description:checked ~ .item-description {
  max-height: 70em;
}
.cmp-basket-item .toggle-description:checked ~ .expand-btn:after, .cmp-order-item .toggle-description:checked ~ .expand-btn:after {
  content: attr(data-show-less);
}
.cmp-basket-item .toggle-variations:checked ~ .varianten-content, .cmp-order-item .toggle-variations:checked ~ .varianten-content {
  padding-top: 1em;
  max-height: 25em;
}
.cmp-basket-item .item-remove, .cmp-order-item .item-remove {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  color: #dcdbd8;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}
.cmp-basket-item .item-remove.btn-link > .message, .cmp-order-item .item-remove.btn-link > .message {
  margin-right: 5px;
}
.cmp-basket-item .item-remove.btn-link > .btn-trans, .cmp-order-item .item-remove.btn-link > .btn-trans {
  right: 0;
}
.cmp-basket-item .item-remove:hover, .cmp-order-item .item-remove:hover {
  color: #d4021d;
}
.cmp-basket-item .item-remove.btn-danger:hover, .cmp-order-item .item-remove.btn-danger:hover {
  color: white;
}
.cmp-basket-item .item-remove:focus, .cmp-order-item .item-remove:focus {
  outline: none;
}
@media (min-width: 576px) {
  .cmp-basket-item, .cmp-order-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .cmp-basket-item .item-details, .cmp-order-item .item-details {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    margin-left: 1em;
  }
  .cmp-basket-item .varianten, .cmp-order-item .varianten {
    padding-right: 1em;
  }
  .cmp-basket-item .item-quantity, .cmp-order-item .item-quantity {
    position: static;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cmp-basket-item .item-quantity .item-unit-price, .cmp-order-item .item-quantity .item-unit-price {
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .cmp-basket-item .item-quantity .input-group.vert, .cmp-order-item .item-quantity .input-group.vert {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    display: table;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    left: 20%;
  }
  .cmp-basket-item .item-quantity .item-total-price, .cmp-order-item .item-quantity .item-total-price {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .cmp-basket-item .item-remove, .cmp-order-item .item-remove {
    bottom: 1em;
  }
}
@media (min-width: 768px) {
  .cmp-basket-item .item-quantity .input-group.vert, .cmp-order-item .item-quantity .input-group.vert {
    left: 5%;
  }
}
@media (min-width: 992px) {
  .cmp-basket-item .item-quantity .input-group.vert, .cmp-order-item .item-quantity .input-group.vert {
    left: 20%;
  }
}

.img-basket-small {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.no-pointer-events {
  pointer-events: none;
}

.confirmation-order-list .cmp-order-item .item-name {
  color: #282d2f;
}

/* Compatibility for IE */
html.ie .confirmation-order-list .cmp-order-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-preferred-size: 84px;
      flex-basis: 84px;
}
html.ie .confirmation-order-list .cmp-order-item .item-image {
  width: 84px;
  height: auto;
}
html.ie .confirmation-order-list .cmp-order-item .item-name {
  max-height: none;
}
html.ie .confirmation-order-list .cmp-order-item .item-details {
  margin-top: 0;
  display: block;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
html.ie .confirmation-order-list .cmp-order-item .item-details .row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .configurator__row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .single__item-series strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__categories--cat-row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .content__categories--cat-row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .category__categories--cat-row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__image-text-widget--row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .single__image-text-widget--row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .category__image-text-widget--row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__category-widget--row strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .reset-pwd h1.h2 strong:first-of-type, .reset-pwd html.ie .confirmation-order-list .cmp-order-item .item-details h1.h2 strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .header strong:first-of-type, html.ie .confirmation-order-list .cmp-order-item .item-details .header-controls strong:first-of-type {
  min-width: 90px;
  width: auto;
}
html.ie .confirmation-order-list .cmp-order-item .item-details .row span, html.ie .confirmation-order-list .cmp-order-item .item-details .configurator__row span, html.ie .confirmation-order-list .cmp-order-item .item-details .single__item-series span, html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__categories--cat-row span, html.ie .confirmation-order-list .cmp-order-item .item-details .content__categories--cat-row span, html.ie .confirmation-order-list .cmp-order-item .item-details .category__categories--cat-row span, html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__image-text-widget--row span, html.ie .confirmation-order-list .cmp-order-item .item-details .single__image-text-widget--row span, html.ie .confirmation-order-list .cmp-order-item .item-details .category__image-text-widget--row span, html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__category-widget--row span, html.ie .confirmation-order-list .cmp-order-item .item-details .reset-pwd h1.h2 span, .reset-pwd html.ie .confirmation-order-list .cmp-order-item .item-details h1.h2 span, html.ie .confirmation-order-list .cmp-order-item .item-details .header span, html.ie .confirmation-order-list .cmp-order-item .item-details .header-controls span,
html.ie .confirmation-order-list .cmp-order-item .item-details .row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .configurator__row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .single__item-series strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__categories--cat-row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .content__categories--cat-row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .category__categories--cat-row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__image-text-widget--row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .single__image-text-widget--row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .category__image-text-widget--row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .homepage__category-widget--row strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .reset-pwd h1.h2 strong:nth-of-type(2),
.reset-pwd html.ie .confirmation-order-list .cmp-order-item .item-details h1.h2 strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .header strong:nth-of-type(2),
html.ie .confirmation-order-list .cmp-order-item .item-details .header-controls strong:nth-of-type(2) {
  width: auto;
}
@media (max-width: 767.98px) {
  html.ie .confirmation-order-list .cmp-order-item .item-details {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
    -ms-flex: 1;
    -webkit-box-flex: 1;
            flex: 1;
  }
}

@media (min-width: 576px) {
  .main .basket .basket-item-container .basket-item-container-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main .basket .basket-item-container .basket-item-container-right .qty-box-container {
    margin-right: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .main .checkout .basket-item-container .basket-item-container-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main .checkout .basket-item-container .basket-item-container-right .qty-box-container {
    margin-right: 15px;
  }
}
.top-bar .controls-list > li .basket-preview-hover .basket-item a {
  padding: 0;
  color: #FF1743;
}
.top-bar .controls-list > li .basket-preview-hover .basket-item a:hover {
  color: rgb(227, 0, 43.0517241379);
  background-color: transparent;
}
.top-bar .controls-list > li .basket-preview-hover .fa:not(.qty-sign) {
  line-height: 1;
  font-size: 1.2rem;
}

.basket-item-container {
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px 16px 0 16px !important;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .basket-item-container {
    padding: 24px 24px 0 24px !important;
  }
}
.basket-item-container.basket-small {
  background: white;
  padding: 10px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
}
.basket-item-container.basket-small:not(:last-child) {
  margin-bottom: 10px;
}
.basket-item-container .item-bundle {
  font-weight: 700;
  font-size: 80%;
}
.basket-item-container.basket-large {
  padding: 1.5rem 0;
}
.basket-item-container.basket-large:first-child {
  padding-top: 0;
}
.basket-item-container .basket-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.basket-item-container .basket-item .qty-box {
  height: 41px;
}
.basket-item-container .basket-item .qty-box .qty-input {
  width: 42px !important;
}
.basket-item-container .basket-item .qty-box .qty-btn-container {
  border: 0;
}
.basket-item-container .basket-item .qty-box .qty-btn:last-child {
  border-radius: 0 0 5px 0 !important;
  border-top: 0;
}
.basket-item-container .basket-item .image-container {
  width: 75px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
@media (max-width: 575.98px) {
  .basket-item-container .basket-item .image-container {
    width: 50px;
    margin: 0 10px;
  }
}
.basket-item-container .basket-item .meta-container-wrapper {
  width: 100%;
  min-width: 0;
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .basket-item-container-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 12px 0 0 !important;
  }
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .basket-item-container-right .qty-box-container {
    margin: 0;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 0;
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container > div {
  width: 100%;
  position: relative;
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-name, .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container a.item-name {
  overflow-wrap: break-word;
  word-wrap: break-word;
  display: block;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000 !important;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-name, .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container a.item-name {
    font-size: 18px !important;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-base-price {
  color: #000;
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 6px;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-base-price {
    font-size: 18px !important;
    margin-top: 18px;
    margin-bottom: 12px;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-small-prices {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400 !important;
  color: #000;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-small-prices {
    font-size: 15px !important;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-small-prices strong {
  font-weight: 400 !important;
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-availability {
  color: #000;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-availability {
    font-size: 15px !important;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id {
  color: #000;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id {
    font-size: 15px !important;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id span {
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id span {
    font-size: 15px !important;
  }
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id > div {
  line-height: 1;
}
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id strong {
  font-weight: normal !important;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-id strong {
    font-size: 15px !important;
  }
}
.basket-item-container .basket-item .basket-item-container-right {
  display: block;
  margin-left: auto;
}
.basket-item-container .basket-item .basket-item-container-right .qty-box-container {
  margin: 0 0 0 10px;
}
@media (max-width: 767.98px) {
  .basket-item-container .basket-item .basket-item-container-right .qty-box-container {
    margin: 0 0 5px 27px;
  }
}
.basket-item-container .basket-item .basket-item-container-right .qty-box-container .qty-box {
  margin: 0 0 5px auto;
}
.basket-item-container .basket-item .basket-item-container-right .qty-box-container .qty-box .qty-input {
  margin-left: auto;
}
.basket-item-container .basket-item .basket-item-container-right .price-box {
  margin-left: auto;
}
.basket-item-container .basket-item .basket-item-container-right .item-total-price {
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  color: #000;
  line-height: normal;
  font-size: 18px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .basket-item-container-right .item-total-price {
    font-size: 22px;
    margin-bottom: 0;
  }
}
.basket-item-container .basket-item .basket-item-container-right .item-remove-container {
  text-align: right;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .basket-item-container-right .item-remove-container {
    font-size: 15px;
  }
}
.basket-item-container .basket-item .basket-item-container-right .item-remove-container > .item-remove-button {
  cursor: pointer;
  padding: 0;
  background: none;
  color: #000;
  border: none;
  white-space: nowrap;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .basket-item-container-right .item-remove-container > .item-remove-button {
    font-size: 13px;
  }
}
.basket-item-container .basket-item .basket-item-container-right .item-remove-container > .item-remove-button.disabled {
  cursor: not-allowed;
}
.basket-item-container .basket-item .kurzbeschreibung li {
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .basket-item-container .basket-item .kurzbeschreibung li {
    font-size: 15px !important;
  }
}
.basket-item-container .basket-item .item-properties {
  margin-top: 0.25em;
  font-size: 75%;
}
.basket-item-container .basket-item .item-properties .item-properties-header {
  margin-bottom: 0.25em;
  font-weight: 700;
}
.basket-item-container .basket-item .item-properties .item-property-value {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}
.basket-small ul {
  list-style: none;
}
.basket-small ul .item-property-value > strong:before {
  content: "\f067";
  font-family: FontAwesome;
  margin-right: 5px;
  font-size: 75%;
  font-weight: normal;
}
.basket-small ul .item-property-value > strong.colon:after {
  content: ":";
}

.basket-item-container .basket-item .item-properties ul {
  padding: 0;
  margin-bottom: 0;
}
.basket-item-container .basket-item .item-properties ul div {
  margin-bottom: 0.25em;
}
.basket-item-container .basket-item .item-additional-information-container .item-additional-information {
  font-size: 13px;
}
.basket-item-container .basket-item .item-additional-information-container .item-additional-information ul {
  font-size: 13px !important;
  padding-left: 15px;
  line-height: 19px;
  list-style: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0.997873L5.14661 6L0 11.0021L1.0267 12L7.2 6L1.0267 0L0 0.997873Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
}
.basket-item-container .basket-item .item-additional-information-container .basket-expand {
  display: block;
  position: relative;
  z-index: 999;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 75%;
}
.basket-item-container .basket-item .item-additional-information-container .basket-expand:before {
  content: "";
  display: block;
  width: 100%;
  height: 1.5em;
  border-bottom: 1px solid #dcdbd8;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}
.basket-item-container .basket-item .item-additional-information-container .basket-expand:after {
  content: attr(data-show-more);
  color: #9498A0;
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 0 0.5em;
  top: -0.8em;
  font-size: 12px;
  font-weight: 400;
}
.basket-item-container .basket-item .item-additional-information-container .basket-expand.opened:after {
  content: attr(data-show-less);
}

/* Compatibility for IE */
html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner {
  display: block;
}
html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner .meta-container {
  float: left;
  width: 65%;
  display: block;
}
html.ie .wrapper-main .basket-item-container .basket-item-container-right {
  width: 35%;
  display: block;
}
html.ie .wrapper-main .basket-item-container .basket-item-container-right .qty-box-container .qty-box {
  margin: 0 0 5px 0;
}
html.ie .wrapper-main .basket-item-container .basket-item-container-right .qty-box-container .qty-box .qty-input {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner {
    display: block;
  }
  html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner .meta-container {
    margin-bottom: 10px;
    width: 100%;
  }
  html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner .basket-item-container-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner .basket-item-container-right .qty-box-container {
    margin-left: auto;
  }
  html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner .basket-item-container-right .price-box {
    margin-left: 10px;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  html.ie .wrapper-main .basket-item-container .meta-container-wrapper-inner .basket-item-container-right .price-box .item-total-price {
    margin-bottom: 5px;
  }
}

.checkout .basket-list-item {
  padding: 16px !important;
}
.checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container a.item-name {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container a.item-name {
    font-size: 15px !important;
  }
}
.checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .basket-list-item__small-info {
  margin: 8px 0;
}
.checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .basket-list-item__small-info div, .checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .basket-list-item__small-info strong {
  font-style: normal;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .basket-list-item__small-info div, .checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .basket-list-item__small-info strong {
    font-size: 15px;
  }
}
.checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-total-price {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-size: 18px;
  color: #000000;
}
@media (min-width: 768px) {
  .checkout .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-total-price {
    font-size: 22px;
  }
}
@media (max-width: 767.98px) {
  .checkout .basket-list-item .price-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .checkout .basket-list-item .price-box .item-total-price {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  html.ie .wrapper-main .checkout .checkout-rightside .basket-item-container .basket-item .meta-container-wrapper-inner {
    display: block;
  }
  html.ie .wrapper-main .checkout .checkout-rightside .basket-item-container .basket-item .meta-container-wrapper-inner .meta-container {
    margin-bottom: 10px;
    width: 100%;
  }
  html.ie .wrapper-main .checkout .checkout-rightside .basket-item-container .basket-item .meta-container-wrapper-inner .basket-item-container-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  html.ie .wrapper-main .checkout .checkout-rightside .basket-item-container .basket-item .meta-container-wrapper-inner .basket-item-container-right .qty-box-container {
    margin-left: auto;
  }
  html.ie .wrapper-main .checkout .checkout-rightside .basket-item-container .basket-item .meta-container-wrapper-inner .basket-item-container-right .price-box {
    margin-left: 10px;
  }
}

.btn-collapse {
  position: relative;
  z-index: 999;
  display: block;
  width: 100%;
  font-size: 85%;
  text-align: center;
  cursor: pointer;
}
.btn-collapse:before {
  display: block;
  width: 100%;
  height: 1.5em;
  content: "";
  border-bottom: 1px solid #dee2e6;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .btn-collapse:before {
    font-size: 15px !important;
  }
}
.btn-collapse:after {
  position: relative;
  top: -0.8em;
  display: inline-block;
  padding: 0 0.5em;
  font-weight: 700;
  color: #adb5bd;
  content: attr(data-show-more);
  background-color: #fff;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .btn-collapse:after {
    font-size: 15px !important;
  }
}

.btn-collapse.opened::after, .btn-collapse:not(.collapsed)::after {
  content: attr(data-show-less);
}

.basket-list-item.py-3 {
  background: #fff;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.basket-list-item__small-info {
  font-size: 12px;
  margin-top: 3px;
  margin-bottom: 3px;
}
.basket-list-item__small-info span, .basket-list-item__small-info strong {
  color: #000;
}
.basket-list-item__small-info strong {
  font-size: 95%;
}

@media (min-width: 768px) {
  .page-basket .main .basket-list-item .meta-container {
    padding-right: 80px;
  }
}

@media (min-width: 992px) {
  .control-basket:hover .basket-preview-hover-wrapper {
    display: block;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.basket-preview-hover-wrapper {
  position: absolute;
  width: 100vw;
  right: 0;
  z-index: 99999;
}
.basket-preview-hover-wrapper.empty {
  height: auto;
}
@media (min-width: 576px) {
  .basket-preview-hover-wrapper {
    max-width: 440px;
    max-height: 90vh;
    display: none;
  }
}
@media (max-width: 575.98px) {
  .basket-preview-hover-wrapper {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    height: 100%;
    position: fixed;
    top: 0;
  }
}
.basket-preview-hover-wrapper .basket-preview-hover-wrapper-inner {
  position: relative;
  height: 100%;
}

.basket-preview-hover {
  position: absolute;
  width: 100%;
  max-height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  padding: 0.75rem;
  color: #4D4F4D;
  font-size: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.basket-preview-hover.empty {
  position: relative;
}
@media (min-width: 576px) {
  .basket-preview-hover {
    max-height: 90vh;
    padding: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .basket-preview-hover:not(.empty) {
    height: 100%;
  }
}
.basket-preview-hover .basket-header {
  border-bottom: 1px solid #dcdbd8;
  padding-bottom: 0.5em;
}
.basket-preview-hover .item-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-attachment: fixed;
  -webkit-overflow-scrolling: touch;
}
.basket-preview-hover .basket-totals {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.basket-preview-hover .basket-totals .btn, .basket-preview-hover .basket-totals .single__series-button, .basket-preview-hover .basket-totals .feedback-container .btn-secondary, .basket-preview-hover .basket-totals .feedback-container .feedback-info-segment.btn-default, .feedback-container .basket-preview-hover .basket-totals .btn-secondary, .feedback-container .basket-preview-hover .basket-totals .feedback-info-segment.btn-default {
  padding: 0.5rem 0.8rem;
}
.basket-preview-hover > .no-items {
  text-align: center;
  padding: 1rem;
}

@media (min-width: 576px) {
  html.ie .basket-preview-hover {
    height: 85vh;
    min-height: 85vh;
  }
}

.basket-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.basket-preview .totalSum .total-gross {
  font-weight: normal !important;
}
.basket-preview .basket-list-item {
  padding: 16px !important;
}
.basket-preview .basket-header {
  position: relative;
  height: 61px;
  line-height: 72px;
  background-color: #fff;
}
.basket-preview .basket-header .close {
  opacity: 1;
}
.basket-preview .basket-header .close:before {
  content: unset;
  background-image: none !important;
}
.basket-preview .basket-header svg {
  fill: black;
  margin-top: 0;
  margin-right: 20px;
}
.basket-preview .basket-header .basket-header-caption {
  line-height: 33px;
  font-weight: bold;
  font-size: 24px;
  color: #000;
  padding-left: 15px;
}
.basket-preview .basket-header .close {
  height: 100%;
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
.basket-preview .basket-preview-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  background-color: #e9ebef;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .basket-preview .basket-preview-content {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.basket-preview .basket-preview-content .qty-btn-container {
  display: none;
}
.basket-preview .basket-preview-content .qty-box {
  height: 41px;
}
.basket-preview .basket-preview-content .qty-box .qty-input {
  width: 58px;
  margin-right: 3px;
}
.basket-preview .basket-preview-content .qty-box .qty-btn-container {
  border: 0;
}
.basket-preview .basket-preview-content .qty-box .qty-btn:last-child {
  border-radius: 0 0 5px 0 !important;
  border-top: 0;
}
.basket-preview .basket-item-container-right {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.basket-preview .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .basket-preview .list {
    margin-bottom: 5px;
    font-size: 12px;
    color: #BEC0C5;
  }
}
.basket-preview .item-crossprice {
  line-height: 17px;
}
.basket-preview .totals-wrapper {
  padding: 10px;
}
.basket-preview .totals-inner {
  background: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.basket-preview .cmp-totals {
  background-color: #FFFFFF;
  display: none;
}
@media (min-width: 768px) {
  .basket-preview .cmp-totals {
    display: block;
  }
}
.basket-preview hr {
  border-top: 1px solid #E9EBEF !important;
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
}
@media (min-width: 768px) {
  .basket-preview hr {
    display: block;
  }
}
.basket-preview .totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  /*@include media-breakpoint-only(sm)
  {
      border-top: 0;
      border-left: 1px solid $gray-lighter;
  }*/
}
.basket-preview .totals .h3 {
  line-height: 33px;
  font-weight: bold;
  font-size: 24px;
  color: #000;
  font-family: "Yantramanav";
}
.basket-preview .totals dd, .basket-preview .totals dt {
  margin-bottom: 0;
}
.basket-preview .totals .basketBtn {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  background: white;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 10px;
  max-width: 47.5%;
}
@media (min-width: 576px) {
  .basket-preview .totals .basketBtn {
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .basket-preview .totals .basketBtn {
    max-width: 180px;
  }
}
.basket-preview .totals .basketBtn i {
  display: none;
}
.basket-preview .totals .basketBtn:focus, .basket-preview .totals .basketBtn:active, .basket-preview .totals .basketBtn:hover {
  color: #000;
  border: 2px solid #FF1743;
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.basket-preview .totals .checkOutBtn {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 10px;
  margin-top: 0;
  max-width: 47.5%;
  background: #ff1743;
  color: #fff;
}
@media (min-width: 768px) {
  .basket-preview .totals .checkOutBtn {
    max-width: 180px;
  }
}
.basket-preview .totals .checkOutBtn i {
  display: none;
}
.basket-preview .totals .checkOutBtn:focus, .basket-preview .totals .checkOutBtn:active, .basket-preview .totals .checkOutBtn:hover {
  color: #fff;
  border: 2px solid #d4021d;
  background: #d4021d;
}
.basket-preview .basket-preview-footer {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.basket-preview .basket-preview-footer .col-6:first-child, .basket-preview .basket-preview-footer .single__item-series .col-xs-6:first-child, .single__item-series .basket-preview .basket-preview-footer .col-xs-6:first-child, .basket-preview .basket-preview-footer .homepage__categories--cat-outer:first-child, .basket-preview .basket-preview-footer .content__categories--cat-outer:first-child, .basket-preview .basket-preview-footer .category__categories--cat-outer:first-child, .basket-preview .basket-preview-footer .homepage__category-widget-col:first-child {
  padding-right: 7.5px;
}
.basket-preview .basket-preview-footer .col-6:last-child, .basket-preview .basket-preview-footer .single__item-series .col-xs-6:last-child, .single__item-series .basket-preview .basket-preview-footer .col-xs-6:last-child, .basket-preview .basket-preview-footer .homepage__categories--cat-outer:last-child, .basket-preview .basket-preview-footer .content__categories--cat-outer:last-child, .basket-preview .basket-preview-footer .category__categories--cat-outer:last-child, .basket-preview .basket-preview-footer .homepage__category-widget-col:last-child {
  padding-left: 7.5px;
}
.basket-preview .basket-preview-footer__after-checkout-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.basket-preview .basket-preview-footer__after-checkout-btn .paypalSmartButtons {
  display: none;
}
.basket-preview .basket-preview-footer__after-checkout-btn .amazon-pay-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .basket-preview .basket-preview-footer__after-checkout-btn .amazon-pay-button-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.basket-preview .basket-preview-footer__after-checkout-btn .amazon-pay-button-wrapper .amazon-pay-button {
  max-width: 180px;
}

.basket-preview-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: 100%;
  z-index: 1081;
  display: block;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .basket-preview-wrapper {
    width: 30em;
  }
}

.basket-open .basket-preview-wrapper {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.basket-open .basket-preview-overlay {
  display: block;
}

.basket-loading-frame {
  display: table;
  width: 100%;
}

.basket-preview-overlay {
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: -100vh;
  left: -100vw;
  z-index: -1;
  display: none;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
}

.qty-box.qty-box-new {
  border: 1px solid #EAECEF;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 8px;
  background-color: #fff;
}
.qty-box.qty-box-new .qty-input {
  height: 100% !important;
  width: 40px;
}
.qty-box.qty-box-new button {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px !important;
}
.qty-box.qty-box-new button.disabled i {
  opacity: 0.4;
}
.qty-box.qty-box-new * {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}

.cmp-totals dt, .cmp-totals dd {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 20px;
}
.cmp-totals dt {
  width: 68% !important;
}
.cmp-totals dd {
  text-align: right;
  width: 29%;
}
.cmp-totals .rebate-hint {
  color: #7a7f7f;
}
.cmp-totals hr {
  margin-bottom: 12px;
  margin-top: 12px;
}
@media (max-width: 575.98px) {
  .cmp-totals hr {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.cmp-product-thumb {
  padding: 0;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D5D7DB;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media (max-width: 767.98px) {
  .cmp-product-thumb--grid .category-item__content {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
}
.cmp-product-thumb:hover {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
}
.cmp-product-thumb .tag-list span {
  background-color: #3f3f3f;
  text-transform: uppercase;
  cursor: default;
}
.cmp-product-thumb .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cmp-product-thumb .prices {
    margin-bottom: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.cmp-product-thumb .crossprice {
  font-size: 1rem;
}
.cmp-product-thumb .price-view-port {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.cmp-product-thumb .thumb-title {
  min-height: 32px;
}
.cmp-product-thumb .add-to-basket-lg-container {
  -webkit-transform: rotate(360deg);
  border-style: solid;
  border-width: 0px 70px 70px 0;
  border-color: transparent #F7F7F9 transparent transparent;
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  cursor: pointer;
}
.cmp-product-thumb .add-to-basket-lg-container > i {
  right: -56px;
  top: 11px;
  position: absolute;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.cmp-product-thumb .add-to-basket-lg-container:hover {
  border-color: transparent #FF1743 transparent transparent;
}
.cmp-product-thumb .add-to-basket-lg-container:hover > i {
  color: #fff;
}
.cmp-product-thumb .category-list-view-port {
  display: none;
}
.cmp-product-thumb .thumb-background {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -2px;
  left: -1px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid transparent;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: scaleX(1) scaleY(1);
          transform: scaleX(1) scaleY(1);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.cmp-product-thumb .thumb-inner {
  position: relative;
  height: 100%;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cmp-product-thumb .thumb-image {
  position: relative;
  width: 120px;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}
.cmp-product-thumb .main-image {
  position: relative;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cmp-product-thumb .main-image > noscript, .cmp-product-thumb .main-image a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cmp-product-thumb .main-image .owl-carousel {
  height: 100%;
}
.cmp-product-thumb .main-image .owl-carousel .owl-stage-outer {
  height: 100%;
}
.cmp-product-thumb .main-image .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.cmp-product-thumb .main-image .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.cmp-product-thumb .main-image .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.cmp-product-thumb .special-tags {
  z-index: 100;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  padding: 0.5rem;
}
.cmp-product-thumb .special-tags .special-tag,
.cmp-product-thumb .special-tags .tag,
.cmp-product-thumb .special-tags .badge {
  display: block;
  padding: 0.3em 0.5em 0.2rem;
  font-size: 0.9rem;
  font-weight: 300;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 5px;
}
.cmp-product-thumb .thumb-content {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 120px);
  height: auto;
  padding: 0 0.8rem;
  margin-left: -0.3em;
  background-color: #fff;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.cmp-product-thumb .thumb-title {
  display: block;
  position: relative;
  text-align: left;
  font-weight: 700;
  color: #7a7f7f;
  line-height: 1.1em;
}
.cmp-product-thumb .thumb-meta {
  margin-top: 0.5rem;
  text-align: left;
}
.cmp-product-thumb .thumb-meta .vat-porto-info {
  display: block;
  white-space: nowrap;
  margin-top: 5px;
}
.cmp-product-thumb .crossprice {
  font-size: 0.81em;
  font-weight: 700;
  color: #9498A0;
}
.cmp-product-thumb .price {
  color: #7a7f7f;
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.2rem;
  min-height: 21px;
}
.cmp-product-thumb .category-unit-price {
  font-size: 0.81em;
  color: #9498A0;
}
.cmp-product-thumb .thumb-buy {
  display: block;
}
.cmp-product-thumb .btn-group {
  position: absolute;
  bottom: 0;
  left: calc(120px + 0.8rem);
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
.cmp-product-thumb .mobile-text-only {
  display: none;
}
@media (min-width: 992px) {
  .cmp-product-thumb .btn-group {
    right: 15px;
    position: absolute;
  }
}
@media (max-width: 575.98px) {
  .cmp-product-thumb .btn-group {
    width: 52%;
  }
  .cmp-product-thumb .mobile-icon-right {
    display: none;
  }
  .cmp-product-thumb .vat-porto-info {
    white-space: normal !important;
  }
  .cmp-product-thumb .thumb-image {
    float: left;
  }
}
@media (max-width: 991.98px) {
  .cmp-product-thumb .btn-group {
    margin-top: 5px;
    position: inherit;
    width: 100%;
  }
  .cmp-product-thumb .mobile-text-only {
    display: inline;
    margin-left: -8px;
  }
  .cmp-product-thumb .mobile-width-button {
    width: 100%;
  }
  .cmp-product-thumb .mobile-icon-right {
    float: right;
  }
  .cmp-product-thumb .thumb-title {
    min-height: 32px;
  }
  .cmp-product-thumb .category-list-view-port {
    display: inline;
  }
}
@media (min-width: 576px) {
  .cmp-product-thumb {
    padding: 0;
    margin-bottom: 30px;
    z-index: 1000;
  }
  .cmp-product-thumb .thumb-background {
    display: block;
  }
  .cmp-product-thumb .thumb-scroll-cmd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: center;
    padding: 0.4rem;
  }
  .cmp-product-thumb .thumb-btn-buy {
    min-height: 2rem;
  }
  .cmp-product-thumb .thumb-content {
    padding: 0.8rem;
    width: 100%;
    margin: 0;
  }
  .cmp-product-thumb .btn-group {
    bottom: 2.5rem;
    left: auto;
    right: 0.8rem;
  }
  .cmp-product-thumb .thumb-title {
    font-weight: 400;
    line-height: 1.5em;
  }
  .cmp-product-thumb .thumb-image {
    width: 100%;
  }
  .cmp-product-thumb .img-fluid {
    transition: transform 0.4s cubic-bezier(0, 0, 0.26, 1), opacity 0.3s cubic-bezier(0, 0, 0.26, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.26, 1);
  }
  .cmp-product-thumb:hover {
    z-index: 1000;
  }
  .cmp-product-thumb:hover .img-fluid {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .cmp-product-thumb:hover .owl-nav [class*=owl-] {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .cmp-product-thumb .btn-group {
    bottom: 0.8rem;
  }
  .cmp-product-thumb .btn-group {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
  }
  .cmp-product-thumb:hover .btn-group {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
  }
}

.cmp-product-thumb {
  margin-bottom: 0 !important;
  height: 100% !important;
}
@media (min-width: 768px) {
  .cmp-product-thumb {
    height: auto !important;
  }
}

.category-item {
  position: relative;
}
.category-item__crossselling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.category-item__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
  gap: 10px;
}
.category-item__prices .price-view-port {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-item__prices .price-view-port .crossprice {
  font-size: 13px !important;
  line-height: 1 !important;
  height: auto !important;
  margin-left: 0 !important;
}
@media (min-width: 768px) {
  .category-item__prices .price-view-port .crossprice {
    font-size: 16px !important;
  }
}
.category-item__crossselling-item {
  cursor: pointer;
  margin-right: 5px;
}
.category-item__crossselling-item--last {
  margin-right: 0;
}
.category-item__crossselling-item--last a {
  color: #000;
}
.category-item__img-container {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e9ecef;
  padding: 4px;
}
.category-item__img-container:hover {
  border: 1px solid #FF1743;
}
.category-item__crossselling-img {
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.category-item__shape {
  width: 12px;
}
.category-item__crossseller-mobile {
  margin-top: 5px;
}
.category-item__crossseller-ws {
  height: 18px;
  margin: 8px 0;
  margin-bottom: 0;
  width: 5px;
}
@media (min-width: 768px) {
  .category-item__crossseller-ws {
    margin-bottom: 8px;
  }
}
.category-item__quick-view {
  background: rgba(244, 245, 248, 0.7);
  border: 1px solid #FF1743;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 8px 18px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  bottom: -100px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 700;
}
@media (min-width: 992px) {
  .category-item__quick-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.category-item__quick-view:hover, .category-item__quick-view:focus, .category-item__quick-view:active {
  background: rgb(244, 245, 248);
}
.category-item__variations-indicator {
  line-height: 1.3;
  font-size: 13px;
  color: #000;
  width: 100%;
  text-align: center;
  margin: 8.5px 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .category-item__variations-indicator {
    font-size: 15px;
  }
}
.category-item__variations-indicator div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-item__variations-indicator img {
  width: 18px !important;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .category-item__variations-indicator {
    margin-bottom: 8.5px;
  }
}
.category-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 992px) {
  .category-item__wrapper:hover .category-item__quick-view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 0px;
  }
}
.category-item__wrapper:hover .category-item__image-img {
  -webkit-transform: scale(1.05) !important;
          transform: scale(1.05) !important;
}
@media (min-width: 768px) {
  .category-item__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.category-item__wrapper .feedback-stars-background {
  width: 60px;
}
.category-item__wrapper .feedback-stars-average.feedback-category-view {
  width: 60px;
  height: 20px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  right: 0;
  position: static !important;
  margin-left: auto;
  display: none;
}
@media (min-width: 768px) {
  .category-item__wrapper .feedback-stars-average.feedback-category-view {
    -webkit-transform: unset;
            transform: unset;
    height: 30px;
    position: absolute !important;
    right: 10px;
  }
}
.category-item__wrapper .feedback-stars-average.feedback-category-view:has(*) {
  display: block;
}
.category-item__wrapper .feedback-category-view {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 60px;
}
.category-item__wrapper .feedback-category-view .feedback-category-view {
  width: 60px;
}
.category-item__wrapper .feedback-category-view .feedback-stars-overlay {
  width: 60px;
}
.category-item__wrapper .feedback-category-view .feedback-star {
  font-size: 12px !important;
  width: 12px !important;
}
.category-item__availability {
  display: none;
  line-height: 1.3;
  font-size: 15px;
  color: #979797;
}
@media (min-width: 768px) {
  .category-item__availability {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.category-item__thumbs-swiper {
  width: 120px;
  position: absolute;
  visibility: hidden;
  height: 35px;
  bottom: 10px;
  left: 10px;
  z-index: 10;
}
.category-item__thumbs-swiper .swiper-wrapper {
  width: 120px;
}
.category-item__thumbs-swiper .swiper-wrapper .swiper-slide {
  border-radius: 5px;
  border: 0.5px solid #3F3F3F;
  overflow: hidden;
}
.category-item__thumbs-swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
}
.category-item__thumbs-swiper .swiper-wrapper .swiper-slide.active {
  border: 0.5px solid #FF1743;
}
@media (min-width: 768px) {
  .category-item__thumbs-swiper {
    width: 225px;
  }
  .category-item__thumbs-swiper .swiper-wrapper {
    width: 225px;
  }
}
.category-item__thumbs-img {
  width: 100%;
}
.category-item__image {
  width: 100%;
  position: relative;
}
.category-item__image .owl-dots {
  display: none;
}
.category-item__image .category-item__image-img {
  width: 100% !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.category-item__image .category-item__image-img-1 {
  display: none !important;
}
.category-item__image .category-item__image-img-2 {
  display: none !important;
}
.category-item__image .category-item__image-img-2.d-block {
  display: block !important;
}
.category-item__image .category-item__image-img-0 {
  display: block !important;
}
.category-item__image .category-item__image-img-0.d-none {
  display: none !important;
}
.category-item__image .category-item__image-img:hover {
  -webkit-transform: scale(1.05) !important;
          transform: scale(1.05) !important;
}
.category-item__image:hover {
  /*@include media-breakpoint-up(lg){
      .category-item__image-img{
          &-0{
              //display:none;
          }
          &-1{
              display:block !important;
              position: absolute;
              top: 0;
              left: 0;
              z-index: 9;
              height: auto;//100%;
              padding-bottom: 80px;//43px; // TODO: 107 bei der cat view
              background:white;
          }
      }

      .category-item__thumbs-swiper{
          visibility: visible;
          background: white;
      }
  }*/
}
.category-item__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 10px;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  padding: 10px;
  padding-top: 0;
  z-index: 1;
  background-color: #fff;
}
@media (min-width: 768px) {
  .category-item__content {
    margin-left: 0;
    padding-top: 20px;
  }
}
.category-item__content .prices {
  font-size: 18px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .category-item__content .prices {
    font-size: 22px !important;
  }
}
@media (min-width: 992px) {
  .category-item__content .prices {
    margin-top: 8px;
  }
}
.category-item__content .price {
  font-size: 18px !important;
  line-height: 1 !important;
  color: #000;
  height: 18px;
  font-family: "Yantramanav" !important;
  font-weight: 700;
}
@media (min-width: 768px) {
  .category-item__content .price {
    font-size: 22px !important;
    height: 22px;
  }
}
.category-item__content .crossprice {
  font-size: 18px !important;
  line-height: 1 !important;
  color: #9498a0;
  height: 18px;
  margin-left: 8px;
  font-weight: normal;
}
@media (min-width: 768px) {
  .category-item__content .crossprice {
    font-size: 22px !important;
    height: 22px;
  }
}
.category-item__itemname {
  color: #000;
  width: 100%;
  min-height: 51px;
  line-height: 1.3 !important;
  font-size: 16px !important;
  height: 62px !important;
  max-height: 62px !important;
  margin-top: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .category-item__itemname {
    min-height: 34px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px !important;
    height: 70px !important;
    max-height: 70px !important;
  }
}
.category-item__itemname:hover {
  color: #000;
}

.product-list .category-item__col {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .product-list .category-item__col {
    margin-bottom: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 767.98px) {
  .product-list .category-item__col:nth-child(odd) {
    padding-right: 4px;
  }
}
@media (max-width: 767.98px) {
  .product-list .category-item__col:nth-child(even) {
    padding-left: 4px;
  }
}
.product-list .category-item__itemname {
  overflow: hidden;
}
@media (min-width: 768px) {
  .product-list .category-item__variations-indicator {
    display: block;
  }
}
.product-list .category-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
.product-list .category-item__image {
  width: 100%;
}
.product-list .category-item__image img {
  -webkit-transform: none !important;
          transform: none !important;
}
.product-list .category-item__image img:last-child {
  display: none;
}
.product-list .category-item__image img:first-child {
  display: block;
}
.product-list .category-item__image:hover img:first-child {
  display: none;
}
.product-list .category-item__image:hover img:last-child {
  display: block;
}
@media (min-width: 992px) {
  .product-list .category-item__image:hover .category-item__image-img-1 {
    padding-bottom: 115px;
  }
}
.product-list .category-item__content {
  margin-left: 0;
}

@media (min-width: 992px) {
  .widget-item-list.category__container > .widget-inner > .row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .configurator__row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__item-series > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .content__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__categories--cat-row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .single__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .category__image-text-widget--row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .homepage__category-widget--row > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .single__item-series .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .single__item-series .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .single__item-series .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .single__item-series .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .reset-pwd .widget-item-list.category__container > .widget-inner > h1.h2 > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-12.col-sm-6.col-md-3 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-12.col-sm-6.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-12.col-sm-6.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.content__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-xs-12.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.checkout__header--contact.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-12.col-sm-6.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .is-amazon-error-page #page-body .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .single__item-series .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.category__categories--cat-outer.col-xs-12 .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.category__categories--cat-outer.checkout__header--contact .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.homepage__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__image-text-widget--col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.single__image-text-widget--col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__image-text-widget--col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.category__categories--cat-outer.single__image-text-widget--col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.homepage__category-widget-col .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__category-widget-col.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__category-widget-col.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .homepage__category-widget--inspiration .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__category-widget-col.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.col-md-3.homepage__category-widget-col--big .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__category-widget-col--big.homepage__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__category-widget-col--big.content__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1, .widget-item-list.category__container > .widget-inner > .header-controls > .col-sm-6.homepage__category-widget-col--big.category__categories--cat-outer .cmp-product-thumb .category-item__image:hover .category-item__image-img-1 {
    padding-bottom: 125px;
  }
}

#add-item-to-basket-overlay .cmp .prices {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#add-item-to-basket-overlay .feedback-stars-average {
  right: 50%;
  -webkit-transform: translate(50%, 0) scale(0.7);
          transform: translate(50%, 0) scale(0.7);
}
@media (min-width: 576px) {
  #add-item-to-basket-overlay .feedback-stars-average {
    right: 10px;
    -webkit-transform: unset;
            transform: unset;
  }
}

.filter-price__confirm {
  height: 34px;
}

.cmp-filters .filters-header {
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cmp-filters .filters-header .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cmp-filters .filters-section {
  border-bottom: 1px solid #dcdbd8;
}
.cmp-filters .filters-section:last-of-type {
  border-bottom: none;
}
.cmp-filters .filter-group {
  z-index: 1;
}
.cmp-filters .filter-group .input-unit {
  margin-bottom: 0;
}
.cmp-filters .filter-group .filter-content {
  position: absolute;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.cmp-filters .filters-colors {
  font-size: 0;
  line-height: 0;
}
.cmp-filters .filters-colors input {
  display: none;
}
.cmp-filters .filters-colors input:checked + .color:before, .cmp-filters .filters-colors input:checked + .color:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 80%;
  height: 4px;
  background-color: white;
  -webkit-transform-origin: 0 center;
          transform-origin: 0 center;
  -webkit-transform: rotate(45deg) translate(-55%, -55%);
          transform: rotate(45deg) translate(-55%, -55%);
}
.cmp-filters .filters-colors input:checked + .color:after {
  -webkit-transform: rotate(-45deg) translate(-45%, -45%);
          transform: rotate(-45deg) translate(-45%, -45%);
}
.cmp-filters .filters-colors .color {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
}
.cmp-filters .filters-colors .color[data-color=red] {
  background-color: red;
}
.cmp-filters .filters-colors .color[data-color=green] {
  background-color: green;
}
.cmp-filters .filters-colors .color[data-color=blue] {
  background-color: blue;
}
.cmp-filters .filters-colors .color[data-color=black] {
  background-color: black;
}
.cmp-filters .filters-colors .color[data-color=yellow] {
  background-color: yellow;
}
.cmp-filters .filters-colors .color[data-color=pink] {
  background-color: pink;
}
.cmp-filters .filters-colors .color[data-color=gray] {
  background-color: gray;
}
.cmp-filters .filters-colors .color[data-color=purple] {
  background-color: purple;
}

.navbar-toggler i.fa.fa-caret-down {
  color: #fff;
}

#filterCollapse {
  width: 100%;
}

@media (min-width: 768px) {
  .filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.filter__item {
  width: 100%;
  padding: 10px 0;
}
.filter__item--price {
  -webkit-box-ordinal-group: 100000;
      -ms-flex-order: 99999;
          order: 99999;
}
.filter__item--price .input-group-text {
  display: none;
}
.filter__item--price input[type=number]::-webkit-inner-spin-button,
.filter__item--price input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter__item--price input[type=number] {
  -moz-appearance: textfield;
}
.filter__item--price input {
  outline: none;
  width: 55px;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.26, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.26, 1);
  border: 1px solid #E9EBEF;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  border-radius: 4px;
}
.filter__item--price input:focus {
  background: #f7f7f9;
  border: 1px solid #E9EBEF;
}
.filter__item--price .btn-primary {
  background: white;
  border: 2px solid #222;
  border-radius: 4px;
  color: #222;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.filter__item--price .btn-primary:hover, .filter__item--price .btn-primary:active, .filter__item--price .btn-primary:focus {
  background: white !important;
  color: #222 !important;
  border: 2px solid #FF1743 !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
@media (min-width: 992px) {
  .filter__item--price .row .input-group:nth-child(2), .filter__item--price .configurator__row .input-group:nth-child(2), .filter__item--price .single__item-series .input-group:nth-child(2), .filter__item--price .homepage__categories--cat-row .input-group:nth-child(2), .filter__item--price .content__categories--cat-row .input-group:nth-child(2), .filter__item--price .category__categories--cat-row .input-group:nth-child(2), .filter__item--price .homepage__image-text-widget--row .input-group:nth-child(2), .filter__item--price .single__image-text-widget--row .input-group:nth-child(2), .filter__item--price .category__image-text-widget--row .input-group:nth-child(2), .filter__item--price .homepage__category-widget--row .input-group:nth-child(2), .filter__item--price .reset-pwd h1.h2 .input-group:nth-child(2), .reset-pwd .filter__item--price h1.h2 .input-group:nth-child(2), .filter__item--price .header .input-group:nth-child(2), .filter__item--price .header-controls .input-group:nth-child(2) {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width: 768px) {
  .filter__item {
    max-width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 15px 20px;
  }
}
@media (min-width: 768px) {
  .filter__item:nth-child(odd) {
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .filter__item:nth-child(even) {
    padding-left: 40px;
  }
}
.filter__items-colors {
  margin-bottom: 10px;
}
.filter__items-colors .form-check-label {
  display: none;
}
.filter__items-colors .form-check-input {
  display: none;
}
.filter__items-colors .form-check {
  padding: 0;
  margin-right: 2px !important;
  margin-bottom: 2px !important;
}
.filter__headline {
  line-height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3px 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.filter__headline span {
  margin-right: 10px;
}
.filter__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  font-family: "Yantramanav";
}
.filter__option-prev {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-overflow: ellipsis;
  font-size: 13px;
  font-family: "Yantramanav" !important;
  font-weight: normal;
  color: #6c757d;
  overflow: hidden;
  height: 34px;
  white-space: nowrap;
  text-align: left;
}
.filter__headline-icon {
  width: 12px;
  height: 24px;
  margin-left: 12px;
  fill: #9B9B9B;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.filter__headline-icon--active {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.filter__slider-selection {
  line-height: 17px;
  font-size: 12px;
  color: #9498A0;
  margin-bottom: 10px;
}
.filter__items-selection {
  width: 100%;
  line-height: 17px;
  font-size: 12px;
  color: #9498A0;
  margin-bottom: 10px;
  display: none;
}
.filter__input-overlay {
  height: 30px;
  width: 30px;
  border: 1px solid #E9EBEF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.filter__input-overlay--inner {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
}
.filter__input-overlay.is-active {
  border: 1px solid #FF1743;
}
.filter__wrapper {
  width: 100%;
  margin-left: 0;
  background: white;
  -webkit-box-shadow: 0 0 14px 0 rgba(63, 63, 63, 0.2);
          box-shadow: 0 0 14px 0 rgba(63, 63, 63, 0.2);
  margin-top: -5px;
  z-index: 0;
  border-radius: 6px;
}
.filter__wrapper.isLoading::before {
  opacity: 0 !important;
}
@media (min-width: 768px) {
  .filter__wrapper {
    padding-bottom: 30px !important;
  }
}
.filter__items {
  margin-top: 5px;
}
.filter__items .form-check {
  margin-right: 10px;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter__items .form-check .filter-badge {
  background-color: #e9ecef;
  min-width: 32px;
  text-align: center;
  border-radius: 2px;
  padding: 1px 3px;
}
.filter__items-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: contents;
}
.filter__items-values .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.filter__items-values .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}
.filter__items-values .styled-checkbox + label:before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-top;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: white;
  border: 1px solid #222;
  border-radius: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.filter__items-values .styled-checkbox:hover + label:before {
  background: white;
}
.filter__items-values .styled-checkbox:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.filter__items-values .styled-checkbox:checked + label:before {
  background: white;
}
.filter__items-values .styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.filter__items-values .styled-checkbox:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}
.filter__items-values .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 1px;
  top: 13px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 #FF1743, 4px 0 0 #FF1743, 4px -2px 0 #FF1743, 4px -4px 0 #FF1743, 4px -6px 0 #FF1743, 4px -8px 0 #FF1743;
          box-shadow: 2px 0 0 #FF1743, 4px 0 0 #FF1743, 4px -2px 0 #FF1743, 4px -4px 0 #FF1743, 4px -6px 0 #FF1743, 4px -8px 0 #FF1743;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.selected-filter:not(.reset-all) {
  border-radius: 15px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  text-align: left;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 20px 0 13px;
  margin-right: 5px;
  cursor: pointer;
  border: none;
  font-weight: bold;
  background: #575757;
  color: #fff;
}
.selected-filter:not(.reset-all) span {
  margin-right: 20px;
}
.selected-filter:not(.reset-all) svg {
  position: absolute;
  top: 10px;
  right: 10px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 3;
}

.selected-filter.reset-all {
  width: 188px;
  height: 31px;
  border-radius: 5px;
  border: 2px solid #FF1743;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
  font-family: "Yantramanav";
  color: #000;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 10px;
}
.selected-filter.reset-all:active, .selected-filter.reset-all:focus, .selected-filter.reset-all:hover {
  color: #FF1743;
}

@media (min-width: 768px) {
  .selected-filters {
    margin-top: 70px;
  }
}
.selected-filters hr {
  margin-top: 20px;
  margin-bottom: 10px;
}
.selected-filters__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.category__right-side {
  z-index: 1;
  margin-bottom: 10px;
}
.category__right-side #filterCollapse {
  position: relative !important;
  width: 100%;
}
.category__right-side .filter__wrapper {
  padding: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.category__right-side .filter__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  width: 100%;
  padding: 8px 10px;
  max-width: 100% !important;
  background-color: #f8f9fa;
  margin-bottom: 4px;
  border-radius: 5px;
}
.category__right-side .category__filter-btn {
  margin-bottom: 10px;
}
.category__right-side .selected-filters {
  margin-top: 20px;
  margin-bottom: 40px;
}
.category__right-side .selected-filters__wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.vue-slider {
  padding: 7px 7px !important;
  width: 80% !important;
}
@media (min-width: 992px) {
  .vue-slider {
    width: 95% !important;
  }
}

/* component style */
.vue-slider-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* rail style */
.vue-slider-rail {
  background-color: #E9EBEF;
  border-radius: 15px;
}

/* process style */
.vue-slider-process {
  background-color: #3498db;
  border-radius: 15px;
}

/* mark style */
.vue-slider-mark {
  z-index: 4;
}

.vue-slider-mark:first-child .vue-slider-mark-step, .vue-slider-mark:last-child .vue-slider-mark-step {
  display: none;
}

.vue-slider-mark-step {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.16);
}

.vue-slider-mark-label {
  font-size: 14px;
  white-space: nowrap;
}

/* dot style */
.vue-slider-dot-handle {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #E9EBEF;
  border: 2px solid #3F3F3F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.vue-slider-dot-handle-focus {
  -webkit-box-shadow: 0px 0px 1px 2px rgba(52, 152, 219, 0.36);
          box-shadow: 0px 0px 1px 2px rgba(52, 152, 219, 0.36);
}

.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  background-color: #ccc;
}

.vue-slider-dot-tooltip-inner {
  font-size: 14px;
  white-space: nowrap;
  padding: 2px 5px;
  min-width: 20px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  border-color: #3498db;
  background-color: #3498db;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.vue-slider-dot-tooltip-inner::after {
  content: "";
  position: absolute;
}

.vue-slider-dot-tooltip-inner-top::after {
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-top-color: inherit;
}

.vue-slider-dot-tooltip-inner-bottom::after {
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-bottom-color: inherit;
}

.vue-slider-dot-tooltip-inner-left::after {
  left: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-left-color: inherit;
}

.vue-slider-dot-tooltip-inner-right::after {
  right: 100%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-right-color: inherit;
}

.vue-slider-dot-tooltip-wrapper {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.vue-slider-dot-tooltip-wrapper-show {
  opacity: 1;
}

.filter-headline {
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .filter-headline {
    pointer-events: all;
    cursor: pointer;
    width: 100%;
    background-color: #FF1743;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 12px 13px;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .filter-headline__text {
    color: #fff !important;
  }
  .filter-headline__icon .filter-line {
    background: #fff !important;
  }
}

@media (max-width: 991.98px) {
  #ts_review_sticker {
    display: none;
  }
}

.category__filter {
  position: relative;
}
@media (max-width: 991.98px) {
  .category__filter {
    margin-bottom: 0 !important;
  }
}

.findologic-filter-wrapper {
  display: block;
}
@media (max-width: 991.98px) {
  .findologic-filter-wrapper {
    border-radius: 5px;
    display: block;
    z-index: 1111;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: #fff;
    height: 0;
    overflow: hidden;
  }
}
.findologic-filter-wrapper.open {
  padding: 12px;
  border: 1px solid #D5D7DB;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
  height: unset;
}
.findologic-filter-wrapper .card-columns .card, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child {
  margin-bottom: 0px !important;
}
.findologic-filter-wrapper .card-columns .card .facet-title, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .facet-title, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .facet-title {
  background: #f8f9fa;
  border-radius: 5px;
  padding: 16px 12px 13px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.findologic-filter-wrapper .card-columns .card .facet-title:before, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .facet-title:before, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .facet-title:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12'%3E%3Cpath fill-rule='evenodd' d='M33,367.002127 L38.1466088,362 L33,356.997873 L34.0266956,356 L40.2,362 L34.0266956,368 L33,367.002127 Z' transform='rotate(-180 20.1 184)'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: calc(50% - 6px);
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.findologic-filter-wrapper .card-columns .card .facet-title .h3, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .facet-title .h3, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .facet-title .h3 {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .findologic-filter-wrapper .card-columns .card .facet-title .h3, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .facet-title .h3, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .facet-title .h3 {
    font-size: 18px;
  }
}
.findologic-filter-wrapper .card-columns .card > div:last-child, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child > div:last-child, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child > div:last-child {
  padding: 0px 12px 0px;
  overflow: hidden;
  border: 0px solid #D5D7DB;
  border-radius: 0 0 5px 5px;
  background-color: #f8f9fa;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.findologic-filter-wrapper .card-columns .card > div:last-child > div, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child > div:last-child > div, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child > div:last-child > div {
  padding-top: 16px;
  padding-bottom: 16px;
}
.findologic-filter-wrapper .card-columns .card .form-check, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .form-check, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .form-check {
  padding-left: 0.5rem !important;
}
.findologic-filter-wrapper .card-columns .card .form-check .form-check-input:checked + label, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .form-check .form-check-input:checked + label, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .form-check .form-check-input:checked + label {
  background-color: transparent !important;
}
.findologic-filter-wrapper .card-columns .card .form-check .form-check-label, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .form-check .form-check-label, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .form-check .form-check-label {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .findologic-filter-wrapper .card-columns .card .form-check .form-check-label, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .form-check .form-check-label, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .form-check .form-check-label {
    font-size: 18px !important;
  }
}
.findologic-filter-wrapper .card-columns .card .form-check .form-check-label .filter-badge, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .form-check .form-check-label .filter-badge, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .form-check .form-check-label .filter-badge {
  background: #f8f9fa;
}
.findologic-filter-wrapper .card-columns .card .fl-item-color-tiles-container, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .fl-item-color-tiles-container, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .fl-item-color-tiles-container {
  margin-bottom: 0;
}
.findologic-filter-wrapper .card-columns .card .fl-item-color-tiles-container .fl-item-color-tiles-list, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .fl-item-color-tiles-container .fl-item-color-tiles-list, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .fl-item-color-tiles-container .fl-item-color-tiles-list {
  margin-bottom: 0;
}
.findologic-filter-wrapper .card-columns .card .fl-item-color-tiles-container .fl-color-tile-label, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:first-child .fl-item-color-tiles-container .fl-color-tile-label, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:first-child .fl-item-color-tiles-container .fl-color-tile-label {
  margin-bottom: 0;
}
.findologic-filter-wrapper .card-columns .card:not(.open) > div:last-child, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div:not(.open):first-child > div:last-child, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div:not(.open):first-child > div:last-child {
  height: 0 !important;
}
.findologic-filter-wrapper .card-columns .card.open > div:last-child, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div.open:first-child > div:last-child, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div.open:first-child > div:last-child {
  border-top: 1px solid var(--secondary-grau-20, #D5D7DB);
}
.findologic-filter-wrapper .card-columns .card.open .facet-title, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div.open:first-child .facet-title, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div.open:first-child .facet-title {
  border-radius: 5px 5px 0 0;
}
.findologic-filter-wrapper .card-columns .card.open .facet-title:before, .findologic-filter-wrapper .card-columns .cmp-address-list .items > div.open:first-child .facet-title:before, .cmp-address-list .findologic-filter-wrapper .card-columns .items > div.open:first-child .facet-title:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.findologic-filter-wrapper .fl-item-color-tiles-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.findologic-filter-wrapper .fl-item-color-tiles-list-item {
  margin: 0 !important;
  float: unset !important;
  display: block;
  height: 32px;
  border-radius: 16px;
  overflow: hidden;
  width: 32px;
  border: 1px solid #e9ecef;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.findologic-filter-wrapper .fl-item-color-tiles-list-item:hover {
  border: 1px solid #ff1743;
}
.findologic-filter-wrapper .fl-item-color-tiles-list-item .fl-color-tile-background {
  border: none !important;
}
.findologic-filter-wrapper .fl-item-color-tiles-list-item label {
  border: none !important;
}
.findologic-filter-wrapper .fl-item-color-tiles-list-item img {
  position: static;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: unset;
}
.findologic-filter-wrapper .fl-range-slider-container {
  width: 100%;
}
.findologic-filter-wrapper .fl-range-slider-container .row, .findologic-filter-wrapper .fl-range-slider-container .configurator__row, .findologic-filter-wrapper .fl-range-slider-container .single__item-series, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2, .findologic-filter-wrapper .fl-range-slider-container .header, .findologic-filter-wrapper .fl-range-slider-container .header-controls {
  margin: 0 !important;
}
@media (min-width: 576px) {
  .findologic-filter-wrapper .fl-range-slider-container .row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .single__image-text-widget--col, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .col-md-6, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .homepage__image-text-widget--col, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .header .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header-controls .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .header-controls .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header-controls .single__image-text-widget--col {
    max-width: 50% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
            flex: 0 0 50% !important;
  }
}
.findologic-filter-wrapper .fl-range-slider-container .row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .single__image-text-widget--col:first-child, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .col-md-6:first-child, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .homepage__image-text-widget--col:first-child, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .header .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .header .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .header .single__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .header-controls .col-md-6:first-child, .findologic-filter-wrapper .fl-range-slider-container .header-controls .homepage__image-text-widget--col:first-child, .findologic-filter-wrapper .fl-range-slider-container .header-controls .single__image-text-widget--col:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.findologic-filter-wrapper .fl-range-slider-container .row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .single__image-text-widget--col:last-child, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .col-md-6:last-child, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .homepage__image-text-widget--col:last-child, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .header .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .header .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .header .single__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .header-controls .col-md-6:last-child, .findologic-filter-wrapper .fl-range-slider-container .header-controls .homepage__image-text-widget--col:last-child, .findologic-filter-wrapper .fl-range-slider-container .header-controls .single__image-text-widget--col:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row {
  width: 100%;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-md-9.col-sm-9.col-xs-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-md-3.col-sm-3.col-xs-12.fl-range-slider-submit-btn-container, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.homepage__categories--cat-outer, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.content__categories--cat-outer, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.category__categories--cat-outer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-md-3.col-sm-3.col-xs-12.fl-range-slider-submit-btn-container .btn-primary, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.homepage__categories--cat-outer .btn-primary, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.content__categories--cat-outer .btn-primary, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.category__categories--cat-outer .btn-primary {
  padding: 10px 30px !important;
  float: right;
  margin: 0 auto;
  margin-top: 20px;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .fl-range-slider-submit-btn {
  border-radius: 5px;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .fl-range-slider-submit-btn .fa-check {
  color: #fff !important;
}
@media (min-width: 576px) {
  .findologic-filter-wrapper .fl-range-slider-container .row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .configurator__row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__item-series .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__categories--cat-row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .content__categories--cat-row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__categories--cat-row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__image-text-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .single__image-text-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .category__image-text-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .homepage__category-widget--row .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .reset-pwd h1.h2 .single__image-text-widget--col, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .col-md-6, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .homepage__image-text-widget--col, .reset-pwd .findologic-filter-wrapper .fl-range-slider-container h1.h2 .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .header .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header .single__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header-controls .col-md-6, .findologic-filter-wrapper .fl-range-slider-container .header-controls .homepage__image-text-widget--col, .findologic-filter-wrapper .fl-range-slider-container .header-controls .single__image-text-widget--col {
    max-width: 50% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 50% !important;
            flex: 0 0 50% !important;
  }
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row {
  width: 100%;
  overflow: hidden;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-md-9.col-sm-9.col-xs-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-md-3.col-sm-3.col-xs-12.fl-range-slider-submit-btn-container, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.homepage__categories--cat-outer, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.content__categories--cat-outer, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.category__categories--cat-outer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-md-3.col-sm-3.col-xs-12.fl-range-slider-submit-btn-container .btn-primary, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.homepage__categories--cat-outer .btn-primary, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.content__categories--cat-outer .btn-primary, .findologic-filter-wrapper .fl-range-slider-container .fl-range-slider-row .col-sm-3.col-xs-12.fl-range-slider-submit-btn-container.category__categories--cat-outer .btn-primary {
  padding: 10px 30px !important;
  float: right;
  margin: 0 auto;
  margin-top: 20px;
}
.findologic-filter-wrapper .fl-range-slider-container .noUi-handle {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  background-color: #FF1743;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer !important;
}
.findologic-filter-wrapper .fl-range-slider-container .noUi-handle:before, .findologic-filter-wrapper .fl-range-slider-container .noUi-handle:after {
  content: none !important;
}
.findologic-filter-wrapper .fl-range-slider-container .fl-range-input {
  background-color: #fff;
  border: 0;
  border-radius: 5px !important;
  height: 45px !important;
  text-align: center;
  margin-right: 5px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.selected-filter.reset-all {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  background: white !important;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.selected-filter.reset-all:hover {
  border-color: #FF1743 !important;
}

.maps-component {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

body .cmp-contact {
  border: none !important;
}
body .cmp-contact .re-captcha-container {
  z-index: 1001;
}
body .cmp-contact label {
  overflow: visible !important;
}
body .cmp-contact .jumbotron-sm {
  padding-top: 24px;
  padding-bottom: 24px;
}
body .cmp-contact .jumbotron small {
  color: #FFF;
}
body .cmp-contact .h1 small {
  font-size: 24px;
}
body .cmp-contact .flex-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body .cmp-contact .no-resize {
  resize: none;
}
body .cmp-contact textarea:focus {
  border-color: rgba(0, 0, 0, 0.15);
}
body .cmp-contact .btn-primary {
  background: transparent;
  line-height: 24px;
  border-radius: 5px;
  display: inline-block;
  border: 2px solid #FF1743;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body .cmp-contact .btn-primary i {
  display: none;
}
body .cmp-contact .btn-primary:hover, body .cmp-contact .btn-primary:active, body .cmp-contact .btn-primary:focus {
  border: 2px solid #d4021d;
  color: #000;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
body .cmp-contact .contact-card p.my-0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
body .cmp-contact .contact-card p.contact-address span, body .cmp-contact .contact-card p.contact-vat-number span {
  line-height: 1;
}
body .cmp-contact .contact-card p.contact-address span:not(:nth-child(2)), body .cmp-contact .contact-card p.contact-vat-number span:not(:nth-child(2)) {
  margin-left: 27px;
}
body .cmp-contact .contact-card p.contact-address span.vat-number-field, body .cmp-contact .contact-card p.contact-vat-number span.vat-number-field {
  font-weight: bold;
}
body .cmp-contact .contact-card p span {
  line-height: 1.8;
}
body .cmp-contact .contact-card p a {
  color: #4D4F4D;
  text-decoration: none;
  cursor: pointer;
}
body .cmp-contact .contact-card i {
  vertical-align: baseline;
  margin-right: 5px;
}
body .cmp-contact #contact-map {
  min-height: 300px;
  height: auto;
}
body .cmp-contact #contact-form .input-unit + .error-feedback {
  display: none;
  color: #d9534f;
  font-size: 12px;
  margin-bottom: 15px;
  position: relative;
}
body .cmp-contact #contact-form .input-unit.error {
  margin-bottom: 0;
}
body .cmp-contact #contact-form .input-unit.error + .error-feedback {
  display: block;
}
@media (min-width: 768px) {
  body .cmp-contact #contact-form .input-unit.error {
    margin-bottom: 0;
  }
  body .cmp-contact #contact-form .input-unit.error + .error-feedback {
    margin-bottom: 0;
  }
  body .cmp-contact #contact-form .input-unit.error.input-name-field + .error-feedback {
    margin-bottom: -3px;
  }
}
body .cmp-contact .send-mail i {
  margin-right: 5px;
}

.category-625 .widget-contact-form.contact-form-message {
  background-color: #fff;
  padding: 30px;
  border-radius: 6px;
  margin-top: 0 !important;
  height: 100%;
}
.category-625 .widget-contact-form.contact-form-message .text-right {
  text-align: left !important;
}
.category-625 .widget-contact-form.contact-form-message .btn.btn-primary.btn-lg, .category-625 .widget-contact-form.contact-form-message .btn-primary.btn-lg.single__series-button, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-primary.btn-lg.btn-secondary, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-primary.btn-lg.feedback-info-segment.btn-default, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-primary.btn-lg.btn-secondary, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-primary.btn-lg.feedback-info-segment.btn-default, .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn.btn-primary, .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn-primary.single__series-button, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-group-lg > .btn-primary.btn-secondary, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-group-lg > .btn-primary.feedback-info-segment.btn-default, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn-primary.btn-secondary, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn-primary.feedback-info-segment.btn-default {
  padding: 7px 14px !important;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 14px;
  height: 40px;
  border-radius: 5px;
}
@media (max-width: 991.98px) {
  .category-625 .widget-contact-form.contact-form-message .btn.btn-primary.btn-lg, .category-625 .widget-contact-form.contact-form-message .btn-primary.btn-lg.single__series-button, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-primary.btn-lg.btn-secondary, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-primary.btn-lg.feedback-info-segment.btn-default, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-primary.btn-lg.btn-secondary, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-primary.btn-lg.feedback-info-segment.btn-default, .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn.btn-primary, .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn-primary.single__series-button, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-group-lg > .btn-primary.btn-secondary, .category-625 .widget-contact-form.contact-form-message .feedback-container .btn-group-lg > .btn-primary.feedback-info-segment.btn-default, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn-primary.btn-secondary, .feedback-container .category-625 .widget-contact-form.contact-form-message .btn-group-lg > .btn-primary.feedback-info-segment.btn-default {
    width: 100%;
  }
}
.category-625 .contact__headline {
  margin-bottom: 0 !important;
}
.category-625 .contact__headline h1 {
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 5px 20px;
  background-color: #3f3f3f;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .category-625 .contact__headline h1 {
    line-height: 74px;
    font-size: 24px;
    height: 74px;
    padding: 0 20px;
  }
}
.category-625 .contact__txt, .category-625 .contact__meeting {
  margin-top: 0 !important;
  padding: 30px;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 30px !important;
}
.category-625 .contact__txt p, .category-625 .contact__meeting p {
  margin-bottom: 0;
}
.category-625 .contact__meeting {
  margin-top: 30px !important;
}
@media (min-width: 768px) {
  .category-625 .contact__meeting {
    margin-top: 0 !important;
  }
}
.category-625 .contact__more-info {
  margin-top: 0 !important;
  padding: 30px;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 0px !important;
}
.category-625 .wrapper-main {
  background-color: #e9ebef;
}
.category-625 .widget-background {
  background-color: #e9ebef;
}
.category-625 .footer {
  background-color: #fff;
}

.popper-handle button {
  background-color: #FF1743;
}

.is-ios .login-pwd-reset .input-unit, .is-ios .address-modal .input-unit, .is-ios .bankdata-modal .input-unit, .is-ios .account-password-modal .input-unit, .is-ios .account-email-modal .input-unit, .is-mac .login-pwd-reset .input-unit, .is-mac .address-modal .input-unit, .is-mac .bankdata-modal .input-unit, .is-mac .account-password-modal .input-unit, .is-mac .account-email-modal .input-unit {
  height: 56px !important;
}
.is-ios .login-pwd-reset .input-unit input, .is-ios .address-modal .input-unit input, .is-ios .bankdata-modal .input-unit input, .is-ios .account-password-modal .input-unit input, .is-ios .account-email-modal .input-unit input, .is-mac .login-pwd-reset .input-unit input, .is-mac .address-modal .input-unit input, .is-mac .bankdata-modal .input-unit input, .is-mac .account-password-modal .input-unit input, .is-mac .account-email-modal .input-unit input {
  line-height: 1.1em !important;
  padding: 1.3rem 1rem 0.3rem 1rem !important;
}
.is-ios select[name=salutation], .is-mac select[name=salutation] {
  padding-left: 15px !important;
  padding-top: 20px !important;
}
.is-ios select[name=salutation] + label, .is-mac select[name=salutation] + label {
  padding-left: 8px !important;
  padding-bottom: 15px !important;
  margin-bottom: 15px !important;
}

.reset-pwd {
  max-width: calc(100% - 30px);
}
@media (min-width: 576px) {
  .reset-pwd {
    max-width: 1200px;
  }
}
.reset-pwd h1.h2 {
  line-height: 74px;
  font-family: "Yantramanav";
  font-size: 24px;
  color: #FFFFFF;
  background-color: #FF1743;
  border-radius: 6px 6px 0 0;
  height: 74px;
  padding-left: 20px;
  padding-right: 20px;
}
.reset-pwd form {
  background-color: #fff;
  border-radius: 6px;
  padding: 30px;
}
.reset-pwd .input-unit {
  background-color: #fff;
  border-radius: 5px !important;
  height: 48px;
  line-height: 19px;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  border: 1px solid #D5D7DB;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .reset-pwd .input-unit {
    height: 49px !important;
  }
}
.reset-pwd .input-unit input {
  padding: 1.6rem 1rem 0.3rem 1rem;
  color: #4D4F4D;
  background-color: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 1.2em !important;
  width: 100%;
  font-size: 1em;
  outline: none !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.reset-pwd .input-unit label {
  line-height: 1.3 !important;
  font-size: 13px !important;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-family: "Yantramanav" !important;
}
.reset-pwd .btn-primary {
  line-height: 24px !important;
}
.reset-pwd .btn-primary:active, .reset-pwd .btn-primary:focus {
  background: transparent !important;
  color: #000 !important;
  border-color: #d4021d !important;
}

.login-pwd-reset input {
  height: 100%;
}
.login-pwd-reset .login-container .send-login-btn {
  display: block;
  margin-top: 10px;
  width: 100%;
}
.login-pwd-reset .login-container .send-login-btn i {
  margin-right: 5px;
}
@media (min-width: 576px) {
  .login-pwd-reset .login-container .send-login-btn {
    display: inline-block;
    margin-top: auto;
    width: auto;
  }
}
.login-pwd-reset .reset-pwd-container {
  display: none;
}
.login-pwd-reset .reset-pwd-container .cancel-reset-pwd-btn {
  display: block;
  outline: none;
  margin-bottom: 10px;
}
.login-pwd-reset .reset-pwd-container .send-reset-pwd-btn {
  display: block;
  outline: none;
}
.login-pwd-reset .reset-pwd-container .send-reset-pwd-btn i {
  vertical-align: middle;
  margin-right: 5px;
}
@media (min-width: 576px) {
  .login-pwd-reset .reset-pwd-container .cancel-reset-pwd-btn {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: auto;
  }
  .login-pwd-reset .reset-pwd-container .send-reset-pwd-btn {
    display: inline-block;
  }
}
.login-pwd-reset .input-unit + .error-msg {
  display: none;
  font-size: 12px;
  color: #d9534f;
  margin-bottom: 10px;
}
.login-pwd-reset .input-unit.has-login-error {
  z-index: 1000;
  border-color: #d9534f;
}
.login-pwd-reset .input-unit.has-login-error input {
  color: #d9534f;
}
.login-pwd-reset .input-unit.has-login-error label {
  color: #d9534f;
}
.login-pwd-reset .input-unit.error {
  margin-bottom: 2px;
}
.login-pwd-reset .input-unit.error + .error-msg {
  display: block;
}

.login, .registration {
  margin-top: 0 !important;
  position: relative;
}
.login:before, .registration:before {
  content: "";
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #fff;
}
.login .login-view-title, .login .register-view-title, .registration .login-view-title, .registration .register-view-title {
  line-height: 74px;
  font-weight: bold;
  font-size: 24px;
  height: 74px;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  text-align: left !important;
}
@media (min-width: 768px) {
  .login .login-view-title, .login .register-view-title, .registration .login-view-title, .registration .register-view-title {
    font-size: 30px;
    line-height: 114px;
    height: 114px;
  }
}
@media (min-width: 992px) {
  .login .login-view-title, .login .register-view-title, .registration .login-view-title, .registration .register-view-title {
    line-height: 114px;
    height: 114px;
  }
}
.login .login-view-title:before, .login .register-view-title:before, .registration .login-view-title:before, .registration .register-view-title:before {
  content: "";
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #e9ecef;
  z-index: -1;
}
.login__form-wrapper, .registration__form-wrapper {
  background-color: #fff;
  border-radius: 6px;
  padding: 15px 0;
  height: 100%;
}
@media (min-width: 768px) {
  .login__form-wrapper, .registration__form-wrapper {
    padding: 30px;
  }
}
.login__form-wrapper .amzLoginButton img, .registration__form-wrapper .amzLoginButton img {
  width: 100%;
}
@media (min-width: 576px) {
  .login__form-wrapper .amzLoginButton img, .registration__form-wrapper .amzLoginButton img {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .login__form-wrapper .amzLoginButton img, .registration__form-wrapper .amzLoginButton img {
    width: auto;
    margin-bottom: 0;
  }
}
.login__form-wrapper .input-unit, .registration__form-wrapper .input-unit {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #9498A0;
  height: 48px;
  line-height: 19px;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
}
@supports (-ms-ime-align: auto) {
  .login__form-wrapper .input-unit, .registration__form-wrapper .input-unit {
    height: 48px;
  }
}
.login__form-wrapper .input-unit input, .registration__form-wrapper .input-unit input {
  padding: 1.6rem 1rem 0.3rem 1rem;
}
.login__form-wrapper .input-unit:focus, .registration__form-wrapper .input-unit:focus {
  border: 1px solid #3F3F3F;
}
.login__form-wrapper .input-unit label, .registration__form-wrapper .input-unit label {
  line-height: 1.3 !important;
  font-size: 13px !important;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-family: "Yantramanav";
}
@media (max-width: 767.98px) {
  .login__form-wrapper .login-container .input-unit, .registration__form-wrapper .login-container .input-unit {
    height: 40px;
  }
  .login__form-wrapper .login-container .input-unit input, .registration__form-wrapper .login-container .input-unit input {
    padding: 1.3rem 1rem 0.3rem 1rem;
  }
  .login__form-wrapper .login-container .input-unit label, .registration__form-wrapper .login-container .input-unit label {
    padding: 0.15rem 1rem 0px;
  }
}
.login__form-wrapper .guest-login__button, .registration__form-wrapper .guest-login__button {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  text-align: center;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ff1743;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3 !important;
  font-size: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .login__form-wrapper .guest-login__button, .registration__form-wrapper .guest-login__button {
    font-size: 18px !important;
  }
}
.login__form-wrapper .guest-login__button:hover, .registration__form-wrapper .guest-login__button:hover {
  color: white;
  background: #d4021d;
  border: 2px solid #d4021d;
}
.login__login-headline, .registration__login-headline {
  font-weight: bold;
  text-align: center;
  line-height: normal;
  font-size: 18px;
}
@media (min-width: 768px) {
  .login__login-headline, .registration__login-headline {
    font-size: 22px;
  }
}
.login__checkout-or-line, .registration__checkout-or-line {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ececec;
  margin: 30px 0 20px;
  height: 11px;
  color: #000;
}
.login__checkout-or-line span, .registration__checkout-or-line span {
  background: #fff;
  padding: 0 15px;
  line-height: normal;
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .login__checkout-or-line span, .registration__checkout-or-line span {
    font-size: 22px;
  }
}
.login__textblock, .registration__textblock {
  color: #333333;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .login__textblock, .registration__textblock {
    font-size: 18px;
  }
}
.login__forgot-password, .registration__forgot-password {
  color: #000;
  margin-top: 10px;
  display: inline-block;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .login__forgot-password, .registration__forgot-password {
    font-size: 18px;
  }
}
.login__forgot-password:hover, .registration__forgot-password:hover {
  color: #FF1743;
}
.login hr, .registration hr {
  border-top: 1px solid #ECECEC;
  height: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.login__login-btn, .registration__login-btn {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  text-align: center;
  font-family: "Yantramanav";
  background: #fff;
  padding-left: 50px;
  padding-right: 50px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  margin-top: 10px;
  background: #ff1743;
  color: #fff;
  line-height: 1.3 !important;
  font-size: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .login__login-btn, .registration__login-btn {
    font-size: 18px !important;
  }
}
@media (min-width: 576px) {
  .login__login-btn, .registration__login-btn {
    width: unset;
    margin-top: 0;
  }
}
.login__login-btn:hover, .registration__login-btn:hover {
  border: 2px solid #d4021d;
  background: #d4021d;
}
.login__login-btn i, .registration__login-btn i {
  display: none;
}
.login__guest-btn, .registration__guest-btn {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  height: 40px;
  text-align: center;
  font-family: "Yantramanav";
  color: #000;
  cursor: pointer;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  line-height: 1.3 !important;
  font-size: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .login__guest-btn, .registration__guest-btn {
    font-size: 18px !important;
  }
}
@media (min-width: 576px) {
  .login__guest-btn, .registration__guest-btn {
    margin-top: 0;
  }
}
.login__guest-btn:hover, .registration__guest-btn:hover {
  border: 2px solid #FF1743;
  color: #000;
}
.login__guest-btn i, .registration__guest-btn i {
  display: none;
}
.login__registration-btn, .registration__registration-btn, .reset-pwd .btn-primary {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  text-align: center;
  font-family: "Yantramanav";
  display: block;
  padding-left: 50px;
  padding-right: 50px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ff1743;
  color: #fff;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .login__registration-btn, .registration__registration-btn, .reset-pwd .btn-primary {
    font-size: 18px !important;
  }
}
.login__registration-btn i, .registration__registration-btn i, .reset-pwd .btn-primary i {
  display: none;
}
.login__registration-btn:hover, .login__registration-btn:active, .login__registration-btn:focus, .registration__registration-btn:hover, .reset-pwd .btn-primary:hover, .registration__registration-btn:active, .reset-pwd .btn-primary:active, .registration__registration-btn:focus, .reset-pwd .btn-primary:focus {
  border: 2px solid #d4021d;
  background: #d4021d;
  color: #fff;
}
.login__button-wrapper, .registration__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}
.login__button-wrapper .amazon-login-button, .registration__button-wrapper .amazon-login-button {
  max-width: 100% !important;
  max-height: 40px !important;
}
.login__button-wrapper .amazon-login-button img, .registration__button-wrapper .amazon-login-button img {
  -webkit-transform: scale(0.8) !important;
          transform: scale(0.8) !important;
}
.login__register-btn, .registration__register-btn {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  height: 40px;
  text-align: center;
  font-family: "Yantramanav";
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #FF1743;
  border: 2px solid #FF1743;
  line-height: 1.3 !important;
  font-size: 16px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .login__register-btn, .registration__register-btn {
    font-size: 18px !important;
  }
}
.login__register-btn:hover, .login__register-btn:active, .login__register-btn:focus, .registration__register-btn:hover, .registration__register-btn:active, .registration__register-btn:focus {
  color: #fff;
  background: #d4021d;
  border: 2px solid #d4021d;
}
.login__register-btn i, .registration__register-btn i {
  display: none;
}
.login__advantage--text, .registration__advantage--text {
  line-height: 21px;
  font-size: 14px;
  color: #000;
  margin-left: 30px;
}
.login__advantage--text a, .registration__advantage--text a {
  color: #000;
}
.login__advantage--text span, .registration__advantage--text span {
  line-height: 22px;
  font-weight: 800;
  font-size: 16px;
  font-family: "Yantramanav";
}
.login__advantage-wrapper, .registration__advantage-wrapper {
  background: #fff;
  border-radius: 6px;
  padding: 24px 30px;
  margin-top: 10px;
}
.login__advantage-wrapper--inner, .registration__advantage-wrapper--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login__advantage-wrapper--inner svg, .registration__advantage-wrapper--inner svg {
  width: 40px;
  height: 40px;
}
#guestLogin .modal-content, #resetPwd .modal-content {
  border-radius: 6px;
}
#guestLogin .modal-content .modal-body, #resetPwd .modal-content .modal-body {
  padding: 20px;
}
#guestLogin .modal-content .input-unit, #resetPwd .modal-content .input-unit {
  background-color: #fff;
  height: 48px;
  line-height: 19px;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  border: none;
}
@supports (-ms-ime-align: auto) {
  #guestLogin .modal-content .input-unit, #resetPwd .modal-content .input-unit {
    height: 48px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #guestLogin .modal-content .input-unit, #resetPwd .modal-content .input-unit {
    height: 49px !important;
  }
}
#guestLogin .modal-content .input-unit input, #guestLogin .modal-content .input-unit select, #resetPwd .modal-content .input-unit input, #resetPwd .modal-content .input-unit select {
  padding: 1.6rem 1rem 0.3rem 1rem;
  border: 1px solid #9498A0;
  border-radius: 5px;
}
#guestLogin .modal-content .input-unit input:focus, #guestLogin .modal-content .input-unit select:focus, #resetPwd .modal-content .input-unit input:focus, #resetPwd .modal-content .input-unit select:focus {
  border: 1px solid #3F3F3F;
}
#guestLogin .modal-content .input-unit label, #resetPwd .modal-content .input-unit label {
  line-height: 1.3 !important;
  font-size: 13px !important;
  color: #9498A0;
  text-transform: none;
  font-weight: normal;
  font-family: "Yantramanav";
}
#guestLogin .modal-header, #resetPwd .modal-header {
  background-color: #3f3f3f;
  height: 74px;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  padding-left: 20px;
  padding-right: 30px;
}
#guestLogin .modal-header svg, #resetPwd .modal-header svg {
  fill: white;
  cursor: pointer;
}
#guestLogin .modal-title, #resetPwd .modal-title {
  line-height: 74px;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  margin: 0 !important;
}
#guestLogin .guest-login__button, #resetPwd .guest-login__button {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  text-align: center;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ff1743;
  color: #fff;
}
#guestLogin .guest-login__button:hover, #resetPwd .guest-login__button:hover {
  color: white;
  background: #d4021d;
  border: 2px solid #d4021d;
}
#guestLogin .forgot-password__button, #resetPwd .forgot-password__button {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background: #fff;
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#guestLogin .forgot-password__button:hover, #resetPwd .forgot-password__button:hover {
  color: #000;
  background: #fff;
  border: 2px solid #d4021d;
}
#guestLogin .forgot-password__button--cancel, #resetPwd .forgot-password__button--cancel {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  height: 40px;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background: #fff;
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#guestLogin .forgot-password__button--cancel:hover, #resetPwd .forgot-password__button--cancel:hover {
  border: 2px solid #FF1743;
  color: #000;
}

@media (min-width: 576px) {
  .reduced-padding--left {
    padding-left: 7px;
  }
}
@media (min-width: 576px) {
  .reduced-padding--right {
    padding-right: 7px;
  }
}

@media (min-width: 576px) {
  .increased-padding {
    padding-top: 15px;
  }
}

.category-register .form-check {
  cursor: pointer;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category-register .form-check {
    font-size: 18px !important;
  }
}
.category-register .form-check:hover {
  color: #000 !important;
}
.category-register .form-check span {
  cursor: pointer;
}
.category-register .form-check span:hover {
  color: #000 !important;
  text-decoration: underline;
}
.category-register .form-check-input {
  margin-top: 0.4rem;
}

.login-modal .login-modal-footer {
  padding: 0 20px 20px;
}
.login-modal .login-modal-footer .login-top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E9EBEF;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.login-modal .login-modal-footer .login-top-row .amazon-login-button {
  max-width: 100% !important;
  max-height: 40px !important;
}
.login-modal .login-modal-footer .login-top-row .amazon-login-button img {
  -webkit-transform: scale(0.8) !important;
          transform: scale(0.8) !important;
}
.login-modal .login-modal-footer .login-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-modal .login-modal-footer .login-btn-wrapper .login__login-btn {
  width: 195px;
  margin-top: 0 !important;
  margin-left: 0 !important;
}
.login-modal .login-modal-footer .login-btn-wrapper .login__forgot-password {
  margin-top: 8px;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .login-modal .login-modal-footer .login-btn-wrapper .login__forgot-password {
    font-size: 18px !important;
  }
}
.login-modal .login-modal-footer .register-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-modal .login-modal-footer .register-btn-wrapper > div {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  color: #000000;
}
@media (min-width: 768px) {
  .login-modal .login-modal-footer .register-btn-wrapper > div {
    font-size: 15px;
  }
}
.login-modal .login-modal-footer .register-btn-wrapper .login__register-btn {
  margin: 17px 0 0 !important;
  width: 195px;
  border: 2px solid #000;
  border-radius: 5px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #000;
}

.cmp-hero .hero-category {
  position: relative;
  display: block;
  color: #4D4F4D;
}
.cmp-hero .hero-category .hero-image {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.cmp-hero .hero-category .hero-image.contain {
  background-size: contain;
}
.cmp-hero .hero-category .hero-category-inner {
  position: absolute;
  width: 100%;
}
.cmp-hero .hero-category .hero-category-headline {
  font-weight: 700;
}
.cmp-hero .hero-category .hero-category-cta {
  display: inline-block;
}
.cmp-hero .hero-category .hero-category-cta .fa {
  margin-left: 0.5rem;
}
.cmp-hero .hero-main {
  margin-bottom: 1rem;
}
.cmp-hero .hero-main .carousel-inner > .carousel-item > a > img,
.cmp-hero .hero-main .carousel-inner > .carousel-item > img {
  width: 100%;
}
.cmp-hero .hero-main .carousel-indicators {
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  bottom: auto;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  margin-left: auto;
  width: auto;
  background-color: rgba(0, 0, 0, 0.03);
  text-align: right;
}
.cmp-hero .hero-main .hero-category .img-fluid {
  width: 100%;
}
.cmp-hero .hero-main .hero-category .hero-category-inner {
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.cmp-hero .hero-main .hero-category .hero-category-inner::after {
  display: block;
  clear: both;
  content: "";
}
.cmp-hero .hero-main .hero-category .hero-category-headline {
  display: inline-block;
  padding: 1rem;
  font-size: 1rem;
  float: left;
  margin-bottom: 0;
}
.cmp-hero .hero-main .hero-category .hero-category-cta {
  padding: 1rem;
  border-left: 1px solid #dcdbd8;
  float: right;
}
.cmp-hero .hero-xtras .hero-category {
  margin-bottom: 1rem;
  min-height: 13rem;
  position: relative;
  overflow: hidden;
}
.cmp-hero .hero-xtras .hero-category > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-width: 100%;
  min-height: 100%;
}
.cmp-hero .hero-xtras .hero-category-inner {
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1.5rem;
}
.cmp-hero .hero-xtras .hero-category-headline {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5em;
  text-align: right;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.cmp-hero .hero-xtras .hero-category-cta {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5em;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (min-width: 768px) {
  .cmp-hero .hero-main .hero-category {
    margin-bottom: 0;
  }
  .cmp-hero .hero-main .hero-category-headline {
    padding: 1.5rem;
    font-size: 30px;
  }
  .cmp-hero .hero-main .hero-category-cta {
    padding: 1rem;
  }
  .cmp-hero .hero-xtras {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .cmp-hero .hero-category {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 15rem;
  }
  .cmp-hero .hero-category:nth-last-child(n+2):nth-last-child(-n+2):first-child {
    border-right: 0.5rem solid white;
  }
  .cmp-hero .hero-category:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .hero-category {
    border-left: 0.5rem solid white;
  }
}
@media (min-width: 992px) {
  .cmp-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .cmp-hero .hero-main {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 66%;
            flex: 1 0 66%;
  }
  .cmp-hero .hero-xtras {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 24%;
            flex: 1 0 24%;
  }
  .cmp-hero .hero-category {
    min-height: 0;
  }
  .cmp-hero .hero-category:nth-last-child(n+2):nth-last-child(-n+2):first-child {
    border-right: none;
  }
  .cmp-hero .hero-category:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ .hero-category {
    border-left: none;
  }
}

.component-loading {
  position: relative;
}
.component-loading:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: #f7f7f9;
  border-radius: 1px;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  visibility: hidden;
  z-index: 1;
}
.component-loading.with-icon:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  bottom: 50%;
  right: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fa-spin 1.5s infinite linear;
          animation: fa-spin 1.5s infinite linear;
  color: #7a7f7f;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  visibility: hidden;
  z-index: 10;
}
.component-loading.with-icon.refreshing:after {
  content: "\f021";
}
.component-loading.with-icon.sending:after {
  content: "\f1ce";
  -webkit-animation: fa-spin 1s infinite linear;
          animation: fa-spin 1s infinite linear;
}
.component-loading.isLoading {
  cursor: not-allowed;
}
.component-loading.isLoading:before {
  opacity: 0.5;
  visibility: visible;
}
.component-loading.isLoading:after {
  opacity: 1;
  visibility: visible;
}

/* IE Compatibility */
html.ie .component-loading.with-icon:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 41px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.qty-box .qty-input {
  outline: none;
  height: 100%;
  width: 55px;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.26, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.26, 1);
  font-weight: bold;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  border-radius: 5px 0 0 5px;
}
.qty-box .qty-input:focus {
  background: #f7f7f9;
}
.qty-box .qty-btn-container {
  width: 22px;
  position: relative;
  background: #f4f4f4;
  border: 1px solid #dcdbd8;
  border-left: none;
  border-radius: 0 0.1rem 0.1rem 0;
  overflow: hidden;
}
.qty-box .qty-btn-container .qty-btn {
  width: 100%;
  height: calc(50% - 0.5px);
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.26, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.26, 1);
  border-radius: 0.1rem;
  cursor: pointer;
  border: none;
  background: white;
  position: relative;
}
.qty-box .qty-btn-container .qty-btn.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.qty-box .qty-btn-container .qty-btn:not(.disabled):hover {
  background: rgb(195.8783783784, 194.1891891892, 189.1216216216);
}
.qty-box .qty-btn-container .qty-btn > .qty-sign {
  color: #7a7f7f;
  font-size: 8px;
  position: absolute;
  left: 8px;
  top: 6px;
}
.qty-box .qty-btn-container .qty-btn-seperator {
  height: 1px;
  background: #E9EBEF;
}

.cmp-paginator {
  line-height: 1;
  min-height: calc(1rem + 1rem + 2px);
}

html.ie .cmp-paginator {
  display: block !important;
}

@media (max-width: 575.98px) {
  .history .xs-center {
    float: none !important;
    text-align: center;
  }
}
.cmp-ratings-roll {
  height: 12.6em;
  overflow: auto;
}

.rating-form .input-unit #ratingText {
  width: 100%;
  padding: 0 1rem 1.25rem;
  margin-top: 1.3rem;
  border: 0;
}
.rating-form .input-unit #ratingText:focus {
  outline: none;
}

.order-history-list .order-list > div:nth-child(odd) > div.container-clickable,
.order-history-list .order-item > div:nth-child(odd) > div.container-clickable,
.order-return-history-list .order-list > div:nth-child(odd) > div.container-clickable,
.order-return-history-list .order-item > div:nth-child(odd) > div.container-clickable {
  background: #f7f7f9;
}
.order-history-list .container-header > div,
.order-return-history-list .container-header > div {
  display: inline-block;
  text-align: right;
}
.order-history-list .container-clickable,
.order-return-history-list .container-clickable {
  cursor: pointer;
}
.order-history-list .container-clickable.collapsed .fa-chevron-up,
.order-return-history-list .container-clickable.collapsed .fa-chevron-up {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  top: 2px;
}
.order-history-list .container-clickable .fa-chevron-up,
.order-return-history-list .container-clickable .fa-chevron-up {
  position: absolute;
  left: 1.25rem;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .order-history-list .container-clickable,
  .order-return-history-list .container-clickable {
    text-align: right;
  }
  .order-history-list .container-clickable .row div span:first-child, .order-history-list .container-clickable .configurator__row div span:first-child, .order-history-list .container-clickable .single__item-series div span:first-child, .order-history-list .container-clickable .homepage__categories--cat-row div span:first-child, .order-history-list .container-clickable .content__categories--cat-row div span:first-child, .order-history-list .container-clickable .category__categories--cat-row div span:first-child, .order-history-list .container-clickable .homepage__image-text-widget--row div span:first-child, .order-history-list .container-clickable .single__image-text-widget--row div span:first-child, .order-history-list .container-clickable .category__image-text-widget--row div span:first-child, .order-history-list .container-clickable .homepage__category-widget--row div span:first-child, .order-history-list .container-clickable .header div span:first-child, .order-history-list .container-clickable .header-controls div span:first-child, .order-history-list .container-clickable .reset-pwd h1.h2 div span:first-child, .reset-pwd .order-history-list .container-clickable h1.h2 div span:first-child,
  .order-return-history-list .container-clickable .row div span:first-child,
  .order-return-history-list .container-clickable .configurator__row div span:first-child,
  .order-return-history-list .container-clickable .single__item-series div span:first-child,
  .order-return-history-list .container-clickable .homepage__categories--cat-row div span:first-child,
  .order-return-history-list .container-clickable .content__categories--cat-row div span:first-child,
  .order-return-history-list .container-clickable .category__categories--cat-row div span:first-child,
  .order-return-history-list .container-clickable .homepage__image-text-widget--row div span:first-child,
  .order-return-history-list .container-clickable .single__image-text-widget--row div span:first-child,
  .order-return-history-list .container-clickable .category__image-text-widget--row div span:first-child,
  .order-return-history-list .container-clickable .homepage__category-widget--row div span:first-child,
  .order-return-history-list .container-clickable .header div span:first-child,
  .order-return-history-list .container-clickable .header-controls div span:first-child,
  .order-return-history-list .container-clickable .reset-pwd h1.h2 div span:first-child,
  .reset-pwd .order-return-history-list .container-clickable h1.h2 div span:first-child {
    display: none;
  }
  .order-history-list .container-clickable .icons,
  .order-return-history-list .container-clickable .icons {
    margin-top: -5px;
  }
  .order-history-list .container-clickable .icons .fa,
  .order-return-history-list .container-clickable .icons .fa {
    font-size: 2rem;
    vertical-align: middle;
    margin-bottom: -6px;
  }
}
@media (max-width: 767.98px) {
  .order-history-list .container-clickable .row div span:first-child, .order-history-list .container-clickable .configurator__row div span:first-child, .order-history-list .container-clickable .single__item-series div span:first-child, .order-history-list .container-clickable .homepage__categories--cat-row div span:first-child, .order-history-list .container-clickable .content__categories--cat-row div span:first-child, .order-history-list .container-clickable .category__categories--cat-row div span:first-child, .order-history-list .container-clickable .homepage__image-text-widget--row div span:first-child, .order-history-list .container-clickable .single__image-text-widget--row div span:first-child, .order-history-list .container-clickable .category__image-text-widget--row div span:first-child, .order-history-list .container-clickable .homepage__category-widget--row div span:first-child, .order-history-list .container-clickable .header div span:first-child, .order-history-list .container-clickable .header-controls div span:first-child, .order-history-list .container-clickable .reset-pwd h1.h2 div span:first-child, .reset-pwd .order-history-list .container-clickable h1.h2 div span:first-child,
  .order-return-history-list .container-clickable .row div span:first-child,
  .order-return-history-list .container-clickable .configurator__row div span:first-child,
  .order-return-history-list .container-clickable .single__item-series div span:first-child,
  .order-return-history-list .container-clickable .homepage__categories--cat-row div span:first-child,
  .order-return-history-list .container-clickable .content__categories--cat-row div span:first-child,
  .order-return-history-list .container-clickable .category__categories--cat-row div span:first-child,
  .order-return-history-list .container-clickable .homepage__image-text-widget--row div span:first-child,
  .order-return-history-list .container-clickable .single__image-text-widget--row div span:first-child,
  .order-return-history-list .container-clickable .category__image-text-widget--row div span:first-child,
  .order-return-history-list .container-clickable .homepage__category-widget--row div span:first-child,
  .order-return-history-list .container-clickable .header div span:first-child,
  .order-return-history-list .container-clickable .header-controls div span:first-child,
  .order-return-history-list .container-clickable .reset-pwd h1.h2 div span:first-child,
  .reset-pwd .order-return-history-list .container-clickable h1.h2 div span:first-child {
    text-align: left;
  }
  .order-history-list .container-clickable .fa-chevron-up,
  .order-return-history-list .container-clickable .fa-chevron-up {
    right: 1.15rem;
    top: 0;
    left: auto;
  }
}
.order-history-list .container-middle .item img,
.order-return-history-list .container-middle .item img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}
.order-history-list .container-middle .item:first-child,
.order-return-history-list .container-middle .item:first-child {
  border-top: 0 !important;
}
.order-history-list .container-middle .item .item-description,
.order-return-history-list .container-middle .item .item-description {
  text-align: left;
  vertical-align: middle;
}
.order-history-list .container-middle .order-item .row div:first-child, .order-history-list .container-middle .order-item .configurator__row div:first-child, .order-history-list .container-middle .order-item .single__item-series div:first-child, .order-history-list .container-middle .order-item .homepage__categories--cat-row div:first-child, .order-history-list .container-middle .order-item .content__categories--cat-row div:first-child, .order-history-list .container-middle .order-item .category__categories--cat-row div:first-child, .order-history-list .container-middle .order-item .homepage__image-text-widget--row div:first-child, .order-history-list .container-middle .order-item .single__image-text-widget--row div:first-child, .order-history-list .container-middle .order-item .category__image-text-widget--row div:first-child, .order-history-list .container-middle .order-item .homepage__category-widget--row div:first-child, .order-history-list .container-middle .order-item .header div:first-child, .order-history-list .container-middle .order-item .header-controls div:first-child, .order-history-list .container-middle .order-item .reset-pwd h1.h2 div:first-child, .reset-pwd .order-history-list .container-middle .order-item h1.h2 div:first-child,
.order-return-history-list .container-middle .order-item .row div:first-child,
.order-return-history-list .container-middle .order-item .configurator__row div:first-child,
.order-return-history-list .container-middle .order-item .single__item-series div:first-child,
.order-return-history-list .container-middle .order-item .homepage__categories--cat-row div:first-child,
.order-return-history-list .container-middle .order-item .content__categories--cat-row div:first-child,
.order-return-history-list .container-middle .order-item .category__categories--cat-row div:first-child,
.order-return-history-list .container-middle .order-item .homepage__image-text-widget--row div:first-child,
.order-return-history-list .container-middle .order-item .single__image-text-widget--row div:first-child,
.order-return-history-list .container-middle .order-item .category__image-text-widget--row div:first-child,
.order-return-history-list .container-middle .order-item .homepage__category-widget--row div:first-child,
.order-return-history-list .container-middle .order-item .header div:first-child,
.order-return-history-list .container-middle .order-item .header-controls div:first-child,
.order-return-history-list .container-middle .order-item .reset-pwd h1.h2 div:first-child,
.reset-pwd .order-return-history-list .container-middle .order-item h1.h2 div:first-child {
  border-top: 0 !important;
}
@media (min-width: 768px) {
  .order-history-list .container-middle .order-item,
  .order-return-history-list .container-middle .order-item {
    border-bottom: 0 !important;
  }
}
.order-history-list .container-bottom .address-list span, .order-history-list .container-bottom .address-list strong,
.order-return-history-list .container-bottom .address-list span,
.order-return-history-list .container-bottom .address-list strong {
  display: block;
}

@media (max-width: 767.98px) {
  .order-history-list .container-middle .products {
    border-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .order-history-list .container-middle .products {
    border-bottom: 0 !important;
  }
}
.order-history-list .container-bottom {
  background: #f7f7f9;
}
.order-history-list .container-bottom .button-spacer {
  margin-top: auto;
}
.order-history-list .container-bottom .payment-change-box-item .cannot-change-payment {
  width: 100%;
  margin-bottom: auto;
}
@media (max-width: 767.98px) {
  .order-history-list .container-bottom .button-container {
    margin-top: 0.5rem;
  }
}

.cmp-order-item {
  position: relative;
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #dcdbd8;
}
@media (min-width: 576px) {
  .cmp-order-item .item-name:after {
    content: none !important;
  }
  .cmp-order-item .item-unit-price,
  .cmp-order-item .item-total-price {
    width: auto !important;
    text-align: right;
  }
}
.order-return .row:first-child + hr + div, .order-return .configurator__row:first-child + hr + div, .order-return .single__item-series:first-child + hr + div, .order-return .homepage__categories--cat-row:first-child + hr + div, .order-return .content__categories--cat-row:first-child + hr + div, .order-return .category__categories--cat-row:first-child + hr + div, .order-return .homepage__image-text-widget--row:first-child + hr + div, .order-return .single__image-text-widget--row:first-child + hr + div, .order-return .category__image-text-widget--row:first-child + hr + div, .order-return .homepage__category-widget--row:first-child + hr + div, .order-return .header:first-child + hr + div, .order-return .header-controls:first-child + hr + div, .order-return .reset-pwd h1.h2:first-child + hr + div, .reset-pwd .order-return h1.h2:first-child + hr + div {
  background: white;
  padding: 0 20px;
  border-radius: 6px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .order-return .row:first-child + hr + div, .order-return .configurator__row:first-child + hr + div, .order-return .single__item-series:first-child + hr + div, .order-return .homepage__categories--cat-row:first-child + hr + div, .order-return .content__categories--cat-row:first-child + hr + div, .order-return .category__categories--cat-row:first-child + hr + div, .order-return .homepage__image-text-widget--row:first-child + hr + div, .order-return .single__image-text-widget--row:first-child + hr + div, .order-return .category__image-text-widget--row:first-child + hr + div, .order-return .homepage__category-widget--row:first-child + hr + div, .order-return .header:first-child + hr + div, .order-return .header-controls:first-child + hr + div, .order-return .reset-pwd h1.h2:first-child + hr + div, .reset-pwd .order-return h1.h2:first-child + hr + div {
    padding: 0 40px;
    padding-bottom: 40px;
  }
}
.order-return .btn.btn-primary.btn-medium-large, .order-return .btn-primary.btn-medium-large.single__series-button, .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary, .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary, .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .order-return .btn.btn-primary.float-right.btn-medium-large, .order-return .btn-primary.float-right.btn-medium-large.single__series-button {
  margin-bottom: 10px;
  margin-top: 0;
  background: transparent;
  line-height: 24px !important;
  width: 100%;
}
@media (min-width: 768px) {
  .order-return .btn.btn-primary.btn-medium-large, .order-return .btn-primary.btn-medium-large.single__series-button, .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary, .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary, .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .order-return .btn.btn-primary.float-right.btn-medium-large, .order-return .btn-primary.float-right.btn-medium-large.single__series-button {
    width: unset;
  }
}
.order-return .btn.btn-primary.btn-medium-large i, .order-return .btn-primary.btn-medium-large.single__series-button i, .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary i, .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default i, .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary i, .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default i, .order-return .btn.btn-primary.float-right.btn-medium-large i, .order-return .btn-primary.float-right.btn-medium-large.single__series-button i {
  display: none;
}
.order-return .order-return-item {
  border-bottom: 1px solid #dcdbd8;
  padding: 10px 0px;
  overflow: hidden;
}
.order-return .order-return-item > div.row, .order-return .order-return-item > div.configurator__row, .order-return .order-return-item > div.single__item-series, .order-return .order-return-item > div.homepage__categories--cat-row, .order-return .order-return-item > div.content__categories--cat-row, .order-return .order-return-item > div.category__categories--cat-row, .order-return .order-return-item > div.homepage__image-text-widget--row, .order-return .order-return-item > div.single__image-text-widget--row, .order-return .order-return-item > div.category__image-text-widget--row, .order-return .order-return-item > div.homepage__category-widget--row, .order-return .order-return-item > div.header, .order-return .order-return-item > div.header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
}
.order-return .order-return-item > div.row .order-return-image-container, .order-return .order-return-item > div.configurator__row .order-return-image-container, .order-return .order-return-item > div.single__item-series .order-return-image-container, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container, .order-return .order-return-item > div.header .order-return-image-container, .order-return .order-return-item > div.header-controls .order-return-image-container {
  max-width: 100%;
  width: 100%;
  position: relative;
  position: relative;
  overflow: hidden;
}
.order-return .order-return-item > div.row .order-return-image-container > noscript, .order-return .order-return-item > div.configurator__row .order-return-image-container > noscript, .order-return .order-return-item > div.single__item-series .order-return-image-container > noscript, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container > noscript, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container > noscript, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container > noscript, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container > noscript, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container > noscript, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container > noscript, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container > noscript, .order-return .order-return-item > div.header .order-return-image-container > noscript, .order-return .order-return-item > div.header-controls .order-return-image-container > noscript, .order-return .order-return-item > div.row .order-return-image-container a > img, .order-return .order-return-item > div.configurator__row .order-return-image-container a > img, .order-return .order-return-item > div.single__item-series .order-return-image-container a > img, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container a > img, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container a > img, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container a > img, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container a > img, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container a > img, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container a > img, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container a > img, .order-return .order-return-item > div.header .order-return-image-container a > img, .order-return .order-return-item > div.header-controls .order-return-image-container a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.order-return .order-return-item > div.row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.configurator__row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.single__item-series .order-return-image-container .owl-carousel, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container .owl-carousel, .order-return .order-return-item > div.header .order-return-image-container .owl-carousel, .order-return .order-return-item > div.header-controls .order-return-image-container .owl-carousel {
  height: 100%;
}
.order-return .order-return-item > div.row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.configurator__row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.single__item-series .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.header .order-return-image-container .owl-carousel .owl-stage-outer, .order-return .order-return-item > div.header-controls .order-return-image-container .owl-carousel .owl-stage-outer {
  height: 100%;
}
.order-return .order-return-item > div.row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.configurator__row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.single__item-series .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.header .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage, .order-return .order-return-item > div.header-controls .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.order-return .order-return-item > div.row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.configurator__row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.single__item-series .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.header .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .order-return .order-return-item > div.header-controls .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.order-return .order-return-item > div.row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.configurator__row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.single__item-series .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.homepage__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.content__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.category__categories--cat-row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.homepage__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.single__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.category__image-text-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.homepage__category-widget--row .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.header .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .order-return .order-return-item > div.header-controls .order-return-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.order-return .order-return-item > div.row > .order-return-texts, .order-return .order-return-item > div.configurator__row > .order-return-texts, .order-return .order-return-item > div.single__item-series > .order-return-texts, .order-return .order-return-item > div.homepage__categories--cat-row > .order-return-texts, .order-return .order-return-item > div.content__categories--cat-row > .order-return-texts, .order-return .order-return-item > div.category__categories--cat-row > .order-return-texts, .order-return .order-return-item > div.homepage__image-text-widget--row > .order-return-texts, .order-return .order-return-item > div.single__image-text-widget--row > .order-return-texts, .order-return .order-return-item > div.category__image-text-widget--row > .order-return-texts, .order-return .order-return-item > div.homepage__category-widget--row > .order-return-texts, .order-return .order-return-item > div.header > .order-return-texts, .order-return .order-return-item > div.header-controls > .order-return-texts {
  -ms-flex-item-align: center;
      align-self: center;
}
.order-return .order-return-item > div.row > .order-return-container, .order-return .order-return-item > div.configurator__row > .order-return-container, .order-return .order-return-item > div.single__item-series > .order-return-container, .order-return .order-return-item > div.homepage__categories--cat-row > .order-return-container, .order-return .order-return-item > div.content__categories--cat-row > .order-return-container, .order-return .order-return-item > div.category__categories--cat-row > .order-return-container, .order-return .order-return-item > div.homepage__image-text-widget--row > .order-return-container, .order-return .order-return-item > div.single__image-text-widget--row > .order-return-container, .order-return .order-return-item > div.category__image-text-widget--row > .order-return-container, .order-return .order-return-item > div.homepage__category-widget--row > .order-return-container, .order-return .order-return-item > div.header > .order-return-container, .order-return .order-return-item > div.header-controls > .order-return-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.order-return .order-return-item .order-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.order-return .order-return-item .order-flex .input-group {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 7rem;
}
.order-return .order-return-item .order-flex .max-counter-slash {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 1.3rem;
  margin: 0px 10px;
}
.order-return .order-return-item .order-flex .max-counter-return {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 1.3rem;
}
.order-return .order-return-item .order-return-name {
  position: relative;
  max-height: 4.8em;
  margin-right: -1em;
  padding-right: 1em;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 17px;
  font-size: 12px;
  color: #000;
  width: 100%;
  min-height: 51px;
}
@media (min-width: 768px) {
  .order-return .order-return-item .order-return-name {
    height: 34px;
    max-height: 34px;
    min-height: 34px;
    overflow: hidden;
  }
}
.order-return .order-return-item .order-return-name:hover {
  color: #FF1743;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .order-return .order-return-item .order-return-name:after {
    bottom: 0;
  }
}
.order-return input[type=number] {
  border-left: 1px solid darkgrey;
}
@media (min-width: 768px) {
  .order-return .order-return-name {
    font-size: 1.15rem;
  }
}

.order-return-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.order-return-history-item .order-return-history-image-container {
  height: 80px;
}
.order-return-history-item .col-md-8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cmp-method-list .method-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.cmp-method-list .provider-select-label {
  padding: 8px 48px 8px 8px !important;
}
.cmp-method-list .method-list-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-top: -1px;
  margin-left: -1px;
  border-radius: 3px;
}
.cmp-method-list .method-list-item .content {
  font-family: "Yantramanav";
  padding: 16px 0 !important;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .cmp-method-list .method-list-item .content {
    font-size: 18px !important;
  }
}
.cmp-method-list .method-list-item .content small {
  color: #000 !important;
  font-family: "Yantramanav";
  line-height: 1.3 !important;
  font-size: 13px !important;
}
@media (min-width: 768px) {
  .cmp-method-list .method-list-item .content small {
    font-size: 15px !important;
  }
}
.cmp-method-list .method-list-item > input:disabled ~ label, .cmp-method-list .method-list-item > input:disabled ~ .label {
  opacity: 0.5;
  cursor: not-allowed;
}
.cmp-method-list .method-list-item input {
  display: none;
  -webkit-transition: -webkit-box-shadow 2s;
  transition: -webkit-box-shadow 2s;
  transition: box-shadow 2s;
  transition: box-shadow 2s, -webkit-box-shadow 2s;
}
.cmp-method-list .method-list-item input:checked + label,
.cmp-method-list .method-list-item input:checked + .label {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #3F3F3F;
  cursor: default;
  border-radius: 0px;
}
.cmp-method-list .method-list-item input:checked + label .content,
.cmp-method-list .method-list-item input:checked + .label .content {
  font-family: "Yantramanav";
  font-weight: 700;
}
.cmp-method-list .method-list-item label,
.cmp-method-list .method-list-item .label {
  border: 1px solid #E9EBEF;
  border-radius: 3px;
  cursor: pointer;
  padding: 0.5em;
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 5rem;
}
.cmp-method-list .method-list-item.has-error label, .cmp-method-list .method-list-item.has-error .label {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
  background-color: #FF1743;
}
.cmp-method-list .method-list-item .content,
.cmp-method-list .method-list-item .icon {
  display: inline-block;
  vertical-align: middle;
}
.cmp-method-list .method-list-item .content {
  width: calc(100% - 3.5rem);
  line-height: 17px;
  font-size: 12px;
  color: #000;
}
.cmp-method-list .method-list-item .content small {
  color: #9498A0;
  font-size: 12px;
  line-height: 17px;
}
.cmp-method-list .method-list-item.has-error .content {
  width: 100% !important;
  color: white !important;
}
.cmp-method-list.list .method-list-item:not(:last-child) {
  margin-bottom: 1em;
}
.cmp-method-list.list .content {
  width: calc(100% - 4rem);
  padding-left: 1rem;
  position: relative;
}
.cmp-method-list.list .icon {
  width: 4rem;
}
.cmp-method-list.list .icon img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .cmp-method-list .method-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .cmp-method-list .method-list-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .cmp-method-list.list .method-list-item {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cmp-method-list .method-list-item {
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.payment-method-select .method-list-item label .icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 72px;
  min-width: 72px;
}
@media (min-width: 576px) {
  .payment-method-select .method-list-item label .icon {
    width: 122px;
    min-width: 122px;
  }
}
.payment-method-select .method-list-item label .icon img {
  width: 5rem;
}
.payment-method-select .method-list-item label .content {
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .payment-method-select .method-list-item label .content {
    padding-left: 0;
  }
}
.payment-method-select .method-list-item input[value="6002"] + label .icon img,
.payment-method-select .method-list-item input[value="6011"] + label .icon img,
.payment-method-select .method-list-item input[value="6012"] + label .icon img {
  opacity: 0;
  visibility: hidden;
  width: 72px;
  height: 19px;
}
@media (min-width: 576px) {
  .payment-method-select .method-list-item input[value="6002"] + label .icon img,
  .payment-method-select .method-list-item input[value="6011"] + label .icon img,
  .payment-method-select .method-list-item input[value="6012"] + label .icon img {
    width: 100px;
    height: 26px;
  }
}
.payment-method-select .method-list-item input[value="6002"] + label .icon:after,
.payment-method-select .method-list-item input[value="6011"] + label .icon:after,
.payment-method-select .method-list-item input[value="6012"] + label .icon:after {
  content: "";
  background-repeat: no-repeat;
  width: 72px;
  position: absolute;
  height: 19px;
  left: 0;
  top: 0;
}
@media (min-width: 576px) {
  .payment-method-select .method-list-item input[value="6002"] + label .icon:after,
  .payment-method-select .method-list-item input[value="6011"] + label .icon:after,
  .payment-method-select .method-list-item input[value="6012"] + label .icon:after {
    width: 100px;
    height: 26px;
  }
}
.payment-method-select .method-list-item input[value="6002"] + label .icon:after {
  background-image: url(https://www.paypalobjects.com/webstatic/ppplus/images/paypal-logo-100x26.png);
  background-size: 100%;
}
@media (min-width: 576px) {
  .payment-method-select .method-list-item input[value="6002"] + label .icon:after {
    background-size: auto;
  }
}
.payment-method-select .method-list-item input[value="6011"] + label .icon:after,
.payment-method-select .method-list-item input[value="6012"] + label .icon:after {
  background-image: url(https://www.paypalobjects.com/webstatic/ppplus/images/cc-logo.png);
  background-size: 100%;
  top: 2px;
  height: 21px;
}
@media (min-width: 576px) {
  .payment-method-select .method-list-item input[value="6011"] + label .icon:after,
  .payment-method-select .method-list-item input[value="6012"] + label .icon:after {
    top: 0;
    background-size: 97%;
    height: 28px;
  }
}
.payment-method-select .method-list-item label {
  padding-right: 48px;
}
.payment-method-select .method-list-item input:checked + label:after {
  content: "";
  background-image: url(https://www.paypalobjects.com/webstatic/ppplus/icons/checkmark.png);
  background-repeat: no-repeat;
  background-position: right;
  height: 50px;
  width: 25px;
  right: 12px;
  position: absolute;
}

.widget-provider-select .amazon-pay-button-wrapper {
  position: relative;
  margin: -1.5rem 0 0;
  border-bottom: 1px solid #dfdfdf;
  padding: 0px 0.5rem;
}
.widget-provider-select .amazon-pay-button-wrapper .amazon-pay-button {
  opacity: 0;
  width: 100% !important;
  padding: 21px 0.5rem;
  min-height: 70px;
}
.widget-provider-select .amazon-pay-button-wrapper:hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.widget-provider-select .amazon-pay-button-wrapper:before {
  width: 72px;
  height: 19px;
  background-size: 90%;
  margin: auto;
  background-image: url("../images/icons/amazon-pay.svg");
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
@media (min-width: 576px) {
  .widget-provider-select .amazon-pay-button-wrapper:before {
    width: 100px;
    height: 28px;
    background-size: 100%;
  }
}
.widget-provider-select .amazon-pay-button-wrapper:after {
  content: "Amazon Pay";
  left: 94px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}
@media (min-width: 576px) {
  .widget-provider-select .amazon-pay-button-wrapper:after {
    left: 122px;
  }
}
.widget-provider-select .amazon-pay-button-wrapper img {
  opacity: 0;
  width: 100%;
  height: 100%;
  max-height: unset !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1111;
}

.page-checkout .widget-contact-wish {
  margin-top: 30px;
}
.page-checkout .payment-method-select .cmp-method-list .method-list-item {
  margin-bottom: 0 !important;
}
.page-checkout .payment-method-select .cmp-method-list .method-list-item label, .page-checkout .payment-method-select .cmp-method-list .method-list-item .label {
  border: 1px solid #dfdfdf;
  border-radius: 0;
  border-left: none;
  border-right: none;
  background-color: white;
}
.page-checkout .payment-method-select .cmp-method-list .method-list-item label:hover, .page-checkout .payment-method-select .cmp-method-list .method-list-item .label:hover {
  background-color: #f9f9f9;
}
.page-checkout .payment-method-select .cmp-method-list .method-list-item small {
  display: none;
}
.page-checkout .payment-method-select .cmp-method-list .method-list-item input:checked + label {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #f9f9f9;
  cursor: default;
  border: 1px solid #dfdfdf;
  border-left: none;
  border-right: none;
}
.page-checkout .payment-method-select .cmp-method-list .method-list-item input:checked + label small {
  display: block;
}

.toggle-list-view .fa {
  display: block;
  -webkit-transition: color 200ms;
  transition: color 200ms;
}
.toggle-list-view .fa:nth-of-type(1) {
  color: #FF1743;
  font-size: 1.5rem;
}
.toggle-list-view .fa:nth-of-type(2) {
  color: #9498A0;
  font-size: 1.5rem;
}
.toggle-list-view.grid .fa:nth-of-type(1) {
  color: #9498A0;
}
.toggle-list-view.grid .fa:nth-of-type(2) {
  color: #FF1743;
}

.add-to-wish-list {
  cursor: pointer;
}
.add-to-wish-list i {
  margin-right: 5px;
}
.add-to-wish-list:hover {
  text-decoration: none;
}
.add-to-wish-list:hover i {
  color: #FF1743 !important;
}
.add-to-wish-list.active i {
  color: #d9534f !important;
}

.wishlist {
  margin-top: 40px;
}
.wishlist h1 {
  font-size: 24px !important;
}
@media (min-width: 768px) {
  .wishlist h1 {
    font-size: 30px !important;
  }
}
.wishlist .meta-container-wrapper {
  width: 100%;
}
@media (max-width: 767.98px) {
  .wishlist .meta-container-wrapper > .text-right {
    text-align: start !important;
  }
}
.wishlist .meta-container-wrapper-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wishlist .meta-container-wrapper-inner .item-small-prices strong, .wishlist .meta-container-wrapper-inner .item-small-prices span {
  color: #000000 !important;
}
@media (max-width: 767.98px) {
  .wishlist .meta-container-wrapper-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 16px !important;
  }
}
.wishlist .basket-item-container-right {
  display: block;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .wishlist .basket-item-container-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 12px;
  }
  .wishlist .basket-item-container-right .qty-box-container {
    margin-left: 0 !important;
  }
  .wishlist .basket-item-container-right .qty-box {
    margin-top: 0 !important;
  }
  .wishlist .basket-item-container-right .price-box {
    margin-left: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.wishlist .image-container {
  width: 75px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.wishlist .basket-item {
  margin-bottom: 20px;
}
.wishlist .basket-list-item .item-name, .wishlist .basket-list-item .item-base-price, .wishlist .basket-list-item .item-total-price, .wishlist .basket-list-item .btn-primary {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .wishlist .basket-list-item .item-name, .wishlist .basket-list-item .item-base-price, .wishlist .basket-list-item .item-total-price, .wishlist .basket-list-item .btn-primary {
    font-size: 18px !important;
  }
}
.wishlist .basket-list-item .btn-primary {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.wishlist .basket-list-item .btn-primary i {
  float: none !important;
}
.wishlist .basket-list-item .item-small-prices, .wishlist .basket-list-item .btn.btn-sm.text-danger.p-0, .wishlist .basket-list-item .btn-sm.text-danger.p-0.single__series-button, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.btn-secondary, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.feedback-info-segment.btn-default, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.btn-secondary, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.feedback-info-segment.btn-default, .wishlist .basket-list-item .btn-group-sm > .btn.text-danger.p-0, .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.single__series-button, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.btn-secondary, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.btn-secondary, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default {
  font-size: 13px !important;
  line-height: 1.3 !important;
  color: #3F3F3F !important;
}
@media (min-width: 768px) {
  .wishlist .basket-list-item .item-small-prices, .wishlist .basket-list-item .btn.btn-sm.text-danger.p-0, .wishlist .basket-list-item .btn-sm.text-danger.p-0.single__series-button, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.btn-secondary, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.feedback-info-segment.btn-default, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.btn-secondary, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.feedback-info-segment.btn-default, .wishlist .basket-list-item .btn-group-sm > .btn.text-danger.p-0, .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.single__series-button, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.btn-secondary, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.btn-secondary, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default {
    font-size: 15px !important;
  }
}
.wishlist .basket-list-item .item-small-prices span, .wishlist .basket-list-item .item-small-prices strong, .wishlist .basket-list-item .btn.btn-sm.text-danger.p-0 span, .wishlist .basket-list-item .btn-sm.text-danger.p-0.single__series-button span, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.btn-secondary span, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.feedback-info-segment.btn-default span, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.btn-secondary span, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.feedback-info-segment.btn-default span, .wishlist .basket-list-item .btn-group-sm > .btn.text-danger.p-0 span, .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.single__series-button span, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.btn-secondary span, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default span, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.btn-secondary span, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default span, .wishlist .basket-list-item .btn.btn-sm.text-danger.p-0 strong, .wishlist .basket-list-item .btn-sm.text-danger.p-0.single__series-button strong, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.btn-secondary strong, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.feedback-info-segment.btn-default strong, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.btn-secondary strong, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.feedback-info-segment.btn-default strong, .wishlist .basket-list-item .btn-group-sm > .btn.text-danger.p-0 strong, .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.single__series-button strong, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.btn-secondary strong, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default strong, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.btn-secondary strong, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default strong {
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .wishlist .basket-list-item .item-small-prices span, .wishlist .basket-list-item .item-small-prices strong, .wishlist .basket-list-item .btn.btn-sm.text-danger.p-0 span, .wishlist .basket-list-item .btn-sm.text-danger.p-0.single__series-button span, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.btn-secondary span, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.feedback-info-segment.btn-default span, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.btn-secondary span, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.feedback-info-segment.btn-default span, .wishlist .basket-list-item .btn-group-sm > .btn.text-danger.p-0 span, .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.single__series-button span, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.btn-secondary span, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default span, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.btn-secondary span, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default span, .wishlist .basket-list-item .btn.btn-sm.text-danger.p-0 strong, .wishlist .basket-list-item .btn-sm.text-danger.p-0.single__series-button strong, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.btn-secondary strong, .wishlist .basket-list-item .feedback-container .btn-sm.text-danger.p-0.feedback-info-segment.btn-default strong, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.btn-secondary strong, .feedback-container .wishlist .basket-list-item .btn-sm.text-danger.p-0.feedback-info-segment.btn-default strong, .wishlist .basket-list-item .btn-group-sm > .btn.text-danger.p-0 strong, .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.single__series-button strong, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.btn-secondary strong, .wishlist .basket-list-item .feedback-container .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default strong, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.btn-secondary strong, .feedback-container .wishlist .basket-list-item .btn-group-sm > .text-danger.p-0.feedback-info-segment.btn-default strong {
    font-size: 15px !important;
  }
}
@media (min-width: 768px) {
  .wishlist .basket-list-item .small:last-child > div, .wishlist .basket-list-item .btn-labeled:last-child > div {
    margin-top: -33px;
  }
}
.wishlist .basket-list-item .small > div, .wishlist .basket-list-item .btn-labeled > div, .wishlist .basket-list-item .small > div > span, .wishlist .basket-list-item .btn-labeled > div > span {
  font-size: 14px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .wishlist .basket-list-item .small > div, .wishlist .basket-list-item .btn-labeled > div, .wishlist .basket-list-item .small > div > span, .wishlist .basket-list-item .btn-labeled > div > span {
    font-size: 16px;
  }
}

.wish-list-item {
  border-bottom: 1px solid #dcdbd8;
  padding: 10px 0px;
  overflow: hidden;
}
.wish-list-item > div.row, .wish-list-item > div.configurator__row, .wish-list-item > div.single__item-series, .wish-list-item > div.homepage__categories--cat-row, .wish-list-item > div.content__categories--cat-row, .wish-list-item > div.category__categories--cat-row, .wish-list-item > div.homepage__image-text-widget--row, .wish-list-item > div.single__image-text-widget--row, .wish-list-item > div.category__image-text-widget--row, .wish-list-item > div.homepage__category-widget--row, .wish-list-item > div.header, .wish-list-item > div.header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
}
.wish-list-item > div.row .wish-list-image-container, .wish-list-item > div.configurator__row .wish-list-image-container, .wish-list-item > div.single__item-series .wish-list-image-container, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container, .wish-list-item > div.content__categories--cat-row .wish-list-image-container, .wish-list-item > div.category__categories--cat-row .wish-list-image-container, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container, .wish-list-item > div.header .wish-list-image-container, .wish-list-item > div.header-controls .wish-list-image-container {
  max-width: 100%;
  width: 100%;
  position: relative;
  position: relative;
  overflow: hidden;
}
.wish-list-item > div.row .wish-list-image-container > noscript, .wish-list-item > div.configurator__row .wish-list-image-container > noscript, .wish-list-item > div.single__item-series .wish-list-image-container > noscript, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container > noscript, .wish-list-item > div.content__categories--cat-row .wish-list-image-container > noscript, .wish-list-item > div.category__categories--cat-row .wish-list-image-container > noscript, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container > noscript, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container > noscript, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container > noscript, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container > noscript, .wish-list-item > div.header .wish-list-image-container > noscript, .wish-list-item > div.header-controls .wish-list-image-container > noscript, .wish-list-item > div.row .wish-list-image-container a > img, .wish-list-item > div.configurator__row .wish-list-image-container a > img, .wish-list-item > div.single__item-series .wish-list-image-container a > img, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container a > img, .wish-list-item > div.content__categories--cat-row .wish-list-image-container a > img, .wish-list-item > div.category__categories--cat-row .wish-list-image-container a > img, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container a > img, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container a > img, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container a > img, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container a > img, .wish-list-item > div.header .wish-list-image-container a > img, .wish-list-item > div.header-controls .wish-list-image-container a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.wish-list-item > div.row .wish-list-image-container .owl-carousel, .wish-list-item > div.configurator__row .wish-list-image-container .owl-carousel, .wish-list-item > div.single__item-series .wish-list-image-container .owl-carousel, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container .owl-carousel, .wish-list-item > div.content__categories--cat-row .wish-list-image-container .owl-carousel, .wish-list-item > div.category__categories--cat-row .wish-list-image-container .owl-carousel, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container .owl-carousel, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container .owl-carousel, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container .owl-carousel, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container .owl-carousel, .wish-list-item > div.header .wish-list-image-container .owl-carousel, .wish-list-item > div.header-controls .wish-list-image-container .owl-carousel {
  height: 100%;
}
.wish-list-item > div.row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.configurator__row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.single__item-series .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.content__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.category__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.header .wish-list-image-container .owl-carousel .owl-stage-outer, .wish-list-item > div.header-controls .wish-list-image-container .owl-carousel .owl-stage-outer {
  height: 100%;
}
.wish-list-item > div.row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.configurator__row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.single__item-series .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.content__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.category__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.header .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage, .wish-list-item > div.header-controls .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.wish-list-item > div.row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.configurator__row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.single__item-series .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.content__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.category__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.header .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item, .wish-list-item > div.header-controls .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.wish-list-item > div.row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.configurator__row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.single__item-series .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.homepage__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.content__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.category__categories--cat-row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.homepage__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.single__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.category__image-text-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.homepage__category-widget--row .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.header .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img, .wish-list-item > div.header-controls .wish-list-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.wish-list-item > div.row > .wish-list-texts, .wish-list-item > div.configurator__row > .wish-list-texts, .wish-list-item > div.single__item-series > .wish-list-texts, .wish-list-item > div.homepage__categories--cat-row > .wish-list-texts, .wish-list-item > div.content__categories--cat-row > .wish-list-texts, .wish-list-item > div.category__categories--cat-row > .wish-list-texts, .wish-list-item > div.homepage__image-text-widget--row > .wish-list-texts, .wish-list-item > div.single__image-text-widget--row > .wish-list-texts, .wish-list-item > div.category__image-text-widget--row > .wish-list-texts, .wish-list-item > div.homepage__category-widget--row > .wish-list-texts, .wish-list-item > div.header > .wish-list-texts, .wish-list-item > div.header-controls > .wish-list-texts {
  -ms-flex-item-align: center;
      align-self: center;
}
.wish-list-item > div.row .wish-list-availability, .wish-list-item > div.configurator__row .wish-list-availability, .wish-list-item > div.single__item-series .wish-list-availability, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability, .wish-list-item > div.content__categories--cat-row .wish-list-availability, .wish-list-item > div.category__categories--cat-row .wish-list-availability, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability, .wish-list-item > div.single__image-text-widget--row .wish-list-availability, .wish-list-item > div.category__image-text-widget--row .wish-list-availability, .wish-list-item > div.homepage__category-widget--row .wish-list-availability, .wish-list-item > div.header .wish-list-availability, .wish-list-item > div.header-controls .wish-list-availability {
  line-height: 12px;
  font-size: 12px;
}
.wish-list-item > div.row .wish-list-availability.availability_1, .wish-list-item > div.configurator__row .wish-list-availability.availability_1, .wish-list-item > div.single__item-series .wish-list-availability.availability_1, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_1, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_1, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_1, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_1, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_1, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_1, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_1, .wish-list-item > div.header .wish-list-availability.availability_1, .wish-list-item > div.header-controls .wish-list-availability.availability_1, .wish-list-item > div.row .availability_2, .wish-list-item > div.configurator__row .availability_2, .wish-list-item > div.single__item-series .availability_2, .wish-list-item > div.homepage__categories--cat-row .availability_2, .wish-list-item > div.content__categories--cat-row .availability_2, .wish-list-item > div.category__categories--cat-row .availability_2, .wish-list-item > div.homepage__image-text-widget--row .availability_2, .wish-list-item > div.single__image-text-widget--row .availability_2, .wish-list-item > div.category__image-text-widget--row .availability_2, .wish-list-item > div.homepage__category-widget--row .availability_2, .wish-list-item > div.header .availability_2, .wish-list-item > div.header-controls .availability_2 {
  background-color: inherit;
}
.wish-list-item > div.row .wish-list-availability.availability_3, .wish-list-item > div.configurator__row .wish-list-availability.availability_3, .wish-list-item > div.single__item-series .wish-list-availability.availability_3, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_3, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_3, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_3, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_3, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_3, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_3, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_3, .wish-list-item > div.header .wish-list-availability.availability_3, .wish-list-item > div.header-controls .wish-list-availability.availability_3, .wish-list-item > div.row .availability_4, .wish-list-item > div.configurator__row .availability_4, .wish-list-item > div.single__item-series .availability_4, .wish-list-item > div.homepage__categories--cat-row .availability_4, .wish-list-item > div.content__categories--cat-row .availability_4, .wish-list-item > div.category__categories--cat-row .availability_4, .wish-list-item > div.homepage__image-text-widget--row .availability_4, .wish-list-item > div.single__image-text-widget--row .availability_4, .wish-list-item > div.category__image-text-widget--row .availability_4, .wish-list-item > div.homepage__category-widget--row .availability_4, .wish-list-item > div.header .availability_4, .wish-list-item > div.header-controls .availability_4 {
  background-color: inherit;
}
.wish-list-item > div.row .wish-list-availability.availability_5, .wish-list-item > div.configurator__row .wish-list-availability.availability_5, .wish-list-item > div.single__item-series .wish-list-availability.availability_5, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_5, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_5, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_5, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_5, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_5, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_5, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_5, .wish-list-item > div.header .wish-list-availability.availability_5, .wish-list-item > div.header-controls .wish-list-availability.availability_5 {
  background-color: inherit;
}
.wish-list-item > div.row .wish-list-availability.availability_6, .wish-list-item > div.configurator__row .wish-list-availability.availability_6, .wish-list-item > div.single__item-series .wish-list-availability.availability_6, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_6, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_6, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_6, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_6, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_6, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_6, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_6, .wish-list-item > div.header .wish-list-availability.availability_6, .wish-list-item > div.header-controls .wish-list-availability.availability_6, .wish-list-item > div.row .wish-list-availability.availability_7, .wish-list-item > div.configurator__row .wish-list-availability.availability_7, .wish-list-item > div.single__item-series .wish-list-availability.availability_7, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_7, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_7, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_7, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_7, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_7, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_7, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_7, .wish-list-item > div.header .wish-list-availability.availability_7, .wish-list-item > div.header-controls .wish-list-availability.availability_7, .wish-list-item > div.row .wish-list-availability.availability_8, .wish-list-item > div.configurator__row .wish-list-availability.availability_8, .wish-list-item > div.single__item-series .wish-list-availability.availability_8, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_8, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_8, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_8, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_8, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_8, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_8, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_8, .wish-list-item > div.header .wish-list-availability.availability_8, .wish-list-item > div.header-controls .wish-list-availability.availability_8, .wish-list-item > div.row .wish-list-availability.availability_9, .wish-list-item > div.configurator__row .wish-list-availability.availability_9, .wish-list-item > div.single__item-series .wish-list-availability.availability_9, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_9, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_9, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_9, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_9, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_9, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_9, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_9, .wish-list-item > div.header .wish-list-availability.availability_9, .wish-list-item > div.header-controls .wish-list-availability.availability_9, .wish-list-item > div.row .wish-list-availability.availability_10, .wish-list-item > div.configurator__row .wish-list-availability.availability_10, .wish-list-item > div.single__item-series .wish-list-availability.availability_10, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_10, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_10, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_10, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_10, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_10, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_10, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_10, .wish-list-item > div.header .wish-list-availability.availability_10, .wish-list-item > div.header-controls .wish-list-availability.availability_10 {
  background-color: transparent !important;
}
.wish-list-item > div.row .wish-list-availability.availability_1, .wish-list-item > div.configurator__row .wish-list-availability.availability_1, .wish-list-item > div.single__item-series .wish-list-availability.availability_1, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_1, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_1, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_1, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_1, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_1, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_1, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_1, .wish-list-item > div.header .wish-list-availability.availability_1, .wish-list-item > div.header-controls .wish-list-availability.availability_1 {
  color: #28a745;
}
.wish-list-item > div.row .wish-list-availability.availability_2, .wish-list-item > div.configurator__row .wish-list-availability.availability_2, .wish-list-item > div.single__item-series .wish-list-availability.availability_2, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_2, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_2, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_2, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_2, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_2, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_2, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_2, .wish-list-item > div.header .wish-list-availability.availability_2, .wish-list-item > div.header-controls .wish-list-availability.availability_2, .wish-list-item > div.row .wish-list-availability.availability_3, .wish-list-item > div.configurator__row .wish-list-availability.availability_3, .wish-list-item > div.single__item-series .wish-list-availability.availability_3, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_3, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_3, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_3, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_3, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_3, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_3, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_3, .wish-list-item > div.header .wish-list-availability.availability_3, .wish-list-item > div.header-controls .wish-list-availability.availability_3, .wish-list-item > div.row .wish-list-availability.availability_4, .wish-list-item > div.configurator__row .wish-list-availability.availability_4, .wish-list-item > div.single__item-series .wish-list-availability.availability_4, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_4, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_4, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_4, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_4, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_4, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_4, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_4, .wish-list-item > div.header .wish-list-availability.availability_4, .wish-list-item > div.header-controls .wish-list-availability.availability_4 {
  color: #adb5bd;
}
.wish-list-item > div.row .wish-list-availability.availability_5, .wish-list-item > div.configurator__row .wish-list-availability.availability_5, .wish-list-item > div.single__item-series .wish-list-availability.availability_5, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_5, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_5, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_5, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_5, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_5, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_5, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_5, .wish-list-item > div.header .wish-list-availability.availability_5, .wish-list-item > div.header-controls .wish-list-availability.availability_5, .wish-list-item > div.row .wish-list-availability.availability_6, .wish-list-item > div.configurator__row .wish-list-availability.availability_6, .wish-list-item > div.single__item-series .wish-list-availability.availability_6, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_6, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_6, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_6, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_6, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_6, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_6, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_6, .wish-list-item > div.header .wish-list-availability.availability_6, .wish-list-item > div.header-controls .wish-list-availability.availability_6, .wish-list-item > div.row .wish-list-availability.availability_7, .wish-list-item > div.configurator__row .wish-list-availability.availability_7, .wish-list-item > div.single__item-series .wish-list-availability.availability_7, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_7, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_7, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_7, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_7, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_7, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_7, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_7, .wish-list-item > div.header .wish-list-availability.availability_7, .wish-list-item > div.header-controls .wish-list-availability.availability_7, .wish-list-item > div.row .wish-list-availability.availability_8, .wish-list-item > div.configurator__row .wish-list-availability.availability_8, .wish-list-item > div.single__item-series .wish-list-availability.availability_8, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_8, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_8, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_8, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_8, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_8, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_8, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_8, .wish-list-item > div.header .wish-list-availability.availability_8, .wish-list-item > div.header-controls .wish-list-availability.availability_8 {
  color: #adb5bd;
}
.wish-list-item > div.row .wish-list-availability.availability_9, .wish-list-item > div.configurator__row .wish-list-availability.availability_9, .wish-list-item > div.single__item-series .wish-list-availability.availability_9, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_9, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_9, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_9, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_9, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_9, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_9, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_9, .wish-list-item > div.header .wish-list-availability.availability_9, .wish-list-item > div.header-controls .wish-list-availability.availability_9, .wish-list-item > div.row .wish-list-availability.availability_10, .wish-list-item > div.configurator__row .wish-list-availability.availability_10, .wish-list-item > div.single__item-series .wish-list-availability.availability_10, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability.availability_10, .wish-list-item > div.content__categories--cat-row .wish-list-availability.availability_10, .wish-list-item > div.category__categories--cat-row .wish-list-availability.availability_10, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability.availability_10, .wish-list-item > div.single__image-text-widget--row .wish-list-availability.availability_10, .wish-list-item > div.category__image-text-widget--row .wish-list-availability.availability_10, .wish-list-item > div.homepage__category-widget--row .wish-list-availability.availability_10, .wish-list-item > div.header .wish-list-availability.availability_10, .wish-list-item > div.header-controls .wish-list-availability.availability_10 {
  color: #adb5bd;
}
.wish-list-item > div.row > .wish-list-container, .wish-list-item > div.configurator__row > .wish-list-container, .wish-list-item > div.single__item-series > .wish-list-container, .wish-list-item > div.homepage__categories--cat-row > .wish-list-container, .wish-list-item > div.content__categories--cat-row > .wish-list-container, .wish-list-item > div.category__categories--cat-row > .wish-list-container, .wish-list-item > div.homepage__image-text-widget--row > .wish-list-container, .wish-list-item > div.single__image-text-widget--row > .wish-list-container, .wish-list-item > div.category__image-text-widget--row > .wish-list-container, .wish-list-item > div.homepage__category-widget--row > .wish-list-container, .wish-list-item > div.header > .wish-list-container, .wish-list-item > div.header-controls > .wish-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wish-list-item > div.row > .wish-list-container > .wish-list-price, .wish-list-item > div.configurator__row > .wish-list-container > .wish-list-price, .wish-list-item > div.single__item-series > .wish-list-container > .wish-list-price, .wish-list-item > div.homepage__categories--cat-row > .wish-list-container > .wish-list-price, .wish-list-item > div.content__categories--cat-row > .wish-list-container > .wish-list-price, .wish-list-item > div.category__categories--cat-row > .wish-list-container > .wish-list-price, .wish-list-item > div.homepage__image-text-widget--row > .wish-list-container > .wish-list-price, .wish-list-item > div.single__image-text-widget--row > .wish-list-container > .wish-list-price, .wish-list-item > div.category__image-text-widget--row > .wish-list-container > .wish-list-price, .wish-list-item > div.homepage__category-widget--row > .wish-list-container > .wish-list-price, .wish-list-item > div.header > .wish-list-container > .wish-list-price, .wish-list-item > div.header-controls > .wish-list-container > .wish-list-price {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wish-list-item > div.row > .wish-list-container > .wish-list-remove, .wish-list-item > div.configurator__row > .wish-list-container > .wish-list-remove, .wish-list-item > div.single__item-series > .wish-list-container > .wish-list-remove, .wish-list-item > div.homepage__categories--cat-row > .wish-list-container > .wish-list-remove, .wish-list-item > div.content__categories--cat-row > .wish-list-container > .wish-list-remove, .wish-list-item > div.category__categories--cat-row > .wish-list-container > .wish-list-remove, .wish-list-item > div.homepage__image-text-widget--row > .wish-list-container > .wish-list-remove, .wish-list-item > div.single__image-text-widget--row > .wish-list-container > .wish-list-remove, .wish-list-item > div.category__image-text-widget--row > .wish-list-container > .wish-list-remove, .wish-list-item > div.homepage__category-widget--row > .wish-list-container > .wish-list-remove, .wish-list-item > div.header > .wish-list-container > .wish-list-remove, .wish-list-item > div.header-controls > .wish-list-container > .wish-list-remove {
  margin-left: auto;
  font-size: 1.5rem;
  color: #9498A0;
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wish-list-item > div.row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.configurator__row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.single__item-series > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.homepage__categories--cat-row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.content__categories--cat-row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.category__categories--cat-row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.homepage__image-text-widget--row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.single__image-text-widget--row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.category__image-text-widget--row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.homepage__category-widget--row > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.header > .wish-list-container > .wish-list-remove > i, .wish-list-item > div.header-controls > .wish-list-container > .wish-list-remove > i {
  -ms-flex-item-align: center;
      align-self: center;
}
.wish-list-item > div.row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.configurator__row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.single__item-series > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.homepage__categories--cat-row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.content__categories--cat-row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.category__categories--cat-row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.homepage__image-text-widget--row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.single__image-text-widget--row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.category__image-text-widget--row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.homepage__category-widget--row > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.header > .wish-list-container > .wish-list-remove:hover, .wish-list-item > div.header-controls > .wish-list-container > .wish-list-remove:hover {
  color: #4D4F4D;
}

.wish-list-no-items-transition-enter-active, .wish-list-no-items-transition-leave-active {
  -webkit-transition: margin 0.1s;
  transition: margin 0.1s;
}

.wish-list-no-items-transition-enter, .wish-list-no-items-transition-leave-to {
  margin: 0 !important;
}

.wish-list-item-transition-leave-active {
  -webkit-animation-name: wish-list-item-leaving;
          animation-name: wish-list-item-leaving;
  -webkit-animation-duration: 0.175s;
          animation-duration: 0.175s;
  -webkit-animation-delay: 0.175s;
          animation-delay: 0.175s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes wish-list-item-leaving {
  from {
    max-height: 130px;
    padding: 10px 0;
  }
  to {
    max-height: 0px;
    padding: 0;
    border: none;
  }
}

@keyframes wish-list-item-leaving {
  from {
    max-height: 130px;
    padding: 10px 0;
  }
  to {
    max-height: 0px;
    padding: 0;
    border: none;
  }
}
@media (max-width: 991.98px) {
  .wish-list-item-transition-leave-active > div.row, .wish-list-item-transition-leave-active > div.configurator__row, .wish-list-item-transition-leave-active > div.single__item-series, .wish-list-item-transition-leave-active > div.homepage__categories--cat-row, .wish-list-item-transition-leave-active > div.content__categories--cat-row, .wish-list-item-transition-leave-active > div.category__categories--cat-row, .wish-list-item-transition-leave-active > div.homepage__image-text-widget--row, .wish-list-item-transition-leave-active > div.single__image-text-widget--row, .wish-list-item-transition-leave-active > div.category__image-text-widget--row, .wish-list-item-transition-leave-active > div.homepage__category-widget--row, .wish-list-item-transition-leave-active > div.header, .wish-list-item-transition-leave-active > div.header-controls {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    -webkit-transition: -webkit-transform 200ms cubic-bezier(0, 0, 0.82, 0.1);
    transition: -webkit-transform 200ms cubic-bezier(0, 0, 0.82, 0.1);
    transition: transform 200ms cubic-bezier(0, 0, 0.82, 0.1);
    transition: transform 200ms cubic-bezier(0, 0, 0.82, 0.1), -webkit-transform 200ms cubic-bezier(0, 0, 0.82, 0.1);
  }
}
@media (min-width: 768px) {
  .wish-list-item > div.row .wish-list-availability, .wish-list-item > div.configurator__row .wish-list-availability, .wish-list-item > div.single__item-series .wish-list-availability, .wish-list-item > div.homepage__categories--cat-row .wish-list-availability, .wish-list-item > div.content__categories--cat-row .wish-list-availability, .wish-list-item > div.category__categories--cat-row .wish-list-availability, .wish-list-item > div.homepage__image-text-widget--row .wish-list-availability, .wish-list-item > div.single__image-text-widget--row .wish-list-availability, .wish-list-item > div.category__image-text-widget--row .wish-list-availability, .wish-list-item > div.homepage__category-widget--row .wish-list-availability, .wish-list-item > div.header .wish-list-availability, .wish-list-item > div.header-controls .wish-list-availability {
    font-size: 0.85rem;
  }
}
.wish-list-no-items-label {
  text-align: center;
  margin: 75px 0 100px 0;
  padding-bottom: 40px;
}

.wish-list-name {
  line-height: 17px !important;
  font-size: 12px !important;
  color: #000;
  width: 100%;
  margin-bottom: 0 !important;
}

.basket-preview-wrapper .basket-header-caption {
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .basket-preview-wrapper .basket-header-caption {
    font-size: 30px !important;
  }
}
.basket-preview-wrapper .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-name {
  font-size: 13px !important;
  line-height: 1.3 !important;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .basket-preview-wrapper .basket-list-item .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-name {
    font-size: 15px !important;
  }
}
.basket-preview-wrapper .totals .h3 {
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .basket-preview-wrapper .totals .h3 {
    font-size: 30px !important;
  }
}
.basket-preview-wrapper .totals dt, .basket-preview-wrapper .totals dd {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .basket-preview-wrapper .totals dt, .basket-preview-wrapper .totals dd {
    font-size: 18px !important;
  }
}
.basket-preview-wrapper .totals .btn, .basket-preview-wrapper .totals .single__series-button, .basket-preview-wrapper .totals .feedback-container .btn-secondary, .basket-preview-wrapper .totals .feedback-container .feedback-info-segment.btn-default, .feedback-container .basket-preview-wrapper .totals .btn-secondary, .feedback-container .basket-preview-wrapper .totals .feedback-info-segment.btn-default {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .basket-preview-wrapper .totals .btn, .basket-preview-wrapper .totals .single__series-button, .basket-preview-wrapper .totals .feedback-container .btn-secondary, .basket-preview-wrapper .totals .feedback-container .feedback-info-segment.btn-default, .feedback-container .basket-preview-wrapper .totals .btn-secondary, .feedback-container .basket-preview-wrapper .totals .feedback-info-segment.btn-default {
    font-size: 18px !important;
  }
}

@media (min-width: 1500px) {
  .page-category-item .category__container {
    max-width: 1500px !important;
  }
}
@media (min-width: 1700px) {
  .page-category-item .category__container {
    max-width: 1700px !important;
  }
}

@media (min-width: 768px) {
  #filterCollapse {
    display: block;
  }
}
.page-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-infos .product-count {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .product-list {
    margin-top: 60px;
    padding: 0 15px;
  }
}

.vue-portal-target {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .vue-portal-target {
    margin-top: 40px;
  }
}

/*.trigger-load-more, */
.trigger-load-prev {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  background: white;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #222222;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 20px;
}
.trigger-load-prev:focus, .trigger-load-prev:active, .trigger-load-prev:hover {
  color: #222222;
  border: 2px solid #FF1743;
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

category-item {
  display: block;
  height: 145px;
  width: 100%;
  margin-bottom: 15px;
  background-color: #fff;
}
category-item a {
  padding-top: 100%;
  display: block;
  color: #7a7f7f;
}
category-item a:hover {
  color: #7a7f7f;
}
category-item a span {
  padding: 0.8rem 0.8rem 74px 0.8rem;
  display: block;
}
category-item .fa {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  font-size: 160px;
  text-align: center;
  color: #f7f7f9;
}
@media (min-width: 576px) {
  category-item {
    margin-bottom: 30px;
    height: unset;
  }
}

.lazy {
  display: none;
}

@media (min-width: 576px) {
  .product-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .product-list.grid li {
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .product-list.grid li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 992px) {
  .product-list.grid li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.item-list-frame.loading:not(.blur-effect) > ul {
  display: none;
}

.parallax-img-container {
  height: auto;
  max-width: none;
  position: relative;
  width: 100%;
}
.parallax-img-container .parallax-text-container {
  position: inherit;
}
.parallax-img-container .parallax-text-container h1 {
  margin-bottom: 0;
  word-wrap: break-word;
}
.parallax-img-container .parallax-text-container .category-description {
  word-wrap: break-word;
}
.parallax-img-container .parallax-img-container-inner[style^=background-image] {
  height: 300px;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 576px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] {
    height: 350px;
  }
}
@media (min-width: 768px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] {
    height: 400px;
  }
}
.parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container {
  max-width: 100%;
  position: absolute;
  bottom: 0;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container {
    max-width: 1200px;
  }
}
.parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container h1 {
  color: #fff;
  font-size: 300%;
  text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.75);
  bottom: 0;
  width: 100%;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
@media (min-width: 576px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container h1 {
    font-size: 400%;
    margin: 0 0 1rem;
  }
}
@media (min-width: 768px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container h1 {
    font-size: 500%;
  }
}
.parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container .category-description {
  font-size: 1rem;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 0 0.2em rgba(0, 0, 0, 0.75);
  letter-spacing: 1px;
}
@media (min-width: 576px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container .category-description {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .parallax-img-container .parallax-img-container-inner[style^=background-image] .parallax-text-container .category-description {
    font-size: 2rem;
  }
}

/* IOS compatibility */
html.ios .parallax-img-container .parallax-img-container-inner[style^=background-image] {
  background-size: contain;
}

.page-category #vue-app {
  background: white;
}

.list-item-carousel .owl-single-item-nav {
  position: absolute;
}
.list-item-carousel .owl-single-item-nav.left {
  left: 20px;
}
.list-item-carousel .owl-single-item-nav.right {
  right: 20px;
}
.list-item-carousel .owl-single-item-nav.right, .list-item-carousel .owl-single-item-nav.left {
  background-image: none;
  height: 45px;
  width: 45px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #3f3f3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.list-item-carousel .owl-single-item-nav.right svg, .list-item-carousel .owl-single-item-nav.left svg {
  width: 7px;
  height: 12px;
  fill: white;
}
.list-item-carousel .owl-single-item-nav.right:hover, .list-item-carousel .owl-single-item-nav.left:hover {
  opacity: 1;
}
.list-item-carousel .owl-single-item-nav.right svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.list-item-carousel .owl-dots {
  display: none;
}
.list-item-carousel .category-item__image-img-1 {
  background: white;
  height: 100% !important;
}
.list-item-carousel .owl-item {
  padding: 5px 5px 20px 5px;
}
.list-item-carousel .feedback-category-view {
  position: absolute;
  bottom: 0;
  width: 60px;
  -webkit-transform: scale(0.7) translate(50%, 0);
          transform: scale(0.7) translate(50%, 0);
  right: 50%;
}
@media (min-width: 576px) {
  .list-item-carousel .feedback-category-view {
    -webkit-transform: unset;
            transform: unset;
    right: 10px;
  }
}
.list-item-carousel .feedback-category-view .feedback-stars-overlay .feedback-star {
  color: #F9B900;
}
.list-item-carousel .feedback-category-view .feedback-category-view {
  width: 60px;
}
.list-item-carousel .feedback-category-view .feedback-stars-overlay {
  width: 60px;
}
.list-item-carousel .feedback-category-view .feedback-star {
  font-size: 12px !important;
  width: 12px !important;
}

.widget-item-list .owl-stage-outer {
  height: auto !important;
}

.page-search .cmp-paginator {
  margin-bottom: 40px;
}

.category__controls-select {
  border: 1px solid #D5D7DB !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__controls-select {
    font-size: 15px !important;
  }
}
@media (min-width: 992px) {
  .category__controls-wrapper {
    width: 100%;
    padding: 0 15px;
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}
.category__controls-wrapper .breadcrumb {
  display: none;
}
@media (min-width: 992px) {
  .category__controls-wrapper .breadcrumb {
    display: block;
  }
}
.category__wrapper {
  background-color: #E9EBEF;
  padding-top: 60px;
  padding-bottom: 80px;
}
.category__categories--cat-row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.category-swiper__content {
  border-bottom: 1px solid black;
  background-color: rgba(159, 151, 141, 0.9) !important;
  padding-bottom: 30px !important;
}
@media (min-width: 768px) {
  .category-swiper__content {
    border-bottom: none;
    padding: 30px !important;
  }
}
@media (min-width: 992px) {
  .category-swiper__content {
    padding: 50px !important;
  }
}
@media (min-width: 768px) {
  .category-swiper__content--inner {
    max-width: 85% !important;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .category-swiper__content--inner {
    margin-top: 60px;
  }
}
.category-swiper__content--inner a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.category-swiper__content--inner a:hover {
  color: #FF1743;
  text-decoration: none;
}
.category__hr {
  height: 0px;
  border-top: 2px solid #E9EBEF;
}
.category__seo {
  background: #fff;
  padding-top: 60px;
}
.category__seo h2 {
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  font-family: "Yantramanav";
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .category__seo h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .category__seo h2 {
    margin-top: 40px;
  }
}
.category__seo ul {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .category__seo ul {
    font-size: 18px;
  }
}
.category__seo p {
  color: #000;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .category__seo p {
    font-size: 18px;
  }
}
.category__seo p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .category__seo {
    padding-top: 30px;
  }
}
.category__seo-text, .category__series-text {
  line-height: 21px;
  font-size: 14px;
  color: #000;
  margin-bottom: 30px;
}
.category__seo-text:last-child, .category__series-text:last-child {
  margin-bottom: 0;
}
.category__seo-headline, .category__series-headline {
  line-height: 33px;
  font-weight: bold;
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
  font-family: "Yantramanav";
}
@media (min-width: 992px) {
  .category__seo-headline, .category__series-headline {
    margin-top: 40px;
  }
}
.category__series {
  background: #fff;
}
.category__series-img {
  margin-bottom: 10px;
}
.category__series-img img {
  border-radius: 4px;
}
@media (min-width: 992px) {
  .category__series-headline {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .category__series-text {
    margin-bottom: 0 !important;
  }
}
.category__series-button-wrapper {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .category__series-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .category__series--right {
    margin-left: 14px;
  }
}
.category__image-text-widget {
  background: white;
  padding-top: 60px !important;
  padding-bottom: 0 !important;
}
@media (min-width: 768px) {
  .category__image-text-widget {
    padding-bottom: 60px !important;
  }
}
@media (min-width: 768px) {
  .category__image-text-widget--content {
    margin-top: 0 !important;
  }
}
@media (min-width: 768px) {
  .category__image-text-widget--row {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .category__image-text-widget--row {
    margin-bottom: 0;
  }
}
.category__teaser {
  overflow: hidden;
}
.category__teaser--static .col-lg-7 {
  min-height: 200px;
  background-size: cover;
}
@media (min-width: 992px) {
  .category__teaser--static .col-lg-7 {
    min-height: 430px;
  }
}
.category__teaser--static .col-lg-5 {
  background-color: #575757;
}
.category__teaser--static .category__teaser-text {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .category__teaser--static .category__teaser-text {
    padding: 60px 20px 80px 80px;
    max-width: 510px;
  }
}
.category__teaser--static .category__teaser-text h1 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  font-size: 26px;
}
.category__teaser--static .category__teaser-text p {
  color: #fff;
}
.category__teaser-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.category__teaser-img:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #3f3f3f;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .category__teaser-img {
    height: 350px;
  }
}
.category__teaser-text {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  margin-top: 30px;
}
.category__teaser-text img {
  width: 100%;
}
.category__teaser-text h2 {
  font-weight: 700;
  color: #000000;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  line-height: normal;
  font-size: 24px;
}
@media (min-width: 768px) {
  .category__teaser-text h2 {
    font-size: 30px;
  }
}
.category__teaser-text p {
  margin-top: 20px;
  color: #3f3f3f;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .category__teaser-text p {
    font-size: 18px;
  }
}
.category__teaser-headline {
  text-align: center;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  word-break: break-word;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  line-height: normal;
  font-size: 34px;
}
@media (min-width: 768px) {
  .category__teaser-headline {
    font-size: 44px;
  }
}
.category__teaser-headline span {
  font-weight: 300;
}
.category__teaser-button, .single__back-button {
  background: transparent !important;
  color: #212529 !important;
  border-radius: 5px;
  display: inline-block;
  border: 2px solid #212529;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  line-height: 36px;
  font-family: "Yantramanav";
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 10px;
  margin-bottom: 10px;
}
.category__teaser-button i, .single__back-button i {
  margin-right: 5px;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .category__teaser-button i, .single__back-button i {
    margin-right: 20px;
  }
}
@media (min-width: 768px) {
  .category__teaser-button, .single__back-button {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.category__teaser-button:hover, .single__back-button:hover {
  border: 2px solid #FF1743;
}
.category__teaser-sub, .single__tab-pane--white, .single__tab-pane--dark {
  background: #e9ebef;
  padding-top: 30px;
  padding-bottom: 50px;
  position: relative;
}
.category__teaser-sub.less-padding, .less-padding.single__tab-pane--white, .less-padding.single__tab-pane--dark {
  padding-top: 0px;
  padding-bottom: 0px;
}
.category__teaser-sub.no-padding , .no-padding .single__tab-pane--white, .no-padding .single__tab-pane--dark {
  padding-top: 0px;
  padding-bottom: 0px;
}
.category__teaser-sub--pbt-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.category__teaser-sub-cats {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px;
  position: absolute;
  top: -95px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 768px) {
  .category__teaser-sub-cats {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (min-width: 992px) {
  .category__teaser-sub-cats {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (min-width: 1200px) {
  .category__teaser-sub-cats {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.category__teaser-sub-cat {
  background-color: #fff;
  border: 1px solid #D5D7DB;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(50% - 8px);
  margin: 4px 4px 4px 4px;
  position: relative;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media (min-width: 768px) {
  .category__teaser-sub-cat {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    margin-bottom: 0;
    width: 170px;
    height: 130px;
  }
}
@media (min-width: 992px) {
  .category__teaser-sub-cat {
    height: 125px;
  }
}
.category__teaser-sub-cat:hover {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1);
}
.category__teaser-sub-cat-img {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.category__teaser-sub-cat-img img {
  max-width: 45px;
}
.category__teaser-sub-cat-name {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 68px;
  padding: 0 8px;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__teaser-sub-cat-name {
    font-size: 18px !important;
  }
}
@media (min-width: 576px) {
  .category__teaser-sub-cat-name {
    max-width: 135px;
  }
}
@media (min-width: 992px) {
  .category__teaser-sub-cat-name {
    max-width: unset;
  }
}
.category__teaser-sub-cat-name a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__teaser-sub-cat-name a {
    font-size: 18px !important;
  }
}
.category__teaser-sub-cat-name a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.category__serie-img-tiles .list-unstyled li {
  font-size: 16px;
}
@media (min-width: 768px) {
  .category__serie-img-tiles .list-unstyled li {
    font-size: 18px;
  }
}
.category__serie-img-tiles .col-md-4, .category__serie-img-tiles .col-md-3, .category__serie-img-tiles .homepage__categories--cat-outer, .category__serie-img-tiles .content__categories--cat-outer, .category__serie-img-tiles .category__categories--cat-outer {
  position: relative;
  padding-bottom: 20px;
}
.category__serie-img-tiles .col-md-4:hover > div:first-child, .category__serie-img-tiles .col-md-3:hover > div:first-child, .category__serie-img-tiles .homepage__categories--cat-outer:hover > div:first-child, .category__serie-img-tiles .content__categories--cat-outer:hover > div:first-child, .category__serie-img-tiles .category__categories--cat-outer:hover > div:first-child {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
}
.category__serie-img-tiles .col-md-4:hover .category__serie-img-tiles-button, .category__serie-img-tiles .col-md-3:hover .category__serie-img-tiles-button, .category__serie-img-tiles .homepage__categories--cat-outer:hover .category__serie-img-tiles-button, .category__serie-img-tiles .content__categories--cat-outer:hover .category__serie-img-tiles-button, .category__serie-img-tiles .category__categories--cat-outer:hover .category__serie-img-tiles-button {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
}
.category__serie-img-tiles .col-md-4 > div:first-child, .category__serie-img-tiles .col-md-3 > div:first-child, .category__serie-img-tiles .homepage__categories--cat-outer > div:first-child, .category__serie-img-tiles .content__categories--cat-outer > div:first-child, .category__serie-img-tiles .category__categories--cat-outer > div:first-child {
  border: 1px solid #d5d7db;
  border-radius: 8px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.category__serie-img-tiles img {
  padding: 10px;
}
.category__serie-img-tiles-button {
  background-color: #3F3F3F;
  color: #fff;
  border: 2px solid #3F3F3F;
  border-radius: 5px;
  font-weight: 700;
  padding: 6px 16px;
  margin: 8px 0 24px 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 768px) {
  .category__serie-img-tiles-button {
    font-size: 22px;
  }
}
.category__serie-img-tiles-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.category__serie-img-tiles-button:hover {
  color: #fff;
  border: 2px solid #FF1743;
}
.category__serie-img-tiles .homepage__categories--cat-image img, .category__serie-img-tiles .content__categories--cat-image img, .category__serie-img-tiles .category__categories--cat-image img {
  padding: 0;
  margin-bottom: 8px;
}
.category__serie-img-tiles .homepage__categories--cat-name, .category__serie-img-tiles .content__categories--cat-name, .category__serie-img-tiles .category__categories--cat-name {
  background-color: #3F3F3F !important;
  border: none !important;
  border-radius: 5px;
  font-size: 16px !important;
  font-weight: 700;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.category__serie-img-tiles .homepage__categories--cat:hover, .category__serie-img-tiles .content__categories--cat:hover, .category__serie-img-tiles .category__categories--cat:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.category__serie-img-tiles .homepage__categories--cat:hover .homepage__categories--cat-name, .category__serie-img-tiles .homepage__categories--cat:hover .content__categories--cat-name, .category__serie-img-tiles .content__categories--cat:hover .homepage__categories--cat-name, .category__serie-img-tiles .content__categories--cat:hover .content__categories--cat-name, .category__serie-img-tiles .category__categories--cat:hover .homepage__categories--cat-name, .category__serie-img-tiles .category__categories--cat:hover .content__categories--cat-name, .category__serie-img-tiles .homepage__categories--cat:hover .category__categories--cat-name, .category__serie-img-tiles .content__categories--cat:hover .category__categories--cat-name, .category__serie-img-tiles .category__categories--cat:hover .category__categories--cat-name {
  background-color: #FF1743 !important;
}
@media (min-width: 768px) {
  .category__serie-text {
    padding: 40px 0;
  }
}
.category__serie-text h2 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .category__serie-text h2 {
    font-size: 30px;
  }
}
.category__serie-text p, .category__serie-text li {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 1.3 !important;
  color: #000000;
}
@media (min-width: 768px) {
  .category__serie-text p, .category__serie-text li {
    font-size: 18px !important;
  }
}
.category__serie-text svg, .category__serie-text path {
  fill: #000000;
}
.category__serie-text a {
  color: inherit;
  text-decoration: underline;
}
.category__serie-img-cols {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .category__serie-img-cols {
    padding-top: 80px;
  }
}
.category__serie-img-cols .homepage__seo--text p {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__serie-img-cols .homepage__seo--text p {
    font-size: 18px !important;
  }
}
.category__serie-img-cols a.homepage__image-text-widget--button, .category__serie-img-cols .history__details-button + a.btn-primary, .category__serie-img-cols .history__change-payment-button + a.btn-primary, .category__serie-img-cols .feedback-container a[href="#login"], .feedback-container .category__serie-img-cols a[href="#login"], .category__serie-img-cols .feedback-container a.btn-primary, .feedback-container .category__serie-img-cols a.btn-primary, .category__serie-img-cols a.single__image-text-widget--button, .category__serie-img-cols .checkout__header--back a, .checkout__header--back .category__serie-img-cols a, .category__serie-img-cols a#contact-modal__send, .category__serie-img-cols .order-return a.btn.btn-primary.btn-medium-large, .category__serie-img-cols .order-return a.btn-primary.btn-medium-large.single__series-button, .category__serie-img-cols .order-return .feedback-container a.btn-primary.btn-medium-large.btn-secondary, .category__serie-img-cols .order-return .feedback-container a.btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .category__serie-img-cols .order-return a.btn-primary.btn-medium-large.btn-secondary, .feedback-container .category__serie-img-cols .order-return a.btn-primary.btn-medium-large.feedback-info-segment.btn-default, .order-return .category__serie-img-cols a.btn.btn-primary.btn-medium-large, .order-return .category__serie-img-cols a.btn-primary.btn-medium-large.single__series-button, .order-return .category__serie-img-cols .feedback-container a.btn-primary.btn-medium-large.btn-secondary, .order-return .category__serie-img-cols .feedback-container a.btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .order-return .category__serie-img-cols a.btn-primary.btn-medium-large.btn-secondary, .feedback-container .order-return .category__serie-img-cols a.btn-primary.btn-medium-large.feedback-info-segment.btn-default {
  background-color: transparent !important;
  color: #000 !important;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.category__serie-img-cols a.homepage__image-text-widget--button:hover, .category__serie-img-cols .history__details-button + a.btn-primary:hover, .category__serie-img-cols .history__change-payment-button + a.btn-primary:hover, .category__serie-img-cols .feedback-container a[href="#login"]:hover, .feedback-container .category__serie-img-cols a[href="#login"]:hover, .category__serie-img-cols .feedback-container a.btn-primary:hover, .feedback-container .category__serie-img-cols a.btn-primary:hover, .category__serie-img-cols a.single__image-text-widget--button:hover, .category__serie-img-cols .checkout__header--back a:hover, .checkout__header--back .category__serie-img-cols a:hover, .category__serie-img-cols a#contact-modal__send:hover, .category__serie-img-cols .order-return a.btn.btn-primary.btn-medium-large:hover, .category__serie-img-cols .order-return a.btn-primary.btn-medium-large.single__series-button:hover, .order-return .category__serie-img-cols a.btn.btn-primary.btn-medium-large:hover, .order-return .category__serie-img-cols a.btn-primary.btn-medium-large.single__series-button:hover {
  border: 2px solid #FF1743;
}
.category__serie-img-cols--gray {
  background-color: #F4F5F8;
}
.category__filter--desktop {
  display: block;
  border-radius: 5px;
  margin-bottom: 40px;
}
.category__filter--desktop .selected-filters.clearfix {
  margin: 15px 0 5px 0;
}
.category__filter-btn {
  background-color: #FF1743;
  display: block;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  line-height: 53px;
  font-family: "Yantramanav";
  font-size: 16px;
  color: #FFFFFF;
  height: 53px;
  z-index: 1002;
  position: relative;
}
@media (min-width: 992px) {
  .category__filter-btn {
    display: none;
  }
}
.category__filter-btn:active, .category__filter-btn:focus, .category__filter-btn:hover {
  color: #fff;
}
.category__filter-btn-close-or-accept {
  background-color: #FF1743;
  display: block;
  width: 250px;
  margin: auto;
  border-radius: 5px;
  text-align: center;
  line-height: 19px;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #fff;
  border: 2px solid #FF1743;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 40px;
  margin-top: 30px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .category__filter-btn-close-or-accept {
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 11;
    position: fixed;
    left: 20px;
    top: 400px;
  }
}
.category__filter-btn-close-or-accept i {
  display: none;
}
.category__filter-btn-close-or-accept:active, .category__filter-btn-close-or-accept:focus, .category__filter-btn-close-or-accept:hover {
  color: #333;
  background: #fff;
}
.category__filter #filterCollapse {
  position: absolute;
  z-index: 1001;
}
.category__filter #filterCollapse .page-content {
  background: white;
  padding: 20px;
}
.category__view-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
@media (min-width: 768px) {
  .category__view-toggle {
    float: left;
    width: 40%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .category__view-toggle {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .category__view-toggle {
    width: 30%;
  }
}
.category__view-toggle-productview {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #9498A0;
}
.category__view-toggle-productview.active-toggle {
  color: #000;
}
.category__view-toggle-roomview {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #9498A0;
}
.category__view-toggle-roomview.active-toggle {
  color: #000;
}
.category__view-toggle .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  margin-bottom: 0;
}
.category__view-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.category__view-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E9EBEF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.5);
}
.category__view-toggle .slider:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 25px;
  left: 0;
  bottom: 0;
  background-color: #212529;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.category__view-toggle input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}
.category__view-toggle .slider.round {
  border-radius: 12.5px;
}
.category__view-toggle .slider.round:before {
  border-radius: 50%;
}
.category__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .category__controls {
    float: right;
    width: 40%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.category__controls .list-itemsperpage, .category__controls .list-sort {
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .category__controls .list-itemsperpage, .category__controls .list-sort {
    max-width: 220px;
  }
}
.category__controls .list-itemsperpage svg, .category__controls .list-sort svg {
  fill: #FF1743;
  pointer-events: none;
  position: absolute;
  right: 10px;
}
.category__controls .list-itemsperpage svg.category__controls-select--up, .category__controls .list-sort svg.category__controls-select--up {
  top: 8px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.category__controls .list-itemsperpage svg.category__controls-select--down, .category__controls .list-sort svg.category__controls-select--down {
  bottom: 8px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.category__controls .list-itemsperpage {
  margin-left: 14px;
}
.category__controls-select {
  -webkit-appearance: none;
  height: 30px;
  border: 1px solid #9498A0;
  border-radius: 15px;
  line-height: 17px;
  font-size: 12px;
  color: #000;
  padding-left: 15px;
  width: 100%;
  padding-right: 20px;
}
.category__controls-select.custom-select {
  background: none;
  padding: 0;
  padding-right: 20px;
  padding-left: 15px;
}
.category__controls-select.custom-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #9498A0;
}
.category__controls-select option:hover {
  background: #FF1743;
  color: white;
}

.categoriegrid {
  background: #fff !important;
}
@media (min-width: 1500px) {
  .categoriegrid {
    max-width: 1500px !important;
  }
}
@media (min-width: 1700px) {
  .categoriegrid {
    max-width: 1700px !important;
  }
}
.categoriegrid .cmp-product-thumb {
  margin-bottom: 5px !important;
  border-radius: 5px;
  padding: 0;
}

.pagination {
  margin: auto;
  margin-top: 30px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pagination {
    max-width: 220px;
  }
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination__page-item {
  background-color: #fff;
  border: 1px solid #9498A0;
  width: 29px;
  height: 29px;
  text-align: center;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
@supports (-ms-ime-align: auto) {
  .pagination__page-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.pagination__page-item.pagination__next, .pagination__page-item.pagination__prev {
  background-color: #E9EBEF;
}
.pagination__page-item.pagination__next a, .pagination__page-item.pagination__prev a {
  font-size: 20px !important;
}
.pagination__page-item.disabled {
  opacity: 0.5;
}
.pagination__page-item.active, .pagination__page-item:hover {
  border: 1px solid #FF1743;
}
.pagination__page-item.active a, .pagination__page-item:hover a {
  color: #FF1743;
}
.pagination__page-item:not(.pagination__page-item.pagination__prev) .pagination__page-link, .pagination__page-item:not(.pagination__page-item.pagination__next) .pagination__page-link {
  padding-left: 1px;
}
.pagination__page-item.pagination__prev .pagination__page-link {
  padding-right: 2px;
}
.pagination__page-item.pagination__next .pagination__page-link {
  padding-left: 1px;
}
.pagination__page-link {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 25px;
  color: #000;
}
@supports (-ms-ime-align: auto) {
  .pagination__page-link {
    padding: 5px 9px;
  }
}

.filter-headline {
  display: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .filter-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter-headline__icon {
  -ms-flex-preferred-size: 60px;
      flex-basis: 60px;
  height: 17px;
  position: relative;
}
.filter-headline__icon .filter-line {
  background: #9B9B9B;
  width: 18px;
  margin-left: -9px;
  height: 2px;
  position: absolute;
  left: 24px;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.filter-headline__icon .filter-line.s1 {
  top: 0;
}
.filter-headline__icon .filter-line.s2 {
  top: 5px;
  width: 14px;
  margin-left: -7px;
}
.filter-headline__icon .filter-line.s3 {
  top: 10px;
  width: 8px;
  margin-left: -4px;
}
.filter-headline__text {
  font-size: 18px;
  line-height: normal;
  color: #000;
  font-family: "Yantramanav";
  font-weight: 900;
}
@media (min-width: 768px) {
  .filter-headline__text {
    font-size: 25px;
  }
}

.inspiration__intro-headline h1 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  font-size: 21px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .inspiration__intro-headline h1 {
    font-size: 25px !important;
  }
}
.inspiration__image {
  background-color: #F4F5F8;
  padding-top: 80px;
  margin-bottom: 80px !important;
}
.inspiration__image .homepage__seo--headline {
  font-weight: 400;
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .inspiration__image .homepage__seo--headline {
    font-size: 25px !important;
  }
}
.inspiration__image .homepage__seo--headline span {
  text-transform: uppercase;
  font-size: 29px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .inspiration__image .homepage__seo--headline span {
    font-size: 40px !important;
  }
}
.inspiration__image .footer__contact--headline {
  display: block;
}
.inspiration__image .footer__contact--headline .homepage__seo--headline {
  margin: 0 auto;
}
.inspiration__image .homepage__image-text-widget--container img, .inspiration__image .single__image-text-widget--container img {
  margin-bottom: -60px;
  border-radius: 8px;
}

.category__container--inspiration {
  padding: 40px 15px;
}
.category__container--inspiration .cmp-product-thumb {
  margin-bottom: 8px !important;
}

.gray-bg {
  background: #F4F5F8;
}

.category__teaser-sub-cats {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  overflow: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  top: -75px;
}
.category__teaser-sub-cats .category__teaser-sub-cat {
  min-width: 160px !important;
}

.homepage__image-text-widget .card-body h5.card-title, .single__image-text-widget .card-body h5.card-title, .category__image-text-widget .card-body h5.card-title {
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .homepage__image-text-widget .card-body h5.card-title, .single__image-text-widget .card-body h5.card-title, .category__image-text-widget .card-body h5.card-title {
    font-size: 22px !important;
  }
}
.homepage__image-text-widget .card-body h5.card-title:first-child, .single__image-text-widget .card-body h5.card-title:first-child, .category__image-text-widget .card-body h5.card-title:first-child {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .homepage__image-text-widget .card-body h5.card-title:first-child, .single__image-text-widget .card-body h5.card-title:first-child, .category__image-text-widget .card-body h5.card-title:first-child {
    font-size: 18px !important;
  }
}
.homepage__image-text-widget .card-body a, .single__image-text-widget .card-body a, .category__image-text-widget .card-body a {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .homepage__image-text-widget .card-body a, .single__image-text-widget .card-body a, .category__image-text-widget .card-body a {
    font-size: 18px !important;
  }
}

.list-controls {
  position: relative;
}
.list-controls .list-controls-inner {
  background: rgb(238.9, 238.9, 238.9);
  padding: 0.5em;
}
.list-controls .list-sort,
.list-controls .list-itemsperpage {
  display: block;
  padding: 0.5em;
}
.list-controls .selected-filters {
  display: inline-block;
  float: right;
  margin-top: 10px;
}
.list-controls .selected-filters .selected-filter {
  font-size: 0.8rem;
  margin: 0 0 0 10px;
  padding: 5px 10px;
  background-color: rgb(238.9, 238.9, 238.9);
  color: #FF1743;
  float: left;
  cursor: pointer;
  display: inline-block;
}
.list-controls .selected-filters .selected-filter:hover {
  color: #d4021d;
}
.list-controls .selected-filters .selected-filter.reset-all {
  background-color: #FF1743;
  color: #fff;
  border: none;
  background: #575757;
  color: #fff;
  line-height: 30px;
}
.list-controls .selected-filters .selected-filter.reset-all:hover {
  background-color: rgb(201.5, 0, 38.2155172414);
}
.list-controls .selected-filters .selected-filter:not(.reset-all) {
  border: none !important;
  font-weight: bold;
  background: #575757;
  color: #fff;
}
.list-controls .selected-filters .selected-filter:not(.reset-all) svg {
  fill: #fff !important;
  stroke: #fff;
  stroke-width: 3;
}
.list-controls .filter-toggle {
  text-decoration: none;
}
.list-controls .filter-toggle i {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.list-controls .filter-toggle[aria-expanded=true] i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.list-controls #filterCollapse {
  position: absolute;
  z-index: 1050;
  width: 100%;
  top: 100%;
}
.list-controls #filterCollapse .page-content {
  background: #fff;
  padding: 2em !important;
  border: 1px solid #f4f4f4;
  margin: 0 7.5px;
}
.list-controls #filterCollapse .page-content .card, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child {
  background-color: transparent;
  border: 0;
  padding-right: 0;
}
.list-controls #filterCollapse .page-content .card h3, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child h3, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  border-bottom: 1px solid #9498A0;
  padding-bottom: 0.5rem;
  font-weight: bold;
  color: #4D4F4D;
}
.list-controls #filterCollapse .page-content .card .form-check, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check {
  padding-left: 0;
}
.list-controls #filterCollapse .page-content .card .form-check .form-check-input:checked + label, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .form-check-input:checked + label, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .form-check-input:checked + label {
  background: #f4f4f4;
  color: #282d2f;
  padding-left: 1.75rem;
}
.list-controls #filterCollapse .page-content .card .form-check .form-check-input:checked + label::before, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .form-check-input:checked + label::before, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .form-check-input:checked + label::before {
  font-family: "FontAwesome";
  content: "\f046";
  opacity: 1;
}
.list-controls #filterCollapse .page-content .card .form-check .form-check-input:disabled + label, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .form-check-input:disabled + label, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .form-check-input:disabled + label {
  cursor: not-allowed;
}
.list-controls #filterCollapse .page-content .card .form-check .form-check-label, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .form-check-label, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .form-check-label {
  padding: 0.5rem 0;
  color: #4D4F4D;
  display: block;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.list-controls #filterCollapse .page-content .card .form-check .form-check-label:hover, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .form-check-label:hover, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .form-check-label:hover {
  background: #f7f7f9;
  color: #4D4F4D;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  padding-left: 0.5rem;
}
.list-controls #filterCollapse .page-content .card .form-check .form-check-label::before, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .form-check-label::before, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .form-check-label::before {
  font-family: "FontAwesome";
  content: "\f046";
  opacity: 0;
  position: absolute;
  left: 0.5rem;
}
.list-controls #filterCollapse .page-content .card .form-check .filter-badge, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child .form-check .filter-badge, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child .form-check .filter-badge {
  position: absolute;
  display: inline-block;
  font-size: 0.85rem;
  background: #f4f4f4;
  padding: 0.1rem 0;
  color: #7a7f7f;
  right: 0.5rem;
  text-align: center;
  min-width: 3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 576px) {
  .list-controls .list-sort,
  .list-controls .list-itemsperpage {
    display: inline-block;
  }
  .list-controls .filter-toggle {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    right: 0.5em;
  }
}
@media (min-width: 768px) {
  .list-controls #filterCollapse .page-content .card, .list-controls #filterCollapse .page-content .cmp-address-list .items > div:first-child, .cmp-address-list .list-controls #filterCollapse .page-content .items > div:first-child {
    padding-right: 2em;
  }
}

.sidebar-categories {
  background: #fff;
  /*ul {
      @include reset-list();
      li {
          &.first-level {
              display: none;
          }
          &.first-level.active {
              display: list-item;
          }
          a {
              display: block;
              color: $gray-dark;
              padding: 0.75rem 15px;
              font-size: 1rem;
              cursor: pointer;
              &:hover {
                  color: $gray-darker;
                  background: $gray-lightest;
              }
          }
          ul {
              display: none;
          }
          &.active {
              & > ul {
                  display: block;
              }
              ul {
                  li {
                      a {
                          padding-left: 1.5rem;
                      }
                      ul li {
                          a {
                              padding-left: 3.5rem;
                          }
                          ul li a {
                              padding-left: 5.5rem;
                          }
                      }
                  }
              }
          }
          &.active {
              & > a {
                  background: $gray-lighter2;
              }
          }
      }
  }*/
}
.sidebar-categories .category-title {
  font-weight: 700;
  font-family: "Yantramanav";
  color: #000;
  margin-bottom: 20px;
  font-size: 21px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .sidebar-categories .category-title {
    font-size: 25px !important;
  }
}
.sidebar-categories .sidebar-categories__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #E6E6E6;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item {
  /*2. Level*/
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item.first-level {
  display: none;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item.first-level.active {
  display: list-item;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__nav-link {
  color: #000;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__nav-link {
    font-size: 18px !important;
  }
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__nav-link:hover {
  text-decoration: underline;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item.active > .sidebar-categories__nav-link {
  font-weight: 700;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item.active > ul {
  display: block;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list {
  display: none;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list:last-child {
  border-bottom: none !important;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item {
  /*3. Level*/
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__nav-link {
  padding-left: 20px;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list {
  border-bottom: none;
  /*4. Level*/
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list:last-child .sidebar-categories__nav-link {
  padding-bottom: 14px !important;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__nav-link {
  padding-left: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
.sidebar-categories .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__list .sidebar-categories__list .sidebar-categories__nav-item .sidebar-categories__nav-link {
  padding-left: 60px;
}

.homepage-title {
  padding: 1rem 1.5rem;
  border-bottom: 0;
  background: #FF1743;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.homepage-title > h1 {
  margin: 0.5rem auto;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding: 0 0 0.5rem;
  font-size: 2.5rem;
  letter-spacing: 1.25px;
}

.home .product-list .col-12, .home .product-list .is-amazon-error-page #page-body .col-xs-12, .is-amazon-error-page #page-body .home .product-list .col-xs-12, .home .product-list .single__item-series .col-xs-12, .single__item-series .home .product-list .col-xs-12, .home .product-list .checkout__header--contact, .home .product-list .homepage__image-text-widget--col, .home .product-list .single__image-text-widget--col, .home .product-list .homepage__category-widget--inspiration .homepage__category-widget-col, .homepage__category-widget--inspiration .home .product-list .homepage__category-widget-col, .home .product-list .homepage__category-widget-col--big {
  margin: 0 15px;
}

.cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption {
  bottom: 0;
  padding-bottom: 10px;
}
.cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h3, .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h2, .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h1 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  text-shadow: none;
  color: #fff;
  background: rgba(255, 23, 67, 0.8);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  display: inline-block;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h3 {
  text-transform: uppercase;
  font-size: 1rem;
}
.cmp-hero .hero-main .carousel .carousel-inner .carousel-item .hero-category:hover h3, .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .hero-category:hover h2, .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .hero-category:hover h1 {
  background: #ff1743;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmp-hero .hero-main .carousel .carousel-indicators {
  background: transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: auto;
}
.cmp-hero .hero-main .carousel .carousel-indicators li {
  border-color: #FF1743;
}
.cmp-hero .hero-main .carousel .carousel-indicators li.active {
  background: #FF1743;
}
.cmp-hero .hero-main .carousel .carousel-control {
  background-image: none;
}
.cmp-hero .hero-main .carousel .carousel-control span {
  text-shadow: none;
  font-size: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmp-hero .hero-main .carousel .carousel-control span:before {
  font-family: "FontAwesome";
  content: "\f053";
  color: #FF1743;
}
.cmp-hero .hero-main .carousel .carousel-control .icon-next:before {
  content: "\f054";
}
.cmp-hero .hero-xtras .hero-category .hero-category-inner {
  padding: 0.5rem 1rem;
}
.cmp-hero .hero-xtras .hero-category .hero-category-inner .hero-category-headline {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  padding: 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-weight: normal;
  font-size: 1.25rem;
  background: rgba(255, 23, 67, 0.8);
  margin: 1rem;
  display: block;
  width: auto;
  text-align: left;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmp-hero .hero-xtras .hero-category:hover .hero-category-headline {
  background: #ff1743;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.featured-categories .col-md-8 .prop-inner,
.featured-categories .col-md-4 .prop-inner {
  padding: 15px 0;
  width: calc(100% - 15px);
}
.featured-categories .featured-image {
  height: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.featured-categories .featured-image.contain {
  background-size: contain;
}

.sale-new .col-6 .prop-inner, .sale-new .single__item-series .col-xs-6 .prop-inner, .single__item-series .sale-new .col-xs-6 .prop-inner, .sale-new .homepage__categories--cat-outer .prop-inner, .sale-new .content__categories--cat-outer .prop-inner, .sale-new .category__categories--cat-outer .prop-inner, .sale-new .homepage__category-widget-col .prop-inner {
  padding: 15px 0;
  left: 15px;
  width: calc(100% - 15px);
}
.sale-new .col-6:last-child .prop-inner, .sale-new .single__item-series .col-xs-6:last-child .prop-inner, .single__item-series .sale-new .col-xs-6:last-child .prop-inner, .sale-new .homepage__categories--cat-outer:last-child .prop-inner, .sale-new .content__categories--cat-outer:last-child .prop-inner, .sale-new .category__categories--cat-outer:last-child .prop-inner, .sale-new .homepage__category-widget-col:last-child .prop-inner {
  left: 0;
}

.section-header {
  padding: 1rem 1.5rem;
  border-bottom: 0;
  background: #FF1743;
  position: relative;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
}
.section-header h1, .section-header h2, .section-header h3, .section-header h4, .section-header h5, .section-header h6 {
  padding: 0.2rem 0 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 1.75rem;
  color: #fff;
}
.section-header a.section-link-all {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
.section-header a.section-link-all:hover {
  color: #282d2f;
}

@media (min-width: 576px) {
  .home .product-list {
    margin: 0;
  }
  .home .product-list .col-12, .home .product-list .is-amazon-error-page #page-body .col-xs-12, .is-amazon-error-page #page-body .home .product-list .col-xs-12, .home .product-list .single__item-series .col-xs-12, .single__item-series .home .product-list .col-xs-12, .home .product-list .checkout__header--contact, .home .product-list .homepage__image-text-widget--col, .home .product-list .single__image-text-widget--col, .home .product-list .homepage__category-widget--inspiration .homepage__category-widget-col, .homepage__category-widget--inspiration .home .product-list .homepage__category-widget-col, .home .product-list .homepage__category-widget-col--big {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .home .product-list {
    margin: 0;
  }
  .featured-categories .col-md-8 .prop-inner {
    padding: 15px;
    padding-right: 7.5px;
  }
  .featured-categories .col-md-4 .prop-inner {
    padding: 15px 0 15px 7.5px;
  }
  .sale-new .col-6 .prop-inner, .sale-new .single__item-series .col-xs-6 .prop-inner, .single__item-series .sale-new .col-xs-6 .prop-inner, .sale-new .homepage__categories--cat-outer .prop-inner, .sale-new .content__categories--cat-outer .prop-inner, .sale-new .category__categories--cat-outer .prop-inner, .sale-new .homepage__category-widget-col .prop-inner {
    padding: 15px 7.5px 15px 15px;
    left: 0;
    width: 100%;
  }
  .sale-new .col-6:last-child .prop-inner, .sale-new .single__item-series .col-xs-6:last-child .prop-inner, .single__item-series .sale-new .col-xs-6:last-child .prop-inner, .sale-new .homepage__categories--cat-outer:last-child .prop-inner, .sale-new .content__categories--cat-outer:last-child .prop-inner, .sale-new .category__categories--cat-outer:last-child .prop-inner, .sale-new .homepage__category-widget-col:last-child .prop-inner {
    left: 0;
    padding: 15px 15px 15px 7.5px;
  }
}
@media (min-width: 992px) {
  .home .product-list {
    margin: 0;
  }
  .cmp-hero {
    margin: 0;
  }
  .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption {
    bottom: 20px;
    padding-bottom: 20px;
  }
  .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h3, .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h2, .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h1 {
    font-size: 3rem;
  }
  .cmp-hero .hero-main .carousel .carousel-inner .carousel-item .carousel-caption h3 {
    font-size: 2rem;
  }
  .cmp-hero .hero-main .carousel .carousel-indicators {
    bottom: 0;
    top: auto;
  }
  .cmp-hero .hero-main .carousel .carousel-indicators li {
    border-color: #FF1743;
  }
  .cmp-hero .hero-main .carousel .carousel-indicators li.active {
    background: #FF1743;
  }
  .cmp-hero .hero-main .carousel .carousel-control span {
    font-size: 60px;
    bottom: 10%;
    top: auto;
  }
  .cmp-hero .hero-main .carousel .carousel-control span:before {
    color: #FF1743;
  }
  .cmp-hero .hero-xtras .hero-category .hero-category-inner {
    padding: 0;
  }
  .cmp-hero .hero-xtras .hero-category .hero-category-inner .hero-category-headline {
    margin: 0;
    width: 100%;
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .home .product-list {
    margin: 0 -15px;
  }
}
[v-cloak] {
  display: none;
}

.unkown-os body.modal-open,
.ios body.modal-open {
  position: fixed;
  width: 100%;
}

.homepage-swiper__item, .content-swiper__item, .category-swiper__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 992px) {
  .homepage-swiper__item, .content-swiper__item, .category-swiper__item {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.homepage-swiper__content, .content-swiper__content, .category-swiper__content {
  background-color: rgba(206, 47, 51, 0.9);
  width: 100%;
  padding: 30px 10px;
  padding-bottom: 70px;
  position: relative;
}
@media (min-width: 768px) {
  .homepage-swiper__content, .content-swiper__content, .category-swiper__content {
    padding: 30px 30px;
    padding-bottom: 70px !important;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__content, .content-swiper__content, .category-swiper__content {
    padding: 60px 30px !important;
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .homepage-swiper__content, .content-swiper__content, .category-swiper__content {
    padding: 50px !important;
  }
}
.homepage-swiper__content--bg, .content-swiper__content--bg, .category-swiper__content--bg {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  z-index: -1;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (min-width: 992px) {
  .homepage-swiper__content--bg, .content-swiper__content--bg, .category-swiper__content--bg {
    width: 40%;
    bottom: unset;
    background-position: left;
  }
}
@media (min-width: 1200px) {
  .homepage-swiper__content--bg, .content-swiper__content--bg, .category-swiper__content--bg {
    width: 33.33%;
    bottom: unset;
    background-position: left;
  }
}
@media (min-width: 768px) {
  .homepage-swiper__content--inner, .content-swiper__content--inner, .category-swiper__content--inner {
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__content--inner, .content-swiper__content--inner, .category-swiper__content--inner {
    max-width: 90%;
  }
}
.homepage-swiper__headline, .content-swiper__headline, .category-swiper__headline {
  min-height: 64px;
  font-size: 34px;
  font-family: "Yantramanav", sans-serif !important;
  font-style: normal;
  font-weight: 300 !important;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #fff;
}
@media (min-width: 992px) {
  .homepage-swiper__headline, .content-swiper__headline, .category-swiper__headline {
    margin-bottom: 30px;
    min-height: auto;
  }
}
@media screen and (min-width: 1300px) {
  .homepage-swiper__headline, .content-swiper__headline, .category-swiper__headline {
    font-size: 48px;
  }
}
.homepage-swiper__headline b, .content-swiper__headline b, .category-swiper__headline b {
  font-family: "Yantramanav", sans-serif !important;
  font-weight: 900 !important;
}
.homepage-swiper__text, .content-swiper__text, .category-swiper__text {
  color: #FFFFFF;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .homepage-swiper__text, .content-swiper__text, .category-swiper__text {
    font-size: 25px;
    line-height: 32px;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__text, .content-swiper__text, .category-swiper__text {
    min-height: auto;
  }
}
.homepage-swiper__button {
  border-radius: 5px;
  height: 52px;
  padding-left: 40px;
  padding-right: 40px;
  color: white;
  line-height: 22px;
  font-weight: 800;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #ff1743;
  border: 2px solid #ff1743;
  font-size: 16px;
}
@media (min-width: 768px) {
  .homepage-swiper__button {
    font-size: 18px;
  }
}
.homepage-swiper__button:hover {
  color: white !important;
}
@media (min-width: 768px) {
  .homepage-swiper__button {
    -webkit-transform: unset;
            transform: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1400px) {
  .homepage-swiper__button {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.homepage-swiper__button:hover {
  background: #d4021d;
  border-color: #d4021d;
}
@media (min-width: 768px) {
  .homepage-swiper__button {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__button {
    margin-top: 60px;
    position: static;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media (min-width: 1200px) {
  .homepage-swiper__button {
    margin-top: 100px;
  }
}
.homepage-swiper__prev, .content-swiper__prev, .homepage-swiper__next, .content-swiper__next {
  background-image: none;
  height: 45px;
  width: 45px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #3f3f3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 20%;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .homepage-swiper__prev, .content-swiper__prev, .homepage-swiper__next, .content-swiper__next {
    top: 35%;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__prev, .content-swiper__prev, .homepage-swiper__next, .content-swiper__next {
    top: 50%;
  }
}
.homepage-swiper__prev svg, .content-swiper__prev svg, .homepage-swiper__next svg, .content-swiper__next svg {
  width: 7px;
  height: 12px;
  fill: white;
}
.homepage-swiper__prev:hover, .content-swiper__prev:hover, .homepage-swiper__next:hover, .content-swiper__next:hover {
  opacity: 1;
}
.homepage-swiper__next svg, .content-swiper__next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.homepage-swiper__img-container, .content-swiper__img-container, .category-swiper__img-container {
  width: 100%;
  min-height: 200px;
  height: 200px;
  overflow: hidden;
}
.homepage-swiper__img-container img, .content-swiper__img-container img, .category-swiper__img-container img {
  width: 100%;
}
@media (min-width: 576px) {
  .homepage-swiper__img-container, .content-swiper__img-container, .category-swiper__img-container {
    height: 320px;
  }
}
@media (min-width: 768px) {
  .homepage-swiper__img-container, .content-swiper__img-container, .category-swiper__img-container {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__img-container, .content-swiper__img-container, .category-swiper__img-container {
    width: 60%;
    height: 570px;
  }
}
@media (min-width: 1200px) {
  .homepage-swiper__img-container, .content-swiper__img-container, .category-swiper__img-container {
    height: 570px;
  }
}
.homepage-swiper__img, .content-swiper__img, .category-swiper__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  margin-right: -1px;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media (min-width: 768px) {
  .homepage-swiper__img, .content-swiper__img, .category-swiper__img {
    height: 100%;
  }
}
.homepage-swiper__pagination {
  bottom: 25px !important;
  width: 200px !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .homepage-swiper__pagination {
    bottom: 25px !important;
  }
}
@media (min-width: 992px) {
  .homepage-swiper__pagination {
    left: 80% !important;
  }
}
.homepage-swiper__pagination .swiper-pagination-bullet {
  cursor: pointer;
  height: 9px;
  width: 9px;
  background: white;
  opacity: 1 !important;
  margin: 0 5px;
}
.homepage-swiper__pagination .swiper-pagination-bullet-active {
  background: white;
  opacity: 0.5 !important;
}
.homepage__category--name {
  font-weight: bold;
  color: #FFFFFF;
  line-height: normal;
  font-size: 24px;
}
@media (min-width: 768px) {
  .homepage__category--name {
    font-size: 30px;
  }
}
.homepage__category--button {
  font-weight: 700;
}
.homepage__category--shortdescription {
  color: #FFFFFF;
  padding-right: 20px;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .homepage__category--shortdescription {
    font-size: 18px;
  }
}
.homepage__category--img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 768px) {
  .homepage__category--img {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .homepage__category--img {
    height: 320px;
  }
}
.homepage__category--img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.homepage__category--img:hover svg {
  display: none !important;
}
@media (min-width: 768px) {
  .homepage__category--img:hover .homepage__category--button {
    border: 2px solid #FF1743;
  }
}
@media (min-width: 992px) {
  .homepage__category--img:hover .homepage__category--content-overlay {
    height: 140px;
  }
  .homepage__category--img:hover .homepage__category--content-overlay * {
    visibility: visible;
  }
}
@media (min-width: 992px) and (min-width: 768px) {
  .homepage__category--img:hover .homepage__category--content-overlay {
    height: 280px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .homepage__category--img:hover .homepage__category--content-overlay {
    height: 220px;
  }
}
.homepage__category--content {
  width: 100%;
  background-color: #333;
  opacity: 1;
  height: 60px;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .homepage__category--content {
    border-radius: 6px;
    border: 2px solid #FFFFFF;
  }
}
@media (max-width: 767.98px) {
  .homepage__category--content:hover {
    border: 2px solid #FF1743;
  }
}
@media (max-width: 767.98px) {
  .homepage__category--content:hover .homepage__category--button {
    border: none;
  }
}
@media screen and (min-width: 450px) {
  .homepage__category--content {
    border: none;
  }
}
@media (min-width: 768px) {
  .homepage__category--content {
    height: 120px;
    border-radius: 0px;
    background-color: rgba(63, 63, 63, 0.9);
  }
}
@media (min-width: 992px) {
  .homepage__category--content {
    height: 100px;
  }
}
.homepage__category--content-overlay {
  cursor: pointer;
  height: 0;
  background-color: rgba(63, 63, 63, 0.9);
  opacity: 1;
  width: 100%;
  position: absolute;
  bottom: 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homepage__category--content-overlay * {
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .homepage__category--content-overlay {
    bottom: 120px;
  }
}
@media (min-width: 992px) {
  .homepage__category--content-overlay {
    bottom: 100px;
  }
}
.homepage__category--button {
  text-align: center;
  font-family: "Yantramanav";
  color: #FFFFFF;
  border-radius: 5px;
  border: none;
  height: auto;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media screen and (min-width: 450px) {
  .homepage__category--button {
    height: 60px;
  }
}
@media (min-width: 768px) {
  .homepage__category--button {
    border: 2px solid #FFFFFF;
    font-size: 18px !important;
    line-height: 46px;
    height: 50px;
    width: initial;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 230px;
  }
}
@media (min-width: 992px) {
  .homepage__category--button {
    line-height: 36px;
    height: 40px;
    width: initial;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (min-width: 992px) and (-ms-high-contrast: none), (min-width: 992px) and (-ms-high-contrast: active) {
  .homepage__category--button {
    width: auto;
  }
}
.homepage__category--button:hover, .homepage__category--button:active, .homepage__category--button:focus {
  color: white;
}
@media (min-width: 768px) {
  .homepage__category--button:hover, .homepage__category--button:active, .homepage__category--button:focus {
    border: 2px solid #FF1743;
  }
}
.homepage__category-widget {
  padding-top: 38px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .homepage__category-widget {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .homepage__category-widget {
    padding-top: 38px;
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
  }
}
.homepage__category-widget-col {
  padding-left: 7px;
  padding-right: 7px;
  padding-top: 14px;
  border-radius: 8px;
}
.homepage__category-widget-col .homepage__category--content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homepage__category-widget-col svg {
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  fill: white;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 15px;
  height: 15px;
}
@media (min-width: 992px) {
  .homepage__category-widget-col svg {
    display: block;
    position: absolute;
    top: 10px;
  }
}
@media (min-width: 992px) and (-ms-high-contrast: none), (min-width: 992px) and (-ms-high-contrast: active) {
  .homepage__category-widget-col svg {
    left: 48%;
  }
}
.homepage__category-widget-col .homepage__category--name {
  text-align: center;
  margin-top: 20px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .homepage__category-widget-col .homepage__category--name {
    margin-top: 60px;
  }
}
.homepage__category-widget-col--big .homepage__category--name {
  text-align: left;
  word-break: break-all;
  margin-left: 20px;
  margin-top: 0px !important;
}
@media (min-width: 768px) {
  .homepage__category-widget-col--big .homepage__category--name {
    margin-left: 50px;
  }
}
.homepage__category-widget-col--big .homepage__category--shortdescription {
  margin-top: 5px;
  text-align: left;
  word-break: break-all;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .homepage__category-widget-col--big .homepage__category--shortdescription {
    margin-left: 50px;
  }
}
@media (min-width: 992px) {
  .homepage__category-widget-col--big .homepage__category--shortdescription {
    margin-top: 145px;
  }
}
@media (min-width: 992px) {
  .homepage__category-widget-col--big .homepage__category--content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 50px;
  }
  .homepage__category-widget-col--big .homepage__category--content svg {
    margin-right: 40px;
    display: block;
    position: relative;
    margin-top: 0;
    fill: white;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 15px;
    height: 15px;
    top: 0 !important;
  }
}
.homepage__category-widget--row {
  margin: 0 -7px !important;
}
.homepage__category-widget--inspiration .homepage__seo--headline {
  font-size: 36px;
  text-transform: uppercase;
}
.homepage__category-widget--inspiration .homepage__seo--headline span {
  font-weight: 300;
}
.homepage__category-widget--inspiration .homepage__category-widget-col {
  padding: 8px;
  position: relative;
}
.homepage__category-widget--inspiration .homepage__category--content {
  background-color: transparent;
  height: 84px;
  position: initial;
  border: none;
}
.homepage__category-widget--inspiration .homepage__category--img {
  border-radius: 8px;
}
.homepage__category-widget--inspiration .homepage__category--button {
  background-color: #3f3f3f;
  border: 2px solid #3f3f3f;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  width: calc(100% - 40px);
  height: 50px;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .homepage__category-widget--inspiration .homepage__category--button {
    font-size: 18px !important;
  }
}
.homepage__category-widget--inspiration .homepage__category--button:hover {
  border: 2px solid #FF1743;
}
.homepage__category-widget--inspiration .homepage__category--button:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
}
@media (min-width: 768px) {
  .homepage__image-text-widget, .single__image-text-widget, .category__image-text-widget {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .homepage__image-text-widget, .single__image-text-widget, .category__image-text-widget {
    padding-left: 0;
    padding-right: 0;
  }
}
.homepage__image-text-widget--container .card-body, .single__image-text-widget--container .card-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.homepage__image-text-widget--row:not(:first-child), .single__image-text-widget--row:not(:first-child), .category__image-text-widget--row:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .homepage__image-text-widget--row:not(:first-child), .single__image-text-widget--row:not(:first-child), .category__image-text-widget--row:not(:first-child) {
    margin-top: 60px;
  }
}
.homepage__image-text-widget--col img, .single__image-text-widget--col img {
  border-radius: 5px;
}
.homepage__image-text-widget--col.col-order-1, .col-order-1.single__image-text-widget--col {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .homepage__image-text-widget--col.col-order-1, .col-order-1.single__image-text-widget--col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.homepage__image-text-widget--col.col-order-2, .col-order-2.single__image-text-widget--col {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .homepage__image-text-widget--col.col-order-2, .col-order-2.single__image-text-widget--col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.homepage__image-text-widget--subheadline, .single__image-text-widget--subheadline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .homepage__image-text-widget--subheadline, .single__image-text-widget--subheadline {
    font-size: 25px;
  }
}
.homepage__image-text-widget--headline, .single__image-text-widget--headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .homepage__image-text-widget--headline, .single__image-text-widget--headline {
    font-size: 30px;
  }
}
.homepage__image-text-widget--button, .history__details-button + .btn-primary, .history__change-payment-button + .btn-primary, .feedback-container a[href="#login"], .feedback-container .btn-primary, .single__image-text-widget--button, .checkout__header--back a, #contact-modal__send, .order-return .btn.btn-primary.btn-medium-large, .order-return .btn-primary.btn-medium-large.single__series-button, .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary, .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary, .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .order-return .btn.btn-primary.float-right.btn-medium-large, .order-return .btn-primary.float-right.btn-medium-large.single__series-button {
  padding: 10px 30px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 32px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border: 2px solid #3F3F3F;
  border-radius: 5px;
  background-color: transparent !important;
  color: #000 !important;
}
@media (min-width: 768px) {
  .homepage__image-text-widget--button, .history__details-button + .btn-primary, .history__change-payment-button + .btn-primary, .feedback-container a[href="#login"], .feedback-container .btn-primary, .single__image-text-widget--button, .checkout__header--back a, #contact-modal__send, .order-return .btn.btn-primary.btn-medium-large, .order-return .btn-primary.btn-medium-large.single__series-button, .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary, .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary, .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .order-return .btn.btn-primary.float-right.btn-medium-large, .order-return .btn-primary.float-right.btn-medium-large.single__series-button {
    font-size: 18px;
  }
}
.homepage__image-text-widget--button:hover, .history__details-button + .btn-primary:hover, .history__change-payment-button + .btn-primary:hover, .feedback-container a[href="#login"]:hover, .feedback-container .btn-primary:hover, .single__image-text-widget--button:hover, .checkout__header--back a:hover, #contact-modal__send:hover, .order-return .btn.btn-primary.btn-medium-large:hover, .order-return .btn-primary.btn-medium-large.single__series-button:hover, .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary:hover, .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default:hover, .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary:hover, .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default:hover {
  border: 2px solid #FF1743;
}
.homepage__image-text-widget--content, .single__image-text-widget--content, .category__image-text-widget--content {
  margin-top: 10px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .homepage__image-text-widget--content, .single__image-text-widget--content, .category__image-text-widget--content {
    padding-left: 80px;
    padding-top: 80px;
    margin-bottom: 60px;
  }
}
.homepage__image-text-widget--content-no-pt {
  padding-top: 0px !important;
}
.homepage__image-text-widget--content-pt-40 {
  padding-top: 40px !important;
}
.homepage__image-text-widget--content-mt-0 {
  margin-top: 0px !important;
}
.homepage__seo {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .homepage__seo {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .homepage__seo {
    padding-left: 0;
    padding-right: 0;
  }
}
.homepage__seo hr {
  border-top: 2px solid #E9EBEF;
}
@media (min-width: 992px) {
  .homepage__seo--images {
    margin-bottom: 80px;
  }
}
.homepage__seo--images img {
  overflow: hidden;
  border-radius: 6px;
}
.homepage__seo--select {
  -webkit-appearance: none;
  border: 1px solid #3F3F3F;
  padding: 10px 20px;
  padding-right: 70px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background: white;
}
.homepage__seo--select-heading {
  margin-top: 20px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 300;
  font-size: 21px;
  line-height: 28px;
  color: #000000;
}
@media (min-width: 768px) {
  .homepage__seo--select-heading {
    margin-top: 16px;
    margin-bottom: 12px;
  }
}
.homepage__seo--select-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .homepage__seo--select-wrapper {
    margin-bottom: 0px;
  }
}
.homepage__seo--select-arrow {
  position: absolute;
  fill: #3F3F3F;
  width: 10px;
  height: 10px;
  pointer-events: none;
}
.homepage__seo--select-arrow-up {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 9px;
  right: 20px;
}
.homepage__seo--select-arrow-down {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  bottom: 9px;
  right: 20px;
}
.homepage__seo--headline {
  font-family: "Yantramanav";
  font-style: normal;
  color: #000000;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 27px;
  line-height: normal;
}
@media (min-width: 768px) {
  .homepage__seo--headline {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .homepage__seo--headline {
    max-width: 66.6666%;
  }
}
.homepage__seo--headline-cat {
  font-family: "Yantramanav" !important;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  color: #000000;
}
.homepage__seo--subheadline {
  font-family: "Yantramanav" !important;
  font-style: normal;
  font-weight: 400;
  color: #000000;
  margin-bottom: 21px;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .homepage__seo--subheadline {
    max-width: 66.6666%;
    font-size: 18px;
  }
}
.homepage__seo--stellen {
  margin-top: 60px;
}
.homepage__seo--stellen .homepage__seo--headline {
  line-height: 24px;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 992px) {
  .homepage__seo--stellen > div:not(:first-child) {
    padding-left: 7px;
  }
}
@media (min-width: 992px) {
  .homepage__seo--stellen > div:not(:last-child) {
    padding-right: 7px;
  }
}
.homepage__seo--svg {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.homepage__seo--text {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .homepage__seo--text {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .homepage__seo--text {
    margin-bottom: 50px;
    max-width: 66.6666%;
  }
}
.homepage__seo--text-block {
  margin-top: 50px;
}
.homepage__seo--text-block .homepage__seo--subheadline {
  margin-bottom: 5px;
}
.homepage__seo--text-block .homepage__seo--headline {
  margin-bottom: 20px;
}
.homepage__seo--text-block .homepage__seo--text {
  margin-bottom: 20px;
}
.homepage__seo--text p {
  font-size: 16px;
  line-height: 20px;
}
.homepage__crossselling, .single__crossselling {
  background-color: #e9ebef;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .homepage__crossselling, .single__crossselling {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .homepage__crossselling, .single__crossselling {
    padding-top: 20px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .homepage__crossselling--container, .single__crossselling--container {
    padding-left: 0;
    padding-right: 0;
  }
}
.homepage__crossselling .swiper-pagination, .single__crossselling .swiper-pagination {
  height: 60px;
  width: 100%;
  border-radius: 100px;
  background: #FF1743;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.homepage__crossselling .swiper-button-prev, .single__crossselling .swiper-button-prev, .homepage__crossselling .swiper-button-next, .single__crossselling .swiper-button-next {
  background-image: none;
  z-index: 11 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homepage__crossselling .swiper-button-prev svg, .single__crossselling .swiper-button-prev svg, .homepage__crossselling .swiper-button-next svg, .single__crossselling .swiper-button-next svg {
  fill: white;
  width: 15px;
  height: 15px;
  margin-top: 5px;
}
.homepage__crossselling .swiper-button-prev:focus, .single__crossselling .swiper-button-prev:focus, .homepage__crossselling .swiper-button-next:focus, .single__crossselling .swiper-button-next:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
.homepage__crossselling .swiper-button-next, .single__crossselling .swiper-button-next {
  right: 35px;
}
@media (min-width: 768px) {
  .homepage__crossselling .swiper-button-next, .single__crossselling .swiper-button-next {
    right: 70px;
  }
}
.homepage__crossselling .swiper-button-next svg, .single__crossselling .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.homepage__crossselling .swiper-button-prev, .single__crossselling .swiper-button-prev {
  left: 35px;
}
@media (min-width: 768px) {
  .homepage__crossselling .swiper-button-prev, .single__crossselling .swiper-button-prev {
    left: 70px;
  }
}
.homepage__crossselling .swiper-controls, .single__crossselling .swiper-controls {
  position: relative;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .homepage__crossselling .swiper-controls, .single__crossselling .swiper-controls {
    width: 450px;
    margin: auto;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .homepage__crossselling .swiper-controls, .single__crossselling .swiper-controls {
    width: 320px;
  }
}
@media (min-width: 1200px) {
  .homepage__crossselling .swiper-controls, .single__crossselling .swiper-controls {
    width: 450px;
  }
}
@media (min-width: 1200px) and (-ms-high-contrast: none), (min-width: 1200px) and (-ms-high-contrast: active) {
  .homepage__crossselling .swiper-controls, .single__crossselling .swiper-controls {
    width: 300px;
  }
}
.homepage__crossselling--desktop-pagination, .single__crossselling--desktop-pagination {
  display: none;
}
@media (min-width: 992px) {
  .homepage__crossselling--desktop-pagination, .single__crossselling--desktop-pagination {
    display: block;
    background: #e9ebef;
  }
}
@media (min-width: 1200px) {
  .homepage__crossselling--desktop-pagination, .single__crossselling--desktop-pagination {
    margin-left: auto;
  }
}
.homepage__crossselling--desktop-pagination .swiper-controls, .single__crossselling--desktop-pagination .swiper-controls {
  margin-top: 10px !important;
}
.homepage__crossselling--desktop-pagination .swiper-controls .swiper-pagination, .single__crossselling--desktop-pagination .swiper-controls .swiper-pagination {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.homepage__crossselling .swiper-slide, .single__crossselling .swiper-slide {
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.homepage__crossselling .nav-tabs, .single__crossselling .nav-tabs {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
}
.homepage__crossselling .nav-tabs .nav-item, .single__crossselling .nav-tabs .nav-item {
  height: 60px;
  line-height: 60px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .homepage__crossselling .nav-tabs .nav-item, .single__crossselling .nav-tabs .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
}
.homepage__crossselling .nav-tabs .nav-item .nav-link, .single__crossselling .nav-tabs .nav-item .nav-link {
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  padding: 0 25px;
  border: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@supports (-webkit-overflow-scrolling: touch) {
  .homepage__crossselling .nav-tabs .nav-item .nav-link, .single__crossselling .nav-tabs .nav-item .nav-link {
    white-space: nowrap;
    width: 100%;
  }
}
.homepage__crossselling .nav-tabs .nav-item .nav-link.active, .single__crossselling .nav-tabs .nav-item .nav-link.active {
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(233, 235, 239, 0.5);
}
.homepage__crossselling .nav-tabs .nav-item .nav-link:hover, .single__crossselling .nav-tabs .nav-item .nav-link:hover {
  background-color: rgba(233, 235, 239, 0.5);
}
.homepage__categories, .content__categories {
  background-color: #e9ebef;
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../images/homepage/blur-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.homepage__categories .swiper-custom-pagination, .content__categories .swiper-custom-pagination {
  height: 9px;
}
.homepage__categories .hidden-slide, .content__categories .hidden-slide {
  display: none;
}
@media (min-width: 768px) {
  .homepage__categories, .content__categories {
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .homepage__categories, .content__categories {
    padding-top: 60px;
    padding-bottom: 90px;
    padding-left: 0;
    padding-right: 0;
  }
}
.homepage__categories--desktop-pagination, .content__categories--desktop-pagination {
  display: none;
  background: transparent;
  -webkit-box-flex: 2.5 !important;
      -ms-flex: 2.5 !important;
          flex: 2.5 !important;
}
.homepage__categories--desktop-pagination.custom-styling .swiper-controls, .custom-styling.content__categories--desktop-pagination .swiper-controls {
  margin-top: 0px !important;
}
.homepage__categories--desktop-pagination.custom-styling .swiper-controls .swiper-button-next, .custom-styling.content__categories--desktop-pagination .swiper-controls .swiper-button-next, .homepage__categories--desktop-pagination.custom-styling .swiper-controls .swiper-button-prev, .custom-styling.content__categories--desktop-pagination .swiper-controls .swiper-button-prev {
  top: 65% !important;
}
@media (min-width: 992px) {
  .homepage__categories--desktop-pagination, .content__categories--desktop-pagination {
    display: block;
  }
}
@media (min-width: 1200px) {
  .homepage__categories--desktop-pagination, .content__categories--desktop-pagination {
    margin-left: 100px;
  }
}
.homepage__categories--desktop-pagination .swiper-controls, .content__categories--desktop-pagination .swiper-controls {
  margin-top: 10px !important;
  position: relative;
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-pagination, .content__categories--desktop-pagination .swiper-controls .swiper-pagination {
  height: 60px;
  width: 100%;
  border-radius: 100px;
  background: #FF1743;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  position: relative;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-button-prev, .content__categories--desktop-pagination .swiper-controls .swiper-button-prev, .homepage__categories--desktop-pagination .swiper-controls .swiper-button-next, .content__categories--desktop-pagination .swiper-controls .swiper-button-next {
  background-image: none;
  z-index: 11 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-button-prev:focus, .content__categories--desktop-pagination .swiper-controls .swiper-button-prev:focus, .homepage__categories--desktop-pagination .swiper-controls .swiper-button-next:focus, .content__categories--desktop-pagination .swiper-controls .swiper-button-next:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-button-prev svg, .content__categories--desktop-pagination .swiper-controls .swiper-button-prev svg, .homepage__categories--desktop-pagination .swiper-controls .swiper-button-next svg, .content__categories--desktop-pagination .swiper-controls .swiper-button-next svg {
  fill: white;
  width: 15px;
  height: 15px;
  margin-top: 5px;
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-button-next, .content__categories--desktop-pagination .swiper-controls .swiper-button-next {
  right: 70px;
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-button-next svg, .content__categories--desktop-pagination .swiper-controls .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.homepage__categories--desktop-pagination .swiper-controls .swiper-button-prev, .content__categories--desktop-pagination .swiper-controls .swiper-button-prev {
  left: 70px;
}
.homepage__categories--cat, .content__categories--cat, .category__categories--cat {
  border-radius: 5px;
  background: white;
  margin-bottom: 14px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homepage__categories--cat:hover, .content__categories--cat:hover, .category__categories--cat:hover {
  -webkit-box-shadow: 0px -1px 5px #5d5d5d;
          box-shadow: 0px -1px 5px #5d5d5d;
}
@media (min-width: 768px) {
  .homepage__categories--cat-row, .content__categories--cat-row, .category__categories--cat-row {
    margin-left: -7px;
    margin-right: -7px;
  }
}
@media (min-width: 992px) {
  .homepage__categories--cat-row, .content__categories--cat-row, .category__categories--cat-row {
    display: none;
  }
}
.homepage__categories--cat-swiper, .content__categories--cat-swiper {
  display: none;
}
@media (min-width: 992px) {
  .homepage__categories--cat-swiper, .content__categories--cat-swiper {
    display: block;
    padding-top: 2px;
    min-height: 270px;
    max-height: 300px;
  }
}
@media (min-width: 992px) {
  .homepage__categories--cat-swiper .swiper-wrapper, .content__categories--cat-swiper .swiper-wrapper {
    max-height: 242px;
  }
}
.homepage__categories--cat-swiper .homepage__categories--cat-outer, .content__categories--cat-swiper .homepage__categories--cat-outer, .homepage__categories--cat-swiper .content__categories--cat-outer, .content__categories--cat-swiper .content__categories--cat-outer, .homepage__categories--cat-swiper .category__categories--cat-outer, .content__categories--cat-swiper .category__categories--cat-outer {
  max-width: 100%;
  padding: 0 !important;
}
.homepage__categories--cat-swiper .swiper-custom-pagination, .content__categories--cat-swiper .swiper-custom-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.homepage__categories--cat-swiper .swiper-custom-pagination--bullet, .content__categories--cat-swiper .swiper-custom-pagination--bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.5;
  background: #fff;
  margin-right: 10px;
}
.homepage__categories--cat-swiper .swiper-custom-pagination--bullet.active, .content__categories--cat-swiper .swiper-custom-pagination--bullet.active {
  opacity: 1;
}
.homepage__categories--cat-swiper .swiper-controls, .content__categories--cat-swiper .swiper-controls {
  visibility: hidden;
}
.homepage__categories--cat-outer:nth-child(odd), .content__categories--cat-outer:nth-child(odd), .category__categories--cat-outer:nth-child(odd) {
  padding-right: 5px;
}
.homepage__categories--cat-outer:nth-child(even), .content__categories--cat-outer:nth-child(even), .category__categories--cat-outer:nth-child(even) {
  padding-left: 5px;
}
@media (min-width: 768px) {
  .homepage__categories--cat-outer:nth-child(odd), .content__categories--cat-outer:nth-child(odd), .category__categories--cat-outer:nth-child(odd), .homepage__categories--cat-outer:nth-child(even), .content__categories--cat-outer:nth-child(even), .category__categories--cat-outer:nth-child(even) {
    padding-right: 7px;
    padding-left: 7px;
  }
}
.homepage__categories--cat-image img, .content__categories--cat-image img, .category__categories--cat-image img {
  width: 100%;
}
.homepage__categories--cat-name, .content__categories--cat-name, .category__categories--cat-name {
  background-color: #3f3f3f;
  border-radius: 0 0 0 0;
  border: 2px solid #3F3F3F;
  height: 45px;
  line-height: 42px;
  font-family: "Yantramanav";
  font-size: 12px;
  color: #fff;
  padding-left: 16px;
  padding-right: 16px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage__categories--cat-name-text {
  height: 42px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .homepage__categories--cat-name, .content__categories--cat-name, .category__categories--cat-name {
    white-space: unset;
    overflow: visible;
    text-overflow: unset;
  }
}
.homepage__categories .nav-tabs, .content__categories .nav-tabs {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .homepage__categories .nav-tabs, .content__categories .nav-tabs {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.homepage__categories .nav-tabs .nav-item, .content__categories .nav-tabs .nav-item {
  height: 60px;
  line-height: 60px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .homepage__categories .nav-tabs .nav-item, .content__categories .nav-tabs .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
}
.homepage__categories .nav-tabs .nav-item .nav-link, .content__categories .nav-tabs .nav-item .nav-link {
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  padding: 0;
  border: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homepage__categories .nav-tabs .nav-item .nav-link.active, .content__categories .nav-tabs .nav-item .nav-link.active {
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(233, 235, 239, 0.5);
}
.homepage__categories .nav-tabs .nav-item .nav-link:hover, .content__categories .nav-tabs .nav-item .nav-link:hover {
  background-color: rgba(233, 235, 239, 0.5);
}

.hidden-for-init {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
}

.spacer {
  height: 40px;
}

.swiper-pagination-fraction::-moz-selection {
  background: transparent;
}

.swiper-pagination-fraction::selection {
  background: transparent;
}
.swiper-pagination-fraction .swiper-pagination-current::-moz-selection, .swiper-pagination-fraction .swiper-pagination-total::-moz-selection {
  background: transparent;
}
.swiper-pagination-fraction .swiper-pagination-current::selection, .swiper-pagination-fraction .swiper-pagination-total::selection {
  background: transparent;
}

#contact-modal__send {
  line-height: 24px;
  background: #FF1743;
  color: #fff;
  border: 2px solid #FF1743 !important;
}
#contact-modal__send:hover {
  background: #d4021d;
  color: white;
  border: 2px solid #d4021d !important;
}

.homepage__categories--desktop-pagination .swiper-pagination, .content__categories--desktop-pagination .swiper-pagination {
  bottom: 0;
}

.usp-widget__bg {
  background: #F4F5F8;
  padding-top: 120px;
  margin-top: -160px;
}
.usp-widget__headline.headline-big-dark {
  font-size: 34px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .usp-widget__headline.headline-big-dark {
    font-size: 44px !important;
  }
}
.usp-widget__subheadline.headline-big-dark {
  font-size: 34px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .usp-widget__subheadline.headline-big-dark {
    font-size: 44px !important;
  }
}
.usp-widget__wrapper {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .usp-widget__wrapper {
    padding-top: 60px;
  }
}
.usp-widget__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  padding-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .usp-widget__item-wrapper {
    padding-bottom: 80px;
  }
}
.usp-widget__item {
  background: #FFFFFF;
  border-radius: 8px;
  width: 100%;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 576px) {
  .usp-widget__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 30px);
            flex: 0 0 calc(50% - 30px);
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .usp-widget__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 15px);
            flex: 0 0 calc(25% - 15px);
    max-width: 25%;
  }
}
.usp-widget__icon-wrapper {
  margin-bottom: 26px;
  max-width: 100%;
}
.usp-widget__icon-wrapper svg {
  max-width: 100%;
  height: auto;
}
.usp-widget__text {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 500;
  text-align: center;
  color: #000000;
  font-size: 18px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .usp-widget__text {
    font-size: 22px !important;
  }
}
.usp-widget__text p {
  margin-bottom: 0;
  line-height: normal !important;
  font-size: 21px !important;
}
@media (min-width: 768px) {
  .usp-widget__text p {
    font-size: 25px !important;
  }
}

.video-widget__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .video-widget__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 80px;
    margin-bottom: 120px;
  }
}
.video-widget__left {
  padding: 30px 15px 30px;
  background: #3F3F3F;
  border-radius: 0 0 8px 8px;
}
@media (min-width: 768px) {
  .video-widget__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
    padding: 40px 15px 40px;
    border-radius: 8px 0 0 8px;
  }
}
@media (min-width: 992px) {
  .video-widget__left {
    padding: 82px 90px 96px;
  }
}
.video-widget__right {
  background: #3F3F3F;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .video-widget__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    max-width: 60%;
    border-radius: 0 8px 8px 0;
  }
}
.video-widget__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-widget__headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 27px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .video-widget__headline {
    font-size: 34px;
  }
}
.video-widget__subheadline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .video-widget__subheadline {
    font-size: 25px;
  }
}
.video-widget__btn {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 5px;
  padding: 16px 50px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.video-widget__btn:hover {
  color: #FF1743;
  border-color: #fff;
}
@media (min-width: 768px) {
  .video-widget__btn {
    font-size: 18px;
  }
}

.home-headline .widget-inner {
  padding: 0 !important;
}
.home-headline h2 {
  font-family: "Yantramanav" !important;
  font-style: normal;
  font-weight: 300 !important;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 29px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .home-headline h2 {
    font-size: 40px !important;
  }
}
.home-headline h2 strong {
  font-family: "Yantramanav" !important;
  font-weight: 900 !important;
}

.feedback-swiper-widget__wrapper {
  background: #F4F5F8;
}
.feedback-swiper-widget__wrapper .swiper-button-next {
  height: 45px;
  width: 45px;
  background: #3F3F3F;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-swiper-widget__wrapper .swiper-button-prev {
  height: 45px;
  width: 45px;
  background: #3F3F3F;
  border-radius: 50%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-swiper-widget__container {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.feedback-swiper-widget__main-headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-bottom: 35px;
  font-size: 27px;
  line-height: normal;
}
@media (min-width: 768px) {
  .feedback-swiper-widget__main-headline {
    font-size: 34px;
  }
}
.feedback-swiper-widget__item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 54px 24px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.feedback-swiper-widget__headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 768px) {
  .feedback-swiper-widget__headline {
    font-size: 22px;
  }
}
.feedback-swiper-widget__text {
  margin-bottom: 44px;
}
.feedback-swiper-widget__text p {
  font-family: "Yantramanav";
  font-style: normal;
  text-align: center;
  color: #000000;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .feedback-swiper-widget__text p {
    font-size: 18px;
  }
}
.feedback-swiper-widget__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: auto;
}
.feedback-swiper-widget__btn {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  text-align: center;
  display: block;
  position: relative;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .feedback-swiper-widget__btn {
    font-size: 15px;
  }
}
.feedback-swiper-widget__btn:hover {
  color: rgba(0, 0, 0, 0.5);
  -webkit-text-decoration: underline 2px;
          text-decoration: underline 2px;
  text-underline-offset: 4px;
}
.feedback-swiper-widget__stars-wrapper {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.feedback-swiper-widget__stars {
  position: relative;
}
.feedback-swiper-widget__stars-active {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  max-width: 0;
}

.cat-widget__bg {
  background-image: url("https://bilder.weberbuero.de/frontend/images/welcomepage/background-home.jpg");
  padding: 40px 0 30px;
}
@media (min-width: 768px) {
  .cat-widget__bg {
    padding: 80px 0 60px;
  }
}
.cat-widget__headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 47px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cat-widget__headline strong {
  font-family: "Yantramanav" !important;
  font-weight: 700;
}
.cat-widget__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cat-widget__item {
  max-width: calc(50% - 11.25px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 11.25px);
          flex: 0 0 calc(50% - 11.25px);
}
@media (min-width: 768px) {
  .cat-widget__item {
    max-width: calc(33.33% - 11.25px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 11.25px);
            flex: 0 0 calc(33.33% - 11.25px);
  }
}
@media (min-width: 992px) {
  .cat-widget__item {
    max-width: calc(25% - 11.25px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 11.25px);
            flex: 0 0 calc(25% - 11.25px);
  }
}
.cat-widget__item:hover .cat-widget__item-txt-wrapper {
  background-color: #FF1743;
  border-color: #FF1743;
}
.cat-widget__item-img-wrapper {
  height: 178px;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #D5D7DB;
  border-radius: 5px;
}
.cat-widget__item-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.cat-widget__item-txt-wrapper {
  background: #3F3F3F;
  border: 2px solid #3F3F3F;
  border-radius: 5px;
  padding: 12px 25px;
  margin-top: 8px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.cat-widget__item-txt {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #FFFFFF;
}

.service-headline {
  margin-top: 30px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .service-headline {
    margin-top: 60px;
  }
}
.service-headline .widget-inner {
  background-color: transparent !important;
  padding: 0 !important;
}
.service-headline .widget-inner h2 {
  font-family: "Yantramanav" !important;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  color: #000 !important;
  margin: 0;
  font-size: 29px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .service-headline .widget-inner h2 {
    font-size: 40px !important;
  }
}
.service-headline .widget-inner h2 strong {
  font-family: "Yantramanav" !important;
  font-weight: 700;
}

.homepage-seo__four-grid .homepage-seo__text-block hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.homepage-seo__four-grid .homepage-seo__headline-wrapper {
  margin-bottom: 32px;
}
.homepage-seo__headline {
  font-weight: 400 !important;
  display: block;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .homepage-seo__headline {
    font-size: 25px;
  }
}
.homepage-seo__subheadline {
  font-weight: 700;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  display: block;
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .homepage-seo__subheadline {
    font-size: 30px;
  }
}
.homepage-seo__text p, .homepage-seo__text ul {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .homepage-seo__text p, .homepage-seo__text ul {
    font-size: 18px;
  }
}
.homepage-seo__text-block {
  margin-bottom: 50px;
}
.homepage-seo__text-block hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.homepage-seo__svg {
  font-size: 21px;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-weight: 400 !important;
}
.homepage-seo__svg svg {
  height: 57px;
}

.homepage-swiper .simpleParallax.simple-parallax-initialized, .category-swiper .simpleParallax.simple-parallax-initialized {
  height: 100%;
}
@media (max-width: 991.98px) {
  .homepage-swiper .swiper-wrapper, .category-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 991.98px) {
  .homepage-swiper .swiper-wrapper .swiper-slide, .category-swiper .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
.homepage-swiper .homepage-swiper__img.swiper-lazy, .homepage-swiper .swiper-lazy.content-swiper__img, .category-swiper .homepage-swiper__img.swiper-lazy, .category-swiper .swiper-lazy.content-swiper__img, .homepage-swiper .swiper-lazy.category-swiper__img, .category-swiper .swiper-lazy.category-swiper__img {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  height: 100%;
  background-color: #E9EBEF;
  background-position: center;
  background-size: cover;
  max-width: 100%;
  width: 100%;
}
.homepage-swiper .homepage-swiper__img.swiper-lazy.swiper-lazy-loaded, .homepage-swiper .swiper-lazy.swiper-lazy-loaded.content-swiper__img, .category-swiper .homepage-swiper__img.swiper-lazy.swiper-lazy-loaded, .category-swiper .swiper-lazy.swiper-lazy-loaded.content-swiper__img, .homepage-swiper .swiper-lazy.swiper-lazy-loaded.category-swiper__img, .category-swiper .swiper-lazy.swiper-lazy-loaded.category-swiper__img {
  opacity: 1;
  width: 100%;
}

.mkt-homepage {
  margin-bottom: 2rem;
}
.mkt-homepage .carousel-inner > .item > img,
.mkt-homepage .carousel-inner > .item > a > img {
  width: 70%;
  margin: auto;
}
.mkt-homepage .flex-item {
  position: relative;
  background: #fff;
  padding: 0;
  width: 180px;
  height: 180px;
  margin-top: 15px;
  overflow: hidden;
}
.mkt-homepage .flex-item:hover a .flex-align-bottom {
  background: rgb(0, 142, 189);
  padding-bottom: 0.4em;
}
.mkt-homepage .flex-item:hover a .flex-align-bottom .flex-text {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  line-height: 110%;
  -webkit-transition: line-height 1s, color 1s, -webkit-transform 1s;
  transition: line-height 1s, color 1s, -webkit-transform 1s;
  transition: transform 1s, line-height 1s, color 1s;
  transition: transform 1s, line-height 1s, color 1s, -webkit-transform 1s;
  font-size: 14px;
  color: rgb(255, 255, 255);
}
.mkt-homepage .flex-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mkt-homepage .flex-align-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  background: rgba(0, 142, 189, 0.7);
  text-align: left;
  padding: 0;
  padding-left: 0.3em;
  padding-right: 0.3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 101%;
  font-size: 14px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.mkt-homepage .flex-title {
  font-size: 17px;
  margin: 0;
  line-height: 1.6em;
  height: 1.6em;
  font-weight: normal;
  text-align: center;
  color: #fff;
  display: block;
}
.mkt-homepage .flex-text {
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-align: left;
  line-height: 0%;
  transform: scale(1, 0); /* W3C */
  -webkit-transform: scale(1, 0); /* Safari and Chrome */
  -moz-transform: scale(1, 0); /* Firefox */
  -ms-transform: scale(1, 0); /* IE 9 */
  -o-transform: scale(1, 0); /* Opera */
  font-size: 0;
  -webkit-transition: line-height 1s, font-size 1s, -webkit-transform 1s;
  transition: line-height 1s, font-size 1s, -webkit-transform 1s;
  transition: transform 1s, line-height 1s, font-size 1s;
  transition: transform 1s, line-height 1s, font-size 1s, -webkit-transform 1s;
  color: rgba(0, 142, 189, 0);
}
.mkt-homepage .flex-container {
  margin: 0 30px 25px;
  padding: 0;
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.mkt-homepage #welcome-text {
  font-size: 3rem;
}
.mkt-homepage #recommend-text {
  text-align: center;
}
.mkt-homepage .mt-xs-0_5 {
  margin-top: 6px;
}
.mkt-homepage .row, .mkt-homepage .configurator__row, .mkt-homepage .single__item-series, .mkt-homepage .header, .mkt-homepage .header-controls, .mkt-homepage .reset-pwd h1.h2, .reset-pwd .mkt-homepage h1.h2, .mkt-homepage .homepage__category-widget--row, .mkt-homepage .homepage__image-text-widget--row, .mkt-homepage .single__image-text-widget--row, .mkt-homepage .category__image-text-widget--row, .mkt-homepage .homepage__categories--cat-row, .mkt-homepage .content__categories--cat-row, .mkt-homepage .category__categories--cat-row {
  margin-left: -15px;
  margin-right: -15px;
}

body .checkout .widget-contact-wish .cmp-contact {
  border: 1px solid #E9EBEF !important;
  border-radius: 8px !important;
}

body.category-checkout .checkout__header {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.login__wrapper {
  padding-bottom: 70px;
}

.category-login .login__wrapper .login > .row, .category-login .login__wrapper .login > .configurator__row, .category-login .login__wrapper .login > .single__item-series, .category-login .login__wrapper .login > .header, .category-login .login__wrapper .login > .header-controls, .category-login .login__wrapper .reset-pwd .login > h1.h2, .reset-pwd .category-login .login__wrapper .login > h1.h2, .category-login .login__wrapper .login > .homepage__category-widget--row, .category-login .login__wrapper .login > .homepage__image-text-widget--row, .category-login .login__wrapper .login > .single__image-text-widget--row, .category-login .login__wrapper .login > .category__image-text-widget--row, .category-login .login__wrapper .login > .homepage__categories--cat-row, .category-login .login__wrapper .login > .content__categories--cat-row, .category-login .login__wrapper .login > .category__categories--cat-row {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .login__textblock, .login__checkout-or-line, .login__login-headline.mt-4 {
    display: none;
  }
}
.checkout-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-top: 24px;
}
.checkout-steps:before {
  content: "";
  width: 88%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  height: 2px;
  background-color: #E9ECEF;
  top: 23px;
}
.checkout-steps__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.checkout-steps__step--active .checkout-steps__indicator-wrapper {
  background-color: #3F3F3F !important;
  color: #fff !important;
}
.checkout-steps__step--active .checkout-steps__step-title {
  color: #000 !important;
}
.checkout-steps__indicator-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #E9EBEF;
  color: #979797;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.checkout-steps__step-title {
  color: #979797;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}

.checkout {
  margin-top: 0 !important;
  background: transparent !important;
}
.checkout .vatTotals {
  height: 20px;
}
.checkout .cmp-totals dl, .checkout .cmp-totals dd, .checkout .cmp-totals dt {
  margin-bottom: 0 !important;
}
.checkout .widget-gtc-check {
  padding-top: 16px !important;
}
.checkout .widget-newsletter-subscription-checkbox input {
  margin-top: 0;
}
.checkout .widget-newsletter-subscription-checkbox label {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .checkout .widget-newsletter-subscription-checkbox label {
    font-size: 15px;
  }
}
.checkout .gtc-label {
  margin-left: 0 !important;
  color: #000 !important;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .checkout .gtc-label {
    font-size: 15px;
  }
}
.checkout .item-total-price {
  font-size: 16px !important;
}
@media (min-width: 992px) {
  .checkout {
    margin-top: 60px;
  }
}
.checkout .widget-provider-select:nth-child(2) {
  margin-top: 3rem;
}
.checkout__payment-heading {
  margin-bottom: 0;
}
.checkout__headline, .checkout h1.h2 {
  background-color: #3f3f3f;
  border-radius: 6px 6px 0 0;
  height: 74px;
  line-height: 74px;
  font-weight: bold;
  font-size: 24px;
  padding-left: 20px;
}
.checkout__leftside, .checkout .widget-sticky, .checkout__wrapper > .widget-inner:first-child > div {
  padding: 30px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .checkout__leftside--outer {
    padding-right: 7px;
  }
}
.checkout__leftside h3, .checkout .widget-sticky h3, .checkout__wrapper > .widget-inner:first-child > div h3 {
  line-height: 1.3;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .checkout__leftside h3, .checkout .widget-sticky h3, .checkout__wrapper > .widget-inner:first-child > div h3 {
    font-size: 18px;
  }
}
.checkout__leftside .cmp-address-list .items > div:first-child, .checkout .widget-sticky .cmp-address-list .items > div:first-child, .checkout__wrapper > .widget-inner:first-child > div .cmp-address-list .items > div:first-child {
  border-radius: 8px;
  border: 1px solid #E9EBEF;
}
.checkout__totals {
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 20px;
}
@media (min-width: 768px) {
  .checkout-rightside {
    padding-left: 7px;
  }
}
.checkout-rightside--basketlist {
  background: transparent;
  padding: 0;
  margin-top: 14px;
}
@media (min-width: 768px) {
  .checkout-rightside--basketlist {
    margin-top: 0;
  }
}
.checkout-rightside--basketlist .basket-item-container {
  background: white;
  padding: 10px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 10px;
}
.checkout-rightside--basketlist .basket-item-container .item-name {
  font-weight: bold;
  color: #000;
}
.checkout-rightside--basketlist .basket-item-container .item-total-price {
  line-height: 22px;
  font-size: 16px;
  color: #000;
  margin-top: 10px;
}
.checkout .basket-items-list .item {
  padding-left: 0;
  padding-right: 0;
}
.checkout .login-register-title {
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
}
.checkout .cmp-address-list {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkout__header {
  background: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  height: 120px;
}
.checkout__header--container {
  max-width: 1500px;
}
.checkout__header--container .header-brand__image {
  width: 77px;
}
.checkout__header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkout__header--back a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 360px) {
  .checkout__header--back a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.checkout__header--back a i {
  margin-right: 5px;
  font-size: 16px;
  color: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .checkout__header--back a i {
    margin-right: 20px;
  }
}
.checkout__header--back a:hover {
  background: white !important;
  color: #3F3F3F;
  border: 2px solid #d4021d;
}
.checkout__header--back a:hover i {
  color: #3F3F3F;
}
.checkout__header--contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
}
.checkout__header--contact .footer__contact--headline {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 6px;
}
.checkout__header--contact .footer__contact--entries {
  max-width: unset;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
}
.checkout__header--contact .footer__contact--entries > div > a {
  color: #222;
  margin-left: 10px;
}
.checkout__header--contact .footer__contact--entries > div > a:hover {
  color: #ff1743;
}
.checkout__footer {
  margin-top: 100px;
}
.checkout__footer--content {
  border-radius: 6px;
  width: 100%;
  position: relative;
  padding: 20px;
  margin: auto;
  -webkit-box-shadow: 0px 1px 3px #777777;
          box-shadow: 0px 1px 3px #777777;
  background: #fff;
  margin-bottom: -30px;
  text-align: center;
}
.checkout__footer--content img {
  margin-top: -60px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.checkout__footer--sub {
  height: 57px;
  background-color: #3f3f3f;
}
.checkout__footer--payment {
  margin-top: 35px;
  margin-bottom: 30px;
}
.checkout__footer--payment-text {
  font-family: "Yantramanav";
  font-size: 14px;
}
.checkout__footer--payment-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 400px;
  margin: auto;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.my-account-no-line {
  padding-bottom: 15px;
}

.payment-change-text {
  color: #9498A0;
  padding-top: 15px;
}

.payment-align-center {
  text-align: center;
}

.payment-change-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767.98px) {
  .payment-change-box {
    margin-top: 15px;
  }
}
.payment-change-box .payment-change-box-item:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.payment-change-box .cannot-change-payment {
  font-size: 1rem;
  padding: 5px;
  width: 100%;
  color: #000;
}
.payment-change-box .cannot-change-payment .info-badge {
  margin-left: 0.2rem;
  color: #000;
}
.payment-change-box .cannot-change-payment svg {
  fill: #000 !important;
}

.page-content.basket, .page-content.checkout, .page-content.wishlist, .page-checkout {
  background: #fff !important;
  margin-top: 0;
  padding-top: 0;
  position: relative;
}
.page-content.basket:before, .page-content.checkout:before, .page-content.wishlist:before, .page-checkout:before {
  content: "";
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #fff;
}
.page-content.basket .h2, .page-content.checkout .h2, .page-content.wishlist .h2, .page-checkout .h2 {
  font-weight: bold;
  height: 74px;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  line-height: normal;
  font-size: 24px;
  color: #000;
}
@media (min-width: 768px) {
  .page-content.basket .h2, .page-content.checkout .h2, .page-content.wishlist .h2, .page-checkout .h2 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .page-content.basket .h2, .page-content.checkout .h2, .page-content.wishlist .h2, .page-checkout .h2 {
    line-height: 114px;
    height: 114px;
  }
}
.page-content.basket .h2:before, .page-content.checkout .h2:before, .page-content.wishlist .h2:before, .page-checkout .h2:before {
  content: "";
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #e9ecef;
  z-index: -1;
}
.page-content.basket .advantages, .page-content.checkout .advantages, .page-content.wishlist .advantages, .page-checkout .advantages {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 70px;
  display: none;
}
@media (min-width: 992px) {
  .page-content.basket .advantages, .page-content.checkout .advantages, .page-content.wishlist .advantages, .page-checkout .advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page-content.basket .advantages__item, .page-content.checkout .advantages__item, .page-content.wishlist .advantages__item, .page-checkout .advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yantramanav";
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}
.page-content.basket .advantages__item span, .page-content.checkout .advantages__item span, .page-content.wishlist .advantages__item span, .page-checkout .advantages__item span {
  font-family: "Yantramanav";
}
.page-content.basket .advantages__item svg, .page-content.checkout .advantages__item svg, .page-content.wishlist .advantages__item svg, .page-checkout .advantages__item svg {
  width: 20px;
  height: 20px;
}
.page-content.basket .cmp-totals, .page-content.checkout .cmp-totals, .page-content.wishlist .cmp-totals, .page-checkout .cmp-totals {
  margin-bottom: 30px;
}
.page-content.basket .cmp-totals .h3, .page-content.checkout .cmp-totals .h3, .page-content.wishlist .cmp-totals .h3, .page-checkout .cmp-totals .h3 {
  line-height: 33px;
  font-family: "Yantramanav";
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
}
.page-content.basket .basket__basket-list, .page-content.checkout .basket__basket-list, .page-content.wishlist .basket__basket-list, .page-checkout .basket__basket-list {
  padding: 0 !important;
}
.page-content.basket .basket__basket-list .h5, .page-content.checkout .basket__basket-list .h5, .page-content.wishlist .basket__basket-list .h5, .page-checkout .basket__basket-list .h5 {
  padding-bottom: 20px;
}
.page-content.basket .basket__basket-rightside, .page-content.checkout .basket__basket-rightside, .page-content.wishlist .basket__basket-rightside, .page-checkout .basket__basket-rightside {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 24px !important;
}
.page-content.basket .basket__basket-rightside .basket__shipping, .page-content.checkout .basket__basket-rightside .basket__shipping, .page-content.wishlist .basket__basket-rightside .basket__shipping, .page-checkout .basket__basket-rightside .basket__shipping {
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdbd8;
  padding-bottom: 24px;
}
.page-content.basket .basket__basket-rightside .basket__shipping > div div, .page-content.checkout .basket__basket-rightside .basket__shipping > div div, .page-content.wishlist .basket__basket-rightside .basket__shipping > div div, .page-checkout .basket__basket-rightside .basket__shipping > div div {
  line-height: 1;
}
.page-content.basket .basket__basket-rightside .basket__shipping > div div:last-child, .page-content.checkout .basket__basket-rightside .basket__shipping > div div:last-child, .page-content.wishlist .basket__basket-rightside .basket__shipping > div div:last-child, .page-checkout .basket__basket-rightside .basket__shipping > div div:last-child {
  font-size: 16px;
}
.page-content.basket .basket__basket-rightside .basket__shipping .form-control, .page-content.checkout .basket__basket-rightside .basket__shipping .form-control, .page-content.wishlist .basket__basket-rightside .basket__shipping .form-control, .page-checkout .basket__basket-rightside .basket__shipping .form-control {
  line-height: 1;
  font-size: 16px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (min-width: 768px) {
  .page-content.basket .basket__basket-rightside .basket__shipping .form-control, .page-content.checkout .basket__basket-rightside .basket__shipping .form-control, .page-content.wishlist .basket__basket-rightside .basket__shipping .form-control, .page-checkout .basket__basket-rightside .basket__shipping .form-control {
    font-size: 18px;
  }
}
.page-content.basket .basket__basket-rightside .h3, .page-content.checkout .basket__basket-rightside .h3, .page-content.wishlist .basket__basket-rightside .h3, .page-checkout .basket__basket-rightside .h3 {
  line-height: normal !important;
  font-size: 18px;
}
@media (min-width: 768px) {
  .page-content.basket .basket__basket-rightside .h3, .page-content.checkout .basket__basket-rightside .h3, .page-content.wishlist .basket__basket-rightside .h3, .page-checkout .basket__basket-rightside .h3 {
    font-size: 22px;
  }
}
.page-content.basket .basket__basket-rightside .vatTotals, .page-content.checkout .basket__basket-rightside .vatTotals, .page-content.wishlist .basket__basket-rightside .vatTotals, .page-checkout .basket__basket-rightside .vatTotals {
  height: 20px;
}
.page-content.basket .basket__basket-rightside .input-group, .page-content.checkout .basket__basket-rightside .input-group, .page-content.wishlist .basket__basket-rightside .input-group, .page-checkout .basket__basket-rightside .input-group {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.page-content.basket .basket__basket-rightside .cmp-totals dd, .page-content.basket .basket__basket-rightside .cmp-totals dt, .page-content.checkout .basket__basket-rightside .cmp-totals dd, .page-content.checkout .basket__basket-rightside .cmp-totals dt, .page-content.wishlist .basket__basket-rightside .cmp-totals dd, .page-content.wishlist .basket__basket-rightside .cmp-totals dt, .page-checkout .basket__basket-rightside .cmp-totals dd, .page-checkout .basket__basket-rightside .cmp-totals dt {
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-content.basket .basket__basket-rightside .cmp-totals dd, .page-content.basket .basket__basket-rightside .cmp-totals dt, .page-content.checkout .basket__basket-rightside .cmp-totals dd, .page-content.checkout .basket__basket-rightside .cmp-totals dt, .page-content.wishlist .basket__basket-rightside .cmp-totals dd, .page-content.wishlist .basket__basket-rightside .cmp-totals dt, .page-checkout .basket__basket-rightside .cmp-totals dd, .page-checkout .basket__basket-rightside .cmp-totals dt {
    font-size: 18px;
  }
}
.page-content.basket .basket__basket-rightside .cmp-totals dd, .page-content.checkout .basket__basket-rightside .cmp-totals dd, .page-content.wishlist .basket__basket-rightside .cmp-totals dd, .page-checkout .basket__basket-rightside .cmp-totals dd {
  margin-bottom: 0;
}
.page-content.basket .basket__basket-rightside .cmp-totals dl, .page-content.checkout .basket__basket-rightside .cmp-totals dl, .page-content.wishlist .basket__basket-rightside .cmp-totals dl, .page-checkout .basket__basket-rightside .cmp-totals dl {
  margin-bottom: 0;
}
.page-content.basket .basket__basket-rightside .cmp-totals .h3, .page-content.checkout .basket__basket-rightside .cmp-totals .h3, .page-content.wishlist .basket__basket-rightside .cmp-totals .h3, .page-checkout .basket__basket-rightside .cmp-totals .h3 {
  font-family: "Yantramanav";
  color: #000;
  line-height: normal;
  font-size: 24px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-content.basket .basket__basket-rightside .cmp-totals .h3, .page-content.checkout .basket__basket-rightside .cmp-totals .h3, .page-content.wishlist .basket__basket-rightside .cmp-totals .h3, .page-checkout .basket__basket-rightside .cmp-totals .h3 {
    font-size: 30px;
  }
}
.page-content.basket .basket__basket-rightside .paypalSmartButtons, .page-content.checkout .basket__basket-rightside .paypalSmartButtons, .page-content.wishlist .basket__basket-rightside .paypalSmartButtons, .page-checkout .basket__basket-rightside .paypalSmartButtons {
  padding: 0;
}
.page-content.basket .basket__basket-rightside .paypalSmartButtons > div, .page-content.checkout .basket__basket-rightside .paypalSmartButtons > div, .page-content.wishlist .basket__basket-rightside .paypalSmartButtons > div, .page-checkout .basket__basket-rightside .paypalSmartButtons > div {
  margin: 0;
}
.page-content.basket .basket__coupon-btn, .page-content.checkout .basket__coupon-btn, .page-content.wishlist .basket__coupon-btn, .page-checkout .basket__coupon-btn {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  height: 40px;
  width: 100px;
  text-align: center;
  font-family: "Yantramanav";
  color: #000;
  background: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .page-content.basket .basket__coupon-btn, .page-content.checkout .basket__coupon-btn, .page-content.wishlist .basket__coupon-btn, .page-checkout .basket__coupon-btn {
    font-size: 18px !important;
  }
}
.page-content.basket .basket__coupon-btn .svg_gift, .page-content.checkout .basket__coupon-btn .svg_gift, .page-content.wishlist .basket__coupon-btn .svg_gift, .page-checkout .basket__coupon-btn .svg_gift {
  margin-left: 5px;
  fill: #3F3F3F;
  width: 14px;
  height: 12px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.page-content.basket .basket__coupon-btn:hover, .page-content.checkout .basket__coupon-btn:hover, .page-content.wishlist .basket__coupon-btn:hover, .page-checkout .basket__coupon-btn:hover {
  color: #000;
  border-color: #FF1743;
}
.page-content.basket .basket__coupon-input, .page-content.checkout .basket__coupon-input, .page-content.wishlist .basket__coupon-input, .page-checkout .basket__coupon-input {
  border-radius: 5px;
  border: 1px solid #3F3F3F;
  height: 40px;
  margin-right: 10px;
  width: 100% !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 576px) {
  .page-content.basket .basket__coupon-input, .page-content.checkout .basket__coupon-input, .page-content.wishlist .basket__coupon-input, .page-checkout .basket__coupon-input {
    width: 1% !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .page-content.basket .basket__coupon-input, .page-content.checkout .basket__coupon-input, .page-content.wishlist .basket__coupon-input, .page-checkout .basket__coupon-input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 10px !important;
    font-size: 18px !important;
  }
}
@media (min-width: 992px) {
  .page-content.basket .basket__coupon-input, .page-content.checkout .basket__coupon-input, .page-content.wishlist .basket__coupon-input, .page-checkout .basket__coupon-input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 10px;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .page-content.basket .basket .input-group-btn, .page-content.checkout .basket .input-group-btn, .page-content.wishlist .basket .input-group-btn, .page-checkout .basket .input-group-btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .page-content.basket .basket .input-group-btn, .page-content.checkout .basket .input-group-btn, .page-content.wishlist .basket .input-group-btn, .page-checkout .basket .input-group-btn {
    width: auto;
  }
}
.page-content.basket .basket__checkout-btn, .page-content.checkout .basket__checkout-btn, .page-content.wishlist .basket__checkout-btn, .page-checkout .basket__checkout-btn {
  margin-top: 32px;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 2px solid #FF1743;
  text-align: center;
  font-family: "Yantramanav";
  font-weight: 700;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ff1743;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-content.basket .basket__checkout-btn, .page-content.checkout .basket__checkout-btn, .page-content.wishlist .basket__checkout-btn, .page-checkout .basket__checkout-btn {
    font-size: 18px;
  }
}
.page-content.basket .basket__checkout-btn--cancel, .page-content.checkout .basket__checkout-btn--cancel, .page-content.wishlist .basket__checkout-btn--cancel, .page-checkout .basket__checkout-btn--cancel {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.page-content.basket .basket__checkout-btn:hover, .page-content.checkout .basket__checkout-btn:hover, .page-content.wishlist .basket__checkout-btn:hover, .page-checkout .basket__checkout-btn:hover {
  border: 2px solid #d4021d;
  color: white;
  background: #d4021d;
}
.page-content.basket .basket__checkout-btn i, .page-content.checkout .basket__checkout-btn i, .page-content.wishlist .basket__checkout-btn i, .page-checkout .basket__checkout-btn i {
  display: none;
}

.page-checkout {
  padding-top: 0 !important;
}

.page-content.checkout, .page-checkout {
  padding-top: 0px;
}
.page-content.checkout .widget-basket, .page-checkout .widget-basket {
  padding: 8px;
}
@media (min-width: 768px) {
  .page-content.checkout .widget-basket, .page-checkout .widget-basket {
    padding: 0;
  }
}
.page-content.checkout .gtc-checkbox, .page-checkout .gtc-checkbox {
  -webkit-appearance: none;
  background-color: #4A4A4A;
  border-radius: 3px;
  border: 1px solid #4A4A4A;
  width: 16px;
  height: 16px;
}
.page-content.checkout .gtc-checkbox:checked ~ .checkmark:after, .page-checkout .gtc-checkbox:checked ~ .checkmark:after {
  display: block;
}
.page-content.checkout .gtc-label, .page-checkout .gtc-label {
  font-weight: bold;
  margin-left: 20px;
  color: #333;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .page-content.checkout .gtc-label, .page-checkout .gtc-label {
    font-size: 15px;
  }
}
.page-content.checkout .gtc-label strong, .page-checkout .gtc-label strong {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
}
.page-content.checkout #contact_wish, .page-checkout #contact_wish {
  padding-top: 35px;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .page-content.checkout #contact_wish, .page-checkout #contact_wish {
    font-size: 18px;
  }
}
.page-content.checkout [for=contact_wish], .page-checkout [for=contact_wish] {
  text-transform: unset;
  color: #000 !important;
  opacity: 1;
  line-height: 1.3;
  padding-top: 10px;
  font-weight: normal !important;
  font-size: 13px;
}
@media (min-width: 768px) {
  .page-content.checkout [for=contact_wish], .page-checkout [for=contact_wish] {
    font-size: 15px;
  }
}
.page-content.checkout .checkmark, .page-checkout .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  pointer-events: none;
}
.page-content.checkout .checkmark:after, .page-checkout .checkmark:after {
  left: 6px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  position: absolute;
  display: none;
}
.page-content.checkout .w-100.pt-4.pr-4.pb-4.pl-4, .page-checkout .w-100.pt-4.pr-4.pb-4.pl-4 {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

.address-modal .input-group[data-model=vatNumber] .input-group-prepend, .account-password-modal .input-group[data-model=vatNumber] .input-group-prepend, .account-email-modal .input-group[data-model=vatNumber] .input-group-prepend, .bankdata-modal .input-group[data-model=vatNumber] .input-group-prepend, .change-payment-modal .input-group[data-model=vatNumber] .input-group-prepend, .login-modal .input-group[data-model=vatNumber] .input-group-prepend {
  height: 45px !important;
  margin-right: 3px;
}
.address-modal .amzPayButton, .account-password-modal .amzPayButton, .account-email-modal .amzPayButton, .bankdata-modal .amzPayButton, .change-payment-modal .amzPayButton, .login-modal .amzPayButton {
  display: none;
}
.address-modal #ppButton, .account-password-modal #ppButton, .account-email-modal #ppButton, .bankdata-modal #ppButton, .change-payment-modal #ppButton, .login-modal #ppButton {
  display: none;
}
.address-modal .amzLoginButton, .account-password-modal .amzLoginButton, .account-email-modal .amzLoginButton, .bankdata-modal .amzLoginButton, .change-payment-modal .amzLoginButton, .login-modal .amzLoginButton {
  margin-bottom: 5px;
}
@media (min-width: 576px) {
  .address-modal .amzLoginButton, .account-password-modal .amzLoginButton, .account-email-modal .amzLoginButton, .bankdata-modal .amzLoginButton, .change-payment-modal .amzLoginButton, .login-modal .amzLoginButton {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .address-modal .modal-dialog, .account-password-modal .modal-dialog, .account-email-modal .modal-dialog, .bankdata-modal .modal-dialog, .change-payment-modal .modal-dialog, .login-modal .modal-dialog {
    max-width: 755px;
    width: 755px;
  }
}
.address-modal .close, .account-password-modal .close, .account-email-modal .close, .bankdata-modal .close, .change-payment-modal .close, .login-modal .close {
  opacity: 1;
  right: 35px;
  top: -10px;
}
.address-modal .close:before, .account-password-modal .close:before, .account-email-modal .close:before, .bankdata-modal .close:before, .change-payment-modal .close:before, .login-modal .close:before {
  content: unset;
  background-image: none !important;
}
.address-modal__button, .account-password-modal__button, .account-email-modal__button, .bankdata-modal__button, .change-payment-modal__button, .login-modal__button {
  border-radius: 5px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  background: #fff;
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #ff1743;
  color: #fff;
  border: 2px solid #ff1743;
}
.address-modal__button:hover, .address-modal__button:focus, .address-modal__button:active, .account-password-modal__button:hover, .account-password-modal__button:focus, .account-password-modal__button:active, .account-email-modal__button:hover, .account-email-modal__button:focus, .account-email-modal__button:active, .bankdata-modal__button:hover, .bankdata-modal__button:focus, .bankdata-modal__button:active, .change-payment-modal__button:hover, .change-payment-modal__button:focus, .change-payment-modal__button:active, .login-modal__button:hover, .login-modal__button:focus, .login-modal__button:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #d4021d !important;
  color: #fff;
  border: 2px solid #d4021d;
}
.address-modal .modal-content, .account-password-modal .modal-content, .account-email-modal .modal-content, .bankdata-modal .modal-content, .change-payment-modal .modal-content, .login-modal .modal-content {
  border-radius: 6px;
}
.address-modal .modal-content .modal-body, .account-password-modal .modal-content .modal-body, .account-email-modal .modal-content .modal-body, .bankdata-modal .modal-content .modal-body, .change-payment-modal .modal-content .modal-body, .login-modal .modal-content .modal-body {
  padding: 20px;
}
.address-modal .modal-content .input-unit, .account-password-modal .modal-content .input-unit, .account-email-modal .modal-content .input-unit, .bankdata-modal .modal-content .input-unit, .change-payment-modal .modal-content .input-unit, .login-modal .modal-content .input-unit {
  background-color: #fff;
  height: 48px;
  line-height: 19px;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  border: none;
}
@media (min-width: 768px) {
  .address-modal .modal-content .input-unit, .account-password-modal .modal-content .input-unit, .account-email-modal .modal-content .input-unit, .bankdata-modal .modal-content .input-unit, .change-payment-modal .modal-content .input-unit, .login-modal .modal-content .input-unit {
    height: 48px;
  }
  @supports (-ms-ime-align: auto) {
    .address-modal .modal-content .input-unit, .account-password-modal .modal-content .input-unit, .account-email-modal .modal-content .input-unit, .bankdata-modal .modal-content .input-unit, .change-payment-modal .modal-content .input-unit, .login-modal .modal-content .input-unit {
      height: 48px;
    }
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .address-modal .modal-content .input-unit, .account-password-modal .modal-content .input-unit, .account-email-modal .modal-content .input-unit, .bankdata-modal .modal-content .input-unit, .change-payment-modal .modal-content .input-unit, .login-modal .modal-content .input-unit {
    height: 49px !important;
  }
}
.address-modal .modal-content .input-unit input, .address-modal .modal-content .input-unit select, .account-password-modal .modal-content .input-unit input, .account-password-modal .modal-content .input-unit select, .account-email-modal .modal-content .input-unit input, .account-email-modal .modal-content .input-unit select, .bankdata-modal .modal-content .input-unit input, .bankdata-modal .modal-content .input-unit select, .change-payment-modal .modal-content .input-unit input, .change-payment-modal .modal-content .input-unit select, .login-modal .modal-content .input-unit input, .login-modal .modal-content .input-unit select {
  padding: 1.6rem 1rem 0.3rem 1rem;
  border: 1px solid #9498A0;
  border-radius: 5px;
  height: 45px;
}
.address-modal .modal-content .input-unit input:focus, .address-modal .modal-content .input-unit select:focus, .account-password-modal .modal-content .input-unit input:focus, .account-password-modal .modal-content .input-unit select:focus, .account-email-modal .modal-content .input-unit input:focus, .account-email-modal .modal-content .input-unit select:focus, .bankdata-modal .modal-content .input-unit input:focus, .bankdata-modal .modal-content .input-unit select:focus, .change-payment-modal .modal-content .input-unit input:focus, .change-payment-modal .modal-content .input-unit select:focus, .login-modal .modal-content .input-unit input:focus, .login-modal .modal-content .input-unit select:focus {
  border: 1px solid #3F3F3F;
}
.address-modal .modal-content .input-unit select, .account-password-modal .modal-content .input-unit select, .account-email-modal .modal-content .input-unit select, .bankdata-modal .modal-content .input-unit select, .change-payment-modal .modal-content .input-unit select, .login-modal .modal-content .input-unit select {
  padding: 1.3rem 1rem 0.3rem 1rem !important;
}
.address-modal .modal-content .input-unit label, .account-password-modal .modal-content .input-unit label, .account-email-modal .modal-content .input-unit label, .bankdata-modal .modal-content .input-unit label, .change-payment-modal .modal-content .input-unit label, .login-modal .modal-content .input-unit label {
  line-height: 1.3 !important;
  font-size: 13px !important;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-family: "Yantramanav";
}
.address-modal .modal-header, .account-password-modal .modal-header, .account-email-modal .modal-header, .bankdata-modal .modal-header, .change-payment-modal .modal-header, .login-modal .modal-header {
  background-color: #e9ecef !important;
  height: 74px;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  margin: 0 !important;
  padding-left: 20px;
  padding-right: 30px;
}
.address-modal .modal-header svg, .account-password-modal .modal-header svg, .account-email-modal .modal-header svg, .bankdata-modal .modal-header svg, .change-payment-modal .modal-header svg, .login-modal .modal-header svg {
  fill: black;
  cursor: pointer;
}
.address-modal .modal-title, .account-password-modal .modal-title, .account-email-modal .modal-title, .bankdata-modal .modal-title, .change-payment-modal .modal-title, .login-modal .modal-title {
  font-size: 15px;
  line-height: 74px;
  font-weight: bold;
  color: #000;
  margin: 0 !important;
}
@media (min-width: 576px) {
  .address-modal .modal-title, .account-password-modal .modal-title, .account-email-modal .modal-title, .bankdata-modal .modal-title, .change-payment-modal .modal-title, .login-modal .modal-title {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .address-modal .modal-title, .account-password-modal .modal-title, .account-email-modal .modal-title, .bankdata-modal .modal-title, .change-payment-modal .modal-title, .login-modal .modal-title {
    font-size: 24px;
  }
}

.delete-modal__cancel {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  height: 40px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  background: #fff;
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.delete-modal__cancel:hover {
  color: #FF1743;
}
.delete-modal__delete {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  background: #FF1743;
  display: block;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.delete-modal__delete:hover {
  color: #FF1743;
  background: #fff;
  border: 2px solid #3F3F3F;
}

.page-checkout #vue-app {
  background: #e9ebef !important;
}

.address-modal__button {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .address-modal__button {
    font-size: 18px;
  }
}
.address-modal__button span {
  color: white !important;
}

.page-confirmation h1 {
  font-family: "Yantramanav";
  font-weight: bold;
}
.page-confirmation .widget-order-documents .btn, .page-confirmation .widget-order-documents .single__series-button, .page-confirmation .widget-order-documents .feedback-container .btn-secondary, .page-confirmation .widget-order-documents .feedback-container .feedback-info-segment.btn-default, .feedback-container .page-confirmation .widget-order-documents .btn-secondary, .feedback-container .page-confirmation .widget-order-documents .feedback-info-segment.btn-default {
  border-radius: 5px;
  text-align: center;
  line-height: 1.25;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  background: #ff1743;
}
.page-confirmation .widget-order-documents .btn:hover, .page-confirmation .widget-order-documents .single__series-button:hover, .page-confirmation .widget-order-documents .feedback-container .btn-secondary:hover, .page-confirmation .widget-order-documents .feedback-container .feedback-info-segment.btn-default:hover, .feedback-container .page-confirmation .widget-order-documents .btn-secondary:hover, .feedback-container .page-confirmation .widget-order-documents .feedback-info-segment.btn-default:hover, .page-confirmation .widget-order-documents .btn:focus, .page-confirmation .widget-order-documents .single__series-button:focus, .page-confirmation .widget-order-documents .feedback-container .btn-secondary:focus, .page-confirmation .widget-order-documents .feedback-container .feedback-info-segment.btn-default:focus, .feedback-container .page-confirmation .widget-order-documents .btn-secondary:focus, .feedback-container .page-confirmation .widget-order-documents .feedback-info-segment.btn-default:focus, .page-confirmation .widget-order-documents .btn:active, .page-confirmation .widget-order-documents .single__series-button:active, .page-confirmation .widget-order-documents .feedback-container .btn-secondary:active, .page-confirmation .widget-order-documents .feedback-container .feedback-info-segment.btn-default:active, .feedback-container .page-confirmation .widget-order-documents .btn-secondary:active, .feedback-container .page-confirmation .widget-order-documents .feedback-info-segment.btn-default:active {
  color: #fff;
  background: #d4021d;
}
.page-confirmation .confirmation-order-list {
  background: white;
  padding: 20px;
  padding-bottom: 1px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}
.page-confirmation .confirmation-order-list .item-details.small, .page-confirmation .confirmation-order-list .item-details.btn-labeled {
  margin-top: 0 !important;
}
.page-confirmation .cmp-totals {
  background: white;
  margin-top: 10px;
  padding: 20px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}
.page-confirmation .cmp-totals h3 {
  font-family: "Yantramanav";
  font-weight: bold;
}
.page-confirmation .cmp-totals .totalSum dd, .page-confirmation .cmp-totals .totalSum dt {
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .page-confirmation .cmp-totals .totalSum dd, .page-confirmation .cmp-totals .totalSum dt {
    font-size: 18px !important;
  }
}
.page-confirmation .card-header {
  background: transparent;
}
.page-confirmation .card-header h5 {
  font-family: "Yantramanav";
  font-weight: bold;
}
.page-confirmation .wrapper-main {
  background: #E9EBEF;
}

#cashinadvanceModal .btn-primary {
  border-radius: 6px;
}
#cashinadvanceModal .btn-primary i {
  display: none;
}
#cashinadvanceModal .close {
  position: absolute;
  right: 20px;
}

.confirmation__wrapper {
  padding: 20px;
  border-radius: 6px;
}
.confirmation__wrapper .card.small, .confirmation__wrapper .cmp-address-list .items > div.small:first-child, .cmp-address-list .confirmation__wrapper .items > div.small:first-child, .confirmation__wrapper .card.btn-labeled, .confirmation__wrapper .cmp-address-list .items > div.btn-labeled:first-child, .cmp-address-list .confirmation__wrapper .items > div.btn-labeled:first-child {
  background: white;
  border-radius: 6px;
  border: none;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.confirmation__wrapper .card.small .btn-primary, .confirmation__wrapper .cmp-address-list .items > div.small:first-child .btn-primary, .cmp-address-list .confirmation__wrapper .items > div.small:first-child .btn-primary, .confirmation__wrapper .card.btn-labeled .btn-primary, .confirmation__wrapper .cmp-address-list .items > div.btn-labeled:first-child .btn-primary, .cmp-address-list .confirmation__wrapper .items > div.btn-labeled:first-child .btn-primary {
  border-radius: 6px;
}
.confirmation__home-button {
  height: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  font-size: 14px;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 2px solid #ff1743;
  color: #fff;
  background: #ff1743;
}
.confirmation__home-button:hover, .confirmation__home-button:focus, .confirmation__home-button:active {
  color: #fff;
  background: #d4021d;
  border: 2px solid #d4021d;
}
.confirmation__myaccount-button {
  height: 40px;
  border-radius: 5px;
  border: 2px solid #FF1743;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  font-size: 14px;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #FF1743;
  color: #fff;
}
.confirmation__myaccount-button:hover, .confirmation__myaccount-button:focus, .confirmation__myaccount-button:active {
  color: #fff;
  background: #d4021d;
  border: 2px solid #d4021d;
}

.alert.alert-dismissible.alert-danger {
  color: #ffffff;
  background-color: #ff1743;
  border-color: #ff1743;
  border-radius: 4px;
}

.form-check.error label {
  color: white !important;
}

.change-payment-modal {
  /*button{
  	height: 40px;
  	border-radius: 5px;
  	border: 2px solid #3F3F3F;
  	text-align: center;
  	line-height: 35px;
  	font-weight: bold;
  	font-size: 14px;
  	color: #000;
  	display: block;
  	transition: all .5s ease;
  	background: transparent;
  	padding: 0 10px;

  	i{
  		display:none;
  	}

  	&:hover{
  		border-color: $brand-primary;
  	}
  }*/
}
.change-payment-modal__button--cancel {
  background-color: #3f3f3f;
  border-color: #3f3f3f;
}
.change-payment-modal__button--cancel:hover, .change-payment-modal__button--cancel:focus, .change-payment-modal__button--cancel:active {
  background-color: #3f3f3f !important;
  border-color: #3f3f3f;
}
@media (min-width: 992px) {
  .change-payment-modal .cmp-method-list .method-list-item {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .change-payment-modal .current-payment-width {
    height: 40px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.checkout h1.h2 {
  height: 114px;
  line-height: 114px;
  margin-bottom: 0;
}
.checkout__wrapper {
  padding-top: 30px;
}
.checkout__wrapper > .widget-inner:first-child {
  padding-right: 7px;
}
.checkout__wrapper > .widget-inner:last-child {
  padding-left: 7px;
}
@media (max-width: 767.98px) {
  .checkout__wrapper > .widget-inner:last-child {
    padding-right: 0px;
  }
}
.checkout__wrapper > .widget-inner > div {
  background: transparent !important;
}
.checkout__wrapper > .widget-inner:first-child > div {
  background: white !important;
}
.checkout__wrapper > .widget-inner:last-child > div {
  padding: 0 !important;
}
.checkout .widget-sticky {
  background: white;
}
.checkout .widget-basket {
  margin-bottom: 10px !important;
}
.checkout__buy-btn button {
  font-family: "Yantramanav";
  height: 40px;
  line-height: 24px;
  font-size: 14px;
  border-radius: 5px;
  color: #fff;
  background-color: #FF1743;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #FF1743;
  padding: 0.5rem 1rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 6px;
}
.checkout__buy-btn button:hover, .checkout__buy-btn button:active {
  color: #fff;
  background-color: #e3002b;
  border-color: #d60029;
}

.text-muted.small.font-italic, .text-muted.font-italic.btn-labeled {
  font-style: normal !important;
  color: #000 !important;
  margin-top: 0;
  padding-top: 0 !important;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .text-muted.small.font-italic, .text-muted.font-italic.btn-labeled {
    font-size: 15px;
  }
}

#crefopayCCModal #div-CCnewPaymentInstrument ul {
  padding: 0;
}
#crefopayCCModal div#paymentCCInstrumentAccountHolder, #crefopayCCModal div#paymentCCInstrumentNumber, #crefopayCCModal div#paymentCCInstrumentValidity, #crefopayCCModal div#paymentCCInstrumentCVV {
  font-family: "Yantramanav";
  font-weight: bold;
}
#crefopayCCModal #paymentCCInstrumentAccountHolderInput iframe, #crefopayCCModal #paymentCCInstrumentNumberInput iframe, #crefopayCCModal #paymentCCInstrumentValidityInput iframe, #crefopayCCModal #paymentCCInstrumentCVVInput iframe {
  border: 1px solid #9498a0;
  height: 48px;
  border-radius: 5px;
}
#crefopayCCModal .ccPaymentDivInput {
  border: none;
}
#crefopayCCModal li#li-newCCPaymentInstrument {
  display: none;
}
#crefopayCCModal #crefopayCCModalSubmit {
  border-radius: 5px;
  font-weight: 700;
}

.basket__express-buttons,
.login__express-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.basket__express-buttons > div,
.login__express-buttons > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 576px) {
  .basket__express-buttons > div,
  .login__express-buttons > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 4px);
            flex: 0 0 calc(50% - 4px);
  }
}
.basket__express-buttons .amzLoginButton,
.login__express-buttons .amzLoginButton {
  display: none !important;
}
.basket__express-buttons .paypalSmartButtons,
.login__express-buttons .paypalSmartButtons {
  padding: 0;
}
@media (max-width: 575.98px) {
  .basket__express-buttons .paypalSmartButtons,
  .login__express-buttons .paypalSmartButtons {
    margin-bottom: 8px;
  }
}
@media (min-width: 576px) {
  .basket__express-buttons .paypalSmartButtons,
  .login__express-buttons .paypalSmartButtons {
    margin-top: -1px;
  }
}
.basket__express-buttons .paypalSmartButtons > div,
.login__express-buttons .paypalSmartButtons > div {
  margin: 0;
}
.basket__express-buttons .amazon-login-button,
.login__express-buttons .amazon-login-button {
  display: none;
}
.basket__express-buttons .amazon-pay-button,
.login__express-buttons .amazon-pay-button {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-height: 35px;
  margin: 0;
  cursor: pointer;
  width: 100% !important;
}
@media screen and (min-width: 407px) {
  .basket__express-buttons .amazon-pay-button,
  .login__express-buttons .amazon-pay-button {
    max-height: 45px;
  }
}
@media (min-width: 576px) {
  .basket__express-buttons .amazon-pay-button,
  .login__express-buttons .amazon-pay-button {
    max-height: 35px;
  }
}
@media screen and (min-width: 709px) {
  .basket__express-buttons .amazon-pay-button,
  .login__express-buttons .amazon-pay-button {
    max-height: 45px;
  }
}
@media (min-width: 992px) {
  .basket__express-buttons .amazon-pay-button,
  .login__express-buttons .amazon-pay-button {
    max-height: 35px;
  }
}
.basket__express-buttons .amazon-pay-button:before,
.login__express-buttons .amazon-pay-button:before {
  content: "";
  background: url(https://cdn02.plentymarkets.com/2gnme0xtljk4/frontend/images/amzpay.png) no-repeat center 65%;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.basket__express-buttons .amazon-pay-button img,
.login__express-buttons .amazon-pay-button img {
  opacity: 1;
  max-height: 35px !important;
  width: 100%;
}
@media screen and (min-width: 407px) {
  .basket__express-buttons .amazon-pay-button img,
  .login__express-buttons .amazon-pay-button img {
    max-height: 45px !important;
  }
}
@media (min-width: 576px) {
  .basket__express-buttons .amazon-pay-button img,
  .login__express-buttons .amazon-pay-button img {
    max-height: 35px !important;
  }
}
@media screen and (min-width: 709px) {
  .basket__express-buttons .amazon-pay-button img,
  .login__express-buttons .amazon-pay-button img {
    max-height: 45px !important;
  }
}
@media (min-width: 992px) {
  .basket__express-buttons .amazon-pay-button img,
  .login__express-buttons .amazon-pay-button img {
    max-height: 35px !important;
  }
}

.basket__express-buttons {
  margin-top: 1rem;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .basket__express-buttons .paypalSmartButtons,
  .basket__express-buttons .amzPayButton {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .basket__express-buttons .amzPayButton {
    margin-top: 8px;
  }
}
@media (min-width: 768px) {
  .basket__express-buttons .amzPayButton {
    max-height: 35px;
  }
}
@media screen and (min-width: 878px) and (max-width: 1199px) {
  .basket__express-buttons .amzPayButton {
    max-height: 45px;
  }
}
@media (min-width: 992px) {
  .basket__express-buttons .amzPayButton img {
    max-height: 35px !important;
  }
}
@media screen and (min-width: 878px) and (max-width: 1199px) {
  .basket__express-buttons .amzPayButton img {
    max-height: 45px !important;
  }
}

.after-checkout-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
@media (min-width: 576px) {
  .after-checkout-btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .after-checkout-btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.after-checkout-btn .amazon-pay-button-wrapper {
  width: calc(50% - 4px) !important;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 4px);
          flex: 0 0 calc(50% - 4px);
}
.after-checkout-btn .amazon-pay-button-wrapper .amazon-pay-button {
  max-width: 100%;
  width: 100% !important;
}
.after-checkout-btn .paypal-buttons {
  min-width: unset !important;
}
.after-checkout-btn div {
  width: calc(50% - 4px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 4px);
          flex: 0 0 calc(50% - 4px);
  margin: 0;
}
@media (min-width: 576px) {
  .after-checkout-btn div {
    margin-right: 16px;
  }
}
@media (min-width: 992px) {
  .after-checkout-btn div {
    margin-right: 0;
  }
}
.after-checkout-btn div img {
  width: 100%;
  height: auto;
  max-height: inherit !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.after-checkout-btn__headline {
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 10px;
  line-height: normal;
  font-size: 18px;
}
@media (min-width: 768px) {
  .after-checkout-btn__headline {
    font-size: 22px;
  }
}

.category-register .shopbuilder-row .widget-code {
  background: #e9ebef;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px !important;
}
@media (min-width: 992px) {
  .category-register .shopbuilder-row .widget-code {
    height: 114px;
  }
}
.category-register .shopbuilder-row .widget-code .widget-inner {
  margin: 0 auto !important;
  width: 800px;
  padding: 0 15px;
  max-width: 100%;
}
.category-register .shopbuilder-row .widget-code .widget-inner h1 {
  font-weight: bold;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
  text-align: left !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category-register .shopbuilder-row .widget-code .widget-inner h1 {
    font-size: 30px !important;
  }
}
.category-register .shopbuilder-row .widget-code .widget-inner h1 button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 5px;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category-register .shopbuilder-row .widget-code .widget-inner h1 button {
    font-size: 18px !important;
  }
}
.category-register .shopbuilder-row .widget-registration {
  padding: 0 15px !important;
  width: 800px;
  max-width: 100%;
  margin: auto;
  margin-bottom: 30px;
}

.page-content.basket {
  color: #000 !important;
}

.bg-red {
  background-color: red !important;
}

.shipping-method-select .cmp-method-list .method-list-item .content {
  padding: 16px !important;
}

.method-list-item[data-id="6035"] {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.myaccount .widget-background .w-100.pt-4.pr-4.pb-4.pl-4 {
  padding: 0 !important;
}
.myaccount strong, .myaccount span {
  font-size: 14px;
  font-family: "Yantramanav";
}
.myaccount .modal .close {
  display: none;
}
.myaccount .btn-primary, .myaccount .btn-block {
  border-radius: 6px;
}
.myaccount .widget-order-totals {
  padding: 0 !important;
  border: none !important;
}
.myaccount .widget-order-totals .cmp-totals {
  margin-top: 0;
}
.myaccount .widget-purchased-items {
  margin-bottom: 10px !important;
  padding: 0 !important;
  border: none !important;
}
.myaccount .widget-order-data {
  background-color: #fff;
  border: none !important;
  border-radius: 6px;
}
.myaccount .widget-order-data .h3 {
  border-bottom: 1px solid #dcdbd8;
  padding-bottom: 14px;
  margin-bottom: 14px;
}

body .checkout .btn-primary {
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 768px) {
  body .checkout .btn-primary {
    font-size: 18px;
  }
}

.page-singleitem #vue-app {
  background: white !important;
}

.wrapper-main {
  z-index: 1000;
}

.widget-item-list-inline-caption {
  font-size: 29px !important;
  line-height: normal !important;
  font-weight: bold;
}
@media (min-width: 768px) {
  .widget-item-list-inline-caption {
    font-size: 40px !important;
  }
}

.transform-unset {
  -webkit-transform: unset !important;
          transform: unset !important;
}

.page-singleitem .lb-number {
  display: none !important;
}
.page-singleitem .lb-image {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
.page-singleitem #lightbox.is-zoomed .lb-outerContainer {
  overflow: hidden;
}
.page-singleitem #lightbox.is-zoomed .lb-image {
  zoom: 200%;
}
.page-singleitem .lb-nav {
  pointer-events: none;
}
.page-singleitem .lb-next, .page-singleitem .lb-prev {
  pointer-events: all;
  width: 20% !important;
}

.container-max--more {
  max-width: 1500px;
  padding: 0;
}
@media (min-width: 992px) {
  .container-max--more .single__thumb-swiper-container {
    max-width: 116px;
  }
}

.single__thumb-swiper-container .swiper-slide-active img,
.single__thumb-swiper-container .swiper-slide-active .single__3d-thumb,
.single__thumb-swiper-container .swiper-slide-active .single__video-thumb {
  border: 2px solid #FF1743 !important;
  border-radius: 5px;
}

.pswp__bg {
  opacity: 0.9 !important;
  background: white !important;
}

.pswp__img--placeholder--blank {
  background: white !important;
  display: none !important;
}

.pswp__button--close {
  top: 65px !important;
}

.pswp__button--close {
  width: 30px;
  height: 30px;
  top: 20px;
  right: 30px;
  position: relative;
  font-size: 0;
}
.pswp__button--close:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.pswp__button {
  color: black !important;
}

.pswp__button--arrow--left, .pswp__button--arrow--right {
  font-size: 30px;
}
.pswp__button--arrow--left i, .pswp__button--arrow--right i {
  pointer-events: none;
}

.drift-bounding-box.drift-open {
  z-index: 1111;
}

.drift-bounding-box.drift-open:not(:last-child) {
  display: none;
}

.single .single-title .widget-inner {
  padding: 0 !important;
}
.single .single-title .widget-inner p {
  display: inline-block;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 4px 8px;
  background: #000000;
  border-radius: 4px;
  margin-top: 0px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .single .single-title .widget-inner p {
    margin-bottom: 0;
    margin-right: 10px;
    float: left;
    margin-top: 7px;
  }
}
.single .single-title .widget-inner h1 {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .single .single-title .widget-inner h1 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .single .single-swiper .single-swiper-pagination {
    position: fixed;
    z-index: 1;
    width: calc(100% + 75px);
    bottom: -25px !important;
    left: 0;
  }
}

.safari .single-swiper .swiper-slide.swiper-slide-prev, .safari .single-swiper .swiper-slide.swiper-slide-next,
.safari .single-swiper .swiper-slide.swiper-slide-next + .swiper-slide {
  visibility: hidden;
}

.single-swiper {
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 992px) {
  .single-swiper {
    height: 690px;
  }
}
.single-swiper__fullscreen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  bottom: 65px;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 150px;
  background-color: rgba(63, 63, 63, 0.5);
  color: white;
  cursor: pointer;
}
@media (min-width: 768px) {
  .single-swiper__fullscreen {
    bottom: 35px;
  }
}
@media (min-width: 992px) {
  .single-swiper__fullscreen {
    display: none;
  }
}
.single-swiper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  cursor: pointer;
  pointer-events: none;
}
.single-swiper .swiper-slide.pointer-events-all {
  pointer-events: all;
}
@media (min-width: 768px) {
  .single-swiper .swiper-slide {
    pointer-events: all;
  }
}
.single-swiper .swiper-slide a {
  height: 100%;
}
.single-swiper .swiper-button-prev, .single-swiper .swiper-button-next {
  background-image: none;
  height: 45px;
  width: 45px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #3f3f3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-swiper .swiper-button-prev svg, .single-swiper .swiper-button-next svg {
  width: 15px;
  height: 15px;
  fill: white;
}
.single-swiper .swiper-button-prev.swiper-button-disabled, .single-swiper .swiper-button-next.swiper-button-disabled {
  display: none;
}
.single-swiper .swiper-button-prev:active, .single-swiper .swiper-button-prev:focus, .single-swiper .swiper-button-next:active, .single-swiper .swiper-button-next:focus {
  outline: none;
}
.single-swiper .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-swiper .single-swiper-pagination {
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-swiper .single-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FF1743;
}
.single-swiper .single-swiper-pagination .swiper-pagination-bullet {
  margin: 4px 4px 10px 4px !important;
}
.single-swiper .drift-zoom-pane {
  z-index: 1000;
  position: absolute;
  left: unset;
  right: -100%;
  width: 650px;
  height: 650px;
  max-width: 100%;
  top: 0px;
}

.single-swiper {
  position: static;
}

.drift-bounding-box {
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.single {
  background: white;
  /*&__nav-link{

      width: 100%;
      transition: all .5s ease;

      @include media-breakpoint-up(md){
          width:150px;
      }

      height:56px;
      line-height: 22px;
      font-weight: bold;
      font-size: 14px;
      color: #000 !important;
      border:none !important;

      &:hover{
          border-bottom: 1px solid #9498A0 !important;
          color: $brand-primary !important;
      }

      &.active{
          border-bottom: 2px solid $brand-primary !important;
          color: $brand-primary !important;
          background: transparent !important;
      }

  }*/
}
@media (min-width: 992px) {
  .single {
    padding-top: 60px;
  }
}
.single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.col-12.widget-prop-3-1.widget-stacked-mobile, .single .is-amazon-error-page #page-body .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.col-xs-12, .is-amazon-error-page #page-body .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.col-xs-12, .single .single__item-series .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.col-xs-12, .single__item-series .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.col-xs-12, .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.homepage__category-widget-col--big, .single .homepage__category-widget--inspiration .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.homepage__category-widget-col, .homepage__category-widget--inspiration .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.homepage__category-widget-col, .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.homepage__image-text-widget--col, .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.single__image-text-widget--col, .single .widget-inner.col-xl-7.widget-prop-xl-2-1.col-lg-7.widget-prop-lg-2-1.col-md-6.widget-prop-md-3-1.col-sm-12.widget-prop-sm-3-1.widget-stacked-mobile.widget-prop-3-1.widget-stacked-mobile.checkout__header--contact {
  z-index: 1;
}
.single__intro-wrapper {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.single__intro-wrapper > div:last-child > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single__intro-wrapper > div:last-child > div .producthighlights {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (max-width: 767.98px) {
  .single__intro-wrapper > div:last-child > div .producthighlights {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.single__intro-wrapper > div:last-child > div .product-docs {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.single__table {
  margin: 60px 0;
  width: 100%;
  /*   @include media-breakpoint-up(lg){
         column-count: 2;
         display: block;
     }*/
}
.single__table tbody {
  border-collapse: collapse;
}
@media (min-width: 992px) {
  .single__table tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .single__table tr {
    width: calc(50% - 5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
  }
}
.single__table td {
  line-height: 1.3;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 66%;
          flex: 1 0 66%;
  border: none;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .single__table td {
    font-size: 18px;
  }
}
.single__table td:first-child {
  font-weight: bold;
  color: #9498a0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  line-height: 16px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .single__table td:first-child {
    font-size: 16px;
  }
}
.single__tab-content {
  position: relative;
}
.single__tab-content h2 {
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.single__tab-pane--dark {
  color: #000;
}
.single__tab-pane--white {
  background-color: white;
}
.single__tab-pane--white p {
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .single__tab-pane--white p {
    font-size: 18px !important;
  }
}
.single__item-series img {
  width: 100%;
}
.single__item-series .productImageDot {
  position: absolute;
}
.single__thumb-swiper-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.single__thumb-swiper-container .thumb-swiper-next {
  position: absolute;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: calc(100% - 30px);
  bottom: 0px;
  z-index: 1;
  font-size: 20px;
  cursor: pointer;
  background-color: #fff;
  padding-top: 10px;
}
.single__thumb-swiper-container .thumb-swiper-next svg {
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: #3F3F3F;
  border-radius: 50%;
  fill: #fff;
  padding: 10px;
}
.single__thumb-swiper-container .thumb-swiper-next:focus, .single__thumb-swiper-container .thumb-swiper-next:active {
  outline: none;
}
.single__thumb-swiper-container .thumb-swiper-next.swiper-button-disabled {
  display: none;
}
.single__thumb-swiper-container .thumb-swiper-prev {
  position: absolute;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% - 30px);
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  padding-bottom: 10px;
}
@media (min-width: 1200px) {
  .single__thumb-swiper-container .thumb-swiper-prev {
    top: 0px;
  }
}
.single__thumb-swiper-container .thumb-swiper-prev svg {
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #3F3F3F;
  border-radius: 50%;
  fill: #fff;
  padding: 10px;
}
.single__thumb-swiper-container .thumb-swiper-prev:focus, .single__thumb-swiper-container .thumb-swiper-prev:active {
  outline: none;
}
.single__thumb-swiper-container .thumb-swiper-prev.swiper-button-disabled {
  display: none;
}
.single__thumb-swiper {
  height: 690px;
}
.single__thumb-swiper-image {
  height: 92px;
  width: 92px;
  cursor: pointer;
  font-size: 6px;
  aspect-ratio: 1/1;
}
.single__swiper-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-touch-action: pinch-zoom;
      touch-action: pinch-zoom;
}
.single__video-thumb, .single__3d-thumb {
  height: 92px;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px;
  margin: 0px 0;
}
.single__video-thumb.active svg, .single__3d-thumb.active svg {
  border: 1px solid #FF1743 !important;
}
.single__video-thumb svg {
  height: 40px;
  width: 40px;
}
.single__3d-thumb svg {
  height: 70px;
  width: 70px;
}
@media (min-width: 992px) {
  .single-rightside {
    padding-left: 30px;
  }
}
.single-rightside.is-sticky {
  width: 600px !important;
  padding-bottom: 50px;
}
.single-rightside.is-sticky.reset-styles-for-modal {
  position: relative !important;
  z-index: 1090 !important;
}
.single__wrapper {
  background: #e9ebef;
}
.single__wrapper .h1.price {
  margin-bottom: 0;
  font-size: 26px !important;
  line-height: 38px !important;
}
.single__wrapper div[itemscope=itemscope] {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.single__wrapper div[itemscope=itemscope].no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
@media (min-width: 992px) {
  .single__wrapper .homepage__image-text-widget--container, .single__wrapper .single__image-text-widget--container {
    background: white;
    position: relative;
  }
}
@media (min-width: 992px) {
  .single__wrapper .homepage__image-text-widget--container + .row, .single__wrapper .homepage__image-text-widget--container + .configurator__row, .single__wrapper .single__image-text-widget--container + .row, .single__wrapper .single__image-text-widget--container + .configurator__row, .single__wrapper .homepage__image-text-widget--container + .header, .single__wrapper .single__image-text-widget--container + .header, .single__wrapper .homepage__image-text-widget--container + .header-controls, .single__wrapper .single__image-text-widget--container + .header-controls, .single__wrapper .reset-pwd .homepage__image-text-widget--container + h1.h2, .single__wrapper .reset-pwd .single__image-text-widget--container + h1.h2, .reset-pwd .single__wrapper .homepage__image-text-widget--container + h1.h2, .reset-pwd .single__wrapper .single__image-text-widget--container + h1.h2, .single__wrapper .homepage__image-text-widget--container + .homepage__category-widget--row, .single__wrapper .single__image-text-widget--container + .homepage__category-widget--row, .single__wrapper .homepage__image-text-widget--container + .homepage__image-text-widget--row, .single__wrapper .homepage__image-text-widget--container + .single__image-text-widget--row, .single__wrapper .single__image-text-widget--container + .homepage__image-text-widget--row, .single__wrapper .single__image-text-widget--container + .single__image-text-widget--row, .single__wrapper .homepage__image-text-widget--container + .category__image-text-widget--row, .single__wrapper .single__image-text-widget--container + .category__image-text-widget--row, .single__wrapper .homepage__image-text-widget--container + .homepage__categories--cat-row, .single__wrapper .homepage__image-text-widget--container + .content__categories--cat-row, .single__wrapper .single__image-text-widget--container + .homepage__categories--cat-row, .single__wrapper .single__image-text-widget--container + .content__categories--cat-row, .single__wrapper .homepage__image-text-widget--container + .category__categories--cat-row, .single__wrapper .single__image-text-widget--container + .category__categories--cat-row, .single__wrapper .homepage__image-text-widget--container + .single__item-series, .single__wrapper .single__image-text-widget--container + .single__item-series {
    background: white;
    position: relative;
  }
}
.single__container .advantages {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 0;
  display: none;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .single__container .advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.single__container .advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yantramanav";
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}
.single__container .advantages__item span {
  font-family: "Yantramanav";
}
.single__container .advantages__item svg {
  width: 20px;
  height: 20px;
}
.single hr {
  border-top: 1px solid #E9EBEF;
}
.single__content {
  background: white;
}
.single__documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single__documents a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .single__documents a {
    font-size: 16px !important;
  }
}
.single__documents a:hover {
  color: #FF1743;
}
@media (min-width: 768px) {
  .single__documents a {
    margin-top: 0;
  }
}
.single__documents a:not(:last-child) {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .single__documents {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.single__muster-link {
  font-weight: bold;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 992px) {
  .single__muster-link {
    font-size: 15px !important;
  }
}
.single__muster-link svg {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.single__muster-link:hover {
  text-decoration: none;
  color: #FF1743;
}
.single__muster-link:hover svg {
  fill: #FF1743;
}
.single__back-button {
  background: #fff;
}
.single__back-button:hover {
  background: #FF1743 !important;
  color: #ffffff !important;
}
.single__series-button, .feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  /*@extend .category__teaser-button;
  border-color:#3F3F3F;
  color: #000;*/
  height: auto;
  width: auto !important;
  max-width: 325px;
}
.single__series-button:focus, .feedback-container .btn-secondary:focus, .feedback-container .feedback-info-segment.btn-default:focus, .single__series-button:active, .feedback-container .btn-secondary:active, .feedback-container .feedback-info-segment.btn-default:active, .single__series-button:hover, .feedback-container .btn-secondary:hover, .feedback-container .feedback-info-segment.btn-default:hover {
  color: #000 !important;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.single__variation-crossselling-wrapper {
  margin-top: 20px;
}
.single__variation-crossselling-wrapper .single__variation-crossselling {
  margin-top: 15px;
}
.single__variation-crossselling-wrapper .single__variation-crossselling .swiper-wrapper {
  padding: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single__variation-crossselling-wrapper .single__variation-crossselling .swiper-slide img {
  border: 1px solid #E9EBEF;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.single__variation-crossselling-wrapper .single__variation-crossselling .swiper-slide img:hover {
  cursor: pointer;
  border: 1px solid #FF1743;
}
.single__lower {
  background: white;
}
.single .add-to-basket-container .quantity-input-container {
  margin-right: 0;
}
.single__name, .single .title-outer h1 {
  font-weight: 600;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: "Yantramanav" !important;
  font-weight: 700;
}
@media (min-width: 992px) {
  .single__name, .single .title-outer h1 {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (min-width: 992px) {
  .single__name-rating {
    margin-bottom: 50px;
  }
}
.single__rating {
  color: #9498A0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  font-size: 13px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .single__rating {
    font-size: 15px;
  }
}
.single__rating span {
  font-size: 13px !important;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .single__rating span {
    font-size: 15px !important;
  }
}
.single__rating .js--single__feedback-link {
  visibility: hidden;
}
.single__rating--is-visible .js--single__feedback-link {
  visibility: visible;
}
.single__rating a {
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single__rating a:hover {
  color: #FF1743;
}
.single__feedback-stars {
  margin-right: 10px;
}
.single__feedback-stars .feedback-category-view {
  display: none;
}
.single__feedback-stars .feedback-stars-average {
  width: 60px;
  margin-left: 0;
}
.single__feedback-stars .feedback-stars-average .feedback-stars-background {
  width: 60px;
}
.single__feedback-stars .feedback-stars-average .feedback-star {
  color: #F9B900;
  font-size: 12px;
  width: 12px;
}
.single__features-text {
  margin-left: 25px;
}
.single__features-wrapper {
  border: 1px solid #E9EBEF;
  border-radius: 8px;
  padding: 20px;
  margin-top: 32px;
}
.single__features-wrapper--documents {
  margin-top: 0px;
  border: none;
  padding: 0;
  border-radius: 0;
}
.single__features-wrapper b {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 768px) {
  .single__features-wrapper b {
    font-size: 22px;
  }
}
.single__features-wrapper .single__documents {
  margin-top: 0;
  margin-bottom: 0;
  gap: 20px;
  padding: 0;
  border: 1px solid #E9EBEF;
  border-radius: 8px;
  padding: 20px;
  margin-top: 7px;
  display: none;
}
.single__features-wrapper .single__documents:has(a) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single__features-wrapper .single__documents a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px !important;
  line-height: 1.3 !important;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px);
  gap: 5px;
}
@media (min-width: 768px) {
  .single__features-wrapper .single__documents a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}
.single__features-wrapper .single__documents a svg {
  min-width: 28px;
}
.single__features ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .single__features ul {
    font-size: 18px !important;
  }
}
.single__features ul b {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .single__features ul b {
    font-size: 18px !important;
  }
}
.single__features-item, .single__features li {
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  padding-left: 20px;
  line-height: 18px;
  font-size: 1.1em;
  position: relative;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
}
.single__features-item svg, .single__features li svg {
  fill: #000;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  left: 0;
  margin-top: 3px;
}
.single__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 8px;
}
.single__prices .price {
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .single__prices .price {
    font-size: 22px !important;
  }
}
.single__prices .price .h6 {
  font-weight: 400;
}
.single__price, .single__wrapper .h1.price {
  line-height: 49px;
  font-size: 36px;
  color: #000;
  font-family: "Yantramanav";
}
.single__uvp {
  line-height: 17px;
  font-size: 12px;
  color: #FF1743;
  margin-right: 10px;
}
.single__vat {
  margin-top: 12px;
  margin-bottom: 40px;
  color: #222;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
.single__vat svg {
  margin-right: 5px;
}
@media (min-width: 768px) {
  .single__vat {
    font-size: 18px !important;
  }
}
.single__vat a {
  color: #222;
}
.single__vat a u {
  font-weight: bold;
  text-decoration: none;
}
.single__modal-btn-wraper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  line-height: 17px;
  padding: 17px 12px 12px;
  min-height: 42px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1.4px solid #E9EBEF;
  border-radius: 8px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 8px;
}
.single__modal-btn-wraper--1 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.single__modal-btn-wraper--2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  color: #000;
}
.single__modal-btn-wraper--2:hover {
  border: 1.4px solid #FF1743;
}
.single__modal-btn-wraper_1 {
  color: #28a745;
}
.single__modal-btn-wraper_3, .single__modal-btn-wraper_4 {
  color: #333;
}
.single__modal-btn-wraper_5, .single__modal-btn-wraper_6, .single__modal-btn-wraper_7, .single__modal-btn-wraper_8 {
  color: #333;
}
.single__modal-btn-wraper_9, .single__modal-btn-wraper_10 {
  color: #000;
}
.single__stock-availability_1 {
  color: #28a745;
}
.single__stock-availability_3, .single__stock-availability_4 {
  color: #333;
}
.single__stock-availability_5, .single__stock-availability_6, .single__stock-availability_7, .single__stock-availability_8 {
  color: #333;
}
.single__stock-availability_9, .single__stock-availability_10 {
  color: #000;
}
.single__stock, .single__availability {
  font-size: 16px;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  line-height: 1.62em;
  letter-spacing: 1px;
}
.single__modal-btn-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single__modal-btn-text div {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .single__modal-btn-text div {
    font-size: 18px;
  }
}
.single__modal-btn-text span {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #575757;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .single__modal-btn-text span {
    font-size: 15px;
  }
}
.single__modal-btn-text span.single__availability {
  color: #59A41E !important;
}
.single__modal-btn-icon {
  margin-right: 8px;
  -ms-flex-item-align: start;
      align-self: start;
}
.single__modal-btn-icon svg {
  height: 25px;
  width: 35px;
}
.single__service-modal {
  position: relative;
}
.single__modal-link {
  justify-self: flex-end;
  color: #000;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .single__modal-link {
    font-size: 18px;
  }
}
.single__modal-link .fa {
  font-size: 14px;
  margin-left: 5px;
}
.single__variations {
  margin-bottom: 10px;
}
.single__variations-headline {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}
.single__wishlist {
  margin-top: 10px;
  line-height: 12px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
}
@media (min-width: 768px) {
  .single__wishlist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .single__wishlist .col-xl-3 {
    padding-left: 0;
  }
}
.single__wishlist .col-xl-3 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single__print-btn {
  width: calc(50% - 6px);
}
.single__print-btn a {
  border: 2px solid #575757;
  border-radius: 5px;
  padding: 9px;
  display: block;
  text-align: center;
}
@media (max-width: 767.98px) {
  .single .widget-add-to-wish-list {
    display: none !important;
  }
}
.single__wishlist-btn {
  width: 100%;
}
.single__wishlist-btn--top {
  position: absolute;
  top: 9px;
  right: 24px;
  z-index: 111;
  width: auto !important;
}
@media (min-width: 768px) {
  .single__wishlist-btn--top {
    display: none !important;
  }
}
.single__wishlist-btn--top button {
  padding: 10px 11px !important;
  border: none !important;
  background-color: #fff !important;
}
.single__wishlist-btn--top button:after {
  content: none !important;
}
.single__wishlist-btn--top button:hover i {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='23' viewBox='0 0 26 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.725 12.25v.001l-.026.027-.002.001c-1.661 1.66-9.333 8.936-9.333 8.936a.517.517 0 0 1-.731 0l-9.308-8.91a1.125 1.125 0 0 0-.037-.037l-.074-.075h.003a6.237 6.237 0 1 1 9.782-7.631 6.237 6.237 0 1 1 9.726 7.689Zm2.93-4.38c0-4.064-3.306-7.37-7.37-7.37a7.323 7.323 0 0 0-5.289 2.236A7.322 7.322 0 0 0 7.716.508c-4.064 0-7.37 3.306-7.37 7.37 0 1.882.708 3.669 1.996 5.041a.913.913 0 0 0 .072.078l.074.073.035.037 9.325 8.927c.296.295.71.466 1.149.466.44 0 .853-.171 1.165-.481.293-.278 7.641-7.248 9.321-8.924.01-.01.02-.019.028-.029l-.013.012c.022-.02.043-.042.064-.064a7.326 7.326 0 0 0 2.093-5.144ZM7.725 3.077A4.91 4.91 0 0 0 2.818 7.98a.566.566 0 1 0 1.133 0A3.776 3.776 0 0 1 7.724 4.21a.566.566 0 1 0 0-1.132Z' fill='%23000'/%3E%3C/svg%3E") !important;
  width: 26px !important;
  height: 23px !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single__wishlist-btn--top button:hover i.text-danger {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='23' viewBox='0 0 26 23' fill='none'%3E%3Cpath d='M1.5 11.5L13 21.5L22.5 12.5L24.5 10.5L25 8.5V5.5L22.5 2L19 1H15.5L13 3.5L12 2.5L9.5 1H5.5L2.5 2.5L1 6L1.5 11.5Z' fill='%23FF1743'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.7239 12.2506C22.7239 12.2506 22.7239 12.2511 22.7245 12.2511C22.7154 12.2596 22.7063 12.2692 22.6979 12.2783C22.6973 12.2783 22.6967 12.2789 22.6962 12.2794C21.0352 13.9398 13.3633 21.2154 13.3633 21.2154C13.262 21.3162 13.1301 21.3666 12.9976 21.3666C12.8652 21.3666 12.7327 21.3162 12.6319 21.2154L3.32402 12.3055C3.31213 12.2924 3.29968 12.28 3.28722 12.2675L3.21363 12.1934C3.21363 12.1934 3.21533 12.1934 3.21589 12.1928C2.14086 11.0719 1.47852 9.55193 1.47852 7.87626C1.47852 4.43094 4.27111 1.63891 7.71587 1.63891C9.94293 1.63891 11.8954 2.80622 12.9982 4.56171C14.1015 2.80169 16.0574 1.63098 18.2862 1.63098C21.7315 1.63098 24.5235 4.42358 24.5235 7.86833C24.5235 9.57627 23.8363 11.1246 22.7239 12.2506M25.6552 7.86956C25.6552 3.80606 22.3491 0.5 18.2856 0.5C16.2589 0.5 14.3693 1.31519 12.9965 2.73612C11.6248 1.32029 9.73853 0.507925 7.71527 0.507925C3.65176 0.507925 0.345703 3.81398 0.345703 7.87749C0.345703 9.75979 1.05447 11.547 2.34236 12.9192C2.36444 12.9464 2.38821 12.9719 2.41369 12.9968L2.48785 13.0704L2.52295 13.1066L11.8484 22.0341C12.1439 22.329 12.5572 22.5 12.997 22.5C13.4369 22.5 13.8502 22.329 14.1615 22.0188C14.4548 21.7414 21.8034 14.771 23.483 13.0947C23.4921 13.0857 23.5023 13.076 23.5113 13.0664L23.4983 13.0783C23.5198 13.0579 23.5408 13.0364 23.5617 13.0143C24.9119 11.6296 25.6552 9.80508 25.6552 7.86956M7.72505 3.0766C5.0202 3.0766 2.82031 5.27705 2.82031 7.98134C2.82031 8.2944 3.07336 8.54745 3.38642 8.54745C3.69891 8.54745 3.95252 8.2944 3.95252 7.98134C3.95252 5.9009 5.64461 4.20881 7.72505 4.20881C8.03754 4.20881 8.29116 3.95576 8.29116 3.6427C8.29116 3.33021 8.03754 3.0766 7.72505 3.0766' fill='%233F3F3F'/%3E%3C/svg%3E") !important;
}
.single__wishlist-btn button {
  border: 2px solid #575757;
  border-radius: 5px;
  font-size: 0.1px;
  color: transparent;
  padding: 11px 0;
  width: 100%;
  text-align: center;
  position: relative;
  background-color: transparent;
  z-index: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single__wishlist-btn button i {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='23' viewBox='0 0 26 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.725 12.25v.001l-.026.027-.002.001c-1.661 1.66-9.333 8.936-9.333 8.936a.517.517 0 0 1-.731 0l-9.308-8.91a1.125 1.125 0 0 0-.037-.037l-.074-.075h.003a6.237 6.237 0 1 1 9.782-7.631 6.237 6.237 0 1 1 9.726 7.689Zm2.93-4.38c0-4.064-3.306-7.37-7.37-7.37a7.323 7.323 0 0 0-5.289 2.236A7.322 7.322 0 0 0 7.716.508c-4.064 0-7.37 3.306-7.37 7.37 0 1.882.708 3.669 1.996 5.041a.913.913 0 0 0 .072.078l.074.073.035.037 9.325 8.927c.296.295.71.466 1.149.466.44 0 .853-.171 1.165-.481.293-.278 7.641-7.248 9.321-8.924.01-.01.02-.019.028-.029l-.013.012c.022-.02.043-.042.064-.064a7.326 7.326 0 0 0 2.093-5.144ZM7.725 3.077A4.91 4.91 0 0 0 2.818 7.98a.566.566 0 1 0 1.133 0A3.776 3.776 0 0 1 7.724 4.21a.566.566 0 1 0 0-1.132Z' fill='%23000'/%3E%3C/svg%3E");
  width: 26px !important;
  height: 23px !important;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single__wishlist-btn button i.text-danger {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='23' viewBox='0 0 26 23' fill='none'%3E%3Cpath d='M1.5 11.5L13 21.5L22.5 12.5L24.5 10.5L25 8.5V5.5L22.5 2L19 1H15.5L13 3.5L12 2.5L9.5 1H5.5L2.5 2.5L1 6L1.5 11.5Z' fill='%23FF1743'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.7239 12.2506C22.7239 12.2506 22.7239 12.2511 22.7245 12.2511C22.7154 12.2596 22.7063 12.2692 22.6979 12.2783C22.6973 12.2783 22.6967 12.2789 22.6962 12.2794C21.0352 13.9398 13.3633 21.2154 13.3633 21.2154C13.262 21.3162 13.1301 21.3666 12.9976 21.3666C12.8652 21.3666 12.7327 21.3162 12.6319 21.2154L3.32402 12.3055C3.31213 12.2924 3.29968 12.28 3.28722 12.2675L3.21363 12.1934C3.21363 12.1934 3.21533 12.1934 3.21589 12.1928C2.14086 11.0719 1.47852 9.55193 1.47852 7.87626C1.47852 4.43094 4.27111 1.63891 7.71587 1.63891C9.94293 1.63891 11.8954 2.80622 12.9982 4.56171C14.1015 2.80169 16.0574 1.63098 18.2862 1.63098C21.7315 1.63098 24.5235 4.42358 24.5235 7.86833C24.5235 9.57627 23.8363 11.1246 22.7239 12.2506M25.6552 7.86956C25.6552 3.80606 22.3491 0.5 18.2856 0.5C16.2589 0.5 14.3693 1.31519 12.9965 2.73612C11.6248 1.32029 9.73853 0.507925 7.71527 0.507925C3.65176 0.507925 0.345703 3.81398 0.345703 7.87749C0.345703 9.75979 1.05447 11.547 2.34236 12.9192C2.36444 12.9464 2.38821 12.9719 2.41369 12.9968L2.48785 13.0704L2.52295 13.1066L11.8484 22.0341C12.1439 22.329 12.5572 22.5 12.997 22.5C13.4369 22.5 13.8502 22.329 14.1615 22.0188C14.4548 21.7414 21.8034 14.771 23.483 13.0947C23.4921 13.0857 23.5023 13.076 23.5113 13.0664L23.4983 13.0783C23.5198 13.0579 23.5408 13.0364 23.5617 13.0143C24.9119 11.6296 25.6552 9.80508 25.6552 7.86956M7.72505 3.0766C5.0202 3.0766 2.82031 5.27705 2.82031 7.98134C2.82031 8.2944 3.07336 8.54745 3.38642 8.54745C3.69891 8.54745 3.95252 8.2944 3.95252 7.98134C3.95252 5.9009 5.64461 4.20881 7.72505 4.20881C8.03754 4.20881 8.29116 3.95576 8.29116 3.6427C8.29116 3.33021 8.03754 3.0766 7.72505 3.0766' fill='%233F3F3F'/%3E%3C/svg%3E") !important;
}
.single__wishlist-btn button:after {
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  position: absolute;
  background: #d4021d;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single__wishlist-btn button:hover {
  border-color: #d4021d;
}
.single__wishlist-btn button:hover i {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='23' viewBox='0 0 26 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.725 12.25v.001l-.026.027-.002.001c-1.661 1.66-9.333 8.936-9.333 8.936a.517.517 0 0 1-.731 0l-9.308-8.91a1.125 1.125 0 0 0-.037-.037l-.074-.075h.003a6.237 6.237 0 1 1 9.782-7.631 6.237 6.237 0 1 1 9.726 7.689Zm2.93-4.38c0-4.064-3.306-7.37-7.37-7.37a7.323 7.323 0 0 0-5.289 2.236A7.322 7.322 0 0 0 7.716.508c-4.064 0-7.37 3.306-7.37 7.37 0 1.882.708 3.669 1.996 5.041a.913.913 0 0 0 .072.078l.074.073.035.037 9.325 8.927c.296.295.71.466 1.149.466.44 0 .853-.171 1.165-.481.293-.278 7.641-7.248 9.321-8.924.01-.01.02-.019.028-.029l-.013.012c.022-.02.043-.042.064-.064a7.326 7.326 0 0 0 2.093-5.144ZM7.725 3.077A4.91 4.91 0 0 0 2.818 7.98a.566.566 0 1 0 1.133 0A3.776 3.776 0 0 1 7.724 4.21a.566.566 0 1 0 0-1.132Z' fill='%23fff'/%3E%3C/svg%3E");
}
.single__wishlist-btn button:hover i.text-danger {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='23' viewBox='0 0 26 23' fill='white'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.725 12.25v.001l-.026.027-.002.001c-1.661 1.66-9.333 8.936-9.333 8.936a.517.517 0 0 1-.731 0l-9.308-8.91a1.125 1.125 0 0 0-.037-.037l-.074-.075h.003a6.237 6.237 0 1 1 9.782-7.631 6.237 6.237 0 1 1 9.726 7.689Zm2.93-4.38c0-4.064-3.306-7.37' fill='%23fff'/%3E%3C/svg%3E");
}
.single__wishlist-btn button:hover:after {
  width: 100%;
}
.single__add-to-basket {
  margin-top: 10px;
}
.single__add-to-basket .quantity-input-container {
  margin-right: 0 !important;
}
.single__add-to-basket .qty-box {
  height: 49px;
}
.single__add-to-basket-btn {
  height: 49px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  width: calc(100% - 77px);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 0;
  line-height: 1.3;
  font-size: 16px;
}
.single__add-to-basket-btn.pcon {
  width: 100%;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .single__add-to-basket-btn {
    font-size: 18px;
  }
}
.single__add-to-basket-btn:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #FF1743;
  z-index: -1;
}
.single__add-to-basket-btn:not(.disabled):after {
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  position: absolute;
  background: #d4021d;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.single__add-to-basket-btn:not(.disabled):hover:after {
  width: 100%;
}
.single__add-to-basket-btn svg {
  fill: white;
  margin-left: 12px;
  stroke: #fff;
  stroke-width: 0.6;
}
.single .qty-input {
  border-radius: 5px 0 0 5px;
  line-height: 1.3;
  font-size: 18px;
}
@media (min-width: 768px) {
  .single .qty-input {
    font-size: 18px;
    border: 1px solid #E9EBEF;
  }
}
.single__variations-select {
  margin-top: 10px;
}
.single__variations-select select {
  -webkit-appearance: none;
  border-radius: 15px;
  border: 1px solid #9498A0;
  padding-left: 15px;
  color: #000;
  width: 100%;
  padding-right: 25px;
  font-weight: bold;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
  height: 35px;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .single__variations-select select {
    font-size: 18px;
  }
}
.single__variations-select select:focus {
  outline: none;
  border-color: #FF1743;
}
.single__variations-select select.custom-select {
  padding-right: 25px;
  padding-left: 15px;
  padding-top: 0;
  padding-bottom: 0;
  background: none;
}
.single__variations-select select.custom-select:focus {
  border-color: #9498A0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.single__variations-select svg {
  fill: #FF1743;
  pointer-events: none;
  position: absolute;
  right: 10px;
  stroke: #ff1743;
}
.single__variations-select svg.single__select--up {
  top: 32px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.single__variations-select svg.single__select--down {
  bottom: 8px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.single__variations-select .v-s-boxes.images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.single__variations-select .v-s-boxes.images img {
  width: 58px;
  height: 58px;
}
.single__variations-select .v-s-boxes.images .v-s-box {
  border: 1px solid #ccc;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  margin: 2px;
}
.single__variations-select .v-s-boxes.images .v-s-box.active, .single__variations-select .v-s-boxes.images .v-s-box:hover {
  border: 1px solid #FF1743;
}
.single__variations-select-label {
  font-family: "Yantramanav" !important;
  font-style: normal;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  display: block;
  font-size: 14px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .single__variations-select-label {
    font-size: 16px;
  }
}
.single__variations-select-label > span {
  font-weight: normal;
}
.single__crossselling {
  background: #e9ebef;
  margin-top: 60px;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .single__crossselling {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.single__crossselling--container #myTabContent {
  margin: 0 -8px;
}
.single__crossselling--desktop-pagination {
  background: transparent;
}
.single__crossselling--desktop-pagination .swiper-controls {
  display: block !important;
}
.single__crossselling .swiper-pagination {
  height: 60px;
  width: 100%;
  border-radius: 0;
  background: #333;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.single__crossselling .swiper-button-prev, .single__crossselling .swiper-button-next {
  background-image: none;
  z-index: 11 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single__crossselling .swiper-button-prev svg, .single__crossselling .swiper-button-next svg {
  fill: white;
  width: 15px;
  height: 15px;
  margin-top: 5px;
}
.single__crossselling .swiper-button-prev:focus, .single__crossselling .swiper-button-next:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
.single__crossselling .swiper-button-next {
  right: 35px;
}
@media (min-width: 768px) {
  .single__crossselling .swiper-button-next {
    right: 70px;
  }
}
.single__crossselling .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single__crossselling .swiper-button-prev {
  left: 35px;
}
@media (min-width: 768px) {
  .single__crossselling .swiper-button-prev {
    left: 70px;
  }
}
.single__crossselling .swiper-controls {
  position: relative;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .single__crossselling .swiper-controls {
    width: 450px;
    margin: auto;
    margin-top: 60px;
    display: none;
  }
}
@media (min-width: 992px) {
  .single__crossselling .swiper-controls {
    width: 320px;
  }
}
@media (min-width: 1200px) {
  .single__crossselling .swiper-controls {
    width: 450px;
  }
}
@media (min-width: 1200px) and (-ms-high-contrast: none), (min-width: 1200px) and (-ms-high-contrast: active) {
  .single__crossselling .swiper-controls {
    width: 300px;
  }
}
.single__crossselling .swiper-slide {
  border-radius: 5px;
  padding: 8px 8px 20px 8px;
  background: transparent;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .single__crossselling .swiper-slide {
    width: 33.3333%;
  }
}
@media (min-width: 992px) {
  .single__crossselling .swiper-slide {
    width: 25%;
    margin-right: 5px;
  }
}
.single__crossselling .nav-tabs {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.single__crossselling .nav-tabs .nav-item {
  height: 60px;
  line-height: 60px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .single__crossselling .nav-tabs .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
}
.single__crossselling .nav-tabs .nav-item .nav-link {
  font-family: "Yantramanav";
  font-size: 14px;
  padding: 0 25px;
  border: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@supports (-webkit-overflow-scrolling: touch) {
  .single__crossselling .nav-tabs .nav-item .nav-link {
    white-space: nowrap;
    width: 100%;
  }
}
.single__crossselling .nav-tabs .nav-item .nav-link.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #FF1743;
  background-color: rgba(233, 235, 239, 0.5) !important;
}
.single__crossselling .nav-tabs .nav-item .nav-link:hover {
  background-color: rgba(233, 235, 239, 0.5);
}
.single__crossselling .hidden-for-init .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .single__crossselling .hidden-for-init .swiper-wrapper .swiper-slide {
    max-width: 33.33%;
    margin-right: 5px;
  }
}
@media (min-width: 992px) {
  .single__crossselling .hidden-for-init .swiper-wrapper .swiper-slide {
    max-width: 25%;
    margin-right: 5px;
  }
}
.single__image-text-widget {
  padding-bottom: 0;
}
.single__image-text-widget a:hover {
  background: white !important;
}
.single .homepage__image-text-widget--container, .single .single__image-text-widget--container {
  max-width: 1232px;
}
.single .list-item-carousel .list-control-special {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 40%;
}
.single #single-carousel {
  background: #fff;
}
.single .main-image img {
  width: 100%;
}
.single__configurator {
  padding-bottom: 20px;
}
.single .title {
  line-height: 1.2;
}
.single .widget a.badge {
  display: none;
}
.single .title-outer h1 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
}
.single .base-price {
  display: none;
}
.single .producer {
  line-height: 1.1;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
}
.single .single-description {
  font-size: 0.85rem;
}
.single .price {
  display: block;
  font-weight: bold !important;
  font-size: 18px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .single .price {
    font-size: 22px !important;
  }
}
.single .price .h6 {
  font-weight: 400;
  font-size: 16px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .single .price .h6 {
    font-size: 18px !important;
  }
}
.single .price sup {
  display: none;
}
.single .input-number {
  text-align: center;
}
.single .vat {
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #020260;
}
.single .crosssellers img {
  max-width: 100%;
  width: auto;
}
.single .crosssellers .special-tags {
  padding: 0.3rem;
}
@media (max-width: 575.98px) {
  .single .nav-tabs {
    display: block;
  }
}
.single .nav-tabs .nav-item {
  cursor: pointer;
  float: none;
}
.single .nav-tabs .nav-item .nav-link {
  border: 1px solid #ddd;
}
.single .nav-tabs .nav-item .nav-link.active, .single .nav-tabs .nav-item .nav-link:hover {
  border: 1px solid #ddd;
  background: #f4f4f4;
}
.single .nav-tabs .nav-item + .nav-item {
  margin-left: 0;
}
.single .graduated-prices-table td:first-child {
  padding-right: 1rem;
  font-style: italic;
}
.single .graduated-prices-table i {
  color: #28a745;
}
.single .fade-enter-active, .single .fade-leave-active {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.single .fade-enter, .single .fade-leave-to {
  opacity: 0;
}
.single .order-property-input {
  -webkit-transition: border-color 0.3s ease-out;
  transition: border-color 0.3s ease-out;
}
.single .order-property-input.active {
  border-color: #28a745;
}
.single .order-property-selection-info-popper {
  position: absolute;
  top: 6px;
  right: 18px;
}
.single__swiper-full-screen-modal {
  display: none;
  background: white;
}
.single__swiper-full-screen-modal.is-open {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1090;
  top: 0;
  left: 0;
}
.single__swiper-full-screen-modal-img-wrapper {
  overflow-y: scroll;
  height: 100%;
  max-width: 80%;
  width: 100%;
  right: 0;
  position: absolute;
  padding-right: 60px;
}
.single__swiper-full-screen-modal-img-wrapper::-webkit-scrollbar {
  display: none;
}
.single__swiper-full-screen-modal-img {
  max-width: 100%;
}
.single__swiper-full-screen-modal-iframe {
  display: none;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.single__swiper-full-screen-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 1090;
}
.single__swiper-full-screen-modal-close svg {
  fill: #222;
}
.single__thumb-swiper-container.is-open {
  position: fixed;
  z-index: 1091;
  left: 6%;
  width: 116px;
  top: calc(50% - 240px);
}
.single__thumb-swiper-container.is-open .thumb-swiper-prev {
  top: -20px;
}
.single__thumb-swiper-container.is-open .thumb-swiper-next {
  bottom: -20px;
}
.single__thumb-swiper-container .swiper-slide {
  width: 92px;
}

.availability_1 {
  background-color: #28a745;
  color: #fff;
}

.availability_2 {
  background-color: #ffc107;
  color: #212529;
}

.availability_3 {
  background-color: #ffc107;
  color: #212529;
}

.availability_4 {
  background-color: #ffc107;
  color: #212529;
}

.availability_5 {
  background-color: #d4021d;
  color: #fff;
}

.availability_6 {
  background-color: #d4021d;
  color: #fff;
}

.availability_7 {
  background-color: #d4021d;
  color: #fff;
}

.availability_8 {
  background-color: #d4021d;
  color: #fff;
}

.availability_9 {
  background-color: #4D4F4D;
  color: #fff;
}

.availability_10 {
  background-color: #4D4F4D;
  color: #fff;
}

.lb-outerContainer {
  position: relative;
}
.lb-outerContainer:after {
  z-index: 1111111111;
  content: "";
  position: absolute;
  top: 47%;
  right: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" viewBox="0 0 8 12"> <path stroke="white" fill="white" fill-rule="even" d="M33,367.002127 L38.1466088,362 L33,356.997873 L34.0266956,356 L40.2,362 L34.0266956,368 L33,367.002127 Z" transform="rotate(-180 20.1 184)"/> </svg>');
  height: 45px;
  width: 45px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0.75;
  border-radius: 50%;
  background-color: #3f3f3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.lb-outerContainer:before {
  z-index: 1111111111;
  content: "";
  position: absolute;
  top: 47%;
  left: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" viewBox="0 0 8 12"> <path stroke="white" fill="white" fill-rule="even" d="M33,367.002127 L38.1466088,362 L33,356.997873 L34.0266956,356 L40.2,362 L34.0266956,368 L33,367.002127 Z" transform="rotate(-180 20.1 184)"/> </svg>');
  height: 45px;
  width: 45px;
  opacity: 0.75;
  border-radius: 50%;
  background-color: #3f3f3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.lb-outerContainer.hide-before:before {
  display: none;
}
.lb-outerContainer.hide-after:after {
  display: none;
}

.rating .tag, .rating .badge {
  padding-right: 0;
  overflow: hidden;
  cursor: pointer;
}
.rating .tag .amount, .rating .badge .amount {
  padding: 0.2rem 0.6rem 0.2rem 0.4rem;
  margin-left: 0.2rem;
  background-color: #e9ebef;
}

.rezension {
  display: inline-block;
}

.img-thumbnail {
  border: none;
  border-radius: none;
  padding: 0.75rem 0.45rem 0.25rem 0;
}

@media (min-width: 768px) {
  .single .nav-tabs .nav-item {
    float: left;
  }
  .single .nav-tabs .nav-item .nav-link {
    border: 1px solid #ddd;
  }
  .single .nav-tabs .nav-item .nav-link.active, .single .nav-tabs .nav-item .nav-link:hover {
    border: 1px solid #ddd;
    background: white;
  }
  .single .nav-tabs .nav-item .nav-link.active {
    border-bottom: 1px solid transparent;
  }
  .single .nav-tabs .nav-item + .nav-item {
    margin-left: -1px;
  }
}
.order-property-slider {
  overflow: hidden;
}
.order-property-slider .order-property-slider-inner {
  white-space: nowrap;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.order-property-slider .order-property-slider-inner > div {
  display: inline-block;
  width: 100%;
  visibility: hidden;
}
.order-property-slider .order-property-slider-inner > div.active {
  visibility: visible;
}
.order-property-slider .order-property-slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.order-property-slider .order-property-slider-controls .slider-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.order-property-slider .order-property-slider-controls .slider-nav span {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #dcdbd8;
  background-color: #fff;
  margin: 12px 5px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.order-property-slider .order-property-slider-controls .slider-nav span.active {
  background-color: #e9ebef;
}
.order-property-slider .order-property-slider-controls .slider-nav span.active.error {
  background-color: rgb(216, 110.5, 122.5);
  border-color: rgb(236.7126168224, 153.5373831776, 162.6670560748);
}
.order-property-slider .order-property-slider-controls .slider-nav span.highlight {
  background-color: #FF1743;
  border-color: rgb(255, 150.5, 170.3189655172);
}
.order-property-slider .order-property-slider-controls .slider-nav span.error {
  background-color: #d4021d;
  border-color: rgb(253.4252336449, 88.0747663551, 109.3341121495);
}

.add-to-basket-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .add-to-basket-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .add-to-basket-container .single__add-to-basket-btn {
    width: 100%;
    border-radius: 5px;
  }
  .add-to-basket-container .quantity-input-container {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid #D5D7DB;
    border-radius: 5px;
  }
  .add-to-basket-container .quantity-input-container .qty-box {
    width: 100%;
  }
  .add-to-basket-container .quantity-input-container .qty-box input {
    width: 100%;
    border: none;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container {
    width: unset !important;
    position: static;
    border: none;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button {
    position: absolute;
    width: 50px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background-color: #fff !important;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button.disabled {
    opacity: 1;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button.disabled i {
    opacity: 0.5;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button i {
    position: static;
    color: #000;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button i.fa-plus:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg opacity='0.8'%3E%3Cpath d='M16 10V22' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 16H22' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    font-size: unset;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button i.fa-minus:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg%3E%3Cpath d='M10 16H22' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    font-size: unset;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button:first-child {
    right: 0;
    left: unset !important;
  }
  .add-to-basket-container .quantity-input-container .qty-box .qty-btn-container button:last-child {
    left: 0;
    right: unset !important;
  }
}
.add-to-basket-container .quantity-input-container {
  margin-right: 15px;
}

.is-ios .muster__modal .modal-header h3 {
  width: 220px !important;
}
@media (min-width: 576px) {
  .is-ios .muster__modal .modal-header h3 {
    overflow: visible;
    width: unset !important;
  }
}

.muster__modal select {
  font-size: 14px;
  color: #000;
  border-radius: 2px;
  border: 1px solid #9498A0;
  padding: 13px 9px 4px 9px;
  height: 40px;
}
@media (min-width: 768px) {
  .muster__modal--pl-7 {
    padding-left: 7px;
  }
}
@media (min-width: 768px) {
  .muster__modal--pr-7 {
    padding-right: 7px;
  }
}
.muster__modal .modal-header {
  border-radius: 5px 5px 0 0;
  background: #FF1743;
  height: 74px;
  padding: 0;
  padding-right: 20px;
}
.muster__modal .modal-header svg {
  fill: white;
  cursor: pointer;
}
.muster__modal .modal-header h3 {
  line-height: 70px;
  font-weight: bold;
  font-size: 24px;
  color: white;
  padding-left: 20px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 213px;
}
@media (min-width: 576px) {
  .muster__modal .modal-header h3 {
    overflow: visible;
    width: unset;
  }
}
.muster__modal .modal-dialog {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  max-width: 755px;
}
.muster__modal .modal-content {
  border-radius: 6px 6px 0 0;
}
.muster__modal .modal-content .modal-body {
  padding: 20px;
}
.muster__modal .modal-content .input-unit {
  border: none !important;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .muster__modal .modal-content .input-unit {
    margin-bottom: 15px;
  }
}
.muster__modal .modal-content .input-unit label {
  line-height: 14px;
  font-size: 10px;
  color: #9498A0;
  text-transform: none !important;
  font-family: "Yantramanav";
  font-weight: 500;
}
.muster__modal .modal-content .input-unit input {
  line-height: 21px;
  font-size: 14px;
  color: #000;
  border-radius: 2px;
  border: 1px solid #9498A0;
}
.muster__modal .modal-content .input-unit input:focus {
  border: 1px solid #3F3F3F;
}
.muster__variation {
  border-bottom: 1px solid #E9EBEF;
  margin-bottom: 30px;
}
.muster__modal-send {
  border-radius: 5px;
  display: block;
  border: 2px solid #3F3F3F;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}
.muster__modal-send:hover, .muster__modal-send:active, .muster__modal-send:focus {
  border: 2px solid #FF1743;
  color: #000 !important;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lb-outerContainer {
  border-radius: 6px;
}
.lb-outerContainer.contains-iframe {
  width: 310px !important;
  height: 310px !important;
}
@media (min-width: 576px) {
  .lb-outerContainer.contains-iframe {
    width: 510px !important;
    height: 510px !important;
  }
}
@media (min-width: 992px) {
  .lb-outerContainer.contains-iframe {
    width: 706px !important;
    height: 588px !important;
  }
}

.feedback-container .alert.alert-info {
  display: none;
}
.feedback-container .form-control {
  border: 1px solid #9498A0 !important;
  border-radius: 4px;
}
.feedback-container .form-control:focus {
  border: 1px solid #3F3F3F !important;
}
.feedback-container .createFeedback label.star:hover ~ label.star:before, .feedback-container .createFeedback label.star:hover:before, .feedback-container .createFeedback input.star:checked ~ label.star:before {
  color: #F9B900 !important;
}
.feedback-container .createFeedback textarea, .feedback-container .createFeedback input {
  border: 1px solid #9498A0 !important;
  border-radius: 4px;
}
.feedback-container .createFeedback textarea:focus, .feedback-container .createFeedback input:focus {
  border: 1px solid #3F3F3F !important;
}
.feedback-container .createFeedback .btn-primary {
  line-height: 40px;
  border: 1px solid #FF1743 !important;
  background: #FF1743 !important;
  color: #fff !important;
}
.feedback-container .createFeedback .btn-primary:hover {
  background-color: #d4021d !important;
  border-color: #d4021d !important;
  color: #fff !important;
}
.feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  border: 2px solid #3F3F3F !important;
  background-color: transparent !important;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 0.875rem !important;
}
.feedback-container .btn-secondary:hover, .feedback-container .feedback-info-segment.btn-default:hover, .feedback-container .btn-secondary:focus, .feedback-container .feedback-info-segment.btn-default:focus, .feedback-container .btn-secondary:active, .feedback-container .feedback-info-segment.btn-default:active {
  border: 2px solid #FF1743 !important;
  color: #000 !important;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.feedback-container .feedback-loadmore {
  margin-left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #000 !important;
}
.feedback-container .feedback-loadmore:focus, .feedback-container .feedback-loadmore:active, .feedback-container .feedback-loadmore:hover {
  border: 2px solid #FF1743 !important;
  color: #000 !important;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.feedback-container .feedback-info {
  margin: 15px 0 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-container .feedback-info-segment.btn, .feedback-container .feedback-info-segment.single__series-button, .feedback-container .feedback-info-segment.btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  line-height: 1.3;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .feedback-container .feedback-info-segment.btn, .feedback-container .feedback-info-segment.single__series-button, .feedback-container .feedback-info-segment.btn-secondary, .feedback-container .feedback-info-segment.btn-default {
    font-size: 18px !important;
  }
}
.feedback-container .feedback-info-segment strong {
  line-height: 1.3 !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .feedback-container .feedback-info-segment strong {
    font-size: 18px !important;
  }
}
.feedback-container .title {
  font-weight: bold;
  color: #000;
  line-height: normal;
  font-size: 24px !important;
}
@media (min-width: 768px) {
  .feedback-container .title {
    font-size: 30px !important;
  }
}
.feedback-container .title .feedback-average-count {
  font-weight: bold;
  color: #000;
  line-height: normal;
  font-size: 24px;
}
@media (min-width: 768px) {
  .feedback-container .title .feedback-average-count {
    font-size: 30px;
  }
}
.feedback-container .feedback-stars-average {
  width: 60px;
}
.feedback-container .feedback-stars-average .feedback-stars-background {
  width: 60px;
}
.feedback-container .feedback-stars-average .feedback-star {
  color: #F9B900;
  font-size: 12px;
  width: 12px;
}
.feedback-container .feedback-bar-text-before {
  margin-right: 10px;
}
.feedback-container .feedback-bar-text-before i {
  color: #F9B900;
}
.feedback-container .feedback-bar-text-after {
  margin-left: 5px;
}
.feedback-container a[href="#login"], .feedback-container .btn-primary {
  padding-bottom: 0;
  padding-top: 0;
  background-color: transparent;
}
.feedback-container a[href="#login"] i, .feedback-container .btn-primary i {
  display: none;
}
.feedback-container a[href="#login"]:hover, .feedback-container a[href="#login"]:focus, .feedback-container a[href="#login"]:active, .feedback-container .btn-primary:hover, .feedback-container .btn-primary:focus, .feedback-container .btn-primary:active {
  background: transparent !important;
  color: #000 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
.feedback-container .feedback-bar-fill {
  background: #F9B900 !important;
}
.feedback-container .fa.fa-star.full {
  color: #F9B900 !important;
}
.feedback-container .feedback-comment-text {
  color: #000;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .feedback-container .feedback-comment-text {
    font-size: 18px;
  }
}
.feedback-container .feedback-comment-title {
  line-height: normal;
  font-size: 18px;
  color: #000;
}
@media (min-width: 768px) {
  .feedback-container .feedback-comment-title {
    font-size: 22px;
  }
}
.feedback-container input.star:checked ~ label.star:before, .feedback-container .feedback-container input.star-rated:checked ~ label.star-rated:before {
  content: "\f005";
  color: #F9B900;
}

.add-to-wish-list {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.add-to-wish-list:hover {
  color: #FF1743 !important;
}
.add-to-wish-list:hover i {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media (min-width: 992px) {
  .single-swiper-container-col {
    max-width: 82.3333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 82.3333333%;
            flex: 0 0 82.3333333%;
  }
}

#add-item-to-basket-overlay .close:before {
  display: none;
}
#add-item-to-basket-overlay .quick-view__close {
  top: -6px;
  right: 15px;
}
@media (min-width: 992px) {
  #add-item-to-basket-overlay .modal-dialog.has-crossselling {
    max-width: 960px;
  }
}
#add-item-to-basket-overlay .amzPayButton {
  text-align: right;
  margin-right: 3px !important;
  margin-bottom: 15px !important;
  margin-top: 10px !important;
}
@media (min-width: 576px) {
  #add-item-to-basket-overlay .amzPayButton {
    position: absolute;
    bottom: 15px;
    left: 15px;
    margin-right: 0;
    text-align: unset;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
}
#add-item-to-basket-overlay .is-table-row .col-md-8 {
  margin-top: 20px;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay .is-table-row .col-md-8 {
    margin-top: 0;
  }
}
#add-item-to-basket-overlay .is-table-row .col-md-8 p strong {
  line-height: 1 !important;
}
#add-item-to-basket-overlay .modal-title {
  line-height: 1.4 !important;
}
#add-item-to-basket-overlay .modal-footer {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#add-item-to-basket-overlay .modal-footer .btn-primary {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  line-height: 24px;
  text-align: center;
  font-family: "Yantramanav";
  color: #000;
  display: block;
  background: #fff;
  padding-left: 50px;
  padding-right: 50px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#add-item-to-basket-overlay .modal-footer .btn-primary i {
  display: none;
}
#add-item-to-basket-overlay .modal-footer .btn-primary:hover, #add-item-to-basket-overlay .modal-footer .btn-primary:active, #add-item-to-basket-overlay .modal-footer .btn-primary:focus {
  color: #000;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #d4021d;
}
#add-item-to-basket-overlay .modal-footer .btn-outline-primary {
  background: #fff;
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  height: 40px;
  display: block;
  line-height: 24px;
  text-align: center;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#add-item-to-basket-overlay .modal-footer .btn-outline-primary i {
  display: none;
}
#add-item-to-basket-overlay .modal-footer .btn-outline-primary:hover, #add-item-to-basket-overlay .modal-footer .btn-outline-primary:active, #add-item-to-basket-overlay .modal-footer .btn-outline-primary:focus {
  border-color: #FF1743;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
#add-item-to-basket-overlay.is-single .modal-footer {
  border-top: none;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling {
  background: #e9ebef;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper {
  padding: 15px 30px;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide {
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide article {
  border-radius: 6px;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__wrapper {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__image {
  margin: auto;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__image:hover .category-item__image-img-0 {
  display: block !important;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__image:hover .category-item__image-img-1 {
  display: none !important;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__image:hover .category-item__thumbs-swiper {
  visibility: hidden !important;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__content {
  margin-top: 14px;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.is-single .add-to-basket__crossselling--swiper .swiper-slide .category-item__content {
    margin-top: 30px;
  }
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-prev, #add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-next {
  background-image: none;
  z-index: 11 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 42px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-prev svg, #add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-next svg {
  fill: white;
  width: 15px;
  height: 15px;
  margin-top: 5px;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-prev:focus, #add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-next:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-next {
  right: 35px;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-button-prev {
  left: 35px;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-controls {
  background: #FF1743;
  height: 50px;
  border-radius: 55px;
  max-width: 280px;
  margin: auto;
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  color: white;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-controls {
    max-width: 550px;
  }
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling .swiper-pagination {
  bottom: 13px;
}
#add-item-to-basket-overlay.is-single .add-to-basket__crossselling-headline {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
  text-align: left;
  padding-left: 30px;
  margin-bottom: 0;
}
#add-item-to-basket-overlay .btn-primary {
  background: #ff1743 !important;
  color: #fff !important;
}
#add-item-to-basket-overlay .btn-primary:hover {
  background: #d4021d !important;
}

.v-enter-active, .v-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.v-enter, .v-leave-to {
  opacity: 0;
}

.responsive-iframe--video, .responsive-iframe--3d {
  overflow: hidden;
  position: relative;
}
.responsive-iframe--video iframe, .responsive-iframe--3d iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.responsive-iframe--video {
  padding-top: 56.25%;
}
.responsive-iframe--3d {
  padding-top: 100%;
}

@-moz-document url-prefix() {
  .single__swiper-image {
    width: calc(100% + 1px);
  }
}
@media (min-width: 992px) {
  .is-ios .single .single-swiper .single-swiper-pagination, .safari .single .single-swiper .single-swiper-pagination {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0px !important;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .is-ios .single .single-swiper .single-swiper-pagination .swiper-pagination-bullet, .safari .single .single-swiper .single-swiper-pagination .swiper-pagination-bullet {
    margin: 10px 4px !important;
  }
}
@media screen and (min-width: 1400px) {
  .is-ios .single .single-swiper .single-swiper-pagination, .safari .single .single-swiper .single-swiper-pagination {
    bottom: 14px !important;
  }
}

@media (min-width: 768px) {
  .description-image {
    min-height: 400px;
  }
}
.description-image__image {
  display: none;
}
@media (min-width: 768px) {
  .description-image__image {
    display: block;
    float: right;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 0 10px 10px;
    max-height: 20em;
  }
}
@media (min-width: 992px) {
  .description-image__image {
    max-height: 24em;
  }
}
.description-image__description {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .description-image__description {
    font-size: 18px;
  }
}
.description-image__description h1, .description-image__description h2, .description-image__description h3, .description-image__description h4, .description-image__description h5, .description-image__description h6, .description-image__description p {
  width: unset !important;
}
.description-image__description h2 {
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .description-image__description h2 {
    font-size: 30px;
  }
}
.description-image__description .h3 {
  font-size: 18px;
  line-height: normal;
}
@media (min-width: 768px) {
  .description-image__description .h3 {
    font-size: 22px;
  }
}
.description-image__description p, .description-image__description li {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .description-image__description p, .description-image__description li {
    font-size: 18px;
  }
}

.service-modal-open {
  overflow: hidden !important;
}

.js--single__feedback-link span {
  color: #979797;
}

.widget-payment-icons {
  padding: 20px;
  border: 1px solid #E9EBEF;
  border-radius: 8px;
}
.widget-payment-icons ul {
  margin: 0;
}
.widget-payment-icons ul li {
  margin-right: 4px !important;
  margin-bottom: 4px !important;
}

.single-highlights-wrapper {
  background-color: #F4F5F8;
  border-radius: 8px;
  padding: 24px;
}
.single-highlights-wrapper p {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  font-size: 21px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .single-highlights-wrapper p {
    font-size: 25px !important;
  }
}
.single-highlights-wrapper p strong {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
}
.single-highlights-wrapper svg {
  margin: 10px 0;
}
.single-highlights-wrapper svg path, .single-highlights-wrapper svg circle {
  fill: #C4C4C4;
}
.single-highlights-wrapper svg mask circle {
  fill: #000000;
}

.quick-view__modal .single__wishlist-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 49px;
}
.quick-view__modal .single__wishlist-btn button {
  width: 100%;
  height: 100%;
  padding: 0.5rem 13px;
}

#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal {
  padding: 0 !important;
  bottom: 0;
  top: unset;
  height: auto;
  max-height: 100%;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal {
    height: 100%;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal.fade.show .modal-dialog {
  -webkit-transform: none !important;
          transform: none !important;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-dialog {
  max-width: 100%;
  margin: 0 !important;
  -webkit-transform: translate(0, 100%) !important;
          transform: translate(0, 100%) !important;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-dialog {
    -webkit-transform: translate(100%, 0%) !important;
            transform: translate(100%, 0%) !important;
    height: 100%;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-content {
  margin-top: 40%;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-content {
    margin-top: 0;
    width: 417px;
    margin-left: auto;
    height: 100%;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile {
  padding: 32px 20px;
  background-color: #E9EBEF;
  position: sticky;
  z-index: 11111;
  top: 0;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .headline svg {
  margin-right: 12px;
  width: 25px;
  height: 25px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .headline span {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  color: #000000;
  font-size: 18px;
  line-height: 23px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .button-wrapper a {
  height: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .button-wrapper a.btn-outline-primary {
  border: 2px solid #3F3F3F;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .button-wrapper a.btn-outline-primary:hover {
  color: #000;
  border: 2px solid #FF1743;
  background: transparent;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .close {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (min-width: 576px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .close {
    top: 32px;
    right: 32px;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .close svg {
  fill: #333333;
  width: 16px;
  height: 16px;
}
@media (min-width: 576px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-header-mobile .close svg {
    width: 18px;
    height: 18px;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile {
  padding: 16px 20px;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile {
    background-color: white;
    height: 100%;
    overflow: auto;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .body-headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article {
  padding: 20px 0;
  border-bottom: 2px solid #D6D6D6;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__add-to-basket-btn {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700 !important;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__add-to-basket-btn:hover {
  background-color: #FF1743 !important;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__add-to-basket-btn.bg-dark {
  background-color: #d4021d !important;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__add-to-basket-btn i {
  margin-right: 5px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__add-to-basket-btn svg {
  display: none;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__add-to-basket-btn--show-item {
  width: 100%;
  border-radius: 5px !important;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article:last-child {
  border-bottom: none;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .col-4, #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .header-mobile-nav-toggle, #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .header-brand, #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .header-controls__wrapper, #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .checkout__header-brand, #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .single__item-series .col-xs-4, .single__item-series #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .col-xs-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .qty-input {
  border: 1px solid #E9EBEF;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .category-item__itemname {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  display: block;
  font-size: 16px !important;
  line-height: 20px !important;
  color: #323232;
  margin: 0;
  min-height: unset;
  max-height: unset !important;
  height: unset !important;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-body-mobile .items-wrapper article .prices {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #323232;
  padding-top: 5px;
  padding-bottom: 9px;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-footer-mobile {
  padding: 4px 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  #add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-footer-mobile {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: white;
  }
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-footer-mobile button {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #000000;
  background-color: transparent;
  border: none;
}
#add-item-to-basket-overlay.add-item-to-basket-overlay--mobile .modal-footer-mobile a {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #EB394A;
}

.bg-transparent {
  background-color: transparent !important;
}
.bg-transparent .widget-caption {
  background-color: transparent !important;
  color: #000 !important;
}
.bg-transparent .widget-caption p {
  font-size: 24px;
  line-height: normal;
}
@media (min-width: 768px) {
  .bg-transparent .widget-caption p {
    font-size: 30px;
  }
}

.dark-bg {
  background-color: #eaebee !important;
}

.single-crossseller .owl-dots, .single-crossseller-wrapper .owl-dots {
  display: block !important;
  position: static !important;
}
.single-crossseller .owl-dots .owl-dot span, .single-crossseller-wrapper .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 4px 4px;
  background-color: #C4C4C4 !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.single-crossseller .owl-dots .owl-dot.active span, .single-crossseller-wrapper .owl-dots .owl-dot.active span {
  width: 8px;
  height: 8px;
  margin: 3px 4px;
  background-color: #3F3F3F !important;
}
@media (max-width: 991.98px) {
  .single-crossseller .col-12.col-lg-12, .single-crossseller .is-amazon-error-page #page-body .col-lg-12.col-xs-12, .is-amazon-error-page #page-body .single-crossseller .col-lg-12.col-xs-12, .single-crossseller .col-lg-12.homepage__category-widget-col--big, .single-crossseller .homepage__category-widget--inspiration .col-lg-12.homepage__category-widget-col, .homepage__category-widget--inspiration .single-crossseller .col-lg-12.homepage__category-widget-col, .single-crossseller .col-lg-12.homepage__image-text-widget--col, .single-crossseller .col-lg-12.checkout__header--contact, .single-crossseller .single__item-series .col-lg-12.col-xs-12, .single__item-series .single-crossseller .col-lg-12.col-xs-12, .single-crossseller .col-lg-12.single__image-text-widget--col, .single-crossseller-wrapper .col-12.col-lg-12, .single-crossseller-wrapper .is-amazon-error-page #page-body .col-lg-12.col-xs-12, .is-amazon-error-page #page-body .single-crossseller-wrapper .col-lg-12.col-xs-12, .single-crossseller-wrapper .col-lg-12.homepage__category-widget-col--big, .single-crossseller-wrapper .homepage__category-widget--inspiration .col-lg-12.homepage__category-widget-col, .homepage__category-widget--inspiration .single-crossseller-wrapper .col-lg-12.homepage__category-widget-col, .single-crossseller-wrapper .col-lg-12.homepage__image-text-widget--col, .single-crossseller-wrapper .col-lg-12.checkout__header--contact, .single-crossseller-wrapper .single__item-series .col-lg-12.col-xs-12, .single__item-series .single-crossseller-wrapper .col-lg-12.col-xs-12, .single-crossseller-wrapper .col-lg-12.single__image-text-widget--col {
    padding: 0 !important;
  }
}

.custom-bg-gray {
  background-color: #EAEBEE;
}

#ruecknahme .modal-header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#ruecknahme .close {
  cursor: pointer;
  height: 41px;
  width: 41px;
  min-width: 41px;
  margin-top: 0;
  margin-right: 0;
  background-color: #E3E3E3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
}
#ruecknahme .close:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  background-position: center;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#pcon {
  padding: 0 !important;
}
#pcon .modal-content {
  height: calc(100vh - 80px);
}
@media (min-width: 768px) {
  #pcon .modal-content {
    height: auto;
  }
}
#pcon .modal-content .modal-body {
  height: 100%;
  padding: 0 !important;
}
#pcon .modal-content .modal-body div {
  height: 100%;
}
#pcon .modal-dialog {
  max-width: 100vw !important;
}
@media (max-width: 767.98px) {
  #pcon .modal-dialog {
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  #pcon .modal-dialog {
    max-width: 80vw !important;
  }
}
#pcon .modal-dialog iframe {
  height: 100% !important;
}
@media (min-width: 768px) {
  #pcon .modal-dialog iframe {
    height: 75vh !important;
  }
}
#pcon .modal-header {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
#pcon .modal-header button.close {
  margin: 0 !important;
}

#eusafety .close, #pcon .close {
  cursor: pointer;
  height: 41px;
  width: 41px;
  min-width: 41px;
  margin-top: 0;
  margin-right: 0;
  background-color: #E3E3E3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
}
#eusafety .close:before, #pcon .close:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  background-position: center;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#eusafety .modal-header, #pcon .modal-header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#eusafety .modal-header .modal-title, #pcon .modal-header .modal-title {
  word-break: break-word;
}

.configurator-variants__list {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0 !important;
  gap: 3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 576px) {
  .configurator-variants__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.configurator-variants__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F4F5F8;
  border-radius: 5px;
  min-height: 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
@media (min-width: 576px) {
  .configurator-variants__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(33.3333333333% - 2px);
            flex: 1 0 calc(33.3333333333% - 2px);
    max-width: calc(33.3333333333% - 2px);
  }
}
.configurator-variants__item--active {
  background: #FFFFFF;
  border: 1px solid #000000;
}
.configurator-variants__item--active .configurator-variants__title {
  font-weight: bold;
}
.configurator-variants__item.sold {
  opacity: 0.3;
}
.configurator-variants__item:hover, .configurator-variants__item:focus {
  border: 1px solid #000000;
}
.configurator-variants__item:hover .configurator-variants__title, .configurator-variants__item:focus .configurator-variants__title {
  font-weight: bold;
  color: #000000 !important;
}
.configurator-variants__img-wrap {
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  width: 60px;
  border-bottom: 0 !important;
}
@media (max-width: 767.98px) {
  .configurator-variants__img-wrap {
    height: 40px;
  }
}
.configurator-variants__img-container {
  width: 100%;
  height: 100%;
  padding-right: 10px;
}
.configurator-variants__img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: contain;
}
.configurator-variants__title {
  width: calc(100% - 70px);
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.3;
  font-size: 14px;
}
@media (min-width: 768px) {
  .configurator-variants__title {
    font-size: 16px;
  }
}
.configurator-variants__title p {
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .configurator-variants__title p {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .configurator-variants__title {
    width: 100%;
  }
}
.configurator-variants__title p {
  margin-bottom: 0;
}

.configurator {
  position: relative;
  margin-bottom: 20px;
  /*
  &__backdrop{
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.6);
    z-index: 1000;
  }*/
}
.configurator__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.configurator__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 101px;
          flex: 0 0 101px;
  background: #F4F5F8;
  border-radius: 5px;
  height: 101px;
  width: 101px;
}
.configurator__item .sidebar-toggle {
  background-color: #F4F5F8;
  height: 100%;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.configurator__item .sidebar-toggle:hover {
  border: 1px solid #000;
}
.configurator__item .sidebar-toggle div {
  font-style: normal;
  font-weight: 400;
  text-align: center;
  color: #000000;
  margin-top: 8px;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .configurator__item .sidebar-toggle div {
    font-size: 15px;
  }
}
.configurator__cta {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.3;
  font-size: 14px !important;
}
@media (min-width: 768px) {
  .configurator__cta {
    font-size: 16px !important;
  }
}
.configurator__container {
  position: relative;
  margin-top: 24px;
  pointer-events: none;
}
.configurator__container .swiper-container, .configurator__container .swiper-button-prev, .configurator__container .swiper-button-next, .configurator__container .configurator__row {
  z-index: 0;
  pointer-events: all;
}
.configurator__selection {
  line-height: 17px;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.configurator__color-card {
  height: 101px;
  cursor: pointer;
  position: relative;
  background-color: #F4F5F8;
  border-radius: 5px;
  overflow: hidden;
}
.configurator__color-card:before {
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3F3F3F;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.configurator__color-card:hover {
  border-color: #9498A0;
}
.configurator__color-card:hover .configurator__label {
  bottom: 5px;
}
.configurator__color-card--active:before {
  bottom: 0;
}
.configurator__color-card.sold {
  opacity: 0.3;
}
.configurator__label {
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 90% !important;
  margin: 0 !important;
  min-height: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  position: absolute;
  left: 50%;
  bottom: -100%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.configurator__label p {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  font-size: 13px;
  margin: 0;
}
@media (min-width: 768px) {
  .configurator__label p {
    font-size: 15px;
  }
}
.configurator__muster {
  margin-top: 16px;
}
.configurator__muster .svg_gift {
  margin-right: 5px;
}
.configurator__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.configurator__row button {
  font-size: 14px;
  color: #9498A0;
  text-align: center;
  line-height: 21px;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.configurator__row button:hover {
  opacity: 0.8;
}
.configurator__row button::-moz-selection {
  background: transparent; /* WebKit/Blink Browsers */
}
.configurator__row button::selection {
  background: transparent; /* WebKit/Blink Browsers */
}
.configurator__row button::-moz-selection {
  background: transparent; /* Gecko Browsers */
}
.configurator__row button {
  color: #333;
  font-weight: bold;
}
.configurator__select-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.configurator__col {
  margin-top: 24px;
}
.configurator__select-buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.configurator__select-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  background: #F4F5F8;
  border-radius: 5px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 576px) {
  .configurator__select-button {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(33.3333% - 5.3333333333px);
            flex: 1 0 calc(33.3333% - 5.3333333333px);
  }
}
@media (min-width: 768px) {
  .configurator__select-button {
    font-size: 18px;
  }
}
.configurator__select-button:hover {
  border: 1px solid #000;
}
.configurator__select-button.active {
  border: 1px solid #000;
  background-color: #fff;
}
.configurator__select-button.sold {
  opacity: 0.3;
}
.configurator__select-list-outer-button {
  border: 1px solid #D5D7DB;
  border-radius: 8px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 24px;
  cursor: pointer;
}
.configurator__select-list-outer-button span {
  line-height: 1.3;
  font-size: 16px;
}
@media (min-width: 768px) {
  .configurator__select-list-outer-button span {
    font-size: 16px;
  }
}
.configurator__select-list-outer-button:hover {
  border: 1px solid #000;
}
.configurator__select-list-outer-button svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  height: 16px;
  width: 16px;
}
.configurator__select-list-outer-button.active {
  border: 1px solid #000;
  background-color: #fff;
}
.configurator__select-list-outer-button.sold {
  opacity: 0.3;
}
.configurator__select-list-outer-button--img .configurator__select-list-outer-button-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.configurator__select-list-outer-button--img .configurator__select-list-outer-button-content > span {
  line-height: 1;
  display: block;
}
.configurator__select-list-outer-button--img .configurator__select-list-outer-button-img-wrapper {
  border: 1px solid #D5D7DB;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.configurator__select-list-outer-button--img .configurator__select-list-outer-button-img-wrapper.active {
  border-color: #000;
  background-color: #fff;
}
.configurator__select-list-outer-button--img .configurator__select-list-outer-button-img-wrapper.sold {
  opacity: 0.3;
}
.configurator__select-list-outer-button--img .configurator__select-list-outer-button-img-wrapper img {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
.configurator--loading {
  background-color: #dee2e6;
  opacity: 0.35;
}
.configurator__loading {
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/loading.gif) no-repeat;
}

.confi-modal {
  background-color: transparent;
  border: none;
}
.confi-modal__container {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.confi-modal__close-button {
  fill: white;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.confi-modal__main-img {
  width: 100%;
  height: 200px;
  background-color: #6c757d;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(https://bilder.weberbuero.de/frontend/images/shop/loading085.svg);
  position: relative;
}
@media (min-width: 768px) {
  .confi-modal__main-img {
    height: 384px;
  }
}
.confi-modal__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.confi-modal__controls {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.confi-modal__controls .homepage-swiper__prev, .confi-modal__controls .content-swiper__prev, .confi-modal__controls .homepage-swiper__next, .confi-modal__controls .content-swiper__next {
  opacity: 1;
}
.confi-modal__controls .disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.confi-modal__infos {
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background-color: #e9ecef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .confi-modal__infos {
    height: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.confi-modal__infos p {
  margin-bottom: 5px;
}
.confi-modal__infos--left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .confi-modal__infos--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
    padding: 15px 0 30px 20px;
    display: block;
  }
}
.confi-modal__infos--right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  padding: 15px;
}
@media (min-width: 768px) {
  .confi-modal__infos--right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    max-width: 80%;
    padding: 15px 20px 30px 0;
  }
}
.confi-modal__bottom {
  margin-top: 10px;
  padding: 15px;
  background-color: #e9ecef;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.confi-modal__bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.confi-modal__thumb {
  width: 30px;
  height: 30px;
  border: 2px solid #e9ecef;
  outline: 2px solid #e9ecef;
  margin: 2px;
}
.confi-modal__thumb--active {
  outline-color: #000;
}
.confi-modal__thumb.sold {
  opacity: 0.3;
}
.confi-modal__thumb--big {
  width: 58px;
  height: 58px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
.confi-modal__name {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin: 0;
}
.confi-modal__number {
  font-size: 16px;
  color: #000;
  letter-spacing: 0;
}

.configurator__select-img-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.configurator__select-img-item {
  border: 1px solid #D5D7DB;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.configurator__select-img-item.active {
  border-color: #000;
  background-color: #fff;
}
.configurator__select-img-item.sold {
  opacity: 0.3;
}
.configurator__select-img-item img {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}

.variation-sidebar--open .variation-sidebar__container {
  right: 0;
}
.variation-sidebar--open .variation-sidebar__backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: -100vh;
  left: -100vw;
}
.variation-sidebar__container {
  position: fixed;
  right: -100%;
  top: 0;
  width: 524px;
  max-width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.variation-sidebar__container .close {
  position: absolute;
  right: 48px;
  top: 24px;
}
.variation-sidebar__container .close svg {
  width: 18px;
  height: 18px;
  color: #000;
}
.variation-sidebar__container .close:before {
  content: none;
}
.variation-sidebar__content {
  overflow: auto;
  height: calc(100% - 60px);
  margin: 31px;
  margin-right: 24px;
  padding-right: 24px;
  margin-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 991.98px) {
  .variation-sidebar__content {
    padding-bottom: 100px;
  }
}
.variation-sidebar__content .vue-portal-target {
  margin-top: 0;
}
.variation-sidebar__content .configurator__item-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.variation-sidebar__content .configurator__item {
  height: 120px;
  position: relative;
}
@media (max-width: 575.98px) {
  .variation-sidebar__content .configurator__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333333333% - 5.3333333333px);
            flex: 0 0 calc(33.3333333333% - 5.3333333333px);
    width: unset;
  }
}
.variation-sidebar__content .configurator__item.active .configurator__label:before {
  content: "";
  height: 3px;
  left: -2px;
  width: 104%;
  top: -3px;
  background-color: black;
  position: absolute;
}
.variation-sidebar__content .configurator__color-card {
  height: 120px;
}
.variation-sidebar__content .configurator__label {
  bottom: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  border: 1px solid #D5D7DB !important;
}
.variation-sidebar__content .configurator__select-list {
  list-style: none;
  padding-left: 0;
}
.variation-sidebar__content .configurator__select-list--img .configurator__select-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  cursor: pointer;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
.variation-sidebar__content .configurator__select-list--img .configurator__select-list-item-img-wrapper {
  border: 1px solid #D5D7DB;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.variation-sidebar__content .configurator__select-list--img .configurator__select-list-item-img-wrapper.active {
  border-color: #000;
  background-color: #fff;
}
.variation-sidebar__content .configurator__select-list--img .configurator__select-list-item-img-wrapper.sold {
  opacity: 0.3;
}
.variation-sidebar__content .configurator__select-list--img .configurator__select-list-item-img-wrapper img {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
.variation-sidebar__content .configurator__select-list-item {
  background: #F8F8F8;
  border: 1px solid #F4F5F8;
  border-radius: 5px;
  margin-bottom: 4px;
  padding: 12px 16px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  cursor: pointer;
}
.variation-sidebar__content .configurator__select-list-item:hover {
  border: 1px solid #000 !important;
}
.variation-sidebar__content .configurator__select-list-item.active {
  border: 1px solid #000 !important;
  background-color: #fff;
}
.variation-sidebar__content .configurator__select-list-item.sold {
  opacity: 0.3;
}

.service-sidebar__wrapper {
  position: relative;
  z-index: 11111;
}
.service-sidebar--open .service-sidebar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.service-sidebar--open .service-sidebar__header span {
  color: #000;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 133.333% */
}
.service-sidebar--open .service-sidebar__header .close {
  position: static;
}
.service-sidebar--open .service-sidebar__container {
  right: 0;
}
.service-sidebar--open .service-sidebar__backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: -100vh;
  left: -100vw;
}
.service-sidebar__content {
  padding: 40px;
  overflow: auto;
  max-height: 100%;
}
.service-sidebar__content .shipping-profiles {
  margin: 16px 0;
}
.service-sidebar__content .shipping-profile__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #E9EBEF;
  gap: 16px;
}
.service-sidebar__content .shipping-profile__img {
  max-height: 100%;
  width: 24px;
}
.service-sidebar__content .shipping-profile__img svg {
  max-height: 100%;
  width: 24px;
}
.service-sidebar__content .shipping-profile__name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  margin-bottom: 4px;
}
.service-sidebar__content .shipping-profile__price {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service-sidebar__content .contact-box__wrapper {
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid #E9EBEF;
}
.service-sidebar__content .contact-box__headline {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  margin-bottom: 4px;
}
.service-sidebar__content .contact-box__text {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
.service-sidebar__content .contact-box__btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 30px;
  min-width: 210px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  border: 2px solid #575757;
  color: #000;
}
.service-sidebar__content .sidebar-faq__wrapper {
  margin-top: 40px;
}
.service-sidebar__content .sidebar-faq__headline {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.service-sidebar__content .sidebar-faq__item {
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E9EBEF;
}
.service-sidebar__content .sidebar-faq__item-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  padding-bottom: 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 8px;
}
.service-sidebar__content .sidebar-faq__item-title svg {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service-sidebar__content .sidebar-faq__item-title.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.service-sidebar__content .sidebar-faq__item-text {
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.service-sidebar__container {
  position: fixed;
  right: -100%;
  top: 0;
  width: 524px;
  max-width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.service-sidebar__container .close {
  position: absolute;
  right: 48px;
  top: 24px;
}
.service-sidebar__container .close svg {
  width: 18px;
  height: 18px;
  color: #000;
}
.service-sidebar__container .close:before {
  content: none;
}

.dropdown__wrapper {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: auto;
}
.dropdown__headline {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.dropdown__header {
  width: 100%;
  padding: 12px 16px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #E9EBEF;
}
.dropdown__header span i, .dropdown__header span svg {
  margin-right: 8px;
}
.dropdown__header .ddown-arrow {
  position: absolute;
  right: 16px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  top: 50%;
  -webkit-transform: translate(0, calc(50% + 4px));
          transform: translate(0, calc(50% + 4px));
  -webkit-transform-origin: center;
          transform-origin: center;
}
.dropdown__header.open .ddown-arrow {
  -webkit-transform: translate(0, calc(50% + 4px)) rotate(180deg);
          transform: translate(0, calc(50% + 4px)) rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.dropdown__list {
  position: absolute;
  width: 100%;
  left: 0;
  height: 0;
  background-color: white;
  overflow: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 11111;
  top: calc(100% + 4px);
  border: 0px solid #E9EBEF;
  border-radius: 8px;
}
.dropdown__list.open {
  height: 176px;
  border: 1px solid #E9EBEF;
}
.dropdown__list-item {
  padding: 12px 16px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.dropdown__list-item span i, .dropdown__list-item span svg {
  margin-right: 8px;
}
.dropdown__list-item:hover {
  background-color: #F0F0F0;
}

.var-cross__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
.var-cross__img-wrap {
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.var-cross__img-wrap:hover var-cross__img-container {
  opacity: 0.9;
}
.var-cross__img-container {
  border-radius: 50%;
  border: 1px solid #e9ecef;
  padding: 4px 10px 4px 4px;
  display: block;
  width: 34px;
  height: 34px;
}
.var-cross__img-container--active {
  border-color: #FF1743;
  cursor: default;
}
.var-cross__img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-size: contain;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  width: 24px;
  height: 24px;
}

.loading .loading-animation-frame {
  display: block;
}

.loading-animation-frame {
  min-height: 200px;
  padding-top: 50px;
  width: 100%;
  position: relative;
  z-index: 1000;
  display: none;
}

.loading-animation {
  margin: auto;
  width: 150px;
  height: 120px;
  text-align: center;
  font-size: 15px;
}

.loading-animation > div {
  background-color: #FF1743;
  height: 100%;
  width: 18px;
  display: inline-block;
  margin: 0 0.1rem;
  -webkit-animation: sk-stretchdelay 0.8s infinite ease-in-out;
  animation: sk-stretchdelay 0.8s infinite ease-in-out;
}

.loading-animation .rect2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.loading-animation .rect3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.loading-animation .rect4 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.loading-animation .rect5 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.2);
  }
  20% {
    -webkit-transform: scaleY(0.5);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.2);
    -webkit-transform: scaleY(0.2);
  }
  20% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
}
.sk-fading-circle {
  margin: 100px auto;
  width: 100px;
  height: 100px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #FF1743;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.static-page-plain-text {
  white-space: pre-line;
}

@media print {
  .no-print {
    display: none;
  }
  .print-header {
    text-align: center;
    margin-top: 15px;
  }
  @page {
    size: auto;
    margin: 0mm;
  }
  html {
    background-color: #FFFFFF;
    margin: 0px;
  }
}
.no-padding {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  .content-swiper__pagination {
    width: 66.66% !important;
  }
}
.content-swiper__button {
  font-weight: bold;
}
.content-swiper__content {
  border-bottom: 1px solid black;
  background-color: rgba(159, 151, 141, 0.9) !important;
  padding-bottom: 30px !important;
}
@media (min-width: 992px) {
  .content-swiper__content {
    position: absolute;
    right: -12px;
    top: 0;
    height: 100%;
    z-index: 2;
  }
}
@media (min-width: 768px) {
  .content-swiper__content {
    border-bottom: none;
    padding: 30px !important;
  }
}
@media (min-width: 992px) {
  .content-swiper__content {
    padding: 50px !important;
  }
}
@media (min-width: 992px) {
  .content-swiper__content--bg {
    position: absolute;
    top: 0px;
    right: 0px;
  }
}
@media (min-width: 768px) {
  .content-swiper__content--inner {
    max-width: 85% !important;
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  .content-swiper__content--inner {
    margin-top: 60px;
  }
}
.content-swiper__content--inner a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px solid;
}
.content-swiper__content--inner a:hover {
  color: #FF1743;
  text-decoration: none;
}
@media (min-width: 992px) {
  .content-swiper__next {
    right: 41%;
  }
}
@media (min-width: 1200px) {
  .content-swiper__next {
    right: 34%;
  }
}
.content-swiper .swiper-pagination-bullet-active {
  background: #FF1743;
}
.serien-tabs-widget__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.serien-tabs-widget__item--top, .serien-tabs-widget__item--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .serien-tabs-widget__item--top, .serien-tabs-widget__item--bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.serien-tabs-widget__item--bottom {
  margin-top: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 992px) {
  .serien-tabs-widget__text1 {
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  .serien-tabs-widget__text2 {
    margin-right: 20px;
  }
}
.serien-tabs-widget__image1 img, .serien-tabs-widget__image2 img {
  border-radius: 4px;
}
.serien-tabs-widget .nav-tabs {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .serien-tabs-widget .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.serien-tabs-widget .nav-tabs .nav-item {
  height: 60px;
  line-height: 60px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  text-align: center;
  display: block;
  width: 100%;
}
@media (min-width: 992px) {
  .serien-tabs-widget .nav-tabs .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
}
.serien-tabs-widget .nav-tabs .nav-item .nav-link {
  font-weight: bold;
  font-size: 14px;
  color: #000;
  padding: 0 20px;
  border: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .serien-tabs-widget .nav-tabs .nav-item .nav-link {
    width: 100%;
  }
}
.serien-tabs-widget .nav-tabs .nav-item .nav-link.active, .serien-tabs-widget .nav-tabs .nav-item .nav-link:hover {
  -webkit-box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(233, 235, 239, 0.5);
}

.button-404 {
  border-radius: 5px;
  border: 2px solid #FF1743;
  height: 40px;
  width: 200px;
  line-height: 24px;
  text-align: center;
  font-family: "Yantramanav";
  color: #000;
  display: block;
  background: transparent;
  padding-left: 50px;
  padding-right: 50px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.button-404 i {
  display: none;
}
.button-404:hover, .button-404:active, .button-404:focus {
  border: 2px solid #d4021d;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: transparent !important;
  color: #000;
}

.is-amazon-error-page #page-body {
  margin: 40px 0;
}
.is-amazon-error-page #page-body .btn-primary {
  border-radius: 5px;
  border: 2px solid #FF1743;
  background: transparent;
  height: 40px;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 20px;
}
.is-amazon-error-page #page-body .btn-primary i {
  display: none;
}
.is-amazon-error-page #page-body .btn-primary:hover, .is-amazon-error-page #page-body .btn-primary:active, .is-amazon-error-page #page-body .btn-primary:focus {
  background: transparent;
  color: #000;
  border: 2px solid #d4021d;
}
.is-amazon-error-page #page-body h1, .is-amazon-error-page #page-body h2, .is-amazon-error-page #page-body h3 {
  margin-bottom: 20px !important;
}
.is-amazon-error-page #page-body .input-unit {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 0.1rem;
  overflow: hidden;
  height: 48px;
  line-height: 19px;
  font-family: "Yantramanav";
  font-size: 14px;
  color: #000;
  border: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .is-amazon-error-page #page-body .input-unit {
    height: 49px !important;
  }
}
.is-amazon-error-page #page-body input {
  color: #3f3f3f;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 1.2em !important;
  width: 100%;
  font-size: 1em;
  outline: none !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 1.6rem 1rem 0.3rem 1rem;
  border: 1px solid #9498A0;
  border-radius: 5px;
}

.productImageDot {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 100%;
  border: 6px solid rgba(255, 255, 255, 0.8);
  color: #fff !important;
  text-decoration: none;
  background-color: #e2001a;
  line-height: 29px;
  text-align: center;
}

.category-822 .homepage__image-text-widget--button, .category-822 .history__details-button + .btn-primary, .category-822 .history__change-payment-button + .btn-primary, .category-822 .order-return .btn.btn-primary.btn-medium-large, .order-return .category-822 .btn.btn-primary.btn-medium-large, .category-822 #contact-modal__send, .category-822 .checkout__header--back a, .checkout__header--back .category-822 a, .category-822 .order-return .btn-primary.btn-medium-large.single__series-button, .order-return .category-822 .btn-primary.btn-medium-large.single__series-button, .category-822 .single__image-text-widget--button, .category-822 .order-return .feedback-container .btn-primary.btn-medium-large.btn-secondary, .order-return .feedback-container .category-822 .btn-primary.btn-medium-large.btn-secondary, .category-822 .feedback-container .order-return .btn-primary.btn-medium-large.btn-secondary, .feedback-container .order-return .category-822 .btn-primary.btn-medium-large.btn-secondary, .category-822 .order-return .feedback-container .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .order-return .feedback-container .category-822 .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .category-822 .feedback-container .order-return .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .feedback-container .order-return .category-822 .btn-primary.btn-medium-large.feedback-info-segment.btn-default, .category-822 .feedback-container a[href="#login"], .feedback-container .category-822 a[href="#login"], .category-822 .feedback-container .btn-primary, .feedback-container .category-822 .btn-primary {
  width: 100%;
}
#cashinadvanceBankDetails {
  margin-top: 10px;
  margin-bottom: 10px;
}

.modal-address {
  display: grid;
}

.cannot-change-payment {
  font-size: 1rem;
  padding: 5px;
  cursor: default;
}
.cannot-change-payment .info-badge {
  margin-left: 0.2rem;
}

.history-pagination {
  margin-top: 15px;
}
.history-pagination .counter {
  position: absolute;
}

.gradient-hr {
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(#DCDBD7), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #DCDBD7, rgba(0, 0, 0, 0));
}

.show-more-returns {
  position: absolute;
  bottom: 22px;
  left: 40%;
  background-color: #fff;
  width: 96px;
  text-align: center;
}

.order-return-history-image-container {
  max-width: 100%;
  width: 100%;
  position: relative;
  position: relative;
  overflow: hidden;
}
.order-return-history-image-container > noscript, .order-return-history-image-container a > img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.order-return-history-image-container .owl-carousel {
  height: 100%;
}
.order-return-history-image-container .owl-carousel .owl-stage-outer {
  height: 100%;
}
.order-return-history-image-container .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.order-return-history-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.order-return-history-image-container .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.order-return-history-count {
  color: #7a7f7f;
  margin-top: 15px;
}

.switchable-warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 10px;
  border-width: 1px;
  border-style: solid;
}

.warning-triangle {
  margin: auto;
  font-size: large;
}

.warning-text {
  text-align: justify;
  width: 85%;
  margin: auto;
}

.current-payment-text {
  border: 1px solid #dcdbd8;
  border-radius: 0.1rem;
}

.current-payment-width {
  width: 100% !important;
}

.card-body {
  padding: 1rem;
}
@media (max-width: 575.98px) {
  .card-body .add-item .item-edit {
    height: 45%;
    margin-bottom: 0 !important;
  }
  .card-body .add-item span.item-edit:nth-of-type(2) {
    bottom: 0;
    position: absolute;
  }
  .card-body .add-item button {
    height: 100%;
  }
}

.widget-account-settings .card, .widget-account-settings .cmp-address-list .items > div:first-child, .cmp-address-list .widget-account-settings .items > div:first-child {
  min-height: 115px;
}

.myaccount-documents .btn-primary {
  color: white !important;
  border-radius: 4px;
}
.myaccount-documents .btn-primary span {
  color: white !important;
}
.myaccount-documents .btn-primary:focus, .myaccount-documents .btn-primary:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.myaccount {
  background: transparent !important;
  margin-top: 20px !important;
}
@media (min-width: 992px) {
  .myaccount {
    margin-top: 80px !important;
  }
}
.myaccount .payment-confirmation-btn {
  background-color: #FF1743 !important;
}
.myaccount__container .advantages {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 0;
  display: none;
  padding-top: 20px;
}
@media (min-width: 992px) {
  .myaccount__container .advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.myaccount__container .advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yantramanav";
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
}
.myaccount__container .advantages__item span {
  font-family: "Yantramanav";
}
.myaccount__container .advantages__item svg {
  width: 20px;
  height: 20px;
}
.myaccount__header {
  background-color: #333;
  border-radius: 6px 6px 0 0;
  height: 74px;
}
.myaccount__header h1 {
  line-height: 70px;
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  padding-left: 20px;
  margin: 0 !important;
}
.myaccount__hello {
  color: #000;
  width: 100%;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  line-height: 33px;
  font-size: 24px;
}
@media screen and (min-width: 375px) {
  .myaccount__hello {
    margin-left: 10px;
  }
}
.myaccount__logout-new {
  font-family: "Yantramanav" !important;
  font-weight: 500;
}
@media screen and (min-width: 375px) {
  .myaccount__logout-new {
    width: 178px;
  }
}
.myaccount__logout, .single__series-button, .feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
  min-height: 40px;
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  text-align: center;
  line-height: 22px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  min-width: 178px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .myaccount__logout, .single__series-button, .feedback-container .btn-secondary, .feedback-container .feedback-info-segment.btn-default {
    width: 178px;
  }
}
.myaccount__logout:hover, .single__series-button:hover, .feedback-container .btn-secondary:hover, .feedback-container .feedback-info-segment.btn-default:hover, .myaccount__logout:focus, .single__series-button:focus, .feedback-container .btn-secondary:focus, .feedback-container .feedback-info-segment.btn-default:focus, .myaccount__logout:active, .single__series-button:active, .feedback-container .btn-secondary:active, .feedback-container .feedback-info-segment.btn-default:active {
  border: 2px solid #FF1743;
  color: #000;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.myaccount__logout i, .single__series-button i, .feedback-container .btn-secondary i, .feedback-container .feedback-info-segment.btn-default i {
  float: right;
  font-size: 20px;
  margin-top: 0;
}
.myaccount__sub-header {
  margin-top: 20px;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 375px) {
  .myaccount__sub-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.myaccount__address-area {
  background: white;
  -webkit-box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
          box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
  border-radius: 6px;
  padding: 30px;
  margin-top: 20px;
}
.myaccount__address-area h4 {
  line-height: 22px;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
}
.myaccount__address-area .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .myaccount__address-area .card-body {
    display: block;
  }
}
.myaccount__address-area .card, .myaccount__address-area .cmp-address-list .items > div:first-child, .cmp-address-list .myaccount__address-area .items > div:first-child {
  border-radius: 3px;
  border: 1px solid #9498A0;
}
.myaccount__address-area .card span, .myaccount__address-area .cmp-address-list .items > div:first-child span, .cmp-address-list .myaccount__address-area .items > div:first-child span {
  line-height: 17px;
  font-size: 12px;
  color: #000;
}
.myaccount__address-area .card strong, .myaccount__address-area .cmp-address-list .items > div:first-child strong, .cmp-address-list .myaccount__address-area .items > div:first-child strong {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}
.myaccount .account-settings__labels {
  width: 30%;
  min-width: 68px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .myaccount .account-settings__labels {
    float: left;
    margin-right: 35px;
    width: unset;
  }
}
.myaccount .account-settings__labels > div:first-child {
  margin-bottom: 50px;
}
.myaccount .account-settings__values {
  line-height: 24px;
  width: calc(65% - 30px);
  overflow: hidden;
}
.myaccount .account-settings__values div {
  height: 24px;
  overflow: hidden;
}
.myaccount .account-settings__values > div:first-child {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .myaccount .account-settings__values {
    width: unset;
  }
}
.myaccount .account-settings__add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  right: 10px;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 40px;
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.myaccount .account-settings__add span {
  display: none;
}
@media (min-width: 1200px) {
  .myaccount .account-settings__add span {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  .myaccount .account-settings__add {
    width: 200px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.myaccount .account-settings__add--lower {
  top: 75px;
}
.myaccount .account-settings__add:hover svg {
  fill: #333 !important;
}
@media (min-width: 992px) {
  .myaccount .account-settings__add {
    right: 10px;
  }
}
.myaccount .account-settings__add svg {
  width: auto;
}
.myaccount .account-settings__add svg:last-child {
  margin-top: 4px;
}
.myaccount .account-settings__add svg:hover {
  fill: #333 !important;
}

.card-placeholder {
  color: #000;
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .card-placeholder {
    font-size: 15px;
  }
}

.order-details-modal .modal-content {
  border-radius: 6px;
}
.order-details-modal .modal-header {
  border-radius: 5px 5px 0 0;
  background: #FF1743;
  height: 74px;
  padding: 0;
  padding-right: 20px;
}
.order-details-modal .modal-header svg {
  fill: white;
  cursor: pointer;
}
.order-details-modal .modal-header h3 {
  line-height: 70px;
  font-weight: bold;
  font-size: 24px;
  color: white;
  padding-left: 20px;
  margin: 0;
}
.order-details-modal .modal-body {
  background-color: rgba(233, 235, 239, 0.5);
}
.order-details-modal .cmp-totals {
  padding: 20px;
  background: white;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
          box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
}
.order-details-modal .cmp-order-item {
  padding: 10px;
  background: white;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
          box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
}

.history__wrapper {
  background: white;
  -webkit-box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
          box-shadow: 0 2px 5px 0 rgba(233, 235, 239, 0.5);
  border-radius: 6px;
  padding: 20px;
}
.history__wrapper hr {
  border-top: 1px solid #E9EBEF;
  margin-top: 1px;
  margin-bottom: 0;
}
.history__wrapper .nav-tabs {
  border-bottom: none;
  border-radius: 6px;
  padding-left: 5px;
}
.history__wrapper .nav-tabs .nav-item {
  border: none;
  border-radius: 6px;
}
.history__wrapper .nav-tabs .nav-item .nav-link {
  border: none !important;
  line-height: 22px;
  font-size: 16px;
  color: #000;
  border-radius: 6px;
  padding-left: 0;
}
.history__wrapper .wish-list-no-items-label {
  padding: 75px 0 100px 0;
  padding-bottom: 40px;
  line-height: 17px;
  font-size: 12px;
  color: #9498A0;
}
.history__details-button, .history__change-payment-button {
  display: block;
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  height: 40px;
  line-height: 24px;
  text-align: center;
  background: white;
  font-weight: bold;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: "Yantramanav" !important;
  font-weight: 500;
}
.history__details-button > span, .history__change-payment-button > span {
  line-height: 1.3;
  font-size: 13px;
}
@media (min-width: 768px) {
  .history__details-button > span, .history__change-payment-button > span {
    font-size: 15px;
  }
}
.history__details-button + .btn-primary, .history__change-payment-button + .btn-primary {
  margin-bottom: 10px;
  margin-top: 0;
  background: transparent;
  line-height: 24px;
}
.history__details-button + .btn-primary i, .history__change-payment-button + .btn-primary i {
  display: none;
}
.history__details-button i, .history__change-payment-button i {
  display: none;
}
.history__details-button:hover, .history__change-payment-button:hover, .history__details-button:active, .history__change-payment-button:active, .history__details-button:focus, .history__change-payment-button:focus {
  border: 2px solid #FF1743;
}
.history__change-payment-button {
  line-height: 38px;
}
.history .payment-change-box-item {
  height: 40px;
}
.history .payment-change-box-item .cannot-change-payment {
  height: 40px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  background-color: #e9ebef !important;
  border-radius: 5px !important;
  color: #222 !important;
}
@media (min-width: 992px) {
  .history .payment-change-box-item .cannot-change-payment {
    padding: 0 20px;
  }
}
.history .payment-change-box-item .cannot-change-payment span {
  line-height: 21px !important;
  font-size: 14px !important;
  color: #000 !important;
}
.history .payment-change-box-item .cannot-change-payment svg {
  fill: white;
}
.history .order-list .item-details {
  margin-top: 20px;
}
.history .order-list .item-details h5, .history .order-list .item-details strong {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}
.history .order-list .item-details span {
  line-height: 19px;
  font-size: 14px;
  color: #000;
}
.history .order-list .cmp-order-item {
  border-bottom: 1px solid #E9EBEF;
  margin-bottom: 0;
}

.widget-shipping-privacy-check .widget-placeholder {
  padding-bottom: 50%;
}

.widget.accordion div.card:first-of-type, .widget.accordion .cmp-address-list .items > div:first-of-type:first-child, .cmp-address-list .widget.accordion .items > div:first-of-type:first-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.widget.accordion div.card:nth-of-type(2), .widget.accordion .cmp-address-list .items > div:nth-of-type(2):first-child, .cmp-address-list .widget.accordion .items > div:nth-of-type(2):first-child {
  border-top: 0;
}
.widget.accordion div.card button.collapsed h5 > .fa, .widget.accordion .cmp-address-list .items > div:first-child button.collapsed h5 > .fa, .cmp-address-list .widget.accordion .items > div:first-child button.collapsed h5 > .fa {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.widget.accordion div.card button, .widget.accordion .cmp-address-list .items > div:first-child button, .cmp-address-list .widget.accordion .items > div:first-child button {
  text-align: left;
  padding: 1.25rem;
  border-top-width: 0;
}
.widget.accordion div.card button h5, .widget.accordion .cmp-address-list .items > div:first-child button h5, .cmp-address-list .widget.accordion .items > div:first-child button h5 {
  font-weight: bold;
  position: relative;
}
.widget.accordion div.card button h5 > .fa, .widget.accordion .cmp-address-list .items > div:first-child button h5 > .fa, .cmp-address-list .widget.accordion .items > div:first-child button h5 > .fa {
  position: absolute;
  right: 0;
  top: -4px;
  font-size: 1.5rem;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
  -webkit-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
}
.widget.accordion div.card button:hover, .widget.accordion .cmp-address-list .items > div:first-child button:hover, .cmp-address-list .widget.accordion .items > div:first-child button:hover,
.widget.accordion div.card button:focus,
.widget.accordion .cmp-address-list .items > div:first-child button:focus,
.cmp-address-list .widget.accordion .items > div:first-child button:focus {
  color: black;
}
.widget.accordion div.card div .card-body, .widget.accordion .cmp-address-list .items > div:first-child div .card-body, .cmp-address-list .widget.accordion .items > div:first-child div .card-body {
  margin-top: 1px;
}
.widget.accordion div.card div .card-body p, .widget.accordion .cmp-address-list .items > div:first-child div .card-body p, .cmp-address-list .widget.accordion .items > div:first-child div .card-body p {
  margin: 0;
  line-height: normal;
}

.widget-accordion .card, .widget-accordion .cmp-address-list .items > div:first-child, .cmp-address-list .widget-accordion .items > div:first-child {
  border: none !important;
}
.widget-accordion .card .card-header, .widget-accordion .cmp-address-list .items > div:first-child .card-header, .cmp-address-list .widget-accordion .items > div:first-child .card-header {
  background-color: transparent;
  padding: 8px 0 !important;
  border-bottom: 1px solid #dcdbd8;
  text-decoration: none !important;
  color: #000 !important;
}
.widget-accordion .card .card-header h5, .widget-accordion .cmp-address-list .items > div:first-child .card-header h5, .cmp-address-list .widget-accordion .items > div:first-child .card-header h5 {
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: start;
  font-size: 21px;
  font-weight: 400 !important;
  line-height: 1.3em;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
  text-decoration: none !important;
  color: #000 !important;
}
.widget-accordion .card .card-header i, .widget-accordion .cmp-address-list .items > div:first-child .card-header i, .cmp-address-list .widget-accordion .items > div:first-child .card-header i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  background-color: transparent;
  height: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50%;
}
.widget-accordion .card .card-header i:before, .widget-accordion .cmp-address-list .items > div:first-child .card-header i:before, .cmp-address-list .widget-accordion .items > div:first-child .card-header i:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='svg_arrow' viewBox='0 0 8 12'%3E%3Cpath fill-rule='evenodd' d='M33,367.002127 L38.1466088,362 L33,356.997873 L34.0266956,356 L40.2,362 L34.0266956,368 L33,367.002127 Z' transform='rotate(-180 20.1 184)'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 14px;
  width: 14px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.widget-accordion .card .card-header:not(.collapsed) i:before, .widget-accordion .cmp-address-list .items > div:first-child .card-header:not(.collapsed) i:before, .cmp-address-list .widget-accordion .items > div:first-child .card-header:not(.collapsed) i:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 768px) {
  .widget-accordion .card .card-header:hover i, .widget-accordion .cmp-address-list .items > div:first-child .card-header:hover i, .cmp-address-list .widget-accordion .items > div:first-child .card-header:hover i {
    background-color: #F4F5F8;
    border-radius: 50%;
  }
}
.widget-accordion .card .card-body, .widget-accordion .cmp-address-list .items > div:first-child .card-body, .cmp-address-list .widget-accordion .items > div:first-child .card-body {
  border-bottom: 1px solid #dcdbd8;
  padding-left: 0;
  padding-right: 0;
}
.widget-accordion .card .card-body p, .widget-accordion .cmp-address-list .items > div:first-child .card-body p, .cmp-address-list .widget-accordion .items > div:first-child .card-body p {
  margin-bottom: 0;
}

.faq.widget-text h1 span, .faq.widget-text h2 span {
  font-size: 29px;
  line-height: normal;
}
@media (min-width: 768px) {
  .faq.widget-text h1 span, .faq.widget-text h2 span {
    font-size: 40px;
  }
}
.faq.widget-text span {
  font-size: 16px;
  line-height: normal;
}
@media (min-width: 768px) {
  .faq.widget-text span {
    font-size: 18px;
  }
}
.faq.widget-text h3 {
  font-size: 18px;
  line-height: normal;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .faq.widget-text h3 {
    font-size: 25px;
  }
}

.faq.widget-accordion h5 {
  font-size: 21px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .faq.widget-accordion h5 {
    font-size: 25px !important;
  }
}
.faq.widget-accordion .card-body {
  font-size: 16px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .faq.widget-accordion .card-body {
    font-size: 18px !important;
  }
}
.faq.widget-accordion .card-body p {
  font-size: 16px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .faq.widget-accordion .card-body p {
    font-size: 18px !important;
  }
}

.widget-code.faq {
  font-size: 16px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .widget-code.faq {
    font-size: 18px !important;
  }
}

.widget-grid.faq h2 {
  font-size: 21px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .widget-grid.faq h2 {
    font-size: 25px !important;
  }
}
.widget-grid.faq p {
  font-size: 16px !important;
  line-height: normal !important;
}
@media (min-width: 768px) {
  .widget-grid.faq p {
    font-size: 18px !important;
  }
}

@media (min-width: 768px) {
  .three-img-teaser__wrapper {
    min-height: 730px;
  }
}

@media (max-width: 575.98px) {
  .widget.widget-image-box {
    padding-bottom: 0;
    min-height: 10rem;
  }
}
.widget.widget-image-box > img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.widget.widget-image-box > img.img-cover {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget.widget-image-box > .widget-inner {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.widget.widget-image-box > .widget-inner .widget-caption {
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  word-break: break-word;
}
.widget.widget-image-box > .widget-inner .widget-caption h2, .widget.widget-image-box > .widget-inner .widget-caption .h2 {
  margin: 0;
  font-size: 1.75rem;
}
.widget.widget-image-box.widget-image-box-fullwidth > .widget-inner .widget-caption {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}
.widget.widget-image-box.widget-image-box-fullwidth > .widget-inner .widget-caption > div {
  display: block;
  width: 100%;
}
.widget.widget-image-box.widget-image-box-inline-caption > .widget-inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.widget.widget-image-box.widget-image-box-inline-caption > .widget-inner .widget-caption {
  padding: 0 1.5rem;
}
.widget.widget-image-box.widget-image-box-block-caption > .widget-inner {
  padding: 0;
}
.widget.widget-image-box.widget-image-box-block-caption > .widget-inner .widget-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  position: absolute;
  bottom: 0;
}
@media (max-width: 575.98px) {
  .widget.widget-image-box.widget-image-box-block-caption > .widget-inner .widget-caption {
    position: relative;
    width: 100%;
  }
}
.widget.widget-image-box.widget-image-box-no-caption > .widget-inner .widget-caption {
  display: none;
}
.widget.widget-image-box.widget-primary .widget-caption {
  color: #fff;
  background-color: rgba(255, 23, 67, 0.8);
}
.widget.widget-image-box.widget-primary .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-primary a[href].widget-inner:hover .widget-caption {
  color: #fff;
  background-color: rgba(255, 23, 67, 0.9);
}
.widget.widget-image-box.widget-primary a[href].widget-inner:hover .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-secondary .widget-caption {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.8);
}
.widget.widget-image-box.widget-secondary .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-secondary a[href].widget-inner:hover .widget-caption {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.9);
}
.widget.widget-image-box.widget-secondary a[href].widget-inner:hover .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-success .widget-caption {
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
}
.widget.widget-image-box.widget-success .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-success a[href].widget-inner:hover .widget-caption {
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
}
.widget.widget-image-box.widget-success a[href].widget-inner:hover .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-info .widget-caption {
  color: #fff;
  background-color: rgba(23, 162, 184, 0.8);
}
.widget.widget-image-box.widget-info .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-info a[href].widget-inner:hover .widget-caption {
  color: #fff;
  background-color: rgba(23, 162, 184, 0.9);
}
.widget.widget-image-box.widget-info a[href].widget-inner:hover .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-warning .widget-caption {
  color: #212529;
  background-color: rgba(255, 193, 7, 0.8);
}
.widget.widget-image-box.widget-warning .widget-caption a {
  color: #212529;
}
.widget.widget-image-box.widget-warning a[href].widget-inner:hover .widget-caption {
  color: #212529;
  background-color: rgba(255, 193, 7, 0.9);
}
.widget.widget-image-box.widget-warning a[href].widget-inner:hover .widget-caption a {
  color: #212529;
}
.widget.widget-image-box.widget-danger .widget-caption {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.8);
}
.widget.widget-image-box.widget-danger .widget-caption a {
  color: #fff;
}
.widget.widget-image-box.widget-danger a[href].widget-inner:hover .widget-caption {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.9);
}
.widget.widget-image-box.widget-danger a[href].widget-inner:hover .widget-caption a {
  color: #fff;
}

.widget-grid .widget-image-box-fullwidth .widget-inner .widget-caption h2 {
  font-size: 2rem;
}

.widget-image-box-caption h1,
.widget-image-box-caption h2,
.widget-image-box-caption h3,
.widget-image-box-caption p {
  margin: 0;
}
.widget-image-box-caption h1 {
  font-size: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.widget-image-box-caption h2 {
  font-size: 1.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.widget-image-box-caption h3 {
  font-size: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.widget-image-box-caption p {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.widget-image-box-caption.fullwidth h1,
.widget-image-box-caption.fullwidth h2,
.widget-image-box-caption.fullwidth h3 {
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .widget-image-box-caption.fullwidth h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .widget-image-box-caption.fullwidth h1 {
    font-size: 6rem;
  }
}
@media (min-width: 576px) {
  .widget-image-box-caption.fullwidth h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .widget-image-box-caption.fullwidth h2 {
    font-size: 4rem;
  }
}
@media (min-width: 576px) {
  .widget-image-box-caption.fullwidth h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .widget-image-box-caption.fullwidth h3 {
    font-size: 2.5rem;
  }
}

.three-img-teaser__wrapper {
  display: grid;
  grid-template-areas: "img1 img1" "content content" "img2 img3";
  gap: 15px;
  padding: 15px;
  max-width: 1500px;
  margin: auto;
  grid-auto-columns: 1fr;
}
@media (min-width: 768px) {
  .three-img-teaser__wrapper {
    grid-template-areas: "img1 img1 content content" "img2 img3 content content";
  }
}
.three-img-teaser__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.three-img-teaser__img--1 {
  grid-area: img1;
}
.three-img-teaser__img--2 {
  grid-area: img2;
}
.three-img-teaser__img--3 {
  grid-area: img3;
}
.three-img-teaser__content {
  background-color: #e9e9e9;
  width: 100%;
  height: 100%;
  grid-area: content;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.three-img-teaser__content img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  height: 100%;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.three-img-teaser__headline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  z-index: 1;
}
@media (min-width: 768px) {
  .three-img-teaser__headline {
    text-align: start;
    font-size: 85px;
    line-height: 110%;
  }
}
.three-img-teaser__subheadline {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  z-index: 1;
}
@media (min-width: 768px) {
  .three-img-teaser__subheadline {
    text-align: start;
    font-size: 40px;
  }
}
.three-img-teaser__btn {
  background: #FF1743;
  border-radius: 5px;
  padding: 16px 24px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .three-img-teaser__btn {
    padding: 16px 64px;
  }
}
.three-img-teaser__btn:hover {
  background: #d4021d;
  color: #FFFFFF;
}

.testimonial__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  padding: 15px;
  margin: auto;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .testimonial__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.testimonial__img-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  max-width: 300px;
}
.testimonial__img {
  max-width: 300px;
  border-radius: 150px;
}
.testimonial__txt p, .testimonial__txt span {
  font-size: 18px;
  font-style: italic;
}
.testimonial__btn {
  border: 2px solid #000;
  border-radius: 5px;
  padding: 8px 24px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 24px;
  display: inline-block;
}
@media (min-width: 768px) {
  .testimonial__btn {
    padding: 8px 48px;
  }
}
.testimonial__btn:hover {
  border-color: #FF1743;
}

.widget-image-carousel.widget-proportional {
  min-height: 175px;
}
.widget-image-carousel .widget-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.widget-image-carousel .widget-inner .widget-caption {
  position: absolute;
  text-align: center;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
}
.widget-image-carousel .widget-inner .widget-caption h2, .widget-image-carousel .widget-inner .widget-caption .h2 {
  padding: 0.5rem 1rem;
  font-size: 1.75rem;
  margin: 0;
  display: inline-block;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}
@media (min-width: 768px) {
  .widget-image-carousel .widget-inner .widget-caption h2, .widget-image-carousel .widget-inner .widget-caption .h2 {
    font-size: 3rem;
  }
}
.widget-image-carousel .widget-inner .carousel-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.widget-image-carousel .widget-inner .carousel-item {
  width: 100%;
  height: 100%;
}
.widget-image-carousel .widget-inner .carousel-item img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.widget-image-carousel .widget-inner .carousel-item img.img-cover {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget-image-carousel .widget-inner .carousel-indicators {
  bottom: 0;
  padding: 0.5rem 1rem;
}
.widget-image-carousel .widget-inner .carousel-indicators li {
  /* Bootstrap override */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.8rem;
  width: 0.8rem;
  height: 0.8rem;
  margin: 2px;
  border: 1px solid #fff;
  background-color: transparent;
}
.widget-image-carousel .widget-inner .carousel-control {
  background-image: none;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}
.widget-image-carousel .widget-inner .carousel-control .fa {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3rem;
}

@media (min-width: 768px) {
  .widget-inner-stacked .widget-image-carousel .widget-caption h2, .widget-inner-stacked .widget-image-carousel .widget-caption .h2 {
    padding: 0.5rem 1rem;
    font-size: 1.75rem;
    margin: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .widget-inner-stacked .widget-image-carousel .widget-caption h2, .widget-inner-stacked .widget-image-carousel .widget-caption .h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .widget-inner-stacked .widget-image-carousel .carousel-control .fa {
    font-size: 1.5rem;
  }
}
/* Compatibility for IE */
/* display img with optimal aspect ratio */
html.ie .widget-image-carousel .widget-inner .carousel-item .img-cover {
  min-height: auto;
  min-width: auto;
}

.widget-image-carousel.widget-primary .widget-caption h2,
.widget-image-carousel.widget-primary .widget-caption .h2 {
  color: #fff;
  background-color: rgba(255, 23, 67, 0.8);
}
.widget-image-carousel.widget-primary .widget-caption h2 a,
.widget-image-carousel.widget-primary .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-primary:hover .widget-caption h2, .widget-image-carousel.widget-primary:hover .widget-caption .h2 {
  color: #fff;
  background-color: rgba(255, 23, 67, 0.9);
}
.widget-image-carousel.widget-primary:hover .widget-caption h2 a, .widget-image-carousel.widget-primary:hover .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-primary .carousel-indicators li {
  border-color: #FF1743;
}
.widget-image-carousel.widget-primary .carousel-indicators li.active {
  background-color: #FF1743;
}
.widget-image-carousel.widget-primary .carousel-control .fa {
  color: #FF1743;
}

.widget-image-carousel.widget-secondary .widget-caption h2,
.widget-image-carousel.widget-secondary .widget-caption .h2 {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.8);
}
.widget-image-carousel.widget-secondary .widget-caption h2 a,
.widget-image-carousel.widget-secondary .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-secondary:hover .widget-caption h2, .widget-image-carousel.widget-secondary:hover .widget-caption .h2 {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.9);
}
.widget-image-carousel.widget-secondary:hover .widget-caption h2 a, .widget-image-carousel.widget-secondary:hover .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-secondary .carousel-indicators li {
  border-color: #d4021d;
}
.widget-image-carousel.widget-secondary .carousel-indicators li.active {
  background-color: #d4021d;
}
.widget-image-carousel.widget-secondary .carousel-control .fa {
  color: #d4021d;
}

.widget-image-carousel.widget-success .widget-caption h2,
.widget-image-carousel.widget-success .widget-caption .h2 {
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
}
.widget-image-carousel.widget-success .widget-caption h2 a,
.widget-image-carousel.widget-success .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-success:hover .widget-caption h2, .widget-image-carousel.widget-success:hover .widget-caption .h2 {
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
}
.widget-image-carousel.widget-success:hover .widget-caption h2 a, .widget-image-carousel.widget-success:hover .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-success .carousel-indicators li {
  border-color: #28a745;
}
.widget-image-carousel.widget-success .carousel-indicators li.active {
  background-color: #28a745;
}
.widget-image-carousel.widget-success .carousel-control .fa {
  color: #28a745;
}

.widget-image-carousel.widget-info .widget-caption h2,
.widget-image-carousel.widget-info .widget-caption .h2 {
  color: #fff;
  background-color: rgba(23, 162, 184, 0.8);
}
.widget-image-carousel.widget-info .widget-caption h2 a,
.widget-image-carousel.widget-info .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-info:hover .widget-caption h2, .widget-image-carousel.widget-info:hover .widget-caption .h2 {
  color: #fff;
  background-color: rgba(23, 162, 184, 0.9);
}
.widget-image-carousel.widget-info:hover .widget-caption h2 a, .widget-image-carousel.widget-info:hover .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-info .carousel-indicators li {
  border-color: #17a2b8;
}
.widget-image-carousel.widget-info .carousel-indicators li.active {
  background-color: #17a2b8;
}
.widget-image-carousel.widget-info .carousel-control .fa {
  color: #17a2b8;
}

.widget-image-carousel.widget-warning .widget-caption h2,
.widget-image-carousel.widget-warning .widget-caption .h2 {
  color: #212529;
  background-color: rgba(255, 193, 7, 0.8);
}
.widget-image-carousel.widget-warning .widget-caption h2 a,
.widget-image-carousel.widget-warning .widget-caption .h2 a {
  color: #212529;
}
.widget-image-carousel.widget-warning:hover .widget-caption h2, .widget-image-carousel.widget-warning:hover .widget-caption .h2 {
  color: #212529;
  background-color: rgba(255, 193, 7, 0.9);
}
.widget-image-carousel.widget-warning:hover .widget-caption h2 a, .widget-image-carousel.widget-warning:hover .widget-caption .h2 a {
  color: #212529;
}
.widget-image-carousel.widget-warning .carousel-indicators li {
  border-color: #ffc107;
}
.widget-image-carousel.widget-warning .carousel-indicators li.active {
  background-color: #ffc107;
}
.widget-image-carousel.widget-warning .carousel-control .fa {
  color: #ffc107;
}

.widget-image-carousel.widget-danger .widget-caption h2,
.widget-image-carousel.widget-danger .widget-caption .h2 {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.8);
}
.widget-image-carousel.widget-danger .widget-caption h2 a,
.widget-image-carousel.widget-danger .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-danger:hover .widget-caption h2, .widget-image-carousel.widget-danger:hover .widget-caption .h2 {
  color: #fff;
  background-color: rgba(212, 2, 29, 0.9);
}
.widget-image-carousel.widget-danger:hover .widget-caption h2 a, .widget-image-carousel.widget-danger:hover .widget-caption .h2 a {
  color: #fff;
}
.widget-image-carousel.widget-danger .carousel-indicators li {
  border-color: #d4021d;
}
.widget-image-carousel.widget-danger .carousel-indicators li.active {
  background-color: #d4021d;
}
.widget-image-carousel.widget-danger .carousel-control .fa {
  color: #d4021d;
}

.widget-item-list .widget-inner {
  padding-left: 0;
  padding-right: 0;
}
.widget-item-list .widget-caption {
  padding: 0.25rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.widget-item-list .widget-caption > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.widget-item-list-caption h1,
.widget-item-list-caption h2,
.widget-item-list-caption h3,
.widget-item-list-caption p {
  margin: 0;
  text-transform: uppercase;
}
.widget-item-list-caption h1 {
  font-size: 2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.widget-item-list-caption h2 {
  font-size: 1.75rem;
  padding-top: 0.6rem;
  padding-bottom: 0.4rem;
}
.widget-item-list-caption h3 {
  font-size: 1.5rem;
  padding-top: 0.4rem;
  padding-bottom: 0.1rem;
}

.widget-legal-information a {
  color: black;
  margin-right: 10px;
}

.widget-list .widget-inner .list-container,
.widget-list .widget-inner .list-centered,
.widget-link-list .widget-inner .list-container,
.widget-link-list .widget-inner .list-centered {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.widget-list .widget-inner ul,
.widget-link-list .widget-inner ul {
  margin-bottom: 0;
}
.widget-list .widget-inner a,
.widget-link-list .widget-inner a {
  color: #4D4F4D;
}

@media (min-width: 768px) {
  .landingpage-banner__img-wrapper {
    height: 100%;
  }
}
.landingpage-banner__container {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .landingpage-banner__container {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .landingpage-banner__container {
    height: 100% !important;
  }
}
.landingpage-banner__img-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.landingpage-banner__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landingpage-banner__content-wrapper {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
}
@media (min-width: 768px) {
  .landingpage-banner__content-wrapper {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1200px) {
  .landingpage-banner__content-wrapper {
    display: block;
    position: absolute;
    padding-top: 10%;
    padding-left: 20%;
  }
}
.landingpage-banner__headline {
  font-size: 30px;
  line-height: 40px;
}
@media (min-width: 768px) {
  .landingpage-banner__headline {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
  }
}
.landingpage-banner__txt p {
  font-size: 20px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .landingpage-banner__txt p {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .landingpage-banner__btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.landingpage-banner__btn {
  border-radius: 5px;
  height: 52px;
  padding-left: 40px;
  margin-bottom: 20px;
  padding-right: 40px;
  line-height: 22px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .landingpage-banner__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .landingpage-banner__btn:last-child {
    margin-left: 20px;
  }
}
.landingpage-banner__btn--primary {
  color: white;
  background: #ff1743;
  border: 2px solid #ff1743;
}
.landingpage-banner__btn--primary:hover {
  background: #e2001a;
  color: #fff;
  border-color: #e2001a;
}
.landingpage-banner__btn--primary:active, .landingpage-banner__btn--primary:focus {
  background: #e2001a;
  color: #fff;
  border-color: #e2001a;
}
.landingpage-banner__btn--secondary {
  color: #212529;
  background: #ffffff;
  border: 2px solid #ff1743;
}
.landingpage-banner__btn--secondary:hover {
  color: white;
  background: #ff1743;
  border: 2px solid #ff1743;
}
.landingpage-banner__btn--secondary:active, .landingpage-banner__btn--secondary:focus {
  color: white;
  background: #ff1743;
  border: 2px solid #ff1743;
}

.inspiration-cats__headline {
  text-transform: uppercase;
  margin-bottom: 32px;
  font-size: 29px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .inspiration-cats__headline {
    font-size: 40px !important;
  }
}
.inspiration-cats__headline span {
  font-weight: 300;
}
.inspiration-cats__wrapper {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
}
.inspiration-cats__cat-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
@media (min-width: 768px) {
  .inspiration-cats__cat-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .inspiration-cats__cat-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.inspiration-cats__cat {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.inspiration-cats__cat:hover .inspiration-cats__name {
  border-color: #FF1743;
}
.inspiration-cats__cat img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .inspiration-cats__cat img {
    height: 320px;
  }
}
.inspiration-cats__name {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #3f3f3f;
  border: 2px solid #3f3f3f;
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  width: calc(100% - 40px);
  height: 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .inspiration-cats__name {
    font-size: 18px !important;
  }
}

@media (max-width: 575.98px) {
  .widget-live-shopping .thumb-inner .thumb-image {
    float: none;
    width: 100%;
  }
  .widget-live-shopping .thumb-inner .thumb-image > .square-container {
    padding-bottom: 50%;
  }
  .widget-live-shopping .thumb-inner .live-shopping {
    width: 100%;
  }
  .widget-live-shopping .thumb-inner .live-shopping .live-shopping-item-name > a {
    font-weight: normal;
  }
}
.widget-live-shopping .widget-placeholder {
  padding-bottom: 150%;
}

.widget-newsletter > .widget-inner {
  padding-left: 0;
  padding-right: 0;
}

.widget-text .widget-inner {
  padding: 1rem 1.5rem;
}

.home-teaser-widget {
  background-color: #F4F5F8;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .home-teaser-widget {
    padding: 72px 0;
  }
}
.home-teaser-widget__image img {
  max-width: 100%;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.08), 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2), 0px 0px 2px 0px rgba(0, 0, 0, 0.08), 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}
.home-teaser-widget__headline {
  color: #1E1E1E;
  font-family: "Yantramanav";
  font-size: 29px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .home-teaser-widget__headline {
    font-size: 40px;
    text-align: start;
  }
}
.home-teaser-widget__headline strong {
  font-weight: 900;
}
.home-teaser-widget .usp-widget__item {
  padding: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 4px);
          flex: 0 0 calc(50% - 4px);
  max-width: calc(50% - 4px);
}
@media (min-width: 576px) {
  .home-teaser-widget .usp-widget__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 8px);
            flex: 0 0 calc(25% - 8px);
    max-width: calc(25% - 8px);
  }
}
@media (min-width: 992px) {
  .home-teaser-widget .usp-widget__item {
    padding: 30px;
  }
}
.home-teaser-widget .usp-widget__item-wrapper {
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-top: 24px;
  padding-bottom: 48px;
}
.home-teaser-widget .usp-widget__icon-wrapper {
  margin-bottom: 11px;
}
.home-teaser-widget .usp-widget__icon-wrapper svg {
  height: 24px !important;
}
.home-teaser-widget .usp-widget__text {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: normal;
}
@media (min-width: 768px) {
  .home-teaser-widget .usp-widget__text {
    font-size: 15px;
  }
}
.home-teaser-widget .usp-widget__text p {
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  line-height: normal;
}
@media (min-width: 768px) {
  .home-teaser-widget .usp-widget__text p {
    font-size: 15px !important;
  }
}
.home-teaser-widget__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .home-teaser-widget__btns {
    gap: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
}
.home-teaser-widget__btns .btn-primary {
  padding: 16px 60px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  border-radius: 5px;
  /* 125% */
}
@media (min-width: 768px) {
  .home-teaser-widget__btns .btn-primary {
    padding: 16px 60px;
    font-size: 18px;
  }
}
.home-teaser-widget__btns .btn-secondary, .home-teaser-widget__btns .feedback-container .feedback-info-segment.btn-default, .feedback-container .home-teaser-widget__btns .feedback-info-segment.btn-default {
  background-color: #fff;
  border: 2px solid #FF1743;
  color: #000;
  padding: 16px 60px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  border-radius: 5px;
  /* 125% */
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.home-teaser-widget__btns .btn-secondary:hover, .home-teaser-widget__btns .feedback-container .feedback-info-segment.btn-default:hover, .feedback-container .home-teaser-widget__btns .feedback-info-segment.btn-default:hover {
  background-color: #FF1743;
  color: #fff;
}
.home-teaser-widget__right .home-teaser-widget__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
}
.home-teaser-widget__right .home-teaser-widget__btn .btn-primary {
  padding: 16px 60px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  border-radius: 5px;
  /* 125% */
}

.widget-title-bar .widget-inner {
  padding: 1rem 1.5rem;
  word-break: break-word;
}
.widget-title-bar .h1, .widget-title-bar h1,
.widget-title-bar .h2, .widget-title-bar h2,
.widget-title-bar .h3, .widget-title-bar h3 {
  margin: 0.5rem auto;
  font-size: 2.5rem;
  letter-spacing: 1.25px;
  display: block;
}
.widget-title-bar .h2, .widget-title-bar h2 {
  margin: 0.4rem 0;
  font-size: 2.25rem;
}
.widget-title-bar .h3, .widget-title-bar h3 {
  margin: 0.25rem 0;
  font-size: 2rem;
}

.widget-grid > .widget-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.widget-grid > .widget-inner > div {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}
.widget-grid .widget-inner-stacked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.widget-grid .widget-inner-stacked > .widget-inner [data-builder-child-container] {
  min-height: 100px;
}
@media (min-width: 768px) {
  .widget-grid .widget-inner-stacked > .widget-inner .widget-proportional {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .widget-grid .widget-inner-stacked > .widget-inner:first-child {
    padding-bottom: 2rem;
  }
}

.footer .widget-grid .widget-inner .widget-list {
  position: relative;
  height: 100%;
  color: #4D4F4D;
  background-color: rgb(217.8571428571, 217.8571428571, 227.1428571429);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-bottom: 0;
}
.footer .widget-grid .widget-inner .widget-list .widget-inner {
  padding: 1rem;
}
@media (min-width: 768px) {
  .footer .widget-grid .widget-inner .widget-list {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer .widget-grid .widget-inner:first-child .widget-list {
    margin-left: 0;
    padding-left: 0;
  }
  .footer .widget-grid .widget-inner:last-child .widget-list {
    margin-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .footer .widget-grid .widget-inner:not(:last-child) .widget-list .widget-inner {
    padding-bottom: 0;
  }
}

.checkout .widget-grid > .widget-inner > div {
  background-color: #fff;
  padding: 1rem;
}

.nav-link.text-appearance.active {
  color: #495057 !important;
}

.widget {
  margin-bottom: 2rem;
}
.widget .widget-inner {
  position: relative;
}
.widget .widget-inner .widget {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .widget {
    margin-bottom: 2rem;
  }
  .widget.widget-grid:not(.widget-two-col) {
    margin-bottom: 0;
  }
  .widget:not(.widget-two-col) .widget-inner:not(.widget-stacked) .widget:not(.widget-grid) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .widget {
    margin-bottom: 1rem;
  }
  .widget:not(.widget-two-col) .widget-inner:not(.widget-stacked) .widget:not(.widget-grid) {
    margin-bottom: 1rem;
  }
}
header .widget {
  margin-bottom: 0;
}

.widget-fw {
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
}

.widget-proportional {
  position: relative;
  padding-bottom: 33.3333333333%;
  overflow: hidden;
}
.widget-proportional .widget-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.widget-prop-1-1 .widget-proportional {
  padding-bottom: 100%;
}

.widget-proportional.widget-prop-1-1 {
  padding-bottom: 100% !important;
}

.widget-prop-1-2 .widget-proportional {
  padding-bottom: 200%;
}

.widget-proportional.widget-prop-1-2 {
  padding-bottom: 200% !important;
}

.widget-prop-1-3 .widget-proportional {
  padding-bottom: 300%;
}

.widget-proportional.widget-prop-1-3 {
  padding-bottom: 300% !important;
}

.widget-prop-1-4 .widget-proportional {
  padding-bottom: 400%;
}

.widget-proportional.widget-prop-1-4 {
  padding-bottom: 400% !important;
}

.widget-prop-2-1 .widget-proportional {
  padding-bottom: 50%;
}

.widget-proportional.widget-prop-2-1 {
  padding-bottom: 50% !important;
}

.widget-prop-2-2 .widget-proportional {
  padding-bottom: 100%;
}

.widget-proportional.widget-prop-2-2 {
  padding-bottom: 100% !important;
}

.widget-prop-2-3 .widget-proportional {
  padding-bottom: 150%;
}

.widget-proportional.widget-prop-2-3 {
  padding-bottom: 150% !important;
}

.widget-prop-2-4 .widget-proportional {
  padding-bottom: 200%;
}

.widget-proportional.widget-prop-2-4 {
  padding-bottom: 200% !important;
}

.widget-prop-3-1 .widget-proportional {
  padding-bottom: 33.3333333333%;
}

.widget-proportional.widget-prop-3-1 {
  padding-bottom: 33.3333333333% !important;
}

.widget-prop-3-2 .widget-proportional {
  padding-bottom: 66.6666666667%;
}

.widget-proportional.widget-prop-3-2 {
  padding-bottom: 66.6666666667% !important;
}

.widget-prop-3-3 .widget-proportional {
  padding-bottom: 100%;
}

.widget-proportional.widget-prop-3-3 {
  padding-bottom: 100% !important;
}

.widget-prop-3-4 .widget-proportional {
  padding-bottom: 133.3333333333%;
}

.widget-proportional.widget-prop-3-4 {
  padding-bottom: 133.3333333333% !important;
}

.widget-prop-4-1 .widget-proportional {
  padding-bottom: 25%;
}

.widget-proportional.widget-prop-4-1 {
  padding-bottom: 25% !important;
}

.widget-prop-4-2 .widget-proportional {
  padding-bottom: 50%;
}

.widget-proportional.widget-prop-4-2 {
  padding-bottom: 50% !important;
}

.widget-prop-4-3 .widget-proportional {
  padding-bottom: 75%;
}

.widget-proportional.widget-prop-4-3 {
  padding-bottom: 75% !important;
}

.widget-prop-4-4 .widget-proportional {
  padding-bottom: 100%;
}

.widget-proportional.widget-prop-4-4 {
  padding-bottom: 100% !important;
}

@media (max-width: 575.98px) {
  .widget-prop-auto > div > .widget-proportional {
    padding-bottom: 0;
    min-height: 100%;
  }
}
@media (min-width: 576px) {
  .widget-prop-sm-1-1 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-sm-1-1 {
    padding-bottom: 100% !important;
  }
  .widget-prop-sm-1-2 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-sm-1-2 {
    padding-bottom: 200% !important;
  }
  .widget-prop-sm-1-3 .widget-proportional {
    padding-bottom: 300%;
  }
  .widget-proportional.widget-prop-sm-1-3 {
    padding-bottom: 300% !important;
  }
  .widget-prop-sm-1-4 .widget-proportional {
    padding-bottom: 400%;
  }
  .widget-proportional.widget-prop-sm-1-4 {
    padding-bottom: 400% !important;
  }
  .widget-prop-sm-2-1 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-sm-2-1 {
    padding-bottom: 50% !important;
  }
  .widget-prop-sm-2-2 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-sm-2-2 {
    padding-bottom: 100% !important;
  }
  .widget-prop-sm-2-3 .widget-proportional {
    padding-bottom: 150%;
  }
  .widget-proportional.widget-prop-sm-2-3 {
    padding-bottom: 150% !important;
  }
  .widget-prop-sm-2-4 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-sm-2-4 {
    padding-bottom: 200% !important;
  }
  .widget-prop-sm-3-1 .widget-proportional {
    padding-bottom: 33.3333333333%;
  }
  .widget-proportional.widget-prop-sm-3-1 {
    padding-bottom: 33.3333333333% !important;
  }
  .widget-prop-sm-3-2 .widget-proportional {
    padding-bottom: 66.6666666667%;
  }
  .widget-proportional.widget-prop-sm-3-2 {
    padding-bottom: 66.6666666667% !important;
  }
  .widget-prop-sm-3-3 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-sm-3-3 {
    padding-bottom: 100% !important;
  }
  .widget-prop-sm-3-4 .widget-proportional {
    padding-bottom: 133.3333333333%;
  }
  .widget-proportional.widget-prop-sm-3-4 {
    padding-bottom: 133.3333333333% !important;
  }
  .widget-prop-sm-4-1 .widget-proportional {
    padding-bottom: 25%;
  }
  .widget-proportional.widget-prop-sm-4-1 {
    padding-bottom: 25% !important;
  }
  .widget-prop-sm-4-2 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-sm-4-2 {
    padding-bottom: 50% !important;
  }
  .widget-prop-sm-4-3 .widget-proportional {
    padding-bottom: 75%;
  }
  .widget-proportional.widget-prop-sm-4-3 {
    padding-bottom: 75% !important;
  }
  .widget-prop-sm-4-4 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-sm-4-4 {
    padding-bottom: 100% !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .widget-prop-sm-auto > div > .widget-proportional {
    padding-bottom: 0;
    min-height: 100%;
  }
}
@media (min-width: 768px) {
  .widget-prop-md-1-1 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-md-1-1 {
    padding-bottom: 100% !important;
  }
  .widget-prop-md-1-2 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-md-1-2 {
    padding-bottom: 200% !important;
  }
  .widget-prop-md-1-3 .widget-proportional {
    padding-bottom: 300%;
  }
  .widget-proportional.widget-prop-md-1-3 {
    padding-bottom: 300% !important;
  }
  .widget-prop-md-1-4 .widget-proportional {
    padding-bottom: 400%;
  }
  .widget-proportional.widget-prop-md-1-4 {
    padding-bottom: 400% !important;
  }
  .widget-prop-md-2-1 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-md-2-1 {
    padding-bottom: 50% !important;
  }
  .widget-prop-md-2-2 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-md-2-2 {
    padding-bottom: 100% !important;
  }
  .widget-prop-md-2-3 .widget-proportional {
    padding-bottom: 150%;
  }
  .widget-proportional.widget-prop-md-2-3 {
    padding-bottom: 150% !important;
  }
  .widget-prop-md-2-4 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-md-2-4 {
    padding-bottom: 200% !important;
  }
  .widget-prop-md-3-1 .widget-proportional {
    padding-bottom: 33.3333333333%;
  }
  .widget-proportional.widget-prop-md-3-1 {
    padding-bottom: 33.3333333333% !important;
  }
  .widget-prop-md-3-2 .widget-proportional {
    padding-bottom: 66.6666666667%;
  }
  .widget-proportional.widget-prop-md-3-2 {
    padding-bottom: 66.6666666667% !important;
  }
  .widget-prop-md-3-3 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-md-3-3 {
    padding-bottom: 100% !important;
  }
  .widget-prop-md-3-4 .widget-proportional {
    padding-bottom: 133.3333333333%;
  }
  .widget-proportional.widget-prop-md-3-4 {
    padding-bottom: 133.3333333333% !important;
  }
  .widget-prop-md-4-1 .widget-proportional {
    padding-bottom: 25%;
  }
  .widget-proportional.widget-prop-md-4-1 {
    padding-bottom: 25% !important;
  }
  .widget-prop-md-4-2 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-md-4-2 {
    padding-bottom: 50% !important;
  }
  .widget-prop-md-4-3 .widget-proportional {
    padding-bottom: 75%;
  }
  .widget-proportional.widget-prop-md-4-3 {
    padding-bottom: 75% !important;
  }
  .widget-prop-md-4-4 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-md-4-4 {
    padding-bottom: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .widget-prop-md-auto > div > .widget-proportional {
    padding-bottom: 0;
    min-height: 100%;
  }
}
@media (min-width: 992px) {
  .widget-prop-lg-1-1 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-lg-1-1 {
    padding-bottom: 100% !important;
  }
  .widget-prop-lg-1-2 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-lg-1-2 {
    padding-bottom: 200% !important;
  }
  .widget-prop-lg-1-3 .widget-proportional {
    padding-bottom: 300%;
  }
  .widget-proportional.widget-prop-lg-1-3 {
    padding-bottom: 300% !important;
  }
  .widget-prop-lg-1-4 .widget-proportional {
    padding-bottom: 400%;
  }
  .widget-proportional.widget-prop-lg-1-4 {
    padding-bottom: 400% !important;
  }
  .widget-prop-lg-2-1 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-lg-2-1 {
    padding-bottom: 50% !important;
  }
  .widget-prop-lg-2-2 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-lg-2-2 {
    padding-bottom: 100% !important;
  }
  .widget-prop-lg-2-3 .widget-proportional {
    padding-bottom: 150%;
  }
  .widget-proportional.widget-prop-lg-2-3 {
    padding-bottom: 150% !important;
  }
  .widget-prop-lg-2-4 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-lg-2-4 {
    padding-bottom: 200% !important;
  }
  .widget-prop-lg-3-1 .widget-proportional {
    padding-bottom: 33.3333333333%;
  }
  .widget-proportional.widget-prop-lg-3-1 {
    padding-bottom: 33.3333333333% !important;
  }
  .widget-prop-lg-3-2 .widget-proportional {
    padding-bottom: 66.6666666667%;
  }
  .widget-proportional.widget-prop-lg-3-2 {
    padding-bottom: 66.6666666667% !important;
  }
  .widget-prop-lg-3-3 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-lg-3-3 {
    padding-bottom: 100% !important;
  }
  .widget-prop-lg-3-4 .widget-proportional {
    padding-bottom: 133.3333333333%;
  }
  .widget-proportional.widget-prop-lg-3-4 {
    padding-bottom: 133.3333333333% !important;
  }
  .widget-prop-lg-4-1 .widget-proportional {
    padding-bottom: 25%;
  }
  .widget-proportional.widget-prop-lg-4-1 {
    padding-bottom: 25% !important;
  }
  .widget-prop-lg-4-2 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-lg-4-2 {
    padding-bottom: 50% !important;
  }
  .widget-prop-lg-4-3 .widget-proportional {
    padding-bottom: 75%;
  }
  .widget-proportional.widget-prop-lg-4-3 {
    padding-bottom: 75% !important;
  }
  .widget-prop-lg-4-4 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-lg-4-4 {
    padding-bottom: 100% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .widget-prop-lg-auto > div > .widget-proportional {
    padding-bottom: 0;
    min-height: 100%;
  }
}
@media (min-width: 1200px) {
  .widget-prop-xl-1-1 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-xl-1-1 {
    padding-bottom: 100% !important;
  }
  .widget-prop-xl-1-2 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-xl-1-2 {
    padding-bottom: 200% !important;
  }
  .widget-prop-xl-1-3 .widget-proportional {
    padding-bottom: 300%;
  }
  .widget-proportional.widget-prop-xl-1-3 {
    padding-bottom: 300% !important;
  }
  .widget-prop-xl-1-4 .widget-proportional {
    padding-bottom: 400%;
  }
  .widget-proportional.widget-prop-xl-1-4 {
    padding-bottom: 400% !important;
  }
  .widget-prop-xl-2-1 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-xl-2-1 {
    padding-bottom: 50% !important;
  }
  .widget-prop-xl-2-2 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-xl-2-2 {
    padding-bottom: 100% !important;
  }
  .widget-prop-xl-2-3 .widget-proportional {
    padding-bottom: 150%;
  }
  .widget-proportional.widget-prop-xl-2-3 {
    padding-bottom: 150% !important;
  }
  .widget-prop-xl-2-4 .widget-proportional {
    padding-bottom: 200%;
  }
  .widget-proportional.widget-prop-xl-2-4 {
    padding-bottom: 200% !important;
  }
  .widget-prop-xl-3-1 .widget-proportional {
    padding-bottom: 33.3333333333%;
  }
  .widget-proportional.widget-prop-xl-3-1 {
    padding-bottom: 33.3333333333% !important;
  }
  .widget-prop-xl-3-2 .widget-proportional {
    padding-bottom: 66.6666666667%;
  }
  .widget-proportional.widget-prop-xl-3-2 {
    padding-bottom: 66.6666666667% !important;
  }
  .widget-prop-xl-3-3 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-xl-3-3 {
    padding-bottom: 100% !important;
  }
  .widget-prop-xl-3-4 .widget-proportional {
    padding-bottom: 133.3333333333%;
  }
  .widget-proportional.widget-prop-xl-3-4 {
    padding-bottom: 133.3333333333% !important;
  }
  .widget-prop-xl-4-1 .widget-proportional {
    padding-bottom: 25%;
  }
  .widget-proportional.widget-prop-xl-4-1 {
    padding-bottom: 25% !important;
  }
  .widget-prop-xl-4-2 .widget-proportional {
    padding-bottom: 50%;
  }
  .widget-proportional.widget-prop-xl-4-2 {
    padding-bottom: 50% !important;
  }
  .widget-prop-xl-4-3 .widget-proportional {
    padding-bottom: 75%;
  }
  .widget-proportional.widget-prop-xl-4-3 {
    padding-bottom: 75% !important;
  }
  .widget-prop-xl-4-4 .widget-proportional {
    padding-bottom: 100%;
  }
  .widget-proportional.widget-prop-xl-4-4 {
    padding-bottom: 100% !important;
  }
}
@media (min-width: 1200px) {
  .widget-prop-xl-auto > div > .widget-proportional {
    padding-bottom: 0;
    min-height: 100%;
  }
}
@media (max-width: 575.98px) {
  .widget-grid .widget-inner.col-12.widget-stacked, .widget-grid .widget-inner.widget-stacked.homepage__category-widget-col--big, .widget-grid .homepage__category-widget--inspiration .widget-inner.widget-stacked.homepage__category-widget-col, .homepage__category-widget--inspiration .widget-grid .widget-inner.widget-stacked.homepage__category-widget-col, .widget-grid .widget-inner.widget-stacked.homepage__image-text-widget--col, .widget-grid .widget-inner.widget-stacked.checkout__header--contact, .widget-grid .single__item-series .widget-inner.widget-stacked.col-xs-12, .single__item-series .widget-grid .widget-inner.widget-stacked.col-xs-12, .widget-grid .widget-inner.widget-stacked.single__image-text-widget--col, .widget-grid .is-amazon-error-page #page-body .widget-inner.widget-stacked.col-xs-12, .is-amazon-error-page #page-body .widget-grid .widget-inner.widget-stacked.col-xs-12 {
    padding-bottom: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .widget-grid .widget-inner.col-sm-12.widget-stacked {
    padding-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .widget-grid .widget-inner.col-lg-12.widget-stacked {
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .widget-grid > .widget-inner.widget-prop-md-auto.col-md-3 > div > .widget-proportional, .widget-grid > .widget-inner.widget-prop-md-auto.homepage__categories--cat-outer > div > .widget-proportional, .widget-grid > .widget-inner.widget-prop-md-auto.category__categories--cat-outer > div > .widget-proportional, .widget-grid > .widget-inner.widget-prop-md-auto.content__categories--cat-outer > div > .widget-proportional {
    padding-bottom: calc(100% + 15px);
  }
}
.widget-editable-min-height {
  min-height: 40px;
  padding-bottom: 0.1px;
}

/*
 * INLINE EDITOR CLASSES
 */
.color-primary {
  color: #FF1743 !important;
}

.bg-primary {
  background-color: #FF1743;
  color: #fff;
}

.color-secondary {
  color: #d4021d !important;
}

.bg-secondary {
  background-color: #d4021d;
  color: #fff;
}

.color-success {
  color: #28a745 !important;
}

.bg-success {
  background-color: #28a745;
  color: #fff;
}

.color-info {
  color: #17a2b8 !important;
}

.bg-info {
  background-color: #17a2b8;
  color: #fff;
}

.color-warning {
  color: #ffc107 !important;
}

.bg-warning {
  background-color: #ffc107;
  color: #212529;
}

.color-danger {
  color: #d4021d !important;
}

.bg-danger {
  background-color: #d4021d;
  color: #fff;
}

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

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-justify {
  text-align: justify;
}

.widget-primary .text-appearance {
  color: #FF1743 !important;
}
.widget-primary a.text-appearance:hover, .widget-primary a.text-appearance:focus {
  color: rgb(201.5, 0, 38.2155172414) !important;
}
.widget-primary .text-appearance {
  color: #000 !important;
  font-family: "Yantramanav";
}
.widget-primary .bg-appearance {
  background-color: #FF1743;
  color: #fff;
}
.widget-primary .bg-appearance a {
  color: #fff;
}
.widget-primary a.bg-appearance:hover,
.widget-primary button.bg-appearance:hover {
  background-color: rgb(227, 0, 43.0517241379);
  color: #fff;
}
.widget-primary .btn-appearance {
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.widget-primary .btn-appearance:hover {
  color: #fff;
  background-color: rgb(239.75, 0, 45.4698275862);
  border-color: rgb(227, 0, 43.0517241379);
}
.widget-primary .btn-appearance:focus, .widget-primary .btn-appearance.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
}
.widget-primary .btn-appearance.disabled, .widget-primary .btn-appearance:disabled {
  color: #fff;
  background-color: #FF1743;
  border-color: #FF1743;
}
.widget-primary .btn-appearance:not(:disabled):not(.disabled):active, .widget-primary .btn-appearance:not(:disabled):not(.disabled).active, .show > .widget-primary .btn-appearance.dropdown-toggle {
  color: #fff;
  background-color: rgb(227, 0, 43.0517241379);
  border-color: rgb(214.25, 0, 40.6336206897);
}
.widget-primary .btn-appearance:not(:disabled):not(.disabled):active:focus, .widget-primary .btn-appearance:not(:disabled):not(.disabled).active:focus, .show > .widget-primary .btn-appearance.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 57.8, 95.2, 0.5);
}
.widget-primary a.text-appearance,
.widget-primary .btn-appearance {
  -webkit-text-decoration-color: #FF1743;
          text-decoration-color: #FF1743;
}
.widget-primary a.text-appearance:hover, .widget-primary a.text-appearance:focus,
.widget-primary .btn-appearance:hover,
.widget-primary .btn-appearance:focus {
  -webkit-text-decoration-color: rgb(239.75, 0, 45.4698275862);
          text-decoration-color: rgb(239.75, 0, 45.4698275862);
}
.widget-primary .pagination .page-item .page-link {
  color: #FF1743;
}
.widget-primary .pagination .page-item .page-link:hover, .widget-primary .pagination .page-item .page-link:focus {
  color: rgb(201.5, 0, 38.2155172414);
}
.widget-primary .pagination .page-item.active .page-link {
  border-color: #FF1743;
  background-color: #FF1743;
  color: #fff;
}

.widget-secondary .text-appearance {
  color: #d4021d !important;
}
.widget-secondary a.text-appearance:hover, .widget-secondary a.text-appearance:focus {
  color: rgb(136.214953271, 1.285046729, 18.6331775701) !important;
}
.widget-secondary .text-appearance {
  color: #000 !important;
  font-family: "Yantramanav";
}
.widget-secondary .bg-appearance {
  background-color: #d4021d;
  color: #fff;
}
.widget-secondary .bg-appearance a {
  color: #fff;
}
.widget-secondary a.bg-appearance:hover,
.widget-secondary button.bg-appearance:hover {
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
  color: #fff;
}
.widget-secondary .btn-appearance {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.widget-secondary .btn-appearance:hover {
  color: #fff;
  background-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
  border-color: rgb(161.476635514, 1.523364486, 22.0887850467);
}
.widget-secondary .btn-appearance:focus, .widget-secondary .btn-appearance.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}
.widget-secondary .btn-appearance.disabled, .widget-secondary .btn-appearance:disabled {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.widget-secondary .btn-appearance:not(:disabled):not(.disabled):active, .widget-secondary .btn-appearance:not(:disabled):not(.disabled).active, .show > .widget-secondary .btn-appearance.dropdown-toggle {
  color: #fff;
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
  border-color: rgb(148.8457943925, 1.4042056075, 20.3609813084);
}
.widget-secondary .btn-appearance:not(:disabled):not(.disabled):active:focus, .widget-secondary .btn-appearance:not(:disabled):not(.disabled).active:focus, .show > .widget-secondary .btn-appearance.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}
.widget-secondary a.text-appearance,
.widget-secondary .btn-appearance {
  -webkit-text-decoration-color: #d4021d;
          text-decoration-color: #d4021d;
}
.widget-secondary a.text-appearance:hover, .widget-secondary a.text-appearance:focus,
.widget-secondary .btn-appearance:hover,
.widget-secondary .btn-appearance:focus {
  -webkit-text-decoration-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
          text-decoration-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
}
.widget-secondary .pagination .page-item .page-link {
  color: #d4021d;
}
.widget-secondary .pagination .page-item .page-link:hover, .widget-secondary .pagination .page-item .page-link:focus {
  color: rgb(136.214953271, 1.285046729, 18.6331775701);
}
.widget-secondary .pagination .page-item.active .page-link {
  border-color: #d4021d;
  background-color: #d4021d;
  color: #fff;
}

.widget-success .text-appearance {
  color: #28a745 !important;
}
.widget-success a.text-appearance:hover, .widget-success a.text-appearance:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}
.widget-success .text-appearance {
  color: #000 !important;
  font-family: "Yantramanav";
}
.widget-success .bg-appearance {
  background-color: #28a745;
  color: #fff;
}
.widget-success .bg-appearance a {
  color: #fff;
}
.widget-success a.bg-appearance:hover,
.widget-success button.bg-appearance:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  color: #fff;
}
.widget-success .btn-appearance {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.widget-success .btn-appearance:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.widget-success .btn-appearance:focus, .widget-success .btn-appearance.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.widget-success .btn-appearance.disabled, .widget-success .btn-appearance:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.widget-success .btn-appearance:not(:disabled):not(.disabled):active, .widget-success .btn-appearance:not(:disabled):not(.disabled).active, .show > .widget-success .btn-appearance.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.widget-success .btn-appearance:not(:disabled):not(.disabled):active:focus, .widget-success .btn-appearance:not(:disabled):not(.disabled).active:focus, .show > .widget-success .btn-appearance.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.widget-success a.text-appearance,
.widget-success .btn-appearance {
  -webkit-text-decoration-color: #28a745;
          text-decoration-color: #28a745;
}
.widget-success a.text-appearance:hover, .widget-success a.text-appearance:focus,
.widget-success .btn-appearance:hover,
.widget-success .btn-appearance:focus {
  -webkit-text-decoration-color: rgb(32.6086956522, 136.1413043478, 56.25);
          text-decoration-color: rgb(32.6086956522, 136.1413043478, 56.25);
}
.widget-success .pagination .page-item .page-link {
  color: #28a745;
}
.widget-success .pagination .page-item .page-link:hover, .widget-success .pagination .page-item .page-link:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5);
}
.widget-success .pagination .page-item.active .page-link {
  border-color: #28a745;
  background-color: #28a745;
  color: #fff;
}

.widget-info .text-appearance {
  color: #17a2b8 !important;
}
.widget-info a.text-appearance:hover, .widget-info a.text-appearance:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}
.widget-info .text-appearance {
  color: #000 !important;
  font-family: "Yantramanav";
}
.widget-info .bg-appearance {
  background-color: #17a2b8;
  color: #fff;
}
.widget-info .bg-appearance a {
  color: #fff;
}
.widget-info a.bg-appearance:hover,
.widget-info button.bg-appearance:hover {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  color: #fff;
}
.widget-info .btn-appearance {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.widget-info .btn-appearance:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.widget-info .btn-appearance:focus, .widget-info .btn-appearance.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.widget-info .btn-appearance.disabled, .widget-info .btn-appearance:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.widget-info .btn-appearance:not(:disabled):not(.disabled):active, .widget-info .btn-appearance:not(:disabled):not(.disabled).active, .show > .widget-info .btn-appearance.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.widget-info .btn-appearance:not(:disabled):not(.disabled):active:focus, .widget-info .btn-appearance:not(:disabled):not(.disabled).active:focus, .show > .widget-info .btn-appearance.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.widget-info a.text-appearance,
.widget-info .btn-appearance {
  -webkit-text-decoration-color: #17a2b8;
          text-decoration-color: #17a2b8;
}
.widget-info a.text-appearance:hover, .widget-info a.text-appearance:focus,
.widget-info .btn-appearance:hover,
.widget-info .btn-appearance:focus {
  -webkit-text-decoration-color: rgb(18.75, 132.0652173913, 150);
          text-decoration-color: rgb(18.75, 132.0652173913, 150);
}
.widget-info .pagination .page-item .page-link {
  color: #17a2b8;
}
.widget-info .pagination .page-item .page-link:hover, .widget-info .pagination .page-item .page-link:focus {
  color: rgb(14.5, 102.1304347826, 116);
}
.widget-info .pagination .page-item.active .page-link {
  border-color: #17a2b8;
  background-color: #17a2b8;
  color: #fff;
}

.widget-warning .text-appearance {
  color: #ffc107 !important;
}
.widget-warning a.text-appearance:hover, .widget-warning a.text-appearance:focus {
  color: rgb(185.5, 139.125, 0) !important;
}
.widget-warning .text-appearance {
  color: #000 !important;
  font-family: "Yantramanav";
}
.widget-warning .bg-appearance {
  background-color: #ffc107;
  color: #212529;
}
.widget-warning .bg-appearance a {
  color: #212529;
}
.widget-warning a.bg-appearance:hover,
.widget-warning button.bg-appearance:hover {
  background-color: rgb(211, 158.25, 0);
  color: #fff;
}
.widget-warning .btn-appearance {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.widget-warning .btn-appearance:hover {
  color: #fff;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.widget-warning .btn-appearance:focus, .widget-warning .btn-appearance.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.widget-warning .btn-appearance.disabled, .widget-warning .btn-appearance:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.widget-warning .btn-appearance:not(:disabled):not(.disabled):active, .widget-warning .btn-appearance:not(:disabled):not(.disabled).active, .show > .widget-warning .btn-appearance.dropdown-toggle {
  color: #fff;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.widget-warning .btn-appearance:not(:disabled):not(.disabled):active:focus, .widget-warning .btn-appearance:not(:disabled):not(.disabled).active:focus, .show > .widget-warning .btn-appearance.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.widget-warning a.text-appearance,
.widget-warning .btn-appearance {
  -webkit-text-decoration-color: #ffc107;
          text-decoration-color: #ffc107;
}
.widget-warning a.text-appearance:hover, .widget-warning a.text-appearance:focus,
.widget-warning .btn-appearance:hover,
.widget-warning .btn-appearance:focus {
  -webkit-text-decoration-color: rgb(223.75, 167.8125, 0);
          text-decoration-color: rgb(223.75, 167.8125, 0);
}
.widget-warning .pagination .page-item .page-link {
  color: #ffc107;
}
.widget-warning .pagination .page-item .page-link:hover, .widget-warning .pagination .page-item .page-link:focus {
  color: rgb(185.5, 139.125, 0);
}
.widget-warning .pagination .page-item.active .page-link {
  border-color: #ffc107;
  background-color: #ffc107;
  color: #212529;
}

.widget-danger .text-appearance {
  color: #d4021d !important;
}
.widget-danger a.text-appearance:hover, .widget-danger a.text-appearance:focus {
  color: rgb(136.214953271, 1.285046729, 18.6331775701) !important;
}
.widget-danger .text-appearance {
  color: #000 !important;
  font-family: "Yantramanav";
}
.widget-danger .bg-appearance {
  background-color: #d4021d;
  color: #fff;
}
.widget-danger .bg-appearance a {
  color: #fff;
}
.widget-danger a.bg-appearance:hover,
.widget-danger button.bg-appearance:hover {
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
  color: #fff;
}
.widget-danger .btn-appearance {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.widget-danger .btn-appearance:hover {
  color: #fff;
  background-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
  border-color: rgb(161.476635514, 1.523364486, 22.0887850467);
}
.widget-danger .btn-appearance:focus, .widget-danger .btn-appearance.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}
.widget-danger .btn-appearance.disabled, .widget-danger .btn-appearance:disabled {
  color: #fff;
  background-color: #d4021d;
  border-color: #d4021d;
}
.widget-danger .btn-appearance:not(:disabled):not(.disabled):active, .widget-danger .btn-appearance:not(:disabled):not(.disabled).active, .show > .widget-danger .btn-appearance.dropdown-toggle {
  color: #fff;
  background-color: rgb(161.476635514, 1.523364486, 22.0887850467);
  border-color: rgb(148.8457943925, 1.4042056075, 20.3609813084);
}
.widget-danger .btn-appearance:not(:disabled):not(.disabled):active:focus, .widget-danger .btn-appearance:not(:disabled):not(.disabled).active:focus, .show > .widget-danger .btn-appearance.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(218.45, 39.95, 62.9, 0.5);
}
.widget-danger a.text-appearance,
.widget-danger .btn-appearance {
  -webkit-text-decoration-color: #d4021d;
          text-decoration-color: #d4021d;
}
.widget-danger a.text-appearance:hover, .widget-danger a.text-appearance:focus,
.widget-danger .btn-appearance:hover,
.widget-danger .btn-appearance:focus {
  -webkit-text-decoration-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
          text-decoration-color: rgb(174.1074766355, 1.6425233645, 23.816588785);
}
.widget-danger .pagination .page-item .page-link {
  color: #d4021d;
}
.widget-danger .pagination .page-item .page-link:hover, .widget-danger .pagination .page-item .page-link:focus {
  color: rgb(136.214953271, 1.285046729, 18.6331775701);
}
.widget-danger .pagination .page-item.active .page-link {
  border-color: #d4021d;
  background-color: #d4021d;
  color: #fff;
}

.widget-placeholder {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-color: #dcdbd8;
}
.widget-placeholder > div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  padding: 1rem;
  width: 100%;
}
.widget-placeholder .title {
  font-weight: bold;
  font-size: 1.3rem;
}
.widget-placeholder .description {
  font-style: italic;
}

@media (max-width: 575.98px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .hidden-lg-down {
    display: none !important;
  }
}

.hidden-xl-down {
  display: none !important;
}

.display-1 {
  font-size: 3.5rem;
  line-height: 3.5rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .display-1 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 32px;
    line-height: 2rem;
  }
}

.display-2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 800;
}

.display-2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-weight: 800;
}

h1, .h1 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 300;
}

h2, .h2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 300;
}

h3, .h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}

h4, .h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}

h5, .h5 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 500;
}

h6, .h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 500;
}

p, .text {
  line-height: 28px;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  p, .text {
    font-size: 16px;
    font-size: 1rem;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #e9ebef !important;
  font-family: "Yantramanav";
  color: #000;
}
body.full-screen-modal-open {
  overflow: hidden;
}

html {
  overflow: hidden;
}
html.has-loaded {
  overflow: auto;
  overflow-x: hidden;
}

h3, .h3 {
  font-family: "Yantramanav", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
}

.pwd-forgot-info {
  background: #FF1743 !important;
  color: white !important;
}

.page-cancellation-rights h3, .page-privacy-policy h3, .page-terms-conditions h3 {
  margin: 25px 0 !important;
}
.page-cancellation-rights h2, .page-privacy-policy h2, .page-terms-conditions h2 {
  margin-top: 25px;
}

.alert-dismissible .close {
  top: 10px !important;
}

.category-content__template {
  margin-top: 40px;
}
.category-content__template img.img-responsive {
  width: 100%;
}
.category-content__template .btn-primary:active, .category-content__template .btn-primary:focus {
  color: #ffffff;
}

.contact-wrapper {
  position: fixed;
  -webkit-transition: right 0.5s ease, -webkit-transform 0.5s ease;
  transition: right 0.5s ease, -webkit-transform 0.5s ease;
  transition: right 0.5s ease, transform 0.5s ease;
  transition: right 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 1090;
}
@media (max-width: 767.98px) {
  .contact-wrapper {
    top: unset !important;
    bottom: -95px;
    -webkit-transform: translateY(calc(100% - 128px));
            transform: translateY(calc(100% - 128px));
    left: 50px;
  }
}
@media (min-width: 768px) {
  .contact-wrapper {
    top: 10vh;
    right: -459px;
    position: fixed;
  }
}
@media (min-width: 992px) {
  .contact-wrapper {
    right: -918px;
    max-height: 90vh;
    height: 701px;
  }
}
.contact-wrapper .contact-wrapper__content-form--message textarea {
  resize: none;
}
.contact-wrapper.is-open {
  right: 0;
  position: fixed;
}
@media (max-width: 767.98px) {
  .contact-wrapper.is-open {
    -webkit-transform: translateY(-95px);
            transform: translateY(-95px);
  }
}
.contact-wrapper.is-open .contact-wrapper__toggle {
  margin-left: -29px;
}
@media (min-width: 576px) {
  .contact-wrapper.is-open .contact-wrapper__toggle {
    margin-left: -94px;
  }
}
@media (min-width: 992px) {
  .contact-wrapper.is-open .contact-wrapper__toggle {
    margin-left: -101px;
  }
}
.contact-wrapper__meeting-btn {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #FF1743;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  width: 100%;
  background: #ff1743;
  color: #fff;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .contact-wrapper__meeting-btn {
    font-size: 18px !important;
  }
}
.contact-wrapper__meeting-btn:hover {
  border: 2px solid #d4021d;
  color: #fff;
  background: #d4021d;
}
.contact-wrapper #contact-gmap {
  height: 100%;
  width: 100%;
}
.contact-wrapper__toggle {
  color: white;
  font-family: "Yantramanav" !important;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  height: 33px;
  line-height: 33px;
  background-color: #3f3f3f;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 156px;
  font-size: 14px;
  margin-left: -29px;
  border-radius: 5px 5px 0 0;
}
@media (min-width: 768px) {
  .contact-wrapper__toggle {
    -webkit-transform: rotate(-90deg) translateX(-94px);
            transform: rotate(-90deg) translateX(-94px);
  }
}
@media (max-width: 767.98px) {
  .contact-wrapper__toggle {
    float: right;
  }
}
@media (min-width: 576px) {
  .contact-wrapper__toggle {
    margin-left: -92px;
  }
}
@media (min-width: 992px) {
  .contact-wrapper__toggle {
    line-height: 46px;
    -webkit-transform: rotate(-90deg) translateX(-122px);
            transform: rotate(-90deg) translateX(-122px);
    margin-left: -101px;
    height: 46px;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
  }
}
.contact-wrapper__toggle svg {
  fill: #fff;
  width: 20px;
  height: 15px;
  margin-right: 10px;
  stroke: white;
  stroke-width: 0.3;
}
.contact-wrapper__content {
  width: 100%;
  margin-left: auto;
  max-width: 459px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.3);
  height: calc(100vh - 170px);
  overflow: auto;
}
@media (min-width: 576px) {
  .contact-wrapper__content {
    max-width: unset;
  }
}
@media (min-width: 768px) {
  .contact-wrapper__content {
    width: 459px;
    margin: unset;
    height: 660px;
    background: #3F3F3F;
  }
}
@media (min-width: 992px) {
  .contact-wrapper__content {
    width: 918px;
    max-height: calc(90vh - 45px);
    border-radius: 5px 0 0 5px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-wrapper__content {
    min-width: 918px;
  }
}
.contact-wrapper__content-left {
  width: 50%;
  display: none;
}
@media (min-width: 992px) {
  .contact-wrapper__content-left {
    display: block;
    border-radius: 5px 0 0 5px;
  }
}
.contact-wrapper__content-right {
  width: 100%;
  background-color: #FFFFFF;
  height: calc(100vh - 310px);
}
@media (min-width: 768px) {
  .contact-wrapper__content-right {
    height: unset;
  }
}
@media (min-width: 992px) {
  .contact-wrapper__content-right {
    width: 50%;
    height: unset;
  }
}
.contact-wrapper__content-right .form-check input {
  margin-top: 5px !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-right .form-check input {
    margin-top: 8px !important;
  }
}
@media (min-width: 768px) {
  .contact-wrapper__content-form-send-wrapper {
    margin-bottom: 10px;
  }
}
.contact-wrapper__content-map img {
  width: 100%;
  height: 100%;
}
.contact-wrapper__content-info {
  background-color: #3F3F3F;
  padding: 30px 40px;
}
.contact-wrapper__content-info--mobile {
  padding: 30px;
  height: unset;
}
.contact-wrapper__content-info--mobile .contact-wrapper__content-left-headline {
  color: #FFFFFF;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-info--mobile .contact-wrapper__content-left-headline {
    font-size: 22px !important;
  }
}
.contact-wrapper__content-info--mobile .contact-wrapper__content-left-headline a {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-info--mobile .contact-wrapper__content-left-headline a {
    font-size: 18px !important;
  }
}
.contact-wrapper__content-info--mobile .contact-wrapper__content-left-subheadline {
  color: white;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-info--mobile .contact-wrapper__content-left-subheadline {
    font-size: 16px !important;
  }
}
.contact-wrapper__content-info--mobile .contact-wrapper__content-left-listitem {
  margin-bottom: 15px;
  color: #FFFFFF;
  font-family: "Yantramanav" !important;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
}
.contact-wrapper__content-info--mobile .contact-wrapper__content-left-listitem svg {
  margin-right: 13px;
}
@media (min-width: 992px) {
  .contact-wrapper__content-info--mobile {
    display: none;
  }
}
.contact-wrapper__content-left-headline {
  color: #FFFFFF;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-left-headline {
    font-size: 22px !important;
  }
}
.contact-wrapper__content-left-headline a {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-left-headline a {
    font-size: 18px !important;
  }
}
.contact-wrapper__content-left-headline a {
  color: white;
  font-weight: bold;
}
.contact-wrapper__content-left-subheadline {
  color: white;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-left-subheadline {
    font-size: 16px !important;
  }
}
.contact-wrapper__content-left-listitem {
  color: #FFFFFF;
  font-family: "Yantramanav" !important;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-wrapper__content-left-listitem svg {
  height: 16px;
  width: 16px;
  margin-right: 17px;
}
.contact-wrapper__content-form {
  background-color: #FFFFFF;
  padding: 40px 30px 70px;
  min-height: 730px;
}
@media screen and (min-width: 345px) {
  .contact-wrapper__content-form {
    min-height: 680px;
  }
}
@media (min-width: 992px) {
  .contact-wrapper__content-form {
    padding: 50px;
    min-height: unset;
  }
}
.contact-wrapper__content-form .has-error.input-unit {
  border: 1px solid #FF1743;
}
.contact-wrapper__content-form .has-error.form-check {
  background: #d4021d;
}
.contact-wrapper__content-form .has-error.form-check label {
  color: white;
  font-weight: bold;
}
.contact-wrapper__content-form .has-error.form-check label a span {
  color: white !important;
}
.contact-wrapper__content-form label {
  color: #000000;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  overflow: visible;
  cursor: default;
  line-height: 1.3 !important;
  font-size: 13px !important;
}
.contact-wrapper__content-form--name, .contact-wrapper__content-form--mail, .contact-wrapper__content-form--subject, .contact-wrapper__content-form--order {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  margin-bottom: 10px;
  border: 1px solid rgba(148, 152, 160, 0.7);
  border-radius: 5px;
}
@media (min-width: 992px) {
  .contact-wrapper__content-form--name, .contact-wrapper__content-form--mail, .contact-wrapper__content-form--subject, .contact-wrapper__content-form--order {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 48.5%;
            flex: 1 0 48.5%;
    max-width: 48.5%;
  }
}
.contact-wrapper__content-form--message {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 100%;
  height: 90px;
  border: 1px solid rgba(148, 152, 160, 0.7);
  border-radius: 5px;
  margin-bottom: 10px;
}
.contact-wrapper__content-form--cc {
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-wrapper__content-form--cc label {
  font-family: "Yantramanav" !important;
  margin-left: 5px;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-form--cc label {
    font-size: 16px !important;
  }
}
.contact-wrapper__content-form--privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-wrapper__content-form--privacy label {
  font-family: "Yantramanav" !important;
  margin-left: 5px;
  font-size: 14px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-form--privacy label {
    font-size: 16px !important;
  }
}
.contact-wrapper__content-form-hint {
  color: #3F3F3F;
  font-family: "Yantramanav" !important;
  letter-spacing: 0;
  margin-bottom: 30px;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-form-hint {
    font-size: 18px !important;
  }
}
.contact-wrapper__content-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-wrapper__content-form-headline {
  color: #3F3F3F;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 20px;
  font-size: 27px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-form-headline {
    font-size: 34px !important;
  }
}
@media (min-width: 992px) {
  .contact-wrapper__content-form-headline {
    color: #3F3F3F;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 33px;
    margin-bottom: 30px;
  }
}
.contact-wrapper__content-form-send {
  -webkit-appearance: none;
  border-radius: 5px;
  display: inline-block;
  border: 2px solid #FF1743;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  float: right;
  cursor: pointer;
  width: 100%;
  background: #ff1743;
  color: #fff;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .contact-wrapper__content-form-send {
    font-size: 18px !important;
    width: 178px;
  }
}
.contact-wrapper__content-form-send:hover {
  border: 2px solid #d4021d;
  color: #fff;
  background: #d4021d;
}

.grecaptcha-badge {
  visibility: hidden;
  bottom: 170px !important;
}

.basket-is-open .contact-wrapper {
  z-index: -1;
}

.etrusted-badge-container.less-index {
  z-index: -1 !important;
}

.honey {
  display: none;
}

.widget-code .category__teaser-button:hover, .widget-code .single__back-button:hover {
  color: white;
  background: #e2001a !important;
}

.modal-close {
  cursor: pointer;
  height: 41px;
  width: 41px;
  background-color: #E3E3E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  z-index: 1111;
}

.meeting__wrapper iframe {
  min-height: 2350px;
}
@media (min-width: 768px) {
  .meeting__wrapper iframe {
    min-height: 1900px;
  }
}

.meeting-btn {
  border-radius: 5px;
  display: inline-block;
  border: 2px solid #FF1743;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  width: 100%;
  background: #ff1743;
  color: #fff;
}
.meeting-btn:hover {
  border: 2px solid #d4021d;
  color: #fff;
  background: #d4021d;
}

body:not(.page-login):not(.page-checkout):not(.page-register):not(.category-register):not(.category-login) #vue-app {
  margin-top: 124px !important;
  min-height: calc(100vh - 124px) !important;
}
@media (min-width: 768px) {
  body:not(.page-login):not(.page-checkout):not(.page-register):not(.category-register):not(.category-login) #vue-app {
    margin-top: 145px !important;
    min-height: calc(100vh - 145px) !important;
  }
}
body:not(.page-login):not(.page-checkout):not(.page-register):not(.category-register):not(.category-login).banner-visible #vue-app {
  margin-top: 149px !important;
  min-height: calc(100vh - 149px) !important;
}
@media (min-width: 768px) {
  body:not(.page-login):not(.page-checkout):not(.page-register):not(.category-register):not(.category-login).banner-visible #vue-app {
    margin-top: 190px !important;
    min-height: calc(100vh - 190px) !important;
  }
}

@media (min-width: 992px) {
  .category__filter {
    display: none;
  }
}
.category__filter--desktop {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0 !important;
}
@media (min-width: 992px) {
  .category__filter--desktop {
    display: block;
    padding-top: 40px !important;
  }
}
.category__filter--desktop .main-filters {
  padding: 0 !important;
}
.category__filter--desktop .list-controls .main-filters .page-content,
.category__filter--desktop .list-controls #filterCollapse .page-content {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.category__filter--desktop .list-controls .main-filters .page-content .card.col-md-4, .category__filter--desktop .list-controls .main-filters .page-content .cmp-address-list .items > div.col-md-4:first-child, .cmp-address-list .category__filter--desktop .list-controls .main-filters .page-content .items > div.col-md-4:first-child,
.category__filter--desktop .list-controls #filterCollapse .page-content .card.col-md-4,
.category__filter--desktop .list-controls #filterCollapse .page-content .cmp-address-list .items > div.col-md-4:first-child,
.cmp-address-list .category__filter--desktop .list-controls #filterCollapse .page-content .items > div.col-md-4:first-child {
  max-width: 100% !important;
  margin-bottom: 40px;
}
.category__filter--desktop .list-controls .main-filters .page-content .form-check,
.category__filter--desktop .list-controls #filterCollapse .page-content .form-check {
  margin-bottom: 0;
}
.category__filter--desktop .list-controls .main-filters .page-content .form-check .filter-badge,
.category__filter--desktop .list-controls #filterCollapse .page-content .form-check .filter-badge {
  top: 1.2em !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__filter--desktop .list-controls .main-filters .page-content .form-check .filter-badge,
  .category__filter--desktop .list-controls #filterCollapse .page-content .form-check .filter-badge {
    font-size: 15px !important;
  }
}
.category__filter--desktop .list-controls .main-filters .page-content .fl-dropdown-container,
.category__filter--desktop .list-controls #filterCollapse .page-content .fl-dropdown-container {
  margin-top: 20px;
}
.category__filter--desktop .list-controls .main-filters .page-content .btn:focus, .category__filter--desktop .list-controls .main-filters .page-content .single__series-button:focus, .category__filter--desktop .list-controls .main-filters .page-content .feedback-container .btn-secondary:focus, .feedback-container .category__filter--desktop .list-controls .main-filters .page-content .btn-secondary:focus, .category__filter--desktop .list-controls .main-filters .page-content .feedback-container .feedback-info-segment.btn-default:focus, .feedback-container .category__filter--desktop .list-controls .main-filters .page-content .feedback-info-segment.btn-default:focus,
.category__filter--desktop .list-controls #filterCollapse .page-content .btn:focus,
.category__filter--desktop .list-controls #filterCollapse .page-content .single__series-button:focus,
.category__filter--desktop .list-controls #filterCollapse .page-content .feedback-container .btn-secondary:focus,
.feedback-container .category__filter--desktop .list-controls #filterCollapse .page-content .btn-secondary:focus,
.category__filter--desktop .list-controls #filterCollapse .page-content .feedback-container .feedback-info-segment.btn-default:focus,
.feedback-container .category__filter--desktop .list-controls #filterCollapse .page-content .feedback-info-segment.btn-default:focus {
  color: #FF1743 !important;
}

.category-item__col {
  padding: 8px !important;
}
.category-item__col .cmp-product-thumb {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #D5D7DB;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.category-item__col .cmp-product-thumb:hover {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
}

.small-font {
  font-size: 0.8rem !important;
}

.var-code-desktop {
  display: none;
}
@media (min-width: 768px) {
  .var-code-desktop {
    display: block;
    font-size: 15px;
  }
}

.var-code-mobile {
  display: block;
}
@media (min-width: 768px) {
  .var-code-mobile {
    display: none;
  }
}

.fa-shopping-cart {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-shopping-cart:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-shopping-cart:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Ccircle cx='10' cy='20.5' r='1'/%3E%3Ccircle cx='18' cy='20.5' r='1'/%3E%3Cpath d='M2.5 2.5h3l2.7 12.4a2 2 0 0 0 2 1.6h7.7a2 2 0 0 0 2-1.6l1.6-8.4H7.1'/%3E%3C/svg%3E");
}

.fa-shopping-bag {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-shopping-bag:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-shopping-bag:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cpath d='M6 2L3 6v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V6l-3-4H6zM3.8 6h16.4M16 10a4 4 0 1 1-8 0'/%3E%3C/svg%3E");
}

.fa-chevron-right:not(.no-dia) {
  width: 22px;
  height: 37px;
  position: relative;
}
.fa-chevron-right:not(.no-dia):before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-chevron-right:not(.no-dia):before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.297.217a.734.734 0 0 0-1.04 0 .733.733 0 0 0 0 1.04L12 13 .256 24.741a.733.733 0 0 0 0 1.041.74.74 0 0 0 .518.218c.185 0 .376-.07.518-.218L13.56 13.517a.732.732 0 0 0 .005-1.035L1.297.217z' fill='%23000000' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.fa-chevron-left:not(.no-dia) {
  width: 22px;
  height: 37px;
  position: relative;
}
.fa-chevron-left:not(.no-dia):before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-chevron-left:not(.no-dia):before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 27' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.239 12.54L12.507.275a.734.734 0 0 1 1.04 0 .733.733 0 0 1 0 1.041L1.804 13.058 13.548 24.8a.733.733 0 0 1 0 1.04.74.74 0 0 1-.518.219.718.718 0 0 1-.518-.218L.244 13.576A.732.732 0 0 1 .24 12.54z' fill='%23000000' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.fa-arrow-right {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-arrow-right:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-arrow-right:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.fa-arrow-left, .fa-level-up {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-arrow-left:before, .fa-level-up:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-arrow-left:before, .fa-level-up:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H6M12 5l-7 7 7 7'/%3E%3C/svg%3E");
}

.fa-home:before {
  content: "Start";
  font-family: "Yantramanav", Helvetica, Arial, sans-serif;
}

.fa-plus-square {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-plus-square:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-plus-square:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='16'%3E%3C/line%3E%3Cline x1='8' y1='12' x2='16' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.fa-user-plus {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-user-plus:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-user-plus:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E");
}

.fa-gift {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-gift:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-gift:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cline x1='19' y1='5' x2='5' y2='19'%3E%3C/line%3E%3Ccircle cx='6.5' cy='6.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}

.fa-user {
  width: 16px;
  height: 16px;
  position: relative;
}
.fa-user:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-user:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

.fa-times {
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
}
.fa-times:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.fa-times:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.close {
  width: 24px;
  height: 24px;
  position: relative;
  font-size: 0;
}
.close:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.close:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.anicon > .anicon-search-item:before {
  background-color: #000;
}

.anicon > .anicon-search-item:after {
  background: rgb(242.25, 242.25, 242.25);
  border: 1px solid #000;
}

/* CSS Document */
.myaccount__address-area .card span, .myaccount__address-area .cmp-address-list .items > div:first-child span, .cmp-address-list .myaccount__address-area .items > div:first-child span {
  font-size: 1rem;
}

/*.basket-list-item.py-3  {
  margin-bottom: 20px;
  background: #fff!important;
  box-shadow: 0 2px 7px 0 rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 5px;
}*/
.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-name {
  font-size: 1rem;
}

/*.header-controls__icon {
  width: 24px!important;
  height: 19px!important;
  stroke:#000;
  stroke-width: 0.2;
}*/
/*.text-muted {
  color: #333!important;
}*/
/*.input-unit input[type], .input-unit textarea, .input-unit input:not([type="checkbox"]), .input-unit input:not([type="radio"]), .input-unit .input-unit-preview
{
  color: #333!important;
}*/
/*.input-unit label, .input-unit .input-unit-label {
  color: #000!important;
  font-weight: bold!important;
  font-size: 12px!important;
  text-transform: none!important;
}*/
/*.mainmenu__megamenu {

  -webkit-transition: all 0.2s ease!important;
  transition: all 0.2s ease!important;
  -webkit-box-shadow: 0px 3px 7px -1px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 3px 7px -1px rgba(0,0,0,0.75);
  box-shadow: 0px 3px 7px -1px rgba(0,0,0,0.75);

}

.mainmenu__right {
  -webkit-transition: all 0.2s ease!important;
  transition: all 0.2s ease!important;
}

.search-box__input-group {

  box-shadow: 0 1px 3px 0 rgba(32,33,36,0.4);
}*/
.alert-success {
  width: 100% !important;
}

/*.category__filter-btn-close-or-accept {
  width: 250px!important;
  background-color: #FF1743!important;
  color: #fff!important;
}

.category__filter-btn-close-or-accept:hover {
  color: #333!important;
  background: #fff!important;
}


.mainmenu__link {
  -webkit-transition: all 0.2s ease!important;
  transition: all 0.2s ease!important;}

.grecaptcha-badge {
  bottom: 170px!important;
}

.configurator__row button {
  color: #333!important;
  font-weight: bold!important;
}


.single__stock-availability {
  font-size: 16px!important;
  font-family: "Open Sans Bold";
  line-height: 1.62em!important;
  letter-spacing: 1px!important;
}

.single__wishlist {
  color: #333!important;
  font-family:"Open Sans Bold";
}

.single__wishlist-btn a {
  color: #333!important;
  font-family:"Open Sans Bold";
}


.single__vat {
  color: #222!important;
  line-height: 18px!important;
  font-size:1rem!important;
}

.single__vat a {
  color: #222!important;
}

.single__rating a {
  color: #222!important;
}

.homepage-swiper__button {
  background: #ff1743!important;
  color: #fff!important;
  border: 2px solid #ff1743!important;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
}

.homepage-swiper__button a {
  color: #fff!important;}


button.homepage-swiper__button:hover {
  background: #d4021d !important;
  border-color: #d4021d !important;
}

.homepage-swiper__button a:hover {
  color: #fff!important;
}


.homepage__category--button {
  color: #fff!important;
  background: #333!important;
}

.category__teaser-button {
  background: #fff;

  &:hover{
    background: #fff !important;
  }
}

.single__back-button {
  background: #fff;

  &:hover{
    background: #fff !important;
  }
}


.footer__contact--entries {
  max-width: 700px!important;}

.search-autocomplete__body-article .search-autocomplete__headline {

  padding-bottom: 30px!important;
}

.search-autocomplete__headline a {
  font-size: 18px;
}

.filter__items-values{
  display: contents!important;
  display: contents!important;
}


.filter__items-values .styled-checkbox+label:before {
  border: 1px solid #222;
  border-radius: 2px;
  box-shadow:none!important;
}

.filter__items-values .styled-checkbox+label {
  font-size: 1rem!important;
}

.filter__item--price input {
  border-radius: 4px;
}*/
.form-check:hover {
  color: #FF1743 !important;
}

/*input.form-control {
  border: 1px solid #222!important;
  border-radius: 4px!important;
}*/
h1#searchPageTitle {
  font-size: 24px !important;
  font-family: "Yantramanav" !important;
  font-weight: 900;
  line-height: 28px;
}

/*.filter__headline {
  margin-top: 15px;
  color: #43484D!important;
  font-size: 18px!important;
  line-height: 34px!important;
}

.login__register-btn {
  background: #FF1743!important;
  color: #fff!important;
  border: #FF1743 2px solid!important; }


.category-item__itemname {
  line-height: 19px!important;
  font-size: 14px!important;
}


.category-item__itemname {
  height: 60px!important;
  max-height: 60px!important;
}

.mainmenu__first-level-item svg {
  width: 32px;
  height: 32px;
}

.mainmenu__first-level-link {
  padding: 12px 0!important;}

.single__features-item, .single__features li {
  line-height: 18px!important;
  font-size: 1.1em!important;}

.mobile-navigation__link.active {
  font-weight: bold;}

.breadcrumb-item {
  font-size: 20px!important;
}


.mobile-navigation__link  {
  font-size: 16px!important;
}


.mobile-navigation__child-list {
  background: #e9ebef; }


.mobile-navigation__link {
  border-bottom: 1px solid #333;
}


.mobile-navigation__open-sub {
  border-bottom: 1px solid #333;
}

.header-mobile-nav-toggle__text{
  font-weight: bold;}
*/
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

a.btn-center.btn.btn-primary.btn-lg.margin-bottom-4, a.btn-center.btn-primary.btn-lg.margin-bottom-4.single__series-button, .feedback-container a.btn-center.btn-primary.btn-lg.margin-bottom-4.btn-secondary, .feedback-container a.btn-center.btn-primary.btn-lg.margin-bottom-4.feedback-info-segment.btn-default, .btn-group-lg > a.btn-center.btn.btn-primary.margin-bottom-4, .btn-group-lg > a.btn-center.btn-primary.margin-bottom-4.single__series-button, .feedback-container .btn-group-lg > a.btn-center.btn-primary.margin-bottom-4.btn-secondary, .feedback-container .btn-group-lg > a.btn-center.btn-primary.margin-bottom-4.feedback-info-segment.btn-default {
  color: #fff;
}

/*.single-swiper {
  box-shadow: none!important }

.single-swiper .swiper-slide {
  background:#fff!important}
*/
span.text-muted {
  display: none !important;
}

.scroll-down {
  -webkit-transform: translateY(-130px) !important;
          transform: translateY(-130px) !important;
}

/*.header__wrapper {
  transition:transform .25s .2s,-webkit-transform .25s .2s
}*/
a.btn:focus, a.single__series-button:focus, .feedback-container a.btn-secondary:focus, .feedback-container a.feedback-info-segment.btn-default:focus {
  color: #fff;
}

.single__stock {
  min-width: 160px;
}

/*.content-swiper__content--inner a {
  border-bottom: 1px solid;
}


.single__price {
  font-size: 26px!important;
  line-height: 38px!important;
}*/
.wb-accent::after {
  position: absolute;
  content: "";
  background: rgba(255, 23, 67, 0.7098039216);
  width: calc(100% + 8px);
  left: -4px;
  bottom: 0px;
  height: 14px;
  z-index: -1;
}

/*.single__variations-select select {
  font-weight: bold;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.4);
  height: 35px!important;
  font-size: 13px!important;
}

.configurator__select select {
  font-weight: bold;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.4)!important;
  height: 35px!important;
  font-size: 13px!important;
}

.single__variations-select-label {
  font-size: 1.1rem;
  font-family: open sans bold;
  color: #333!important;
}

.configurator__selection {
  font-size: 14px!important;
}

.single__tab-pane--dark {
  color: #000!important;}*/
div#merkmale-tab {
  color: #000 !important;
}

/*.selected-filter:not(.reset-all) {
  border:none!important;
  font-weight: bold;
  background: #575757;
  color: #fff; }

.selected-filter:not(.reset-all) svg {
  fill: #fff!important;
  stroke: #fff;
  stroke-width: 3;
}

span.selected-filter.reset-all {
  border: none!important;
  background: #575757;
  color: #fff!important;
  line-height: 30px!important;
}*/
/*.checkout__header--back a{
  &:hover{
    background:white !important;
  }
}

.single__image-text-widget--content a:hover{
  background: white !important;
}

.category__teaser-sub-cat-name a {
  font-family: "Open Sans Bold";
}*/
.headline-big-dark {
  font-family: "Yantramanav" !important;
  text-align: center;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  color: #000000;
  font-size: 29px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .headline-big-dark {
    font-size: 40px !important;
  }
}

.headline-big-fancy {
  font-weight: 900;
}

/*.owl-item article {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.4)!important; }

.owl-single-item-nav.right {
  right: -45px!important;
}

.owl-single-item-nav.left {
  left: -45px!important; }

.fa-chevron-left:not(.no-dia) {
  width: 22px!important;
  height: 37px!important;
}

.fa-chevron-right:not(.no-dia) {
  width: 22px!important;
  height: 37px!important;
}

.owl-single-item-control {
  color: #000!important;}*/
.category__teaser-text h2 {
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 24px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__teaser-text h2 {
    font-size: 30px !important;
  }
}
.category__teaser-text p {
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .category__teaser-text p {
    font-size: 18px !important;
  }
}
.category__teaser-text a {
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .category__teaser-text a {
    font-size: 18px !important;
  }
}

.cls-89, .cls-88 {
  fill: #fff;
}

.cls-89, .cls-88, .cls-87 {
  fill-rule: evenodd;
}

.cls-88 {
  stroke: #000106;
}

.cls-88, .cls-87 {
  stroke-width: 8px;
}

.cls-87 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
}

.cls-86 {
  stroke-width: 1px;
  fill: #ff1743;
}

.cls-99, .cls-98 {
  fill: #fff;
}

.cls-99, .cls-95, .cls-96 {
  stroke: #000106;
  stroke-width: 8px;
}

.cls-99, .cls-96 {
  stroke-linecap: round;
}

.cls-99, .cls-95, .cls-96, .cls-98 {
  fill-rule: evenodd;
}

.cls-96 {
  fill: none;
}

.cls-97 {
  fill: #ff1743;
  stroke: #ff1743;
  stroke-width: 1px;
}

.cls-1, .cls-2, .cls-4 {
  fill: #fff;
}

.cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6 {
  fill-rule: evenodd;
}

.cls-2, .cls-3 {
  stroke: #000106;
}

.cls-2 {
  stroke-width: 6px;
}

.cls-3, .cls-5 {
  fill: none;
}

.cls-60 {
  fill: #000106;
}

.cls-3, .cls-4, .cls-5, .cls-6 {
  stroke-width: 5px;
}

.cls-4, .cls-5, .cls-6 {
  stroke: #ff1743;
}

.cls-6 {
  fill: #ff1743;
}

.cls-93, .cls-91 {
  fill: #fff;
  fill-rule: evenodd;
}

.cls-93 {
  stroke: #000106;
}

.cls-93, .cls-92 {
  stroke-width: 5px;
}

.cls-92 {
  stroke: #ff1743;
  fill: #ff1743;
  fill-rule: evenodd;
}

.cls-80 {
  stroke: #000106;
  fill: #fff;
  stroke-width: 5px;
}

.cls-80, .cls-85, .cls-84 {
  fill-rule: evenodd;
}

.cls-85 {
  stroke: #ff1743;
  fill: #ff1743;
  stroke-width: 5px;
}

/*a.homepage__image-text-widget--button:hover {
  background: #d4021d;
}


.single__add-to-basket-btn {
  font-family: "Open Sans Bold";
  border-radius: 0 5px 5px 0!important;
  width: 280px!important;
  padding-left: 60px!important;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);

}

.single__add-to-basket-btn svg {
  stroke: #fff;
  stroke-width: .6;
}

.checkOutBtn {
  background: #ff1743!important;
  color: #fff!important;
}

.checkOutBtn:hover {
  background: #d4021d!important;
}

.login__login-btn {
  background: #ff1743!important;
  color: #fff!important;
}

.login__login-btn:hover {
  background: #d4021d!important;
}

button.contact-wrapper__content-form-send {
  background: #ff1743;
  color: #fff!important;
}

button.contact-wrapper__content-form-send:hover {
  background: #d4021d!important;
}

.search__icon {
  stroke: #ff1743;
  stroke-width: .2;}

.footer__copyright {
  color: #fff!important}


.contact-wrapper__toggle {
  background-color: #3f3f3f!important;
  box-shadow: none!important;}

#add-item-to-basket-overlay .btn-primary {
  background: #ff1743!important;
  color: #fff!important;}


#add-item-to-basket-overlay .btn-primary:hover {
  background: #d4021d!important;}

.single__add-to-basket-btn:hover {
  background: #d4021d!important;
}

.login__register-btn:hover {
  background: #d4021d!important;
  border: 2px solid #d4021d!important;
}

.footer__contact--entries {
  font-family: "Open Sans Bold";}

.footer__contact--entries:hover {
  color: #ff1743!important}


.footer__contact--entries a:hover{
  color: #ff1743!important}


.guest-login__button  {background: #ff1743!important;
  color: #fff!important;}

.guest-login__button:hover  { background: #d4021d!important;
  border: 2px solid #d4021d!important;}

.login-view-title {
  background-color: #3f3f3f!important}

#guestLogin .modal-content .input-unit, #resetPwd .modal-content .input-unit {
  height: 48px!important;}

.address-modal .modal-content .input-unit, .account-password-modal .modal-content .input-unit, .account-email-modal .modal-content .input-unit, .bankdata-modal .modal-content .input-unit, .change-payment-modal .modal-content .input-unit, .login-modal .modal-content .input-unit {
  height:48px!important;}

.address-modal__button {
  background: #ff1743!important;
  color: #fff!important;
  border: 2px solid #ff1743!important;}

.address-modal__button:hover{
  background: #d4021d!important;
  color: #fff!important;
  border: 2px solid #d4021d!important;}*/
#checkoutButtonPayPalInstallment {
  font-family: "Yantramanav" !important;
  font-weight: 700;
  height: 40px;
  line-height: 24px;
  font-size: 14px;
  border-radius: 5px;
}

.fa.fa-arrow-right {
  display: none;
}

/*.checkout__headline {
  background-color: #3f3f3f!important}

.cmp-method-list .method-list-item .content small {
  color: #000!important;}


.cmp-method-list .method-list-item input:checked + label, .cmp-method-list .method-list-item input:checked + .label { border: 2px solid #FF1743!important;}

.add-item svg {
  fill: #333!important;
}

.basket__checkout-btn {
  background: #ff1743!important;
  color: #fff!important;
}


.basket__checkout-btn:hover {
  background: #d4021d!important;
}

.basket-header {
  background-color: #3f3f3f!important;
}

.register-view-title {
  background-color: #3f3f3f!important;
}

.mobile-navigation__breadcrumb {
  background-color: #3f3f3f !important;
  border-bottom: 2px solid #3f3f3f!important ;
}

.page-content.basket .h2, .page-content.checkout .h2, .page-content.wishlist .h2 {
  background-color: #3f3f3f !important;
}

.qty-input {
  border-radius: 5px 0 0 5px!important;
}

.single__variations-select svg, .configurator__select svg {
  stroke: #ff1743;}

.registration__registration-btn {
  background: #ff1743!important;
  color: #fff!important;
}


.registration__registration-btn:hover {
  background: #d4021d!important;
}

.header-controls__icon:hover {
  stroke: #ff1743;
}

.contact-wrapper__content-form--name, .contact-wrapper__content-form--mail, .contact-wrapper__content-form--subject, .contact-wrapper__content-form--order {
  border-radius: 5px!important;
}

.contact-wrapper__content-form--message {
  border-radius: 5px!important;
}*/
#trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
  z-index: 1001 !important;
}

.basket-open #trustbadge-container-98e3dadd90eb493088abdc5597a70810,
.cookie-bar-visible #trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
  display: none !important;
}

.card-body > a {
  color: #000;
}

/*.category__controls-select {
  border: 1px solid rgba(234, 234, 234, 0.97)!important;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.4)!important;
}

.configurator-variants__title {
  font-family: "Open Sans Bold";}
*/
h2, .h2 {
  font-family: "Yantramanav" !important;
  font-weight: 700;
}

.item-name {
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 1rem;
}

.cmp-order-item {
  font-size: 1rem;
}

.details {
  font-size: 1rem;
}

.card-body {
  font-size: 1rem;
}

/*.confirmation__myaccount-button {
  background: #FF1743;
  color:#fff!important
}

.confirmation__myaccount-button:hover {
  background: #d4021d;
  border: 2px solid #d4021d;
}

#contact-modal__send {
  background: #FF1743;
  color:#fff!important
}

#contact-modal__send:hover {
  background: #d4021d;
  border: 2px solid #d4021d;
}*/
.input-unit {
  border-radius: 5px !important;
}

.item-details {
  font-size: 1rem;
}

/*.myaccount__header {
  background:#333!important}

.myaccount__hello {
  font-family: open sans bold;
  line-height:33px!important;
  font-size: 24px!important;
}*/
a.nav-link.active {
  font-family: "Yantramanav" !important;
  font-weight: 700;
  font-size: 18px !important;
}

/*
.header-search-close__wrapper {
  display:none
}



.single__stock-availability_2, .single__stock-availability_3, .single__stock-availability_4, .single__stock-availability_5, .single__stock-availability_6, .single__stock-availability_7, .single__stock-availability_8 {
  color: #333!important;
}

.header-controls__item-badge {
  width: 22px!important;
  height: 22px!important
}


.footer__contact--entry {
  display: inline-block;
  border: 2px solid #ff1743;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  line-height: 36px;
  background: #ff1743;
  color: #fff!important;
  border-radius: 5px;
  fill: #fff!important;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
  margin-top: 10px;
}


.footer__contact--entry:hover {
  background: #d4021d!important;
  border: 2px solid #d4021d!important;
}

.footer__contact--entries a {
  color:#fff!important}

.footer__contact--entries a:hover {
  color:#fff!important}

.checkout__header--contact .footer__contact--entries > div > a {
  color: #222!important;
}
.checkout__header--contact .footer__contact--entries > div > a:hover {
  color: #ff1743 !important;
}

.footer__contact--entry:hover svg {
  fill:#fff!important
}

.footer__brand-line {
  background: #333!important;
}

.footer__copyright {
  background-color: #ff1743!important;
}

.footer__contact {
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.5);
}*/
.material-buttons img {
  border: 1px solid #E9EBEF;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-right: 15px;
  width: 57px;
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
}

.rounded {
  border-radius: 4px !important;
}

.line-height-120p {
  line-height: 120%;
}

/*.gtc-label {
  font-family: open sans bold!important;
  font-size: 1.2em!important;
  color: #333!important;
}

.cmp-contact {
  border: 2px solid #333!important;
}


#guestLogin .modal-header, #resetPwd .modal-header {
  background-color: #3f3f3f!important;
}


.address-modal .modal-header, .account-password-modal .modal-header, .account-email-modal .modal-header, .bankdata-modal .modal-header, .change-payment-modal .modal-header, .login-modal .modal-header {
  background-color: #3f3f3f!important;
}

.page-content.checkout [for="contact_wish"] {
  font-size: 1em!important;
  line-height: 1.5em!important;
  padding-top: 10px !important;
}

.search-autocomplete__article-name {
  height: 60px!important;
}

.search-autocomplete__article-name {
  line-height: 19px!important;
  font-size: 14px!important;
}*/
.cookie-bar .privacy-settings {
  overflow: scroll;
  height: 600px;
}

.cookie-bar.out.fixed-bottom {
  right: initial;
}

/*.contact-wrapper__toggle {
  width: 115px;
  font-size: 14px;
  margin-left: -29px!important;
  border-radius: 5px 5px 0 0;
}*/
button.btn.btn-primary.btn-appearance, button.btn-primary.btn-appearance.single__series-button, .feedback-container button.btn-primary.btn-appearance.btn-secondary, .feedback-container button.btn-primary.btn-appearance.feedback-info-segment.btn-default {
  border-radius: 5px;
}

/*.confirmation__home-button {
  border: 2px solid #ff1743!important;
  color: #fff!important;
  background: #ff1743;
}

.confirmation__home-button:hover, .confirmation__home-button:focus, .confirmation__home-button:active {  color: #fff!important;
  background: #d4021d!important;
  border: 2px solid #d4021d!important;
}

.card-header {
  background-color: #e9ebef!important;
}

.single__name {
  font-family: "Open Sans Bold";
}

.single__name {
  font-size: 1.5rem !important;
  line-height: 1.5rem!important;
}*/
@media only screen and (max-width: 648px) {
  #trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
    padding-bottom: 40px !important;
  }
  /*@media (min-width: 120px) {
    .homepage__category--content {
      background-color: #333!important;
    }

    .header-controls {
      padding-top:30px!important;
      padding-right:7px!important
    }
  }

  @media (min-width: 768px) {
    .homepage__category--content {
      background-color: rgba(63,63,63,0.7)!important;
    }
    .header-controls {
      padding: 28px 0 0!important;
    }
  }*/
}
/*@media (min-width: 992px) {
  .contact-wrapper__toggle {
    width: 143px!important;
    margin-left: -94px!important;
    height: 46px!important;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
  }

  .single__name {
    font-family: "Open Sans Bold";
    font-size: 26px !important;
    line-height: 40px !important;
  }

}*/
.feedback-list .feedback-loadmore {
  border-radius: 5px;
  border: 2px solid #3F3F3F;
  text-align: center;
  font-weight: bold;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 2px solid #3F3F3F !important;
  background-color: transparent !important;
  min-height: unset !important;
  min-width: unset !important;
  margin: 0 !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  -webkit-transform: unset;
          transform: unset;
  max-width: 325px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .feedback-list .feedback-loadmore {
    font-size: 18px;
  }
}

._qoy2qn {
  display: block !important;
  background: none !important;
  padding: 0px 14px !important;
  position: static !important;
  word-break: normal !important;
  margin: auto !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  text-align: inherit !important;
  float: none !important;
  max-width: none !important;
  width: 50px !important;
  height: 50px !important;
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
}

.pcon-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  gap: 30px;
  overflow: hidden;
}
.pcon-loader__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  pointer-events: none;
}
.pcon-loader__content {
  height: auto !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pcon-loader__content .text {
  text-align: center;
  font-size: 18px;
  font-family: "Yantramanav", sans-serif;
}
.pcon-loader__content .loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #ff1743 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #ff1743);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
          animation: l13 1s infinite linear;
}
@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.dia-footer {
  background: #ffffff;
  color: #000;
  border-top: 1px solid rgb(229.5, 229.5, 229.5);
  padding: 5rem 0;
}
.dia-footer__headline {
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
  font-family: "Yantramanav";
  font-size: 18px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .dia-footer__headline {
    font-size: 22px !important;
  }
}

.dia-text {
  color: #000000;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .dia-text {
    font-size: 18px !important;
  }
}
.dia-text svg {
  margin: 6px 8px;
}
.dia-text b {
  font-size: 14px;
  display: block;
  font-family: "Yantramanav";
}

.dia-footer-list__ul {
  padding: 0;
  list-style: none;
  line-height: 17px;
}
.dia-footer-list__ul a {
  color: #000000;
  font-size: 14px;
}
.dia-footer-list__ul a:hover, .dia-footer-list__ul a:active {
  color: #FF1743;
}
.dia-footer-list__ul--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.dia-footer-list__ul--inline li {
  margin-right: 10px;
  margin-left: 10px;
}
.dia-footer-list__link {
  color: #abb9c7;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .dia-footer-list__link {
    font-size: 18px !important;
  }
}
.dia-footer-list__link:hover, .dia-footer-list__link:active {
  color: #000000 !important;
  text-decoration: underline;
}

.dia-footer__copyright {
  color: #86939E;
  background: rgb(52.5, 58.8, 66.5);
  font-size: 12px;
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  .dia-footer__copyright--price {
    text-align: center;
  }
}
.dia-footer__copyright--brand {
  text-align: center;
}
@media (min-width: 576px) {
  .dia-footer__copyright--brand {
    text-align: right;
  }
}
.dia-footer__copyright--brand a {
  color: #86939E;
}
.dia-footer__copyright--brand a:after {
  content: "";
  position: absolute;
  height: 16px;
  width: 13px;
  top: 2px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 12' fill='%2386939E'%3E%3Cpath d='M2.946 2.342L4.486.469h.483c2.852 0 4.499 2.187 4.499 5.292 0 3.106-1.629 5.276-4.499 5.276H1.634v-4.99H-.093L1.634 3.94l2.075-.005v5.232h1.26c1.536 0 2.374-1.395 2.374-3.407 0-2.09-.804-3.422-2.374-3.422H3.71l-.763.004z'/%3E%3C/svg%3E");
}

.dia-footer-newsletter {
  padding: 0 15px;
}
.dia-footer-newsletter form div:nth-child(2) {
  display: inherit;
}
.dia-footer-newsletter form .input-group-btn .btn, .dia-footer-newsletter form .input-group-btn .single__series-button, .dia-footer-newsletter form .input-group-btn .feedback-container .btn-secondary, .feedback-container .dia-footer-newsletter form .input-group-btn .btn-secondary, .dia-footer-newsletter form .input-group-btn .feedback-container .feedback-info-segment.btn-default, .feedback-container .dia-footer-newsletter form .input-group-btn .feedback-info-segment.btn-default {
  border-radius: 0.3rem;
}

.dia-footer-image-list__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-bottom: 0;
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.dia-footer-image-list__li {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 0.3rem;
  min-width: 110px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-box-flex: 2;
      -ms-flex: 2 0 auto;
          flex: 2 0 auto;
}
@media (max-width: 991.98px) {
  .dia-footer-image-list__li {
    margin-bottom: 14px;
  }
  .dia-footer-image-list__li:last-child {
    margin-bottom: 0;
  }
}
.dia-footer-image-list__li img {
  max-height: 50px;
  max-width: 80px;
}

.dia-top-bar {
  background: #4B545F;
  border-bottom: 2px solid rgb(63.75, 71.4, 80.75);
}
.dia-top-bar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  margin-bottom: 0;
  padding: 0.5rem 0;
}
.dia-top-bar__list-item {
  margin-right: 5px;
  margin-left: 5px;
}
.dia-top-bar__list-item--languages a {
  color: #ffffff;
}

.dia-shop-nav {
  background: #ffffff;
}
@media (min-width: 768px) {
  .dia-shop-nav {
    padding: 0 20px;
  }
}
.dia-shop-nav__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
@media (max-width: 767.98px) {
  .dia-shop-nav__search-wrapper {
    margin-top: 15px;
  }
}
.dia-shop-nav__search-wrapper input {
  background-color: #f4f4f4;
  border: 1px solid transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  outline: none !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 11px 10px;
  line-height: 1.25;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.dia-shop-nav__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 6rem;
}
@media (max-width: 767.98px) {
  .dia-shop-nav__logo-link {
    margin: 10px 0;
    text-align: center;
    display: block;
  }
}

.dia-controls-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .dia-controls-list {
    padding: 15px 0;
  }
}
.dia-controls-list__item {
  background: rgb(242.25, 242.25, 242.25);
  min-width: 50px;
  border-radius: 0.3rem;
  margin-left: 10px;
  text-align: center;
  padding: 11px 10px;
  position: relative;
  border: 1px solid rgb(216.75, 216.75, 216.75);
}
.dia-controls-list__item .badge-right {
  position: absolute;
  top: -2px;
  right: -5px;
  background: #009688;
  border-radius: 50%;
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 18px;
  z-index: 1;
  color: #ffffff;
}
.dia-controls-list__item a {
  color: #292c2f;
}
.dia-controls-list__item--basket .fa-shopping-cart {
  width: 16px;
  height: 16px;
  position: relative;
}
.dia-controls-list__item--basket .fa-shopping-cart:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.dia-controls-list__item--basket .fa-shopping-cart:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Ccircle cx='10' cy='20.5' r='1'/%3E%3Ccircle cx='18' cy='20.5' r='1'/%3E%3Cpath d='M2.5 2.5h3l2.7 12.4a2 2 0 0 0 2 1.6h7.7a2 2 0 0 0 2-1.6l1.6-8.4H7.1'/%3E%3C/svg%3E");
}
@media (max-width: 1199.98px) {
  .dia-controls-list__item--basket span {
    display: none;
  }
}
.dia-controls-list__item--m-menu {
  margin-right: auto;
}
.dia-controls-list__item--search {
  display: block;
}
@media (min-width: 768px) {
  .dia-controls-list__item--search {
    display: none;
  }
}
.dia-controls-list__item__basket {
  background: rgb(63.75, 71.4, 80.75);
  color: #ffffff;
}
@media (max-width: 1199.98px) {
  .dia-controls-list__item--login .dropdown-toggle {
    font-size: 0;
    display: block;
    margin: 0 auto;
    width: 16px;
    height: 16px;
    position: relative;
  }
  .dia-controls-list__item--login .dropdown-toggle:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
  }
  .dia-controls-list__item--login .dropdown-toggle:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='square' stroke-linejoin='arcs'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  }
}
.dia-controls-list__item--login .dropdown-menu {
  line-height: 24px;
  padding: 10px;
  position: absolute !important;
  top: 100% !important;
  -webkit-transform: unset !important;
          transform: unset !important;
}
@media (max-width: 991.98px) {
  .dia-controls-list__item--login .dropdown-menu span.hidden-xs-down {
    display: block !important;
  }
}
.dia-controls-list__item--login .dropdown-menu i {
  display: none;
}
.dia-controls-list__item--login .dropdown-menu a {
  color: #000;
}
.dia-controls-list__item--login .dropdown-menu .pipe {
  display: none;
}

.search-box__input-group {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

.search-box-shadow-frame {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0.3rem;
  border: 1px solid rgb(218.5, 218.5, 218.5);
}

.search-submit {
  background: #f4f4f4;
  border: 1px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: 0 !important;
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

@media (max-width: 767.98px) {
  .wrapper-main #page-header .container-max, .wrapper-main #page-header .scroll-list__content > div, .wrapper-main #page-header .header__container, .wrapper-main #page-header .footer__copyright-container, .wrapper-main #page-header .category__container, .wrapper-main #page-header .homepage__category-widget--container, .wrapper-main #page-header .homepage__image-text-widget--container, .wrapper-main #page-header .homepage__seo--container, .wrapper-main #page-header .homepage__crossselling--container, .wrapper-main #page-header .homepage__categories--container, .wrapper-main #page-header .usp-widget__wrapper, .wrapper-main #page-header .video-widget__wrapper, .wrapper-main #page-header .cat-widget__wrapper, .wrapper-main #page-header .checkout__header--container, .wrapper-main #page-header .checkout__footer--container, .wrapper-main #page-header .single__container, .wrapper-main #page-header .single__lower-container, .wrapper-main #page-header .single__crossselling--container, .wrapper-main #page-header .single__image-text-widget--container, .wrapper-main #page-header .content__categories--container, .wrapper-main #page-header .serien-tabs-widget__container, .wrapper-main #page-header .myaccount__container {
    padding: 0 15px;
  }
  .cmp-search-box {
    background-color: #4B545F;
  }
  .cmp-search-box .search-submit {
    background: #000;
    color: #ffffff;
  }
}
.header__wrapper.scrolled:not(.search-visible--lg) .header-nav .header-search__wrapper {
  min-height: 0;
  padding: 0 15px;
}
@media (max-width: 991.98px) {
  .header__wrapper.scrolled:not(.search-visible--lg) .header-nav .header-search__wrapper {
    margin-top: 10px;
  }
}
.header__wrapper.scrolled:not(.search-visible--lg) .header-nav .header-search__wrapper > form {
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 991.98px) {
  .header__wrapper.scrolled:not(.search-visible--lg).search-visible .header-nav .header-search__wrapper > form {
    height: 50px !important;
  }
}

.header-nav > div > form > div > div > div {
  position: relative;
  border: none;
  border-radius: 25px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #e9ecef;
}
.header-nav > div > form > div > div > div input {
  width: 100%;
  height: 40px;
  padding: 2px 50px 0 15px;
  outline: none;
  border: none;
  background: none;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
@media (min-width: 768px) {
  .header-nav > div > form > div > div > div input {
    font-size: 18px !important;
  }
}
.header-nav > div > form > div > div > div input::-webkit-input-placeholder {
  color: #000;
}
.header-nav > div > form > div > div > div input::-moz-placeholder {
  color: #000;
}
.header-nav > div > form > div > div > div input::-ms-input-placeholder {
  color: #000;
}
.header-nav > div > form > div > div > div input::placeholder {
  color: #000;
}
.header-nav > div > form > div > div > div button {
  width: 51px;
  height: 32px;
  border-radius: 16px;
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #ffffff;
  border: none;
  background: none;
  cursor: pointer;
  background: #D5D7DB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-nav > div > form > div > div > div button i {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='svg_search' width='16' height='16' viewBox='0 0 14 14'%3E%3Cpath fill-rule='evenodd' d='M5.82883409,2.03925288 C3.70385233,2.38180359 2.16146213,4.19268933 2.16146213,6.34576098 C2.16146213,6.53181089 2.17678389,6.72734569 2.20961623,6.96045528 C2.23515249,7.14249234 2.39128849,7.27455129 2.57040712,7.27455129 C2.58718809,7.27455129 2.60433387,7.27345688 2.62184445,7.27090325 C2.82139209,7.24281337 2.96038231,7.05822268 2.93229243,6.85867503 C2.90383774,6.659857 2.8910696,6.49715453 2.8910696,6.34576098 C2.8910696,4.55311542 4.17554356,3.04501678 5.94484168,2.75974026 C6.14365971,2.72763753 6.2790019,2.54012841 6.24689917,2.34131038 C6.21516124,2.14212754 6.02619291,2.00569094 5.82883409,2.03925288 M9.82124617,9.82124617 C8.83007442,10.8127827 7.51167372,11.3588939 6.10973296,11.3588939 C3.21501532,11.3588939 0.860207209,9.0040858 0.860207209,6.10936816 C0.860207209,3.21501532 3.21501532,0.860207209 6.10973296,0.860207209 C9.0040858,0.860207209 11.3588939,3.21501532 11.3588939,6.10936816 C11.3588939,7.51130892 10.8127827,8.82934481 9.82124617,9.82124617 M14.845688,14.2536116 L10.7106377,10.118926 C11.6828396,9.00663943 12.2187363,7.60032103 12.2187363,6.10936816 C12.2187363,2.74077047 9.47796585,0 6.10973296,0 C2.74077047,0 9.09494702e-13,2.74077047 9.09494702e-13,6.10936816 C9.09494702e-13,9.47796585 2.74077047,12.2183715 6.10973296,12.2183715 C7.5879177,12.2183715 8.98329199,11.6923245 10.0915657,10.7358091 L14.2273457,14.8719539 C14.3130746,14.957318 14.4243397,15 14.5363345,15 C14.6483292,15 14.7599591,14.957318 14.845688,14.8719539 C15.0164162,14.7012257 15.0164162,14.4247045 14.845688,14.2536116'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
.header-nav > div > form > div > div > div button i:before {
  content: none;
}

.fl-staging-hint {
  display: none;
}

.header-search__wrapper {
  min-height: 50px;
  padding-top: 3px;
}
@media (min-width: 992px) {
  .header-search__wrapper {
    padding-top: 13px;
    padding-bottom: 4px;
    min-height: 71px;
  }
}

.fl-as-left-overlay,
.fl-as-top-overlay,
.fl-as-right-overlay,
.fl-as-bottom-overlay {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.fl-as-smart-suggest-blocks {
  background-color: #F4F5F8;
  padding: 10px 20px 15px 20px !important;
}

.fl-assisted-suggest {
  -webkit-transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.fl-assisted-suggest .fl-as-visible {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
  -webkit-transform: translate(0px, 10px);
          transform: translate(0px, 10px);
  border-radius: 10px;
  overflow: hidden;
}
.fl-assisted-suggest .fl-as-visible .fl-background {
  background: #ffffff !important;
}
.fl-assisted-suggest .fl-as-visible .fl-as-show-all-results:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #FF1743 !important;
}
.fl-assisted-suggest .fl-as-visible .fl-as-content ul li:hover {
  background-color: transparent !important;
  color: #FF1743 !important;
}
.fl-assisted-suggest .fl-as-visible .fl-as-content .fl-as-products-wrapper .fl-as-product .fl-as-product-container {
  border-radius: 5px;
}
.fl-assisted-suggest .fl-as-visible .fl-as-content .fl-as-products-wrapper .fl-as-product .fl-as-product-container:hover {
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1) !important;
}
.fl-assisted-suggest .fl-as-visible .fl-as-content .fl-as-products-wrapper .fl-as-product .fl-as-product-container img {
  height: auto !important;
  padding: 0 !important;
}
.fl-assisted-suggest .fl-as-visible .fl-as-content .fl-as-products-wrapper .fl-as-product .fl-as-product-container .fl-as-product-text {
  font-size: 13px !important;
  line-height: 1.3 !important;
  text-align: left !important;
}
@media (min-width: 992px) {
  .fl-assisted-suggest .fl-as-visible .fl-as-content .fl-as-products-wrapper .fl-as-product .fl-as-product-container .fl-as-product-text {
    font-size: 15px !important;
  }
}
.fl-assisted-suggest .fl-as-visible .fl-as-content .fl-as-products-wrapper .fl-as-product .fl-as-product-container .fl-as-product-price {
  font-weight: 700;
}

.findologic-filter-wrapper .filter-toggle {
  display: none;
}

.fl-as-smart-suggest-list-option.fl-as-text-list-option {
  font-size: 13px !important;
  line-height: 1.3 !important;
}
@media (min-width: 992px) {
  .fl-as-smart-suggest-list-option.fl-as-text-list-option {
    font-size: 15px !important;
  }
}

.fl-as-content h3 {
  font-size: 16px !important;
}
@media (min-width: 992px) {
  .fl-as-content h3 {
    font-size: 18px !important;
  }
}

.dia-megamenu {
  background-color: #fff;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  -webkit-column-rule: 1px solid #dcdbd7;
  -moz-column-rule: 1px solid #dcdbd7;
       column-rule: 1px solid #dcdbd7;
  display: none;
  -webkit-column-count: 4;
  -moz-column-count: 4;
       column-count: 4;
  -webkit-column-fill: balance;
  -moz-column-fill: balance;
       column-fill: balance;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  height: auto;
  top: 100%;
  width: auto;
  max-width: 25em;
  min-width: 100%;
  word-wrap: break-word;
  position: absolute;
  left: 0;
  list-style: none;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.dia-megamenu__wrap-list {
  list-style: none;
  padding: 0;
  line-height: 24px;
}
.dia-megamenu__wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
}
.dia-megamenu__item--level1 {
  font-weight: bold;
}
.dia-megamenu__link {
  color: #000;
}
.dia-megamenu__link:hover {
  color: #009688;
}
.dia-megamenu__link:active {
  color: #009688;
}

.dia-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .dia-navbar {
    display: none !important;
  }
}
.dia-navbar__wrapper {
  background: #ffffff;
  border-top: 1px solid rgb(231.25, 231.25, 231.25);
  border-bottom: 1px solid rgb(231.25, 231.25, 231.25);
}
.dia-navbar__toggle {
  margin-left: 0;
}
.dia-navbar__toggle svg {
  stroke: #000;
}
.dia-navbar__link {
  padding: 13px 15px;
  color: #000;
  display: inline-block;
  border-bottom: 2px solid transparent;
}
.dia-navbar__link:hover {
  color: #009688;
}
.dia-navbar__link:active {
  color: #009688;
}
.dia-navbar__dd {
  display: none;
}
.dia-navbar__item--dd {
  position: relative;
}
.dia-navbar__item--dd:hover .dia-navbar__link {
  color: #009688;
  border-bottom: 2px solid #009688;
  display: inline-block;
  background: #f7f7f9;
}
.dia-navbar__item--dd:hover .dia-navbar__dd {
  position: absolute;
  display: block;
  left: 0;
  list-style: none;
  background: #fff;
  padding: 0;
  width: 180px;
  top: 49px;
  -webkit-box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.dia-navbar__item--dd:hover .dia-navbar__dd-link {
  padding: 10px 15px;
  display: block;
  color: #000;
}
.dia-navbar__item--dd:hover .dia-navbar__dd-link:hover {
  color: rgb(25.5, 25.5, 25.5);
  background: #f7f7f9;
}
.dia-navbar__item--dd:hover .dia-megamenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.dia-navbar__item--megamenu {
  position: static;
}

.dia-checkout-shop-nav {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid rgb(231.25, 231.25, 231.25);
}
.dia-checkout-shop-nav__wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .dia-checkout-shop-nav__wrap {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.dia-checkout-shop-nav__back-link {
  color: #000;
}

.dia-spacer--small {
  height: 15px;
}
.dia-spacer--medium {
  height: 20px;
}
.dia-spacer--large {
  height: 30px;
}

.dia--image-list__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-bottom: 0;
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.dia--image-list__li {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 0.3rem;
  min-width: 110px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
  border: 1px solid rgb(218.5, 218.5, 218.5);
  -webkit-box-flex: 2;
      -ms-flex: 2 0 auto;
          flex: 2 0 auto;
}
.dia--image-list__li img {
  max-height: 44px;
}

.widget-background.gray {
  background-color: #e9ecef;
}

.icv {
  position: relative;
  overflow: hidden;
  cursor: row-resize;
}
.icv__icv--vertical {
  cursor: row-resize;
}
.icv__icv--horizontal {
  cursor: col-resize;
}
.icv__img {
  pointer-events: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
  max-width: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  top: 0;
  display: block;
}
.icv__is--fluid .icv__img {
  display: none;
}
.icv__img-a {
  height: auto;
  position: static;
  z-index: 1;
  left: 0px;
}
.icv__img-b {
  height: 100%;
  position: absolute;
  z-index: 2;
  left: auto;
  right: 0px;
  width: auto;
}
.icv__icv--vertical .icv__img-b {
  width: 100%;
  height: auto;
}
.icv__imposter {
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.icv__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  top: 0px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 3;
}
.icv__is--fluid .icv__wrapper, .icv__icv--vertical .icv__wrapper {
  width: 100% !important;
}
.icv__is--fluid .icv__wrapper, .icv__icv--horizontal .icv__wrapper {
  height: 100% !important;
}
.icv__fluidwrapper {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icv__control {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  top: 0px;
  z-index: 5;
}
.icv__icv--vertical .icv__control {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  left: 0;
  width: 100%;
}
.icv__control-line {
  height: 50%;
  width: 2px;
  z-index: 6;
}
.icv__icv--vertical .icv__control-line {
  width: 50%;
}
.icv__theme-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
  z-index: 5;
}
.icv__icv--vertical .icv__theme-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.icv__arrow-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}
.icv__arrow-a {
  -webkit-transform: scale(1.5) rotateZ(180deg);
          transform: scale(1.5) rotateZ(180deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
  filter: drop-shadow(0px -3px 5px rgba(0, 0, 0, 0.33));
}
.icv__arrow-b {
  -webkit-transform: scale(1.5) rotateZ(0deg);
          transform: scale(1.5) rotateZ(0deg);
  height: 20px;
  width: 20px;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.33));
}
.icv__circle {
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 999px;
}
.icv__label {
  position: absolute;
  bottom: 1rem;
  z-index: 12;
  background: rgba(0, 0, 0, 0.33);
  color: white;
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.icv__label.vertical {
  bottom: auto;
  left: 1rem;
}
.icv__label.on-hover {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
  transition: 0.25s cubic-bezier(0.68, 0.26, 0.58, 1.22);
}
.icv:hover .icv__label.on-hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.icv__label-before {
  left: 1rem;
}
.icv__label-after {
  right: 1rem;
}
.icv__label-before.vertical {
  top: 1rem;
}
.icv__label-after.vertical {
  bottom: 1rem;
  right: auto;
}
.icv__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.icv:not(.standard) .icv__wrapper {
  width: 50% !important;
}

.icv__img--events {
  pointer-events: all;
}
.icv__details {
  background-color: #fff;
  cursor: default;
  padding: 16px;
  -webkit-box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
  border-radius: 5px;
  border: 1px solid #dcdbd8;
}
.icv__details > div:nth-child(2) {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .icv__details > div:nth-child(2) {
    font-size: 16px;
    line-height: 22px;
  }
}
.icv__details > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
}
.icv__cta {
  cursor: pointer;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding: 5px 10px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.icv .feedback-stars-average.feedback-category-view {
  width: 60px;
}
.icv .feedback-star {
  font-size: 12px !important;
  width: 12px !important;
}

.widget-image-compare .swiper-pagination {
  position: relative;
}
.widget-image-compare .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
}
.widget-image-compare .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF1743;
}
.widget-image-compare .swiper-button-prev, .widget-image-compare .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='svg_arrow' viewBox='0 0 8 12'%3E%3Cpath fill-rule='evenodd' d='M33,367.002127 L38.1466088,362 L33,356.997873 L34.0266956,356 L40.2,362 L34.0266956,368 L33,367.002127 Z' fill='%23ffffff' transform='rotate(-180 20.1 184)'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 8px 12px;
  border-radius: 200px;
  width: 45px;
  height: 45px;
  background-color: #3f3f3f;
  opacity: 0.5;
}
.widget-image-compare .swiper-button-prev.swiper-button-disabled, .widget-image-compare .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.widget-image-compare .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.scroll-list__hl-wrapper {
  background-color: white;
  z-index: 2;
  border-bottom: 2px solid #9498A0;
}
.scroll-list .widget-inner {
  padding: 0;
}
.scroll-list__headline {
  margin: 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .scroll-list__headline {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.scroll-list__content {
  margin-bottom: 40px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.scroll-list__content .dark-bg {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0;
  z-index: 1;
}
.scroll-list__content .dark-bg--more-height:before {
  height: calc(100% + 60px) !important;
}
.scroll-list__content .dark-bg--more-height + div > .single__series-button, .scroll-list__content .feedback-container .dark-bg--more-height + div > .btn-secondary, .feedback-container .scroll-list__content .dark-bg--more-height + div > .btn-secondary, .scroll-list__content .feedback-container .dark-bg--more-height + div > .feedback-info-segment.btn-default, .feedback-container .scroll-list__content .dark-bg--more-height + div > .feedback-info-segment.btn-default {
  margin-top: -45px;
  z-index: 1;
  position: relative;
}
.scroll-list__content .dark-bg:before {
  content: "";
  background: #e9ecef;
  position: absolute;
  width: 300%;
  left: -100%;
  top: 0;
  height: 100%;
  z-index: -1;
}
.scroll-list__content .dark-bg:first-child::before {
  top: -20px;
  height: calc(100% + 20px);
}
.scroll-list__nav-item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-bottom: -2px !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.scroll-list__nav-item a {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 56px;
  font-weight: bold;
  color: #000 !important;
  padding: 1.3rem 1rem;
  display: block;
  cursor: pointer;
  line-height: normal;
  font-size: 16px;
}
@media (min-width: 768px) {
  .scroll-list__nav-item a {
    font-size: 18px;
  }
}
.scroll-list__nav-item:hover {
  border-bottom: 2px solid #f4f4f4;
}
.scroll-list__nav-item:hover a {
  color: #FF1743 !important;
}
.scroll-list__nav-item--active {
  border-bottom: 2px solid #FF1743;
}
.scroll-list__nav-item--active a {
  color: #FF1743 !important;
  font-family: "Yantramanav" !important;
  font-weight: 700;
}
@media (min-width: 768px) {
  .scroll-list__nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 200px;
            flex: 0 1 200px;
  }
}

/*&__nav-link{

        width: 100%;
        transition: all .5s ease;

        @include media-breakpoint-up(md){
            width:150px;
        }

        height:56px;
        line-height: 22px;
        font-weight: bold;
        font-size: 14px;
        color: #000 !important;
        border:none !important;

        &:hover{
            border-bottom: 1px solid #9498A0 !important;
            color: $brand-primary !important;
        }

        &.active{
            border-bottom: 2px solid $brand-primary !important;
            color: $brand-primary !important;
            background: transparent !important;
        }

    }*/
.small, .btn-labeled {
  font-size: 85%;
  margin-bottom: 0.1rem !important;
}

.single__stock, .single__availability {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.single__stock-availability_5, .single__stock-availability_6, .single__stock-availability_7, .single__stock-availability_8, .single__vat a {
  color: #000;
}

.search-autocomplete__head {
  background: #3f3f3f;
}

.search-autocomplete__head:after {
  border-bottom: 15px solid #3f3f3f;
}

.modal-header {
  background: #3f3f3f !important;
  color: #fff;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.text-dark {
  color: #000 !important;
}

.single__variations-select select, .configurator__select select {
  box-shadow: none;
  -webkit-box-shadow: none;
  border: 1px solid #9498A0;
}

.scroll-list__content {
  margin-top: 0px;
}

.single__documents {
  margin-top: 90px;
}

.mainmenu__cat-img {
  display: none;
}

.single__add-to-basket-btn {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.description-image__image {
  mix-blend-mode: multiply;
  -webkit-filter: saturate(1.5) contrast(1);
          filter: saturate(1.5) contrast(1);
}

.content__teaser-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 250px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.configurator-variants__img-wrap {
  border-bottom: 1px solid #e9ecef;
}

.configurator-variants__list {
  top: 45px;
}

.configurator__color-card:hover {
  border-color: #f8f9fa !important;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.single__variations-select .v-s-boxes.images img, .configurator__select .v-s-boxes.images img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.single__variations-select .v-s-boxes.images .v-s-box, .configurator__select .v-s-boxes.images .v-s-box {
  border-radius: 50%;
}

.muster__variation {
  margin-bottom: 60px;
  border-bottom: none;
}

.configurator__selection {
  display: none;
}

.configurator__row button:hover {
  opacity: 1;
  color: #ff1743;
  text-decoration: none;
}

.reset-pwd h1.h2 {
  background-color: #3f3f3f;
}

.reset-pwd form {
  padding: 40px;
}

.configurator-variants__item:hover .configurator-variants__title, .configurator-variants__item:focus .configurator-variants__title {
  color: #000;
}

.single__features-item, .single__features li {
  font-size: 1em;
}

a.item-name.text-primary.text-appearance.small.font-weight-bold.text-break, a.item-name.text-primary.text-appearance.font-weight-bold.text-break.btn-labeled {
  color: #000 !important;
}

.item-base-price.small, .item-base-price.btn-labeled {
  font-size: 100% !important;
}

.single__variations-select svg.single__select--up, .configurator__select svg.single__select--up {
  top: 37px;
}

.headline-big-dark {
  color: #000;
  font-size: 3.25rem;
  line-height: 1.15;
}

button.btn.btn-primary.btn-appearance.mobile-width-button, button.btn-primary.btn-appearance.mobile-width-button.single__series-button, .feedback-container button.btn-primary.btn-appearance.mobile-width-button.btn-secondary, .feedback-container button.btn-primary.btn-appearance.mobile-width-button.feedback-info-segment.btn-default {
  background: #FF1743;
  display: block;
  font-family: "Yantramanav";
  font-weight: bold;
  width: 220px;
  padding-left: 20px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  height: 40px;
}

.basket-item-container .basket-item .meta-container-wrapper .meta-container-wrapper-inner .meta-container .item-name {
  font-size: 14px !important;
}

.item-base-price, .item-availability, .item-id, .basket-list-item__small-info {
  font-size: 14px !important;
}

p.h4.text-muted.text-center.my-5 {
  font-family: "Yantramanav";
  font-weight: bold;
}

article.cmp.cmp-product-thumb.cmp-product-thumb--grid:hover {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.homepage__categories--cat-name, .category__categories--cat-name, .content__categories--cat-name {
  background-color: #FF1743 !important;
  border: 2px solid #FF1743 !important;
  font-size: 13px !important;
}

.mainmenu__item:hover .mainmenu__megamenu {
  height: 500px;
}

.single__table td:first-child {
  color: #000;
  font-family: "Yantramanav";
  font-weight: 500;
}

.contact-wrapper {
  z-index: 1020 !important;
}

.cookie-bar.border-top.bg-white.fixed-bottom {
  min-height: 30%;
  padding-top: 50px;
  -webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.5);
}

.configurator__cta {
  color: #000;
}

body {
  color: #000;
}

b, strong {
  font-family: "Yantramanav";
  font-weight: 700;
}

.current-payment-width {
  height: 60px;
  font-size: 16px !important;
  font-family: "Yantramanav";
  font-weight: 900;
  background: #fff !important;
}

.current-payment-text {
  border: none;
}

h2, .h2 {
  font-size: 2rem;
  line-height: 1.2;
}

h1, .h1, h2, .h2 {
  font-family: "Yantramanav" !important;
  font-weight: 900;
}

h3, .h3 {
  font-family: "Yantramanav";
  font-weight: 700;
}

.search-autocomplete__article-price {
  font-size: 14px;
  margin-bottom: 5px;
}

.widget-inner > .filter__headline {
  cursor: auto;
}

.contact-wrapper {
  z-index: 800;
}

.configurator__row button {
  color: #000;
  font-family: "Yantramanav" !important;
  font-weight: 700;
  text-decoration: underline;
}

.configurator__label {
  width: 103%;
  margin-left: -1px;
}

.single__muster-link {
  text-decoration: underline;
}

@media screen and (max-width: 1090px) {
  .configurator-variants__list {
    top: 36.5px;
  }
}
@media (min-width: 768px) {
  .search-autocomplete__head {
    font-size: 18px;
    height: 55px;
    line-height: 55px;
  }
  .modal-dialog {
    max-width: 900px;
  }
  body {
    font-size: 1.1rem;
    line-height: 1.9;
  }
  p, ul {
    font-size: 1.12rem;
    line-height: 1.9;
  }
  .category-item__itemname {
    line-height: 22px;
    font-size: 16px;
    height: 70px;
    max-height: 70px;
  }
  .content__teaser-img {
    height: 550px;
  }
}
.description-image li {
  list-style-type: none;
}

.description-image li::before {
  content: url("https://bilder.weberbuero.de/frontend/arrow-wb.svg");
  vertical-align: -2px;
  margin-right: 0.35em;
  width: 0.5em;
  display: inline-block;
}

._k7hzis, ._1vfgm12, ._1dsajr9 {
  position: static;
  float: none;
  display: inline;
}

[v-cloak],
script2,
style2,
tab-list {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.vue-recycle-scroller {
  position: relative;
}

.vue-recycle-scroller.direction-vertical:not(.page-mode) {
  overflow-y: auto;
}

.vue-recycle-scroller.direction-horizontal:not(.page-mode) {
  overflow-x: auto;
}

.vue-recycle-scroller.direction-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vue-recycle-scroller__slot {
  -webkit-box-flex: 1;
  -ms-flex: auto 0 0px;
  flex: auto 0 0;
}

.vue-recycle-scroller__item-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.vue-recycle-scroller.ready .vue-recycle-scroller__item-view {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper {
  width: 100%;
}

.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper {
  height: 100%;
}

.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view {
  width: 100%;
}

.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view {
  height: 100%;
}

.resize-observer[data-v-b329ee4c] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  pointer-events: none;
  display: block;
  overflow: hidden;
  opacity: 0;
}

.resize-observer[data-v-b329ee4c] object {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.virtual-scroller {
  height: 100%;
  max-height: 500px;
}

/*# sourceMappingURL=ceres-base.css.map*/