/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15); }
  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.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  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: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.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: none;
    transform: none; } }
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* 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: none;
    transform: none; } }
@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: none;
    transform: none; } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

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

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

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

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

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

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

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

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

/**/
@-webkit-keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3); }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3); }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1;
    transform: scale(1); } }
.blurFadeIn {
  -webkit-animation-name: blurFadeIn;
  animation-name: blurFadeIn; }

@-webkit-keyframes blurFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }
@keyframes blurFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }
.blurFadeInDown {
  -webkit-animation-name: blurFadeInDown;
  animation-name: blurFadeInDown; }

@-webkit-keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; } }
@keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; } }
@-webkit-keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; } }
@keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0; }
  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0; } }
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }
.jackInTheBox {
  animation-name: jackInTheBox; }

.contact-display-1-row .title-contact{
  display: inline;
}
@media (max-width: 1600px) and (min-width: 1024px){
  .banner-left{
    max-width: 52%;
  }
  .banner-right{
    max-width: 46%;
  }
}
.med-bestsale .product-miniature{
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px !important;
}
.med-bestsale .product-miniature:hover{
  border-color: #ebebeb;
}
.med-bestsale .pos-product-widget .slick-arrow{
  top: -2.957rem !important;
}
.med-bestsale .pos-product-widget .slick-next{
  right: 1rem !important;
}
.med-bestsale .pos-product-widget .slick-prev{
  right: 3.5rem !important;
}
.toy-bestsale .product-miniature{
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px;
  border-radius:0;
}
.toy-bestsale .product-miniature:hover{
  border-color: #ebebeb;
}
.toy-bestsale .pos-product-widget .slick-slide > *:not(:last-child) {
    margin-bottom: 0;
}
.toy-bestsale .pos-product-widget .slick-next{
  right: 1rem !important;
}
.toy-bestsale .pos-product-widget .slick-prev{
  right: 3.5rem !important;
}
/*# sourceMappingURL=animate.css.map */

.list-bigger-image .style_product_list .img_block{
  max-width: 170px;
}

.has-section-inner .elementor-widget-wrap{
  display: block !important;
}
.elementor-widget-wrap > section{
  width: 100% !important;
}
.elementor-editor-active .elementor.elementor-edit-mode .elementor-top-column .elementor-widget-wrap .elementor-inner-section{
  margin-top: 0;
}
/* Timevato OpenCart category mega menu */
.pos-menu-horizontal .menu-item.oc7v-mega .pos-sub-menu.oc7v-mega-menu {
  left: 0;
  right: 0;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding: 20px 0;
}

.pos-menu-horizontal .menu-item.oc7v-mega .oc7v-mega-row {
  row-gap: 6px;
}

.pos-menu-horizontal .menu-item.oc7v-mega .oc7v-mega-col {
  padding: 0 22px;
}

.pos-menu-horizontal .menu-item.oc7v-mega .ul-column {
  display: grid;
  gap: 7px;
  margin: 0;
}

.pos-menu-horizontal .menu-item.oc7v-mega .submenu-item > a {
  display: block;
  line-height: 1.35;
  padding: 2px 0;
  white-space: normal;
}

@media (max-width: 767px) {
  .pos-menu-horizontal .menu-item.oc7v-mega .pos-sub-menu.oc7v-mega-menu {
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .pos-menu-horizontal .menu-item.oc7v-mega .oc7v-mega-col {
    padding: 0;
  }
}

/* Timevato mobile and product-page refinements */
.block-category.block-category-heading {
  margin-bottom: 1.5rem;
}

.category-description-bottom {
  margin-top: 2rem;
  color: #5f5f5f;
  line-height: 1.75;
}

.category-description-bottom h2,
.category-description-bottom h3 {
  color: #253237;
  margin-top: 1.5rem;
}

.category-description-bottom h2:first-child,
.category-description-bottom h3:first-child {
  margin-top: 0;
}

.product-tabs-compact .product-details-inline {
  margin-top: 1.5rem;
}

.product-tabs-compact .product-details-inline .product-features {
  margin-top: 1.25rem;
}

.mobile-sticky-add-to-cart {
  display: none;
}

.timevato-add-to-cart-label--mobile {
  display: none;
}

.back-top {
  right: 1rem;
  bottom: 1rem;
  z-index: 1001;
}

.product-actions .add-to-cart,
.ajax_add_to_cart_button.add-to-cart,
.product_desc div.cart button.ajax_add_to_cart_button,
.product_desc div.cart span.ajax_add_to_cart_button,
.mobile-sticky-add-to-cart__button {
  text-transform: none !important;
}

#product .timevato-buybox {
  margin-top: 1rem;
}

#product .timevato-buybox__purchase {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.625rem;
  width: 100%;
}

#product .timevato-buybox__purchase .qty {
  flex: 0 0 auto;
  margin-right: 0;
}

#product .timevato-buybox__purchase .add {
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 0;
}

#product .timevato-buybox__purchase .add-to-cart {
  width: 100%;
  height: 3rem;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  line-height: 1.15;
}

#product .timevato-buybox__secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.875rem;
  width: 100%;
}

#product .timevato-buybox__secondary #product-availability {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 3rem;
  margin-top: 0;
  color: #253237;
  line-height: 1.2;
}

#product .timevato-buybox__secondary #product-availability .material-icons {
  font-size: 1.25rem;
}

#product .timevato-buybox__secondary #product-availability .product-available {
  color: #2f9f62;
}

