/*!
 * 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;
}

/* P0: Hide category sidebar on mobile - duplicates hamburger menu */
@media (max-width: 991px) {
  .block-categories {
    display: none !important;
  }
  .elementor-element-dbsvfdc,
  .elementor-column.elementor-col-33:has(.block-categories) {
    display: none !important;
  }
  .elementor-element-qrnievt,
  .elementor-column.elementor-col-66:has(.elementor-widget-pos_slideshow) {
    max-width: 100% !important;
    flex-basis: 100% !important;
    width: 100% !important;
  }
  /* Make slider responsive height based on aspect ratio */
  .elementor-element-ipixcfh .pos-slideshow .slider-item {
    height: 56vw !important;
  }
}

/* P0: Hide category sidebar on non-homepage pages */
body:not(#index) .block-categories {
  display: none !important;
}
body:not(#index) .elementor-column.elementor-col-33:has(.block-categories) {
  display: none !important;
}
body:not(#index) .elementor-column.elementor-col-33:has(.block-categories) ~ .elementor-col-66 {
  max-width: 100% !important;
  flex-basis: 100% !important;
}

/* P0: Email alert - notify when available */
.mailalert-wrapper {
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.mailalert-wrapper .mailalert-label {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.mailalert-wrapper .mailalert-email {
  margin-bottom: 10px;
  max-width: 300px;
}
.mailalert-wrapper .btn-primary {
  background-color: #DB3E2F;
  border-color: #DB3E2F;
}

/* P1: Mobile header simplification */
@media (max-width: 991px) {
  /* Reduce header padding */
  #header .sticky-inner {
    padding: 5px 0;
  }

  /* Hide search bar by default, show on tap */
  #header #search_widget {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
  }
  #header #search_widget.active {
    display: block;
  }

  /* Search toggle icon */
  .search-toggle-mobile {
    cursor: pointer;
    font-size: 24px;
    padding: 8px;
  }

  /* Compact logo on mobile */
  #header .logo {
    max-height: 40px;
  }

  /* Make sticky header smaller when scrolling */
  #header .scroll-menu {
    padding: 3px 0;
  }
  #header .scroll-menu .logo {
    max-height: 30px;
  }
}

/* P1: Social proof and urgency */
.product-stock-urgency {
  color: #dc3545;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-stock-urgency .material-icons {
  font-size: 18px;
}
.product-stock-ok {
  color: #28a745;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-stock-ok .material-icons {
  font-size: 18px;
}
/* Social proof — below price on product page */
.product-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 6px 0 2px;
  font-size: 13px;
  color: #555;
}
.social-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.social-proof-item .material-icons {
  font-size: 15px;
  color: #e65100;
}
/* Viewers count — below slider in left column */
.product-viewers-below-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  color: #5d4037;
}
.product-viewers-below-slider .viewer-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  animation: viewerPulse 2s ease-in-out infinite;
}

/* P2: Newsletter opt-in at checkout */
.newsletter-optin {
  margin-top: 15px;
  margin-bottom: 15px;
}
.newsletter-optin label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #666;
}

/* P2: Mobile checkout improvements */
@media (max-width: 991px) {
  /* Bigger CTA buttons */
  .checkout-step .btn-primary,
  .checkout-step .continue {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    text-align: center;
  }

  /* Better spacing for checkout steps */
  .checkout-step {
    padding: 15px 10px;
  }

  /* Make form inputs full width */
  .checkout-step .form-control {
    font-size: 16px;
  }

  /* Cart summary more compact on mobile */
  .cart-summary-line {
    padding: 5px 0;
  }

  /* Payment methods - bigger touch targets */
  .payment-options label {
    padding: 12px 10px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Delivery options - bigger touch targets */
  .delivery-options .delivery-option {
    padding: 12px 10px;
  }
}


/* ==========================================================================
   Task 1: Cart Page Cross-Sell
   ========================================================================== */

/* Cross-sell section on cart page */
.cart-grid-body > section {
  margin-top: 24px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.cart-grid-body > section > h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.cart-grid-body > section .products {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.cart-grid-body > section .product-miniature {
  min-width: 160px;
  max-width: 180px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .cart-grid-body > section .product-miniature {
    min-width: 140px;
    max-width: 150px;
  }
}

/* ==========================================================================
   Task 3: Checkout Mini-Recommendations
   ========================================================================== */

.checkout-recommendations {
  padding: 16px 20px;
  border-top: 1px solid #e5e5e5;
}

.checkout-recommendations-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.checkout-rec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-rec-item:last-child {
  border-bottom: none;
}

.checkout-rec-image {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.checkout-rec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.checkout-rec-info {
  flex: 1;
  min-width: 0;
}

.checkout-rec-name {
  display: block;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-rec-name:hover {
  color: #DB3E2F;
}

.checkout-rec-price {
  font-size: 13px;
  font-weight: 600;
  color: #DB3E2F;
}

.checkout-rec-add {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.checkout-rec-add .material-icons {
  font-size: 20px;
}

@media (max-width: 991px) {
  .checkout-recommendations {
    padding: 12px 15px;
  }
}

/* ==========================================================================
   Task 4: Order Confirmation Recommendations
   ========================================================================== */

.order-confirmation-recommendations {
  margin-top: 20px;
}

.order-confirmation-recommendations .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.order-rec-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.order-rec-product {
  text-align: center;
  padding: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}

.order-rec-product:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-rec-image {
  display: block;
  margin-bottom: 10px;
}

.order-rec-image img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.order-rec-name {
  display: block;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 6px;
  min-height: 34px;
}

.order-rec-name:hover {
  color: #DB3E2F;
}

.order-rec-price {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #DB3E2F;
  margin-bottom: 10px;
}

.order-rec-actions .btn {
  font-size: 12px;
  padding: 6px 12px;
}

@media (max-width: 575px) {
  .order-rec-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ==========================================================================
   Task 6: Product Reviews Styling
   ========================================================================== */

/* Star ratings on product listings */
.product-list-reviews {
  margin-top: 4px;
}

.product-list-reviews .grade-stars {
  display: inline-flex;
  gap: 1px;
}

.product-list-reviews .comments-nb {
  display: inline;
  font-size: 11px;
  color: #999;
  margin-left: 4px;
}

/* Product page review section */
.product-comments-additional-info {
  margin: 10px 0;
}

.product-comments-additional-info .grade-stars {
  display: inline-flex;
  vertical-align: middle;
}

.product-comments-additional-info .additional-links {
  display: inline-flex;
  gap: 12px;
  margin-left: 8px;
}

.product-comments-additional-info .link-comment {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.product-comments-additional-info .link-comment:hover {
  color: #DB3E2F;
}

.product-comments-additional-info .btn-comment {
  background: none;
  border: 1px solid #DB3E2F;
  color: #DB3E2F;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

.product-comments-additional-info .btn-comment:hover {
  background: #DB3E2F;
  color: #fff;
}

/* Review list on product page */
#product-comments-list-header {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 16px;
}

.product-comment-list-item {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.product-comment-list-item .grade-stars {
  display: inline-flex;
  margin-bottom: 6px;
}

.product-comment-list-item .comment-infos {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.product-comment-list-item .comment-content {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* Empty state - "Be the first to review" */
#product-comments-list-header + .no-comments {
  text-align: center;
  padding: 24px;
  color: #999;
  font-size: 14px;
}

/* ==========================================================================
   Task 7: Checkout Visual Reskin
   ========================================================================== */


/* Card-style checkout steps */
.checkout-step {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.2s;
}

.checkout-step.-current {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-color: #DB3E2F;
}

.checkout-step .step-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-step.-unreachable .step-title {
  color: #999;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Better form inputs */
.checkout-step .form-group .form-control,
.checkout-step .form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-step .form-control:focus {
  border-color: #DB3E2F;
  box-shadow: 0 0 0 3px rgba(219, 62, 47, 0.1);
  outline: none;
}

/* Continue button */
.checkout-step .continue {
  margin-top: 20px;
}

.checkout-step .continue .btn-primary {
  background: #DB3E2F;
  border-color: #DB3E2F;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.checkout-step .continue .btn-primary:hover {
  background: #c23426;
  border-color: #c23426;
}

/* Cart summary sidebar reskin */
#js-checkout-summary {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

#js-checkout-summary .card-block {
  padding: 20px;
}

#js-checkout-summary .cart-summary-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

#js-checkout-summary .cart-summary-totals .cart-summary-line {
  font-size: 16px;
  font-weight: 700;
}

/* Delivery options */
.delivery-options .delivery-option {
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
  padding: 14px;
  transition: border-color 0.2s;
}

.delivery-options .delivery-option:hover {
  border-color: #DB3E2F;
}

/* Payment options */
.payment-options .payment-option {
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
  padding: 14px;
  transition: border-color 0.2s;
}

.payment-options .payment-option:hover {
  border-color: #DB3E2F;
}

/* Mobile checkout refinements */
@media (max-width: 991px) {
  .checkout-step {
    padding: 16px;
    margin-bottom: 12px;
  }

  .checkout-step .step-title {
    font-size: 16px;
  }

  .checkout-step .continue .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

/* =========================================================================
   Vesper Sales & UX Improvements
   ========================================================================= */

/* --- 1.2 Animated Cart Badge --- */
@keyframes cartBadgePulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.5); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-products-count.pulse-animate {
  animation: cartBadgePulse 0.5s ease-in-out;
}

/* --- 1.3 Najlepsza cena na rynku Badge --- */
.lowest-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 10px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.4;
}

.lowest-price-badge .material-icons {
  font-size: 16px;
}

.miniature-lowest-price {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: rgba(232, 245, 233, 0.95);
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
  z-index: 2;
  line-height: 1.3;
}

.miniature-lowest-price .material-icons {
  font-size: 13px;
}

.img_block {
  position: relative;
}

/* --- 1.1 Free Shipping Progress Bar --- */
.free-shipping-bar {
  background: #e6f9e6;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}

.free-shipping-bar p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #333;
}

.free-shipping-bar .bar-track {
  background: #ccc;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.free-shipping-bar .bar-fill {
  background: #4caf50;
  height: 8px;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.free-shipping-bar.on-product {
  margin-top: 12px;
  margin-bottom: 0;
}

@keyframes viewerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Product Page — Unified Recommendation Sections --- */

/* Section wrapper */
.vesper-rec-product,
.product-cross-sell {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

/* Section heading */
.vesper-rec-product .products-section-title,
.product-cross-sell h2 {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 6-column flex grid — centers when fewer items */
.vesper-rec-product .vesper-rec-grid,
.product-cross-sell .cross-sell-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 4px 0;
}

/* Card */
.vesper-rec-product .vesper-rec-card,
.product-cross-sell .cross-sell-card {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(16.666% - 12px);
  min-width: 0;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vesper-rec-product .vesper-rec-card:hover,
.product-cross-sell .cross-sell-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Image area */
.vesper-rec-product .img_block,
.product-cross-sell .cross-sell-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fafafa;
}
.vesper-rec-product .img_block img,
.product-cross-sell .cross-sell-card-img img {
  max-height: 160px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 0;
}

/* Info area */
.vesper-rec-product .product_desc,
.product-cross-sell .cross-sell-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 12px 12px;
}
.vesper-rec-product .inner_desc {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Product name */
.vesper-rec-product .inner_desc h3,
.product-cross-sell .cross-sell-card-info h3 {
  margin: 0 0 6px;
  min-height: 32px;
}
.vesper-rec-product .inner_desc h3 a,
.product-cross-sell .cross-sell-card-info h3 a {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.vesper-rec-product .inner_desc h3 a:hover,
.product-cross-sell .cross-sell-card-info h3 a:hover {
  color: #DB3E2F;
}

/* Price */
.vesper-rec-product .product-price-and-shipping {
  margin-bottom: 8px;
}
.vesper-rec-product .price {
  font-size: 15px !important;
  font-weight: 700 !important;
}
.product-cross-sell .cross-sell-card-price {
  font-size: 15px;
  font-weight: 700;
  color: #DB3E2F;
  margin-bottom: 8px;
}

/* Button pinned to bottom */
.vesper-rec-product .cart {
  margin-top: auto;
}
.product-cross-sell .cross-sell-card-btn {
  margin-top: auto;
}
.vesper-rec-product .add-to-cart.btn-default,
.product-cross-sell .cross-sell-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}
.vesper-rec-product .add-to-cart.btn-default:hover,
.product-cross-sell .cross-sell-card-btn:hover {
  background: #DB3E2F;
  border-color: #DB3E2F;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .vesper-rec-product .vesper-rec-card,
  .product-cross-sell .cross-sell-card {
    flex: 0 1 calc(33.333% - 10px);
  }
}
@media (max-width: 575px) {
  .vesper-rec-product .vesper-rec-card,
  .product-cross-sell .cross-sell-card {
    flex: 0 1 calc(50% - 7px);
  }
  .vesper-rec-product .img_block,
  .product-cross-sell .cross-sell-card-img {
    height: 140px;
  }
  .vesper-rec-product .img_block img,
  .product-cross-sell .cross-sell-card-img img {
    max-height: 120px;
  }
}

/* --- 2.3 Buy Again Widget --- */
.vesper-buy-again {
  margin-top: 20px;
}

.vesper-buy-again h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

.vesper-buy-again .buy-again-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vesper-buy-again .buy-again-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
}

.vesper-buy-again .buy-again-item img {
  width: 60px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

.vesper-buy-again .buy-again-info {
  flex: 1;
  min-width: 0;
}

.vesper-buy-again .buy-again-info .item-name {
  display: block;
  font-size: 13px;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vesper-buy-again .buy-again-info .item-name:hover {
  color: #DB3E2F;
}

.vesper-buy-again .buy-again-info .item-price {
  font-size: 14px;
  font-weight: 700;
  color: #DB3E2F;
  margin-bottom: 6px;
}

.vesper-buy-again .buy-again-info .btn-buy-again {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  background: #DB3E2F;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.vesper-buy-again .buy-again-info .btn-buy-again:hover {
  background: #c62828;
}

@media (max-width: 767px) {
  .vesper-buy-again .buy-again-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ENTERPRISE DESIGN v2 - Trust Badges
   ============================================================ */
.trust-badges-v2 {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  padding: 14px 0;
  border-top: 1px solid #f0f0f0;
}
.trust-badge-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-badge-v2 .tb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0faf0;
}
.trust-badge-v2 .tb-icon .material-icons {
  font-size: 20px;
  color: #2e7d32;
}
.trust-badge-v2 .tb-text {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  letter-spacing: -0.01em;
}
@media (max-width: 575px) {
  .trust-badges-v2 {
  flex-wrap: wrap;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .trust-badge-v2 .tb-icon {
    width: 30px;
    height: 30px;
  }
  .trust-badge-v2 .tb-icon .material-icons {
    font-size: 16px;
  }
  .trust-badge-v2 .tb-text {
    font-size: 12px;
  }
}

/* ============================================================
   ENTERPRISE DESIGN v2 - Sticky Add to Cart
   ============================================================ */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.sticky-atc.is-visible {
  transform: translateY(0);
}
.sticky-atc__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}
.sticky-atc__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.sticky-atc__name {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}
.sticky-atc__price {
  font-size: 16px;
  font-weight: 700;
  color: #c62828;
  line-height: 1.3;
}
.sticky-atc__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c62828;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.sticky-atc__btn:hover {
  background: #b71c1c;
}
.sticky-atc__btn:active {
  transform: scale(0.97);
}
.sticky-atc__btn .material-icons {
  font-size: 18px;
}
@media (min-width: 992px) {
  .sticky-atc {
    display: none !important;
  }
}

/* ============================================================
   ENTERPRISE DESIGN v2 - Checkout Progress Bar
   ============================================================ */
.checkout-progress-bar {
  display: none !important;
}
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 36px;
  max-width: 680px;
  margin: 0 auto;
}
.cp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}
.cp-step__indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.cp-step__number {
  font-size: 15px;
  font-weight: 700;
  color: #999;
  transition: all 0.3s;
}
.cp-step__check {
  display: none;
  font-size: 20px;
  color: #fff;
}
.cp-step__label {
  font-size: 12px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
}

/* Active step */
.cp-step--active .cp-step__indicator {
  background: #c62828;
  border-color: #c62828;
  box-shadow: 0 2px 12px rgba(198, 40, 40, 0.3);
}
.cp-step--active .cp-step__number {
  color: #fff;
}
.cp-step--active .cp-step__label {
  color: #222;
  font-weight: 700;
}

/* Completed step */
.cp-step--completed .cp-step__indicator {
  background: #2e7d32;
  border-color: #2e7d32;
}
.cp-step--completed .cp-step__number {
  display: none;
}
.cp-step--completed .cp-step__check {
  display: block;
}
.cp-step--completed .cp-step__label {
  color: #2e7d32;
  font-weight: 600;
}

/* Connector */
.cp-connector {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: -20px 8px 0;
  min-width: 40px;
  transition: background 0.4s;
  align-self: flex-start;
  margin-top: 20px;
}
.cp-connector--active {
  background: #2e7d32;
}

@media (max-width: 575px) {
  .checkout-progress {
    padding: 16px 12px 24px;
  }
  .cp-step__indicator {
    width: 34px;
    height: 34px;
  }
  .cp-step__number {
    font-size: 13px;
  }
  .cp-step__label {
    font-size: 10px;
  }
  .cp-connector {
    min-width: 20px;
    margin-top: 17px;
  }
}

/* ============================================================
   ENTERPRISE DESIGN v2 - Checkout Steps Card Refinement
   ============================================================ */
body#checkout section.checkout-step {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
body#checkout section.checkout-step.-current {
  border-color: #c62828;
  box-shadow: 0 2px 16px rgba(198, 40, 40, 0.08);
}
body#checkout section.checkout-step .step-title {
  padding: 16px 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s;
}
body#checkout section.checkout-step.-current .step-title {
  background: #fff;
  color: #222;
}
body#checkout section.checkout-step .step-title .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  margin-right: 10px;
}
body#checkout section.checkout-step.-current .step-title .step-number {
  background: #c62828;
  color: #fff;
}
body#checkout section.checkout-step.-reachable.-complete .step-title .step-number {
  background: #2e7d32;
  color: #fff;
}
body#checkout section.checkout-step .content {
  padding: 20px;
}
body#checkout section.checkout-step .step-title .done {
  color: #2e7d32;
}

/* ============================================
   FIX: Blockreassurance module - compact layout
   ============================================ */
.blockreassurance_product {
  margin: 12px 0 16px !important;
  padding: 12px 0 !important;
  border-top: 1px solid #eee;
}

.blockreassurance_product > div:not(.clearfix) {
  height: auto !important;
  min-height: 0 !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px;
}

.blockreassurance_product .item-product {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.blockreassurance_product .item-product img.svg {
  visibility: visible !important;
  opacity: 1 !important;
  width: 32px !important;
  height: 32px !important;
  display: inline-block !important;
}

.blockreassurance_product .block-title {
  font-weight: 600;
  font-size: 13px;
  margin-right: 4px;
}

.blockreassurance_product p {
  font-size: 13px;
  margin: 0 !important;
  padding: 0 !important;
  color: #666 !important;
  display: inline;
}

.blockreassurance_product > div:not(.clearfix)::after {
  display: none !important;
}

/* ============================================
   FIX: Price area - clean up duplicates & layout
   ============================================ */
.product-prices .tax-shipping-delivery-label .lowest-price-30days {
  display: none !important;
}

.product-prices .product-discount {
  margin-bottom: 4px;
}

.product-prices .product-price {
  margin-bottom: 0;
}

.product-prices .current-price {
  margin-bottom: 2px;
}

.product-prices .product-wholesale-price {
  font-size: 0.9em;
  color: #999 !important;
  margin-bottom: 2px;
}

.product-prices .tax-shipping-delivery-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
  line-height: 1.4;
}

.product-prices .lowest-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 5px 12px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.4;
}