#product .timevato-buybox__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.625rem;
  flex: 0 0 auto;
  align-self: flex-start;
  height: 3rem;
  margin-left: 0;
}

#product .timevato-buybox__actions #wishlist_button,
#product .timevato-buybox__actions .compare-button {
  position: static;
  top: auto;
  bottom: auto;
  align-self: flex-start;
  box-sizing: border-box;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  margin: 0 !important;
  transform: none;
}

#product .timevato-buybox__actions #wishlist_button:not(:last-child),
#product .timevato-buybox__actions .compare-button:not(:last-child) {
  margin-right: 0 !important;
}

#product .product-additional-info {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #edf0f0;
}

#product .social-sharing {
  margin: 0 0 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

#product .social-sharing > span {
  margin: 0;
  color: #253237;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

#product .social-sharing ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

#product .social-sharing li,
#product .social-sharing li:first-child {
  margin: 0;
}

#product .social-sharing li a {
  width: 2.125rem;
  height: 2.125rem;
  margin: 0;
  border: 1px solid #e2e8e8;
  border-radius: 50%;
  background: #ffffff;
  color: #7f8b8f;
  line-height: 2.125rem;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

#product .social-sharing li a:hover {
  border-color: #253237;
  color: #253237;
  transform: translateY(-1px);
}

#product .blockreassurance_product {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.625rem;
  width: 100%;
  margin: 0.875rem 0 0;
  padding: 0.625rem;
  border: 1px solid #e5ecec;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(37, 50, 55, 0.06);
}

#product .blockreassurance_product > div {
  width: auto;
  min-width: 0;
  min-height: 5rem;
  margin: 0 !important;
  padding: 0.875rem;
  border: 0;
  border-radius: 4px;
  background: #f7f9f9;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#product .blockreassurance_product .clearfix {
  display: none !important;
}

#product .blockreassurance_product .item-product {
  flex: 0 0 2.5rem;
  width: 2.5rem !important;
  height: 2.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50%;
  background: #253237;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#product .blockreassurance_product img,
#product .blockreassurance_product img.svg.invisible {
  width: 1.25rem;
  max-width: 1.25rem;
  height: auto;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
  filter: brightness(0) invert(1);
}

#product .blockreassurance_product .block-title {
  display: block;
  color: #253237 !important;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}

#product .blockreassurance_product .block-title:after {
  display: none;
}

#product .blockreassurance_product p {
  display: block;
  margin: 0.25rem 0 0;
  color: #687477 !important;
  font-size: 0.75rem;
  line-height: 1.35;
}

#product .payment-detail {
  margin-top: 0.75rem;
  padding: 1rem 1.125rem;
  border: 1px solid #e5ecec;
  border-radius: 6px;
  background: #f7f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

#product .payment-detail img {
  order: 2;
  max-width: min(13rem, 48%);
  height: auto;
}

#product .payment-detail p {
  order: 1;
  margin: 0;
  color: #253237;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

#product .payment-detail p:before {
  content: "\e897";
  width: 1.875rem;
  height: 1.875rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #253237;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Icons";
  font-size: 1rem;
  font-weight: 400;
  vertical-align: middle;
}

.timevato-product-topline {
  margin-bottom: 0.625rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0.75rem;
  align-items: start;
}

.timevato-product-topline__main {
  min-width: 0;
}

.timevato-product-topline .namne_details {
  margin: 0 0 0.65rem;
  max-width: none;
  line-height: 1.22;
}

.timevato-product-topline .product-prices {
  margin-top: 0.45rem;
}

.timevato-product-topline .product-price {
  margin-bottom: 0.125rem;
}

.timevato-product-topline .tax-shipping-delivery-label {
  margin-top: 0.125rem;
}

.timevato-product-price-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

#product .product-information {
  margin-top: 0;
}

#product .product-information > .product-description,
#product .product-layout4 > .row > .col-md-6:first-child > .product-description {
  margin: 0;
  position: relative;
  color: #344145;
  line-height: 1.55;
}

#product .product-information > .product-description.is-collapsible:not(.is-expanded),
#product .product-layout4 > .row > .col-md-6:first-child > .product-description.is-collapsible:not(.is-expanded) {
  max-height: 10.75rem;
  overflow: hidden;
}

#product .product-information > .product-description.is-collapsible:not(.is-expanded):after,
#product .product-layout4 > .row > .col-md-6:first-child > .product-description.is-collapsible:not(.is-expanded):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.25rem;
  background: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

#timevato-product-full-details {
  scroll-margin-top: 5.5rem;
}

.timevato-short-description-cta {
  margin-top: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #253237;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.timevato-short-description-cta[hidden] {
  display: none !important;
}

.timevato-short-description-cta:after {
  content: "\e5c8";
  font-family: "Material Icons";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.timevato-short-description-cta:hover {
  color: var(--hovercolor);
}

@media (min-width: 992px) {
  .timevato-product-price-brand-row {
    grid-template-columns: minmax(7rem, 0.9fr) minmax(14rem, 17.5rem);
    column-gap: 1.25rem;
    justify-content: space-between;
  }
}

.timevato-product-brand-ref {
  width: 100%;
  margin: 0;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e5ecec;
  border-radius: 6px;
  background: #fbfcfc;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  box-shadow: 0 8px 22px rgba(37, 50, 55, 0.05);
}

.timevato-product-brand-ref__meta {
  min-width: 0;
  text-align: right;
}

.timevato-product-brand-ref__row + .timevato-product-brand-ref__row {
  margin-top: 0.3125rem;
}

.timevato-product-brand-ref__label {
  display: block;
  color: #7c878a;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.timevato-product-brand-ref__value {
  display: block;
  color: #253237;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.timevato-product-brand-ref__value:hover {
  color: var(--hovercolor);
}

.timevato-product-brand-ref__logo {
  flex: 0 0 auto;
  max-width: 7.25rem;
  min-width: 4.5rem;
  min-height: 2.625rem;
  border-left: 1px solid #e5ecec;
  padding-left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #253237;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.timevato-product-brand-ref__logo img {
  max-width: 100%;
  max-height: 3rem;
  width: auto;
  height: auto;
  border: 0;
  object-fit: contain;
}

#product .timevato-product-reviews-summary {
  width: fit-content;
  margin: 0.05rem 0 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-grid;
  grid-template-columns: 5.25rem auto;
  align-items: center;
  column-gap: 0.75rem;
  box-shadow: none;
  line-height: 1.125rem;
}