.product-prices .lowest-price-badge .material-icons {
  font-size: 16px;
}

/* ============================================
   REDESIGN: Price area - clean enterprise layout
   ============================================ */

/* Main price + old price on same line */
.product-prices .current-price {
  display: flex !important;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.product-prices .current-price-value {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #c62828 !important;
  line-height: 1.2;
}

.product-prices .product-old-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

/* Hide the old standalone wholesale price block */
.product-prices .product-wholesale-price {
  display: none !important;
}

/* Hide the lowest-price-badge completely */
.product-prices .lowest-price-badge {
  display: none !important;
}

/* Hide miniature badge too */
.miniature-lowest-price {
  display: none !important;
}

/* Compact tax + omnibus line */
.product-prices .tax-shipping-delivery-label {
  font-size: 12px !important;
  color: #888 !important;
  line-height: 1.5 !important;
  margin: 2px 0 8px !important;
  padding: 0 !important;
}

/* Make omnibus "Najniższa cena z 30 dni" inline and small */
.product-prices .tax-shipping-delivery-label .lowest-price-30days {
  display: inline !important;
  font-size: 12px !important;
  color: #888 !important;
}

.product-prices .tax-shipping-delivery-label .lowest-price-30days strong {
  font-weight: 600;
  color: #666;
}

/* First omnibus (after price) - also compact */
.product-prices .product-price .lowest-price-30days {
  font-size: 12px !important;
  color: #888 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-prices .product-price .lowest-price-30days strong {
  font-weight: 600;
  color: #666;
}

/* Discount badge */
.product-prices .discount-amount {
  font-size: 0.85rem;
  background: #c62828;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
}

/* Product discount old price row */
.product-prices .product-discount {
  margin-bottom: 2px;
}

/* Hide duplicate Omnibus lowest price (rendered by both after_price and price hooks) */
.product-prices .tax-shipping-delivery-label .lowest-price-30days + .lowest-price-30days {
  display: none !important;
}

/* Lowercase currency symbol */
.product-prices .current-price-value {
  text-transform: none !important;
}

/* Lowercase currency on old price */
.product-prices .product-old-price,
.product-prices .product-discount .regular-price {
  text-transform: none !important;
}

/* ============================================
   PRODUCT PAGE REDESIGN - 2026-03-14
   ============================================ */

/* --- 1. Column proportions: ~41% gallery / gap / ~57% info --- */
.product-layout1 > .product-col-left {
  max-width: 41% !important;
  flex: 0 0 41% !important;
  padding-right: 20px !important;
}
.product-layout1 > .product-col-right {
  max-width: 59% !important;
  flex: 0 0 59% !important;
  padding-left: 20px !important;
  border-left: 1px solid #f0f0f0;
}

/* --- 2. Vertical thumbnails on left side of main image --- */
.product-layout1 .images-container.default {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
}

.product-layout1 .images-container.default .product-images {
  flex: 0 0 80px !important;
  width: 80px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  order: -1;
}

.product-layout1 .images-container.default .product-images .slick-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
}

.product-layout1 .images-container.default .product-images .slick-track {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px;
  transform: none !important;
  width: auto !important;
}

.product-layout1 .images-container.default .product-images .slick-slide,
.product-layout1 .images-container.default .product-images .image-item {
  width: 72px !important;
  height: 72px !important;
  flex: 0 0 72px !important;
  margin: 0 !important;
  border: 2px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-layout1 .images-container.default .product-images .slick-slide:hover,
.product-layout1 .images-container.default .product-images .image-item:hover,
.product-layout1 .images-container.default .product-images .slick-current {
  border-color: #333;
}

.product-layout1 .images-container.default .product-images .slick-slide img,
.product-layout1 .images-container.default .product-images .image-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Hide slick arrows on thumbnails */
.product-layout1 .images-container.default .product-images .slick-arrow {
  display: none !important;
}

/* Main image area */
.product-layout1 .images-container.default .product-cover-container {
  flex: 1 1 auto;
  min-width: 0;
}

.product-layout1 .images-container.default .product-cover {
  max-height: 520px;
}

.product-layout1 .images-container.default .product-cover img {
  max-height: 500px;
  width: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* Hide slick arrows on main image cover */
.product-layout1 .images-container.default .product-cover .slick-arrow {
  display: none !important;
}

/* --- 3. Sticky right column --- */
.product-layout1 > .product-col-right {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Make the row a flex container */
.product-layout1.row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* --- 4. Remove social share section (keep product-additional-info for notify availability) --- */
.social-sharing {
  display: none !important;
}
/* Force show product-additional-info (mailalert notify) - theme hides it */
.product-additional-info.js-product-additional-info {
  display: block !important;
}


/* --- 5. Minimize Tpay banner --- */
.product-layout1 .payment-detail,
.product-layout1 .payment-detail {
  padding: 8px 0 !important;
  margin: 8px 0 !important;
  text-align: center;
}

.product-layout1 .payment-detail p:last-child,
.product-layout1 .payment-detail p:last-child {
  font-size: 11px !important;
  color: #999 !important;
  margin: 4px 0 0 !important;
}

/* Hide large Mastercard/Visa logos, keep only the small icons row */
.product-layout1 .payment-detail p:nth-child(2),
.product-layout1 .payment-detail p:nth-child(2) {
  display: none !important;
}

.product-layout1 .payment-detail img,
.product-layout1 .payment-detail img {
  max-height: 24px !important;
  width: auto !important;
}

/* --- 6. Reduce gaps in right column --- */
.product-layout1 .product-information {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.product-layout1 .product-actions {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.product-layout1 .product-quantity {
  margin-bottom: 8px !important;
}

/* Compact product title */
.product-layout1 h1.namne_details {
  font-size: 1.5rem !important;
  line-height: 1.3 !important;
  margin-bottom: 8px !important;
}

/* Reduce space between price and add-to-cart */
.product-layout1 .product-prices {
  margin-bottom: 12px !important;
}

/* --- 7. Tabs section closer --- */
.product-layout1 > .col-md-12 {
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 1px solid #eee;
}

/* --- 8. Mobile responsive --- */
@media (max-width: 991px) {
  .product-layout1 > .product-col-left,
  .product-layout1 > .product-col-right {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .product-layout1 > .product-col-right {
    position: static;
    border-left: none;
  }
  .product-layout1 .images-container.default {
    flex-direction: column !important;
  }
  .product-layout1 .images-container.default .product-images {
    flex-direction: row !important;
    width: 100% !important;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    flex: none !important;
    order: 0;
  }
  .product-layout1 .images-container.default .product-images .slick-track {
    flex-direction: row !important;
  }
  .product-layout1 .images-container.default .product-images .slick-slide,
  .product-layout1 .images-container.default .product-images .image-item {
    width: 60px !important;
    height: 60px !important;
    flex: 0 0 60px !important;
  }
}

/* --- 8b. Mobile product-quantity fix --- */
@media (max-width: 767px) {
  .product-quantity {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
  }
  /* Row 1: qty + add-to-cart */
  .product-quantity .qty {
    flex: 0 0 auto !important;
    margin-right: 0 !important;
    order: 1 !important;
  }
  .product-quantity .add {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    order: 2 !important;
  }
  .product-quantity .add .add-to-cart {
    width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 0.85rem !important;
  }
  /* Row 2: buy-now full width */
  .product-quantity .buy {
    flex: 0 0 100% !important;
    margin-top: 0 !important;
    order: 3 !important;
  }
  /* Row 3: InPost widget */
  .product-quantity .inpost-izi-btn-wrapper {
    order: 4 !important;
    flex: 0 0 100% !important;
  }
  /* Row 4: wishlist + compare icons */
  .product-quantity .cart_button {
    display: flex !important;
    gap: 6px !important;
    flex: 0 0 100% !important;
    justify-content: flex-start !important;
    order: 5 !important;
  }
  .product-quantity .cart_button #wishlist_button,
  .product-quantity .cart_button .compare-button {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Reduce spacing between payment banner and tabs */
  .product-layout1 .tabs {
    margin-top: 15px !important;
  }
  .product-layout1 > .col-md-12 {
    padding-top: 5px !important;
    margin-top: 5px !important;
  }
}

/* --- Payment banner: hide big logo and guarantee text --- */
.product-layout1 .payment-detail p:nth-child(2) {
  display: none !important;
}
.product-layout1 .payment-detail p:last-child {
  display: none !important;
}
.product-layout1 .payment-detail {
  padding: 8px 0 !important;
  margin: 8px 0 !important;
  text-align: center;
  border: none !important;
  background: none !important;
}
.product-layout1 .payment-detail a img {
  max-height: 28px !important;
  width: auto !important;
}

/* --- Thumbnail active state --- */
.product-layout1 .images-container.default .product-images .slick-slide {
  border: 2px solid #eee !important;
  opacity: 0.6;
  transition: border-color 0.2s, opacity 0.2s;
}
.product-layout1 .images-container.default .product-images .slick-slide.is-active,
.product-layout1 .images-container.default .product-images .slick-slide.slick-current {
  border-color: #333 !important;
  opacity: 1;
}
.product-layout1 .images-container.default .product-images .slick-slide:hover {
  opacity: 1;
  border-color: #999 !important;
}

/* --- Remove inner thumbnail borders (theme red border fix) --- */
.product-layout1 .images-container.default .product-images .slick-slide .image-item {
  border: none !important;
}
.product-layout1 .images-container.default .product-images .slick-slide img.thumb,
.product-layout1 .images-container.default .product-images .slick-slide img.js-thumb {
  border: none !important;
}

/* --- Hide blockreassurance module on product page (redundant with trust badges) --- */
.product-layout1 .blockreassurance_product {
  display: none !important;
}

/* ============================================================
   FORMAT SWITCHER - Empik-style product format buttons
   ============================================================ */
.product-format-switcher {
  margin: 8px 0 4px;
}
.product-format-switcher .format-switcher-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.product-format-switcher .format-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-format-switcher .format-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 18px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  background: #fff;
  min-width: 120px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.product-format-switcher .format-option:hover {
  border-color: #999;
  text-decoration: none;
  color: #333;
}
.product-format-switcher .format-option.active {
  border-color: #333;
  box-shadow: 0 0 0 1px #333;
  cursor: default;
  pointer-events: none;
}
.product-format-switcher .format-option .format-type {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.product-format-switcher .format-option .format-price {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}
.product-format-switcher .format-option.active .format-price {
  color: #333;
  font-weight: 500;
}
@media (max-width: 575px) {
  .product-format-switcher .format-option {
    min-width: 100px;
    padding: 8px 14px;
  }
}

/* ============================================
   Fix: E-book (online-only) flag red badge
   ============================================ */
.product-flags li.product-flag.online-only {
  background: #DB3E2F !important;
  color: #fff !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  font-size: 0.8125rem;
  z-index: 1;
}

/* ============================================
   Modern Filters (Material UI inspired)
   ============================================ */
#search_filters {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
#search_filters .facet {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
#search_filters .facet:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#search_filters .facet .facet-title,
#search_filters .facet .title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#search_filters .facet .facet-title .material-icons,
#search_filters .facet .title .material-icons {
  font-size: 18px;
  color: #999;
  transition: transform 0.2s;
}
#search_filters .facet .collapse .facet-label,
#search_filters .facet .facet-label {
  padding: 4px 0;
  margin: 0;
  transition: background 0.15s;
  border-radius: 6px;
}
#search_filters .facet .facet-label:hover {
  background: #f8f8f8;
  padding-left: 4px;
}
#search_filters .facet .facet-label a {
  color: #444;
  font-size: 0.8125rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
#search_filters .facet .facet-label .magnitude {
  color: #999;
  font-size: 0.75rem;
}
/* Modern checkbox */
#search_filters .custom-checkbox input[type="checkbox"] + span {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#search_filters .custom-checkbox input[type="checkbox"]:checked + span {
  background: #DB3E2F;
  border-color: #DB3E2F;
}
#search_filters .custom-checkbox input[type="checkbox"]:checked + span .checkbox-checked {
  color: #fff;
  font-size: 14px;
}
#search_filters .custom-checkbox input[type="checkbox"] + span:hover {
  border-color: #DB3E2F;
}
/* Modern radio */
#search_filters .custom-radio input[type="radio"] + span {
  border: 2px solid #ccc;
  transition: border-color 0.15s;
}
#search_filters .custom-radio input[type="radio"]:checked + span {
  border-color: #DB3E2F;
}
#search_filters .custom-radio input[type="radio"]:checked + span > i {
  background: #DB3E2F;
}
#search_filters .custom-radio input[type="radio"] + span:hover {
  border-color: #DB3E2F;
}
/* Filter title bar */
#search_filters > p.text-uppercase,
#search_filters > .title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #DB3E2F;
  letter-spacing: 0;
}
/* Dropdown selects */
#search_filters select,
#search_filters .facet select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #444;
  background: #fafafa;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 viewBox=0 0 12 12%3E%3Cpath fill=%23666 d=M6 8L1 3h10z/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#search_filters select:focus,