#product .timevato-product-reviews-summary .comments_note {
  width: 5.25rem;
  height: 1.125rem;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

#product .timevato-product-reviews-summary .star_content {
  display: block;
  width: 5.25rem;
  height: 1.125rem;
  margin: 0;
  line-height: 1.125rem;
  overflow: hidden;
}

#product .timevato-product-reviews-summary .star_content:before,
#product .timevato-product-reviews-summary .star_content .rating_star:before {
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.0625rem;
}

#product .timevato-product-reviews-summary .comments_advices {
  min-height: 1.125rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1.125rem;
}

#product .timevato-product-reviews-summary .comments_advices li {
  margin: 0;
  line-height: 1.125rem;
}

#product .timevato-product-reviews-summary .comments_advices a {
  height: 1.125rem;
  margin: 0 !important;
  padding: 0;
  border: 0;
  color: #253237;
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-decoration: none !important;
  white-space: nowrap;
}

#product .timevato-product-reviews-summary .comments_advices a:before {
  display: none;
}

#product .timevato-product-reviews-summary .comments_advices a:hover {
  color: var(--hovercolor);
}

#footer .elementor-element-cczmzub,
#footer .elementor-element-cdoztuf,
#footer img[src*="logo_footer"],
#footer img[src*="dercor5_logo_footer"] {
  display: none !important;
}

#footer .elementor-element-ctzwlta {
  width: 100% !important;
}