#search_filters .facet select:focus {
  border-color: #DB3E2F;
  box-shadow: 0 0 0 3px rgba(219,62,47,0.1);
  outline: none;
}
#search_filters select:hover,
#search_filters .facet select:hover {
  border-color: #bbb;
}
/* Active filters bar */
#js-active-search-filters {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #eee;
}
#js-active-search-filters .active-filter-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
}
#js-active-search-filters ul li {
  display: inline-flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px 12px;
  margin: 3px 4px;
  font-size: 0.75rem;
  color: #444;
  transition: background 0.15s;
}
#js-active-search-filters ul li:hover {
  background: #eee;
}
#js-active-search-filters ul li .close {
  font-size: 14px;
  margin-left: 6px;
  color: #999;
}
/* Price range slider */
#search_filters .faceted-slider {
  margin: 8px 4px 0;
}
#search_filters .ui-slider {
  height: 4px;
  background: #e8e8e8;
  border: none;
  border-radius: 2px;
}
#search_filters .ui-slider .ui-slider-range {
  background: #DB3E2F;
  border-radius: 2px;
}
#search_filters .ui-slider .ui-slider-handle {
  width: 18px;
  height: 18px;
  border: 2px solid #DB3E2F;
  background: #fff;
  border-radius: 50%;
  top: -8px;
  cursor: grab;
  transition: box-shadow 0.15s;
}
#search_filters .ui-slider .ui-slider-handle:hover,
#search_filters .ui-slider .ui-slider-handle:focus {
  box-shadow: 0 0 0 4px rgba(219,62,47,0.15);
}
/* Clear all button */
#search_filters .js-search-filters-clear-all,
.js-search-filters-clear-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #DB3E2F;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid #DB3E2F;
  transition: all 0.15s;
  background: transparent;
}
.js-search-filters-clear-all:hover {
  background: #DB3E2F;
  color: #fff;
}
/* Category tree in sidebar */
/* overridden by enterprise sidebar below */
/* Tags block */
.block-tags .tag-list li a {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 16px;
  color: #555;
  font-size: 0.75rem;
  margin: 2px;
  transition: all 0.15s;
}
.block-tags .tag-list li a:hover {
  background: #DB3E2F;
  color: #fff;
}

/* ============================================
   Category Sidebar - Enterprise
   ============================================ */

.block-categories {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  overflow: visible;
  margin-left: -15px;
}

/* Hide Strona glowna */
.category-top-menu > li:first-child {
  display: none;
}
.category-top-menu > li:nth-child(2)::before {
  display: none !important;
}

.category-top-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-top-menu > li > .category-sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Top-level items */
.category-top-menu .category-sub-menu li[data-depth="0"] {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 !important;
  margin: 0;
}
.category-top-menu .category-sub-menu li[data-depth="0"]:last-child {
  border-bottom: none;
}
.category-top-menu .category-sub-menu li[data-depth="0"] > a {
  display: block;
  padding: 6px 30px 6px 3px !important;
  border-left: 3px solid transparent;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: #2c2c2c;
  line-height: 1.45 !important;
  text-decoration: none;
  transition: all 0.15s ease;
  
  letter-spacing: 0.01em;
}
.category-top-menu .category-sub-menu li[data-depth="0"] > a:hover {
  color: #c0392b;
  background: #fafafa;
  
}

/* Expand toggle */
.category-top-menu .collapse-icons {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 3px;
  z-index: 1;
  padding: 0;
  transition: background 0.15s ease;
}
.category-top-menu .collapse-icons:hover {
  background: #f0f0f0;
}
.category-top-menu .collapse-icons .material-icons {
  font-size: 16px !important;
  color: #aaa;
  transition: color 0.15s ease;
}
.category-top-menu .collapse-icons:hover .material-icons {
  color: #c0392b;
}

/* Subcategories */
.category-top-menu .category-sub-menu .category-sub-menu {
  padding: 0 0 4px 0;
  background: transparent;
}
.category-top-menu .category-sub-menu li[data-depth="1"] {
  border-bottom: none;
  padding: 0 !important;
}
.category-top-menu .category-sub-menu li[data-depth="1"] a {
  display: block;
  padding: 4px 0 4px 12px;
  font-size: 12.5px;
  color: #777;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.15s ease;
  
}
.category-top-menu .category-sub-menu li[data-depth="1"] a:hover {
  color: #c0392b;
  border-left-color: #e0e0e0;
}

/* Override theme defaults */
.block-categories .h6,
.block-categories .category-top-menu .h6 {
  display: none !important;
}
.block-categories .category-sub-menu {
  border: none;
}
.block-categories .category-sub-menu li {
  line-height: 1.45 !important;
}

/* ============================================
   Homepage enterprise polish
   ============================================ */

/* Narrow the sidebar column that contains categories (desktop only) */
@media (min-width: 992px) {
  .elementor-column.elementor-col-33:has(.block-categories) {
    max-width: 260px !important;
    flex-basis: 260px !important;
  }
  .elementor-column.elementor-col-33:has(.block-categories) ~ .elementor-col-66 {
    flex: 1 !important;
    max-width: calc(100% - 280px) !important;
  }
}

/* Section headings - cleaner enterprise style */
.elementor-widget-heading .elementor-heading-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Product cards subtle hover lift */
.product-miniature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}
.product-miniature {
  transition: all 0.2s ease;
}


/* ============================================
   Newsletter section - Vesper logo
   ============================================ */
.elementor-column:has(.elementor-widget-pos-newsletter) .elementor-widget-pos_title .elementor-widget-container::before {
  content: '';
  display: block;
  width: 140px;
  height: 40px;
  background: url('/img/logo-1744114505.jpg') no-repeat center/contain;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

/* Newsletter heading style */
.elementor-column:has(.elementor-widget-pos-newsletter) .pos-title {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}


/* --- Mailalert / Notify availability redesign --- */
.mailalert-redesign {
  background: #f8f9fa;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 12px;
}
/* .mailalert-header/.icon/.title removed (compact layout) */
.mailalert-desc {
  font-size: 12.5px;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.mailalert-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}
.mailalert-form .mailalert-email {
  flex: 1;
  min-width: 200px;
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.mailalert-form .mailalert-email:focus {
  border-color: #d32f2f;
  outline: none;
  box-shadow: 0 0 0 2px rgba(211,47,47,0.1);
}
.mailalert-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  height: 42px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.mailalert-btn:hover {
  background: #c62828;
  color: #fff;
}
.mailalert-btn .material-icons {
  font-size: 16px;
}
.mailalert-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #2e7d32;
}
.mailalert-confirmed .material-icons {
  font-size: 20px;
  color: #2e7d32;
}
.mailalert-redesign .js-mailalert-alerts .alert {
  margin-top: 10px;
  border-radius: 6px;
  font-size: 13px;
}
/* Remove old label style */
.mailalert-redesign .mailalert-label {
  display: none;
}

/* --- Product availability status (enterprise) --- */
.availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin: 12px 0 4px;
}
.availability-status .material-icons {
  font-size: 20px;
}
.availability-available {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.availability-last_remaining_items {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}
.availability-unavailable {
  background: #fafafa;
  color: #616161;
  border: 1px solid #e0e0e0;
}

/* Full-width red banner for out of stock (replaces buttons) */
/* Old banner removed - now integrated into notify box */

/* --- Fix product page spacing + full-width availability --- */
.product-layout1 .product-information .product-description:empty {
  display: none !important;
}
.product-layout1 .product-information .product-description {
  padding: 10px 0 !important;
  margin-bottom: 0 !important;
}
#product-availability {
  display: block !important;
  width: 100%;
}
.product-minimal-quantity:empty {
  display: none !important;
  margin: 0 !important;
}
.product-minimal-quantity {
  margin-bottom: 0 !important;
}

/* --- Compact notify section for out-of-stock --- */
.mailalert-title-main {
  font-size: 15px;
  font-weight: 700;
  color: #c62828;
  margin: 0 0 2px 0;
}

/* --- Task 2: Brand color override #253237 -> #000 for buttons --- */
.btn-primary,
.buy-now,
a.btn-primary,
button.btn-primary,
.mailalert-btn,
.posproductcomment-post-btn,
.posproductcomment-comment-cancel,
#submitComment,
.cart-grid .btn-primary,
.checkout .btn-primary {
  background-color: #000 !important;
  border-color: #000 !important;
}
.btn-primary:hover,
.buy-now:hover,
a.btn-primary:hover,
button.btn-primary:hover,
.mailalert-btn:hover,
.cart-grid .btn-primary:hover,
.checkout .btn-primary:hover {
  background-color: #c62828 !important;
  border-color: #c62828 !important;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
  background-color: #111 !important;
  border-color: #111 !important;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.2) !important;
}
/* Outline / secondary buttons */
.btn-outline-primary {
  color: #000 !important;
  border-color: #000 !important;
}
.btn-outline-primary:hover {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}
/* Secondary buttons (modal Kontynuuj zakupy etc.) */
.btn-secondary {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #c62828 !important;
  border-color: #c62828 !important;
  color: #fff !important;
}
/* Continue shopping button - ensure white text on black bg */
.cart-grid-body .btn-primary,
a.btn-primary {
  color: #fff !important;
}

/* Add-to-cart: white outlined button */
.product-add-to-cart .add-to-cart {
  background-color: #fff !important;
  border: 2px solid #000 !important;
  color: #000 !important;
}
.product-add-to-cart .add-to-cart:hover {
  background-color: #c62828 !important;
  border-color: #c62828 !important;
  color: #fff !important;
}
/* Links and text that use the old teal */
a.account,
.header_link_myaccount a {
  color: #000 !important;
}
a.account:hover,
.header_link_myaccount a:hover,
.pos-menu-horizontal .menu-item > a:hover,
#header .header-nav .right-nav .user-info a:hover {
  color: #c62828 !important;
}


/* Product description short - spacing */
.product-description-short {
  padding: 8px 0;
}

/* --- Hide quick view, wishlist, compare in PREORDER section --- */
.elementor-element-tympphr .quick-view,
.elementor-element-tympphr .poscompare-add,
.elementor-element-tympphr [data-link-action="quickview"],
.elementor-element-tympphr .wishlist-button-add,
.elementor-element-tympphr .addToWishlist,
.elementor-element-tympphr .pos-wishlist-btn,
.elementor-element-tympphr .product-list-reviews,
.elementor-element-tympphr .btn-wishlist,
.elementor-element-tympphr .product-functional-buttons-links,
.elementor-element-tympphr .compare,
.elementor-element-tympphr .btn-compare {
  display: none !important;
}

/* ============================================================
   CHECKOUT CART SUMMARY V2 - Enterprise redesign
   ============================================================ */