@media (max-width: 767px) {
  #mobile_menu_wrapper .mobile-menu .menu-content .menu-item.oc7v-mega > a,
  #mobile_menu_wrapper .mobile-menu .menu-content .menu-item.oc7v-mega .column_title {
    padding-left: 1.5rem !important;
  }

  #mobile_menu_wrapper .mobile-menu .menu-content .menu-item.oc7v-mega .submenu-item > a {
    padding: 0.625rem 3.125rem 0.625rem 1.5rem !important;
    line-height: 1.35;
  }

  #mobile_menu_wrapper .mobile-menu .menu-content .menu-item.oc7v-mega .submenu-item li a {
    padding-left: 2rem !important;
  }

  #wrapper .breadcrumb {
    overflow: hidden;
  }

  #product .page-title-wrapper {
    padding: 0.375rem 0 0.25rem;
    margin-bottom: 0.5rem;
  }

  #wrapper .breadcrumb ol {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #wrapper .breadcrumb ol::-webkit-scrollbar {
    display: none;
  }

  #wrapper .breadcrumb li {
    flex: 0 0 auto;
    max-width: none;
    white-space: nowrap;
  }

  #wrapper .breadcrumb li:last-child {
    max-width: 72vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .category-description-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #ebebeb;
  }

  .product-tabs-compact .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.625rem;
    overflow: hidden;
  }

  .product-tabs-compact .nav-tabs .nav-item {
    flex: 1 1 50%;
    min-width: 0;
    margin: 0;
  }

  .product-tabs-compact .nav-tabs .nav-link {
    display: block;
    width: 100%;
    padding: 0.875rem 0.5rem;
    text-align: center;
    white-space: nowrap;
    font-size: 0.875rem;
  }

  #product .product-additional-info {
    margin-top: 1rem;
    padding-top: 0.875rem;
  }

  #product .social-sharing {
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }

  #product .social-sharing ul {
    gap: 0.375rem;
  }

  #product .social-sharing li a {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }

  #product .blockreassurance_product {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.375rem;
    margin-top: 0.5rem;
    padding: 0.375rem;
    border-radius: 5px;
    box-shadow: 0 8px 18px rgba(37, 50, 55, 0.05);
  }

  #product .blockreassurance_product > div {
    min-height: 4.25rem;
    padding: 0.5rem 0.25rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.3125rem;
    text-align: center;
  }

  #product .blockreassurance_product .item-product {
    flex-basis: 1.875rem;
    width: 1.875rem !important;
    height: 1.875rem !important;
  }

  #product .blockreassurance_product img,
  #product .blockreassurance_product img.svg.invisible {
    width: 0.9375rem;
    max-width: 0.9375rem;
  }

  #product .blockreassurance_product .block-title {
    font-size: 0.6875rem;
    line-height: 1.2;
  }

  #product .blockreassurance_product p {
    display: none;
  }

  #product .payment-detail {
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 0.625rem 0.75rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  #product .payment-detail img {
    order: 1;
    max-width: 13rem;
  }

  #product .payment-detail p {
    order: 2;
    font-size: 0.8125rem;
  }

  #product .payment-detail p:before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
  }

  #product .tabs.product-tabs-compact,
  #product .accordion.product-tabs-compact {
    margin-top: 0.75rem;
  }

  .timevato-product-brand-ref {
    width: 100%;
    margin: 0;
    padding: 0.5rem 0.625rem;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 4px;
    box-shadow: none;
  }

  .timevato-product-topline {
    margin-bottom: 0.375rem;
  }

  .timevato-product-topline .namne_details {
    margin-bottom: 0.35rem;
    line-height: 1.18;
  }

  .timevato-product-price-brand-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0.625rem;
    margin-top: 0.25rem;
  }

  .timevato-product-topline .product-prices {
    margin: 0;
  }

  .timevato-product-topline .product-price {
    margin-bottom: 0;
  }

  .timevato-product-topline .tax-shipping-delivery-label {
    margin-top: 0.0625rem;
    font-size: 0.75rem;
    line-height: 1.15;
  }

  #product .product-information > .product-description,
  #product .product-layout4 > .row > .col-md-6:first-child > .product-description {
    line-height: 1.45;
  }

  #product .product-information > .product-description.is-collapsible:not(.is-expanded),
  #product .product-layout4 > .row > .col-md-6:first-child > .product-description.is-collapsible:not(.is-expanded) {
    max-height: 9.5rem;
  }

  .timevato-short-description-cta {
    margin-top: 0.5rem;
  }

  .timevato-product-brand-ref__meta {
    flex: 1 1 0;
    text-align: left;
  }

  .timevato-product-brand-ref__row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .timevato-product-brand-ref__row + .timevato-product-brand-ref__row {
    margin-top: 0.125rem;
  }

  .timevato-product-brand-ref__label {
    flex: 0 0 auto;
    font-size: 0.625rem;
    line-height: 1.2;
  }

  .timevato-product-brand-ref__value {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: left;
  }

  .timevato-product-brand-ref__logo {
    max-width: 6rem;
    min-width: 4rem;
    min-height: 2.25rem;
    padding-left: 0.625rem;
  }

  .timevato-product-brand-ref__logo img {
    max-height: 2rem;
  }

  #product .timevato-product-reviews-summary {
    width: 100%;
    margin: 0.35rem 0 0.45rem;
    justify-content: space-between;
    gap: 0.5rem;
  }

  #product .timevato-product-reviews-summary .comments_advices a {
    font-size: 0.8125rem;
  }

  #product .timevato-buybox {
    margin-top: 0.875rem;
  }

  #product .timevato-buybox__purchase {
    gap: 0.625rem;
  }

  #product .timevato-buybox__purchase .add-to-cart {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    font-size: 0.875rem;
  }

  #product .timevato-add-to-cart-label--desktop {
    display: none;
  }

  #product .timevato-add-to-cart-label--mobile {
    display: inline;
  }

  #product .timevato-buybox__secondary {
    gap: 0.625rem;
    margin-top: 0.625rem;
  }

  #product .timevato-buybox__secondary #product-availability {
    min-height: 2.75rem;
    font-size: 0.9375rem;
  }

  #product .timevato-buybox__actions {
    gap: 0.5rem;
  }

  #product .timevato-buybox__actions #wishlist_button,
  #product .timevato-buybox__actions .compare-button {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
  }

  .mobile-sticky-add-to-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.625rem calc(0.625rem + env(safe-area-inset-bottom));
    background: #ffffff;
    box-shadow: 0 -6px 18px rgba(37, 50, 55, 0.14);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .mobile-sticky-add-to-cart.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-sticky-add-to-cart__price {
    flex: 0 0 min(6rem, 34%);
    max-width: 6rem;
    min-width: 4.35rem;
    color: #253237;
    line-height: 1.15;
    overflow: hidden;
  }

  .mobile-sticky-add-to-cart__regular-price,
  .mobile-sticky-add-to-cart__current-price {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-sticky-add-to-cart__regular-price {
    color: #8f8f8f;
    font-size: 0.6875rem;
    font-weight: 500;
    text-decoration: line-through;
  }

  .mobile-sticky-add-to-cart__current-price {
    color: #253237;
    font-size: 0.9375rem;
    font-weight: 700;
  }

  .mobile-sticky-add-to-cart__button {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    line-height: 1.15;
    white-space: normal;
  }

  .mobile-sticky-add-to-cart__button span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.has-mobile-sticky-cart {
    padding-bottom: 4.75rem;
  }

  body.has-mobile-sticky-cart .back-top {
    bottom: 5.75rem;
  }

  .back-top {
    right: 0.75rem;
  }

  .back-top a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 360px) {
  .mobile-sticky-add-to-cart__button i {
    display: none;
  }
}

/* Timevato brand system
 * Typeface: Comfortaa
 * Palette: Black #000, White #fff, Gray #6b6b6b
 */
:root {
  --timevato-black: #000000;
  --timevato-white: #ffffff;
  --timevato-gray: #6b6b6b;
  --timevato-gray-light: #e5e5e5;
  --timevato-ui-font: "Comfortaa", "Helvetica Neue", Arial, sans-serif;
  --timevato-editorial-font: "Comfortaa", "Helvetica Neue", Arial, sans-serif;
  --hovercolor: #000000;
  --maincolor: #000000;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--timevato-ui-font);
}

body *:not(.material-icons):not(.fa):not(.fas):not(.far):not(.fab):not([class^="icon-"]):not([class*=" icon-"]):not([class^="roadthemes-icon"]):not([class*=" roadthemes-icon"]) {
  font-family: var(--timevato-ui-font) !important;
}

body {
  color: var(--timevato-black);
  font-weight: 400;
  letter-spacing: 0.01em;
}