/* --- Header --- */
.cart-summary-v2 .cart-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.cart-summary-v2 .cart-summary-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.cart-summary-v2 .cart-summary-title .material-icons {
  font-size: 20px;
  color: #555;
}

.cart-summary-v2 .cart-item-count {
  font-weight: 400;
  color: #888;
}

.cart-summary-v2 .cart-toggle-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.cart-summary-v2 .cart-toggle-btn:hover {
  color: #000;
}

.cart-summary-v2 .toggle-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Toggle icon handled by theme JS (expand_more <-> expand_less) */

/* --- Product list --- */
.cart-summary-v2 .cart-product-list {
  padding: 12px 0 4px;
}

.cart-summary-v2 .cart-product-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-summary-v2 .cart-product-item:last-child {
  border-bottom: none;
}

/* --- Thumbnail with qty badge --- */
.cart-summary-v2 .cart-product-thumb {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-summary-v2 .cart-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-summary-v2 .cart-product-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* --- Product info --- */
.cart-summary-v2 .cart-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.cart-summary-v2 .cart-product-name {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.2s;
}

.cart-summary-v2 .cart-product-name:hover {
  color: #000;
  text-decoration: underline;
}

.cart-summary-v2 .cart-product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-summary-v2 .cart-product-old-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.cart-summary-v2 .cart-product-final-price {
  font-size: 14px;
  font-weight: 700;
  color: #c62828;
}

/* --- Subtotals section clean up --- */
#js-checkout-summary .cart-summary-v2 + .cart-summary-subtotals-container {
  padding-top: 14px;
  border-top: 1px solid #eee;
  margin-top: 4px;
}

/* --- Better subtotal lines --- */
#js-checkout-summary .cart-summary-subtotals .label {
  color: #555;
  font-size: 14px;
}

#js-checkout-summary .cart-summary-subtotals .value {
  color: #222;
  font-weight: 500;
}

/* --- Totals section --- */
#js-checkout-summary .cart-summary-totals {
  padding: 16px 20px !important;
}

#js-checkout-summary .cart-total {
  padding: 4px 0 12px !important;
}

#js-checkout-summary .cart-total .label {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000;
}

#js-checkout-summary .cart-total .value {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #000;
}

/* --- Free shipping bar polish --- */
.free-shipping-bar {
  margin-top: 12px;
  padding: 12px 14px;
  background: #f0faf0;
  border-radius: 8px;
  border: 1px solid #d5edd5;
}

.free-shipping-bar p {
  font-size: 13px;
  color: #2e7d32;
  margin: 0 0 8px;
  font-weight: 500;
}

.free-shipping-bar .bar-track {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}

.free-shipping-bar .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #43a047, #2e7d32);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* --- Separator --- */
#js-checkout-summary > hr.separator {
  margin: 0;
  border-color: #eee;
}

/* --- Voucher section clean up --- */
#js-checkout-summary .cart-voucher {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}

/* --- Dodaj do zamówienia (cross-sell) polish --- */
#js-checkout-summary .vesper-cross-sell-title,
#js-checkout-summary [class*="cross-sell"] > p:first-child {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 14px 20px 10px;
  margin: 0;
}

/* Polish toggle link style */
.cart-summary-v2 .cart-toggle-btn {
  color: #c62828 !important;
  font-weight: 500;
}
.cart-summary-v2 .cart-toggle-btn:hover {
  color: #000 !important;
}

/* ===== Newsletter popup - Enterprise redesign ===== */
/* Theme overlay backdrop styling */
#posnewsletterpopup-overlay.showed-popup {
  background: rgba(0,0,0,0.5) !important;
  cursor: pointer;
}

/* Base popup */
#posnewsletterpopup {
  display: none;
  position: fixed !important;
  z-index: 5104 !important;
  background: #fff !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
  overflow: visible !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  flex-direction: column !important;
  align-items: stretch !important;
  border-radius: 0 !important;
}
#posnewsletterpopup.showed-pnp {
  display: flex !important;
}

/* Hide old logo panel */
#posnewsletterpopup .pnp-logo-side {
  display: none !important;
}

/* Close button - always visible */
#posnewsletterpopup .pnp-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  background: #f5f5f5 !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  color: #333 !important;
  transition: background 0.2s !important;
  border: none !important;
}
#posnewsletterpopup .pnp-close:hover {
  background: #e0e0e0 !important;
}

/* Content area */
#posnewsletterpopup .pnp-content {
  padding: 40px 32px 32px !important;
  flex: none !important;
}

/* Title */
#posnewsletterpopup .pnp-desc .title-popup p:first-child {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}
#posnewsletterpopup .pnp-desc .title-popup p:last-child {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Form */
#posnewsletterpopup .pnp-newsletter-form {
  margin-top: 20px !important;
}
#posnewsletterpopup .pnp-newsletter-form form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
#posnewsletterpopup .pnp-newsletter-form .newsletter-input {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-sizing: border-box !important;
}
#posnewsletterpopup .pnp-newsletter-form .newsletter-input:focus {
  border-color: #111 !important;
}
#posnewsletterpopup .pnp-newsletter-form .pos-btn-newsletter {
  width: 100% !important;
  padding: 14px !important;
  background: #111 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-transform: none !important;
}
#posnewsletterpopup .pnp-newsletter-form .pos-btn-newsletter:hover {
  background: #c62828 !important;
}

/* Hide checkbox - auto-cookie on close */
#posnewsletterpopup .pnp-close-checkbox {
  display: none !important;
}

/* === DESKTOP (>768px) === */
@media (min-width: 769px) {
  #posnewsletterpopup.showed-pnp {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 440px !important;
    border-radius: 16px !important;
    animation: pnpFadeIn 0.3s ease !important;
  }
}

/* === MOBILE (<769px) === */
@media (max-width: 768px) {
  #posnewsletterpopup.showed-pnp {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    border-radius: 20px 20px 0 0 !important;
    transform: none !important;
    animation: pnpSlideUp 0.3s ease !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }
  #posnewsletterpopup .pnp-content {
    padding: 32px 24px 24px !important;
  }
  #posnewsletterpopup .pnp-desc .title-popup p:first-child {
    font-size: 19px !important;
  }
  #posnewsletterpopup .pnp-desc .title-popup p:last-child {
    font-size: 13px !important;
  }
}

@keyframes pnpFadeIn {
  from { opacity: 0; transform: translate(-50%, -48%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
@keyframes pnpSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Preorder/wholesale: current price bold red when strikethrough shown */
.product-price-and-shipping .regular-price ~ .price:not(.price-sale) {
  color: #c62828 !important;
  font-weight: 700;
}

/* ===== GDPR Cookie Consent Banner ===== */
#poscookielaw.cookie-consent-banner {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: #fff !important;
  color: #333 !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12) !important;
  padding: 0 !important;
  font-family: inherit !important;
  border-top: 1px solid #e0e0e0 !important;
}
#poscookielaw.cookie-consent-banner.ccb-hidden {
  transform: translateY(100%) !important;
  opacity: 0 !important;
  transition: transform 0.4s ease, opacity 0.3s ease !important;
}

.ccb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
.ccb-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #111 !important;
  margin: 0 0 6px 0 !important;
}
.ccb-desc {
  font-size: 13px !important;
  color: #555 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
.ccb-policy-link {
  color: #c62828 !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
}
.ccb-policy-link:hover {
  color: #111 !important;
}

/* Actions row */
.ccb-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.ccb-btn {
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
  line-height: 1.3 !important;
}
.ccb-btn-accept {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}
.ccb-btn-accept:hover {
  background: #c62828 !important;
  border-color: #c62828 !important;
}
.ccb-btn-reject {
  background: #fff !important;
  color: #111 !important;
  border-color: #111 !important;
}
.ccb-btn-reject:hover {
  background: #f5f5f5 !important;
}
.ccb-btn-settings {
  background: transparent !important;
  color: #555 !important;
  border-color: #ccc !important;
}
.ccb-btn-settings:hover,
.ccb-btn-settings.ccb-btn-active {
  border-color: #111 !important;
  color: #111 !important;
}
.ccb-btn-save {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}
.ccb-btn-save:hover {
  background: #c62828 !important;
  border-color: #c62828 !important;
}

/* Preferences panel */
.ccb-preferences {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}
.ccb-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.ccb-category:last-of-type {
  border-bottom: none;
}
.ccb-cat-name {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  display: block;
}
.ccb-cat-desc {
  font-size: 12px;
  color: #777;
  display: block;
  margin-top: 2px;
}
.ccb-always {
  font-size: 12px;
  color: #999;
  margin-left: 8px;
}

/* Toggle switch */
.ccb-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.ccb-toggle input {
  display: none;
}
.ccb-slider {
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
}
.ccb-slider::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.ccb-toggle input:checked + .ccb-slider {
  background: #111;
}
.ccb-toggle input:checked + .ccb-slider::after {
  transform: translateX(20px);
}
.ccb-toggle-disabled {
  cursor: default;
  opacity: 0.6;
}
.ccb-toggle-disabled .ccb-slider {
  background: #888 !important;
}

.ccb-pref-actions {
  margin-top: 12px;
  text-align: right;
}

/* Floating settings button */
.ccb-settings-fab {
  position: fixed !important;
  bottom: 16px !important;
  left: 16px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
  cursor: pointer !important;
  z-index: 9998 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  padding: 0 !important;
}
.ccb-settings-fab:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
  transform: scale(1.05) !important;
}
.ccb-settings-fab .material-icons {
  font-size: 22px !important;
  color: #555 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .ccb-inner {
    padding: 16px;
  }
  .ccb-title {
    font-size: 15px !important;
  }
  .ccb-desc {
    font-size: 12px !important;
  }
  .ccb-actions {
    flex-direction: column;
    gap: 8px;
  }
  .ccb-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 16px !important;
  }
  .ccb-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ccb-settings-fab {
    bottom: 12px !important;
    left: 12px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

/* ============================================
   Homepage — compact product sections
   Reduces large square images for book covers
   ============================================ */
.page-index .style_product1 .img_block {
  height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.page-index .style_product1 .img_block img {
  max-height: 180px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
}
.page-index .style_product1 .product_desc {
  padding: 0 6px 6px !important;
}
.page-index .style_product1 .inner_desc h3 {
  margin: 4px 0 3px !important;
}

/* Recommendation grid — prevent hover clipping (homepage) */
.vesper-rec-homepage .vesper-rec-grid {
  padding: 4px 0;
}

/* Recommendation grid — compact images (homepage) */
.vesper-rec-homepage .img_block {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vesper-rec-homepage .img_block img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Reduce gap between slider/categories and first product section */
.elementor-5010000 .elementor-element.elementor-element-vnowoha {
  margin-bottom: 10px !important;
}

/* Recommendation subtitle — centered */
.vesper-rec-homepage .pos-subtitle {
  text-align: center !important;
  color: #888 !important;
  font-size: 14px !important;
  font-style: italic;
  margin-bottom: 15px !important;
}

/* ============================================
   Account recommendations page — enterprise cards
   ============================================ */
.vesper-rec-account {
  padding: 0 !important;
  margin: 0 !important;
}
.vesper-rec-account-intro {
  text-align: center !important;
  font-style: italic;
  color: #666;
  margin-bottom: 24px;
}
.vesper-rec-grid-account {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
/* Each card = flex column, equal height */
.vesper-rec-grid-account .thumbnail-container {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border: 1px solid #eee !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
  background: #fff !important;
}
.vesper-rec-grid-account .thumbnail-container:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
  transform: translateY(-2px) !important;
}
/* Fixed-height image area */
.vesper-rec-grid-account .img_block {
  height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px !important;
  background: #fafafa !important;
}
.vesper-rec-grid-account .img_block img {
  max-height: 196px !important;
  max-width: 100% !important;
  width: auto !important;
  object-fit: contain !important;
}
/* Description area grows to fill remaining space */
.vesper-rec-grid-account .product_desc {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 12px 14px 14px !important;
}
.vesper-rec-grid-account .inner_desc {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
/* Explanation tag */
.vesper-rec-grid-account .vesper-rec-explanation {
  font-size: 10px;
  color: #DB3E2F;
  font-style: italic;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
/* Title: always 2 lines max */
.vesper-rec-grid-account .inner_desc h3 {
  margin: 0 0 8px !important;
  min-height: 36px !important;
}
.vesper-rec-grid-account .inner_desc h3 .product_name {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  color: #333 !important;
}
.vesper-rec-grid-account .inner_desc h3 .product_name:hover {
  color: #DB3E2F !important;
}
/* Price */
.vesper-rec-grid-account .product-price-and-shipping {
  margin-bottom: 12px !important;
}
.vesper-rec-grid-account .price {
  font-size: 16px !important;
  font-weight: 700 !important;
}
/* Button pinned to bottom */
.vesper-rec-grid-account .cart {
  margin-top: auto !important;
}
.vesper-rec-grid-account .add-to-cart.btn-default {
  width: 100% !important;
  font-size: 12px !important;
  padding: 9px 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #333 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}
.vesper-rec-grid-account .add-to-cart.btn-default:hover {
  background: #DB3E2F !important;
  border-color: #DB3E2F !important;
  color: #fff !important;
}
/* Responsive */
@media (max-width: 991px) {
  .vesper-rec-grid-account {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .vesper-rec-grid-account {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .vesper-rec-grid-account .img_block {
    height: 180px !important;
    padding: 8px !important;
  }
  .vesper-rec-grid-account .img_block img {
    max-height: 164px !important;
  }
  .vesper-rec-grid-account .product_desc {
    padding: 10px 10px 12px !important;
  }
}

/* Product pack section */
.product-pack h4 {
  margin-top: 10px;
}
.product-pack .card {
  margin-bottom: 0.5rem;
}

/* Account pages — footer navigation buttons */
.vesper-rec-footer-links,
.vesper-account-footer-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.vesper-rec-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.vesper-rec-footer-btn .material-icons {
  font-size: 18px;
}
.vesper-rec-footer-btn:hover {
  background: #DB3E2F;
  border-color: #DB3E2F;
  color: #fff;
  text-decoration: none;
}
.vesper-rec-footer-btn-home {
  background: #333;
  border-color: #333;
  color: #fff;
}
.vesper-rec-footer-btn-home:hover {
  background: #DB3E2F;
  border-color: #DB3E2F;
  color: #fff;
}
@media (max-width: 767px) {
  .vesper-rec-footer-links,
  .vesper-account-footer-links {
    flex-direction: column;
  }
  .vesper-rec-footer-btn {
    justify-content: center;
    width: 100%;
  }
}