p,
.text-muted,
.product-description,
.product-information,
.footer-container li a,
#footer p {
  color: var(--timevato-gray);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.page-title,
.page-heading,
.section-title,
.title_block,
.block-title,
.product_name,
.namne_details {
  color: var(--timevato-black);
  font-family: var(--timevato-ui-font);
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-description blockquote,
.rte blockquote,
.editorial-accent,
.playfair-accent {
  color: var(--timevato-black);
  font-family: var(--timevato-editorial-font);
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

a {
  color: var(--timevato-black);
}

a:hover,
a:focus,
.timevato-short-description-cta:hover,
#product .timevato-product-reviews-summary .comments_advices a:hover {
  color: var(--timevato-gray);
}

/* Navigation and labels */
#header,
#header .header-top,
#header .header-nav,
.main-menu,
.pos-menu-horizontal {
  font-family: var(--timevato-ui-font);
}

#header a,
.main-menu a,
.pos-menu-horizontal a,
.breadcrumb,
.breadcrumb a,
label,
.label {
  letter-spacing: 0.06em;
}

.main-menu a,
.pos-menu-horizontal a,
label,
.label,
.product-flag,
.discount-percentage {
  font-weight: 600;
  text-transform: uppercase;
}

/* Buttons: restrained, high-contrast and without decorative effects */
.btn,
button[type="submit"],
button[type="button"].button,
input[type="submit"],
input[type="button"],
.button,
.add-to-cart,
.mobile-sticky-add-to-cart__button {
  min-height: 2.875rem;
  border: 1px solid var(--timevato-black);
  border-radius: 0;
  background: var(--timevato-black);
  box-shadow: none;
  color: var(--timevato-white);
  font-family: var(--timevato-ui-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus,
.btn:active,
button[type="submit"]:hover,
button[type="submit"]:focus,
button[type="button"].button:hover,
button[type="button"].button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover,
.add-to-cart:hover,
.mobile-sticky-add-to-cart__button:hover {
  border-color: var(--timevato-black);
  background: var(--timevato-white);
  box-shadow: none;
  color: var(--timevato-black);
}

.btn-secondary,
.btn-outline-primary,
.btn-outline-secondary,
.timevato-buybox__actions #wishlist_button,
.timevato-buybox__actions .compare-button {
  border-color: var(--timevato-black);
  background: var(--timevato-white);
  color: var(--timevato-black);
}

.btn-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.timevato-buybox__actions #wishlist_button:hover,
.timevato-buybox__actions .compare-button:hover {
  background: var(--timevato-black);
  color: var(--timevato-white);
}

/* Keep quantity controls legible before hover on product and cart pages. */
#product .product-quantity .bootstrap-touchspin .btn-touchspin,
.cart-item .bootstrap-touchspin .btn-touchspin,
.cart-overview .bootstrap-touchspin .btn-touchspin,
.blockcart .bootstrap-touchspin .btn-touchspin {
  color: var(--timevato-black) !important;
  background-color: var(--timevato-white) !important;
  border-color: var(--timevato-black) !important;
  opacity: 1;
}

#product .product-quantity .bootstrap-touchspin #quantity_wanted,
#product .product-quantity .bootstrap-touchspin input.form-control,
#product .product-quantity .bootstrap-touchspin input.input-group {
  color: var(--timevato-black) !important;
  background-color: var(--timevato-white) !important;
  border-top-color: var(--timevato-black) !important;
  border-bottom-color: var(--timevato-black) !important;
  box-shadow: none !important;
}

#product .product-quantity .bootstrap-touchspin .btn-touchspin i,
#product .product-quantity .bootstrap-touchspin .btn-touchspin i::before,
#product .product-quantity .bootstrap-touchspin .btn-touchspin i::after,
.cart-item .bootstrap-touchspin .btn-touchspin i,
.cart-item .bootstrap-touchspin .btn-touchspin i::before,
.cart-item .bootstrap-touchspin .btn-touchspin i::after,
.cart-overview .bootstrap-touchspin .btn-touchspin i,
.cart-overview .bootstrap-touchspin .btn-touchspin i::before,
.cart-overview .bootstrap-touchspin .btn-touchspin i::after,
.blockcart .bootstrap-touchspin .btn-touchspin i,
.blockcart .bootstrap-touchspin .btn-touchspin i::before,
.blockcart .bootstrap-touchspin .btn-touchspin i::after {
  color: inherit !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#product .product-quantity .bootstrap-touchspin .btn-touchspin:hover,
#product .product-quantity .bootstrap-touchspin .btn-touchspin:focus,
.cart-item .bootstrap-touchspin .btn-touchspin:hover,
.cart-item .bootstrap-touchspin .btn-touchspin:focus,
.cart-overview .bootstrap-touchspin .btn-touchspin:hover,
.cart-overview .bootstrap-touchspin .btn-touchspin:focus,
.blockcart .bootstrap-touchspin .btn-touchspin:hover,
.blockcart .bootstrap-touchspin .btn-touchspin:focus {
  color: var(--timevato-white) !important;
  background-color: var(--timevato-black) !important;
  border-color: var(--timevato-black) !important;
}

/* Cart quantity stepper: one aligned control with a consistent border. */
.cart-item .bootstrap-touchspin,
.cart-overview .bootstrap-touchspin {
  display: inline-flex;
  align-items: stretch;
  float: none;
  width: auto;
  height: 3rem;
  padding: 0;
  vertical-align: middle;
}

.cart-item .bootstrap-touchspin input.form-control,
.cart-item .bootstrap-touchspin input.input-group,
.cart-overview .bootstrap-touchspin input.form-control,
.cart-overview .bootstrap-touchspin input.input-group {
  box-sizing: border-box;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
  margin: 0;
  padding: 0.25rem;
  color: var(--timevato-black);
  background: var(--timevato-white);
  border: 1px solid var(--timevato-black);
  border-right: 0;
  border-radius: 0;
  text-align: center;
  line-height: 1;
}

.cart-item .bootstrap-touchspin .input-group-btn-vertical,
.cart-overview .bootstrap-touchspin .input-group-btn-vertical {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 1.875rem;
  flex-direction: column;
  width: 1.875rem;
  height: 3rem;
  margin: 0;
  color: var(--timevato-black);
}

.cart-item .bootstrap-touchspin .input-group-btn-vertical > .btn-touchspin,
.cart-overview .bootstrap-touchspin .input-group-btn-vertical > .btn-touchspin {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.5rem;
  width: 1.875rem;
  max-width: 1.875rem;
  height: 1.5rem !important;
  min-height: 1.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--timevato-black) !important;
  border-radius: 0;
  line-height: 1;
}

.cart-item .bootstrap-touchspin .input-group-btn-vertical > .btn-touchspin:first-child,
.cart-overview .bootstrap-touchspin .input-group-btn-vertical > .btn-touchspin:first-child {
  border-bottom: 0 !important;
}

.cart-item .bootstrap-touchspin .input-group-btn-vertical > .btn-touchspin i,
.cart-overview .bootstrap-touchspin .input-group-btn-vertical > .btn-touchspin i {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1;
}

.btn:disabled,
.btn.disabled,
button[type="submit"]:disabled,
button[type="button"].button:disabled,
input:disabled {
  border-color: #b7b7b7;
  background: #b7b7b7;
  color: var(--timevato-white);
  opacity: 1;
}

/* Form controls */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea,
.input-group {
  border-color: #b7b7b7;
  border-radius: 0;
  box-shadow: none;
  color: var(--timevato-black);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus,
button:focus,
a:focus-visible {
  border-color: var(--timevato-black);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.16);
  outline: 0;
}

/* Product cards, pricing, badges and content surfaces */
.product-miniature,
.thumbnail-container,
.card,
.modal-content,
.dropdown-menu,
.timevato-product-brand-ref,
#product .blockreassurance_product {
  border-color: var(--timevato-gray-light);
  border-radius: 0;
  box-shadow: none;
}

.product-price,
.current-price,
.price,
.product-miniature .product-price-and-shipping {
  color: var(--timevato-black);
  font-weight: 600;
}

#js-product-list .product-miniature .hook-reviews,
.product-miniature .product_desc .hook-reviews {
  display: none !important;
}

.regular-price,
.old-price {
  color: var(--timevato-gray);
}

.product-flag,
.discount-percentage,
.badge-primary,
.badge-success {
  border-radius: 0;
  background: var(--timevato-black);
  color: var(--timevato-white);
  letter-spacing: 0.08em;
}

.nav-tabs .nav-link {
  border-radius: 0;
  color: var(--timevato-gray);
  font-family: var(--timevato-ui-font);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  border-color: transparent transparent var(--timevato-black);
  color: var(--timevato-black);
}

::selection {
  background: var(--timevato-black);
  color: var(--timevato-white);
}

/* Quick View is disabled for this theme. */
.quick-view,
a.quick_view,
[data-link-action="quickview"] {
  display: none !important;
}

#product #product-availability {
  display: none !important;
}

/* Keep the desktop navigation on one balanced row */
@media (min-width: 992px) {
  .elementor-1010000
    .elementor-element.elementor-element-dffgjxr
    > .elementor-container
    > .elementor-row {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: clamp(3rem, 4.2vw, 4.5rem);
    align-items: center;
  }

  #header #_desktop_logo .site-logo img {
    width: auto;
    max-width: 13.75rem;
    max-height: 3.75rem;
    height: auto;
    object-fit: contain;
  }

  .elementor-1010000 .elementor-element.elementor-element-yziutem,
  .elementor-1010000 .elementor-element.elementor-element-pqzsugi,
  .elementor-1010000 .elementor-element.elementor-element-qabgwwb {
    width: auto !important;
    max-width: none;
    min-width: 0;
  }

  .elementor-1010000 .elementor-element.elementor-element-pqzsugi {
    justify-self: stretch;
  }

  .elementor-1010000 .elementor-element.elementor-element-qabgwwb {
    justify-self: end;
  }

  .elementor-1010000 .elementor-element.elementor-element-tzenszc {
    width: 100% !important;
  }

  #_desktop_megamenu,
  #_desktop_megamenu .pos-menu-horizontal {
    width: 100%;
    min-width: 0;
  }

  #_desktop_megamenu {
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  #_desktop_megamenu .pos-menu-horizontal .menu-content {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    white-space: nowrap;
  }

  #_desktop_megamenu .pos-menu-horizontal .menu-content > .menu-item {
    flex: 0 0 auto;
  }

  .elementor-1010000 .elementor-element.elementor-element-tzenszc
    .pos-menu-horizontal .menu-item > a {
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(0.25rem, 0.48vw, 0.5rem);
    padding-right: clamp(0.25rem, 0.48vw, 0.5rem);
  }

  .elementor-1010000 .elementor-element.elementor-element-tzenszc
    .pos-menu-horizontal .menu-item.home > a {
    padding-left: 0;
    padding-right: clamp(0.25rem, 0.48vw, 0.5rem);
  }

  #_desktop_megamenu .menu-item3 .submenu-item > a,
  #_desktop_megamenu .menu-item4 .submenu-item > a,
  #_desktop_megamenu .menu-item5 .submenu-item > a {
    min-height: 2rem;
    display: block;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    color: #253237;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .elementor-1010000
    .elementor-element.elementor-element-dffgjxr
    > .elementor-container
    > .elementor-row {
    column-gap: clamp(1.75rem, 3vw, 2.5rem);
  }

  #header #_desktop_logo .site-logo img {
    max-width: 12.25rem;
  }
}
.timevato-rating {
  position: relative;
  margin: 24px 0;
  padding: 20px 22px 18px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-left: 4px solid #111;
  border-radius: 6px;
  background: linear-gradient(135deg, #fff 0%, #fff 62%, #f7f7f7 100%);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  color: #111;
}

.timevato-rating:before {
  content: "TR";
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(17, 17, 17, 0.055);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.timevato-rating__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
  z-index: 1;
}

.timevato-rating__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #111;
  color: #fff;
  line-height: 1;
}

.timevato-rating__score-value {
  display: block;
  margin-top: 3px;
  font-size: 26px;
  font-weight: 700;
}

.timevato-rating__score-max {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
}

.timevato-rating__title {
  margin: 0 0 4px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.timevato-rating__subtitle,
.timevato-rating__summary,
.timevato-rating__footer {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

.timevato-rating__summary {
  position: relative;
  margin-bottom: 16px;
  z-index: 1;
}

.timevato-rating__value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  color: #222;
  font-size: 14px;
  z-index: 1;
}

.timevato-rating__value strong {
  color: #111;
  font-size: 16px;
}

.timevato-rating__criteria {
  position: relative;
  display: grid;
  gap: 10px;
  z-index: 1;
}

.timevato-rating__criterion-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
  color: #333;
  font-size: 12px;
  line-height: 1.35;
}

.timevato-rating__criterion-label strong {
  color: #111;
}

.timevato-rating__bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e1e1;
}

.timevato-rating__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #111;
}

.timevato-rating__list {
  position: relative;
  margin-top: 16px;
  z-index: 1;
}

.timevato-rating__list-title {
  display: block;
  margin-bottom: 6px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.timevato-rating__list ul {
  margin: 0;
  padding-left: 18px;
  color: #444;
  font-size: 13px;
  line-height: 1.5;
}

.timevato-rating__footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  z-index: 1;
}

.timevato-rating__footer a {
  color: #111;
  text-decoration: underline;
}

/* Timevato Rating methodology CMS page */
.rating-methodology{max-width:1120px;margin:0 auto;color:#242424}
.rating-methodology__hero{padding:64px 7%;margin-bottom:48px;background:#111;color:#fff}
.rating-methodology__eyebrow{display:block;margin-bottom:18px;font-size:12px;font-weight:700;letter-spacing:.18em}
.rating-methodology__hero h2{margin:0 0 20px;color:#fff;font-size:clamp(34px,5vw,58px);line-height:1.08}
.rating-methodology__hero p{max-width:760px;margin:0;color:#e1e1e1;font-size:18px;line-height:1.7}
.rating-methodology__section{margin:0 4% 56px}
.rating-methodology__section>h3,.rating-methodology__calculation h3{margin:0 0 26px;font-size:26px}
.rating-methodology__principles{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.rating-methodology__principles article{padding:26px;border:1px solid #ddd}
.rating-methodology__principles strong,.rating-methodology__principles span{display:block}
.rating-methodology__principles strong{margin-bottom:10px;font-size:17px}
.rating-methodology__principles span,.rating-methodology__criteria p,.rating-methodology__calculation p,.rating-methodology__note p{color:#666;line-height:1.7}
.rating-methodology__criteria{display:grid;grid-template-columns:repeat(2,1fr);border-top:1px solid #ddd}
.rating-methodology__criteria article{display:flex;gap:20px;padding:24px 20px 24px 0;border-bottom:1px solid #ddd}
.rating-methodology__criteria article:nth-child(odd){margin-right:24px}
.rating-methodology__criteria article>b{color:#aaa;font-size:13px}
.rating-methodology__criteria h4{margin:0 0 7px;font-size:17px}
.rating-methodology__criteria p{margin:0}
.rating-methodology__calculation{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(260px,1fr);gap:48px;padding:42px;background:#f5f5f5}
.rating-methodology__calculation aside{padding-left:30px;border-left:2px solid #111}
.rating-methodology__calculation aside>strong{display:block;margin-bottom:18px;font-size:17px}
.rating-methodology__calculation dl,.rating-methodology__calculation dl div{margin:0}
.rating-methodology__calculation dl div{display:flex;justify-content:space-between;gap:18px;padding:9px 0;border-bottom:1px solid #ddd}
.rating-methodology__calculation dt{font-weight:700}
.rating-methodology__calculation dd{margin:0;text-align:right}
.rating-methodology__note{padding-left:22px;border-left:4px solid #111}
@media(max-width:767px){
  .rating-methodology__hero{padding:42px 24px}
  .rating-methodology__section{margin-right:0;margin-left:0}
  .rating-methodology__principles,.rating-methodology__criteria,.rating-methodology__calculation{grid-template-columns:1fr}
  .rating-methodology__criteria article:nth-child(odd){margin-right:0}
  .rating-methodology__calculation{gap:28px;padding:28px 22px}
  .rating-methodology__calculation aside{padding-top:24px;padding-left:0;border-top:2px solid #111;border-left:0}
}

.timevato-rating-badge {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 7px;
  padding: 4px 8px 4px 5px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 11px;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.08);
}

.product-miniature .img_block {
  position: relative;
}

.timevato-rating-badge:hover,
.timevato-rating-badge:focus {
  color: #111;
  border-color: #111;
  text-decoration: none;
}

.timevato-rating-badge__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.timevato-rating-badge__text {
  color: #222;
  font-weight: 600;
}

.timevato-rating-badge strong {
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.js-product-miniature.style_product_default .add-to-links {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 2.625rem !important;
  padding: 0.3125rem 0 !important;
  overflow: visible !important;
}

.js-product-miniature.style_product_default .add-to-links li,
.js-product-miniature.style_product_default .add-to-links li.cart {
  flex: 0 0 auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  overflow: visible !important;
}

.js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button,
.js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 4rem !important;
  width: auto !important;
  max-width: none !important;
  height: 2rem !important;
  min-height: 2rem !important;
  padding: 0 0.875rem !important;
  border: 1px solid #d7dede !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #253237 !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 2rem !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: visible !important;
  box-shadow: inset 0 0 0 1px #d7dede !important;
}

.js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button:before,
.js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button:before {
  content: none !important;
}

.js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button:hover,
.js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button:hover {
  border-color: var(--hovercolor) !important;
  color: var(--hovercolor) !important;
  box-shadow: inset 0 0 0 1px var(--hovercolor) !important;
}

@media (max-width: 575px) {
  .timevato-rating {
    padding: 18px 16px;
  }

  .timevato-rating:before {
    top: 14px;
    right: 12px;
    font-size: 44px;
  }

  .timevato-rating__header {
    align-items: flex-start;
  }

  .timevato-rating__score {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .timevato-rating__score-value {
    font-size: 23px;
  }
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin {
  display: inline-flex;
  align-items: stretch;
  float: none;
  width: auto;
  height: 3rem;
  position: relative;
  padding: 0 1.875rem !important;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .input-group-btn,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin .input-group-btn-vertical {
  display: block;
  float: none;
  width: auto;
  min-width: 0;
  position: static;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin #quantity_wanted,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin input.form-control,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin input.input-group {
  box-sizing: border-box;
  width: 3.75rem;
  height: 3rem;
  padding: 0 0.375rem;
  border: 1px solid #d9d9d9;
  border-left: 0;
  border-right: 0;
  color: #253237;
  background: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 3rem;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-down,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-up {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  min-width: 1.875rem;
  height: 3rem;
  min-height: 3rem;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #fff;
  color: #253237 !important;
  box-shadow: none;
  font-size: 0 !important;
  line-height: 1;
  text-indent: 0;
  opacity: 1;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-down {
  left: 0 !important;
  right: auto !important;
  border-radius: 3px 0 0 3px;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-up {
  left: auto !important;
  right: 0 !important;
  border-radius: 0 3px 3px 0;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-down i,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-up i {
  display: none !important;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-down::before,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-up::before {
  display: block;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-down::before {
  content: "-";
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-up::before {
  content: "+";
}

#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-down:hover,
#product .timevato-buybox__purchase .qty .bootstrap-touchspin .bootstrap-touchspin-up:hover {
  border-color: var(--hovercolor);
  background: var(--hovercolor);
  color: #fff !important;
}

#product .timevato-buybox__purchase .add-to-cart .shopping-cart,
#product .mobile-sticky-add-to-cart__button .shopping-cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.125rem;
  color: currentColor;
  font-size: 0;
  line-height: 1;
}

#product .timevato-buybox__purchase .add-to-cart .shopping-cart::before,
#product .mobile-sticky-add-to-cart__button .shopping-cart::before {
  content: "\e904";
  font-family: "roadthemes-icon" !important;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

body#cart .cart-grid-body .bootstrap-touchspin {
  display: inline-flex;
  align-items: stretch;
  float: none;
  width: auto;
  height: 2.5rem;
}

body#cart .cart-grid-body .bootstrap-touchspin input.form-control,
body#cart .cart-grid-body .bootstrap-touchspin input.input-group,
body#cart .cart-grid-body .bootstrap-touchspin input[name="product-quantity-spin"] {
  box-sizing: border-box;
  float: none;
  width: 3rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-right: 0;
  color: #253237;
  background: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.5rem;
}

body#cart .cart-grid-body .bootstrap-touchspin .input-group-btn-vertical {
  display: flex;
  flex-direction: column;
  float: none;
  width: 1.35rem;
  min-width: 1.35rem;
  height: 2.5rem;
  position: static;
  color: #253237;
}

body#cart .cart-grid-body .bootstrap-touchspin .btn-touchspin {
  position: static;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  min-width: 1.35rem;
  height: 1.25rem !important;
  min-height: 1.25rem !important;
  margin: 0;
  margin-left: -1px;
  padding: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  color: #253237 !important;
  font-size: 0 !important;
  line-height: 1;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: none;
  opacity: 1;
}

body#cart .cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-up {
  border-bottom: 0;
}

body#cart .cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-down {
  margin-top: 0;
}

body#cart .cart-grid-body .bootstrap-touchspin .btn-touchspin i {
  display: none !important;
}

body#cart .cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-up::before,
body#cart .cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-down::before {
  display: block;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

body#cart .cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-up::before {
  content: "+";
}

body#cart .cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-down::before {
  content: "-";
}

body#cart .cart-grid-body .bootstrap-touchspin .btn-touchspin:hover {
  border-color: var(--hovercolor);
  background: var(--hovercolor);
  color: #fff !important;
}
