/* Google Fonts - Kanit */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

/*!
 * 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;
}

/* Menu carte da gioco su tre colonne */
.menu ul.category-sub-menu {
  column-count: 3;
  column-gap: 60px;
}

/* Menu single e more su una colonna */
.menu-single ul.category-sub-menu,
.menu-more ul.category-sub-menu {
  column-count: 1 !important;
}

/* Stile dropdown menu */
.menu .menu-dropdown,
.menu-single .menu-dropdown,
.menu-more .menu-dropdown {
  border-bottom: none !important;
  border-right: none !important;
  border-left: none !important;
  border-top: 5px solid #FFC107 !important;
  background: rgba(0, 0, 0, 0.8) !important;
  margin-top: 15px !important;
}

.menu .menu-dropdown::before,
.menu-single .menu-dropdown::before,
.menu-more .menu-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.menu .menu-dropdown::after,
.menu-single .menu-dropdown::after,
.menu-more .menu-dropdown::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFC107;
}

.menu .menu-dropdown .pos-sub-inner,
.menu-single .menu-dropdown .pos-sub-inner,
.menu-more .menu-dropdown .pos-sub-inner {
  background: transparent !important;
  border: none !important;
  padding-top: 10px !important;
}

.menu .menu-dropdown .submenu-item > a,
.menu-single .menu-dropdown .submenu-item > a,
.menu-more .menu-dropdown .submenu-item > a {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold !important;
}

.menu .menu-dropdown .category-sub-menu a,
.menu-single .menu-dropdown .category-sub-menu a,
.menu-more .menu-dropdown .category-sub-menu a {
  color: #fff !important;
  font-size: 16px !important;
}

.menu .menu-dropdown a:hover,
.menu-single .menu-dropdown a:hover,
.menu-more .menu-dropdown a:hover {
  color: #FFC107 !important;
}

.menu .menu-dropdown .category-sub-menu li,
.menu-single .menu-dropdown .category-sub-menu li,
.menu-more .menu-dropdown .category-sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0 !important;
  margin-bottom: 0 !important;
}

/* Distanza tra elementi menu header */
.elementor-element-ggfotcu .menu-content > .menu-item > a {
  padding: 8px 12px !important;
  margin: 0 5px !important;
}

/* Frecce dropdown più visibili */
.menu-content > .menu-item i.icon-rt-arrow-down {
  font-size: 12px !important;
  opacity: 0.8 !important;
  margin-left: 3px !important;
}

/* Hover voci principali menu */
.menu-content > .menu-item > a:hover span,
.menu-content > .menu-item.active > a span {
  color: #FFC107 !important;
}

.menu-content > .menu-item:hover > a,
.menu-content > .menu-item.active > a {
  border-color: #FFC107 !important;
}

#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > a .icon-rt-arrow-down::before,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.active > a .icon-rt-arrow-down::before {
  color: #FFC107 !important;
}

/* Override variabile colore hover per il menu (desktop e mobile) */
#_desktop_megamenu,
#_desktop_megamenu *,
#_mobile_megamenu,
#_mobile_megamenu *,
.pos-menu-horizontal,
.pos-menu-horizontal *,
.pos-menu-vertical,
.pos-menu-vertical *,
.posmegamenu,
.posmegamenu *,
.menu-content,
.menu-content *,
.pos-sub-menu,
.pos-sub-menu *,
.menu-dropdown,
.menu-dropdown * {
  --hovercolor: #FFC107 !important;
}

/* Hover sottomenu - giallo anche per titoli */
.pos-sub-menu .submenu-item > a:hover,
.pos-sub-menu .category-sub-menu a:hover,
#_desktop_megamenu .pos-sub-menu a:hover,
#_desktop_megamenu .menu-dropdown a:hover,
#_desktop_megamenu .submenu-item > a:hover,
.pos-menu-horizontal .pos-sub-menu a:hover,
#_desktop_megamenu a:hover,
#_desktop_megamenu .menu-item a:hover,
#_desktop_megamenu .pos-sub-menu .submenu-item a:hover,
#_desktop_megamenu .pos-sub-menu .submenu-item > a:hover,
.pos-menu-horizontal .menu-dropdown a:hover,
.pos-menu-horizontal .pos-sub-inner a:hover {
  color: #FFC107 !important;
}

/* Flyout submenu per menu-more */
.menu-more .submenu-item {
  position: relative;
}

.menu-more .submenu-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-more .submenu-item:has(.category-sub-menu) > a::after {
  content: '›';
  margin-left: 10px;
  font-size: 18px;
}

/* Sottomenu menu-more: flyout a destra */
#_desktop_megamenu .menu-more .menu-dropdown,
#_desktop_megamenu .menu-more .pos-sub-inner,
#_desktop_megamenu .menu-more .pos-menu-row,
#_desktop_megamenu .menu-more .pos-menu-col,
#_desktop_megamenu .menu-more .ul-column,
#_desktop_megamenu .menu-more .submenu-item {
  overflow: visible !important;
}

#_desktop_megamenu .menu-more .submenu-item {
  position: relative !important;
}

#_desktop_megamenu .menu-more .submenu-item .category-sub-menu {
  display: none !important;
  position: absolute !important;
  left: 100% !important;
  top: -20px !important;
  padding: 15px !important;
  padding-left: 15px !important;
  margin-left: 30px !important;
  background: rgba(0, 0, 0, 0.9) !important;
  border-left: 3px solid #FFC107 !important;
  min-width: 200px !important;
  z-index: 9999 !important;
}

/* Ponte invisibile per hover */
#_desktop_megamenu .menu-more .submenu-item .category-sub-menu::before {
  content: '' !important;
  position: absolute !important;
  left: -50px !important;
  top: 0 !important;
  width: 50px !important;
  height: 100% !important;
}

/* Freccia sul bordo sinistro */
#_desktop_megamenu .menu-more .submenu-item .category-sub-menu::after {
  content: '' !important;
  position: absolute !important;
  left: -10px !important;
  top: 15px !important;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  border-right: 10px solid #FFC107 !important;
}

#_desktop_megamenu .menu-more .submenu-item:hover > .category-sub-menu {
  display: block !important;
}

/* Intestazioni menu-more: 18px non bold */
#_desktop_megamenu .menu-more .submenu-item > a {
  font-size: 16px !important;
  font-weight: normal !important;
}

/* Ridurre distanza tra elementi menu-more */
#_desktop_megamenu .menu-more .pos-menu-row {
  margin: 0 !important;
  padding: 0 !important;
}

#_desktop_megamenu .menu-more .pos-menu-col,
#_desktop_megamenu .menu-more .pos-menu-col.menu {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

#_desktop_megamenu .menu-more .ul-column {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

#_desktop_megamenu .menu-more .submenu-item {
  width: 100% !important;
}

#_desktop_megamenu .menu-more .menu-dropdown .pos-sub-inner {
  padding-top: 5px !important;
}

#_desktop_megamenu .menu-more .submenu-item {
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

#_desktop_megamenu .menu-more .submenu-item > a {
  display: block !important;
  line-height: 1.4 !important;
  padding: 8px 15px !important;
  margin: 0 !important;
}

/* ============================================
   HEADER CUSTOMIZATION - Tavolo Verde
   ============================================ */

/* Compare e Wishlist visibili nella navbar */

/* Container contatti header */
.header-contacts-wrapper {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  height: 100%;
}

.header-contact-item {
  display: inline-flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px;
  height: 100%;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 14px;
}

.header-contact-link:hover {
  color: #4fb68d;
  text-decoration: none;
}

.header-contact-link i {
  font-size: 16px;
}

.header-contact-link i {
  color: #fff;
}

.header-contact-link:hover i {
  color: #4fb68d;
}

body#index .elementor-element-qpxsnrs,
body#index .elementor-element-qpxsnrs.sticky-inner,
body#index .elementor-element-qpxsnrs.absolute-header {
    background: rgba(0, 0, 0, 0.3) !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Testi e icone bianchi nella sezione header homepage */
body#index .elementor-element-qpxsnrs,
body#index .elementor-element-qpxsnrs a,
body#index .elementor-element-qpxsnrs span,
body#index .elementor-element-qpxsnrs .menu-content > li > a,
body#index .elementor-element-qpxsnrs .menu-content > li > a span,
body#index .elementor-element-qpxsnrs i,
body#index .elementor-element-qpxsnrs .icon-rt-loupe,
body#index .elementor-element-qpxsnrs .icon-rt-bag2,
body#index .elementor-element-qpxsnrs .cart-products-total,
body#index .elementor-element-qpxsnrs .cart-products-count {
    color: #fff !important;
}

body#index .elementor-element-qpxsnrs .menu-content > li.active > a,
body#index .elementor-element-qpxsnrs .menu-content > li.active > a span {
    color: #FFC107 !important;
}

/* ============================================
   CART DROPDOWN - Testi scuri
   ============================================ */
#header .blockcart .popup_cart.popup-dropdown,
.blockcart .popup_cart.popup-dropdown {
    background: #fff !important;
    background-color: #fff !important;
}

#header .blockcart .popup_cart.popup-dropdown .product-name,
#header .blockcart .popup_cart.popup-dropdown .product-price,
#header .blockcart .popup_cart.popup-dropdown .product-quantity,
#header .blockcart .popup_cart.popup-dropdown .label,
#header .blockcart .popup_cart.popup-dropdown .value,
#header .blockcart .popup_cart.popup-dropdown .cart-summary-line span,
#header .blockcart .popup_cart.popup-dropdown .right_block span {
    color: #333 !important;
}

#header .blockcart .popup_cart.popup-dropdown .cart-total .label,
#header .blockcart .popup_cart.popup-dropdown .cart-total .value {
    color: #000 !important;
    font-weight: 600;
}

#header .blockcart .popup_cart.popup-dropdown .checkout .btn {
    color: #fff !important;
}
/* ============================================
   END CART DROPDOWN
   ============================================ */

/* ============================================
   PRODUCT CARDS - Altezza uniforme
   ============================================ */
.slick-slider .slick-track {
    display: flex !important;
}

.slick-slider .slick-slide {
    height: auto !important;
}

.pos-sale-product-widget .slick-slider .slick-slide > div,
.pos-sale-product-widget .slick-slider .slick-slide > div > div {
    height: 100%;
}

.pos-sale-product-widget .slick-slider .product-miniature {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slick-slider .product-miniature .product_desc {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slick-slider .product-miniature .product_desc .inner_desc {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slick-slider .product-miniature .product_desc .inner_desc h3 {
    flex-grow: 1;
    min-height: 48px;
}

.slick-slider .product-miniature .product_desc .inner_desc .cart {
    margin-top: auto;
}

.slick-slider .product-miniature .availability {
    margin-top: auto;
}

/* Riduzione dimensione immagini nelle card */
.slick-slider .product-miniature .img_block img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.slick-slider .product-miniature .img_block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    overflow: hidden;
}
/* ============================================
   END PRODUCT CARDS
   ============================================ */

/* ============================================
   PRODUCT STOCK QUANTITY
   ============================================ */
.product-stock-quantity {
    display: block;
    margin-top: 10px;
    color: #4caf50;
    font-size: 14px;
    font-weight: 500;
}

.product-stock-quantity i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 5px;
}
/* ============================================
   END PRODUCT STOCK QUANTITY
   ============================================ */

/* ============================================
   PRODUCT OUT OF STOCK ALERT (Avvisami)
   ============================================ */
.product-out-of-stock-alert {
    padding: 20px 0;
}

.product-out-of-stock-alert .js-mailalert {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.product-out-of-stock-alert .js-mailalert input[type="email"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-out-of-stock-alert .js-mailalert-add {
    width: 100%;
    padding: 12px 20px;
    background: #4fb68d;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-out-of-stock-alert .js-mailalert-add:hover {
    background: #3d9a75;
}

.product-out-of-stock-alert .alert-info {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}
/* ============================================
   END PRODUCT OUT OF STOCK ALERT
   ============================================ */


/* ============================================
   PRODUCT OUT OF STOCK - MOSTRA/NASCONDI DINAMICO
   ============================================ */
.product-add-buttons.hidden {
    display: none !important;
}

.product-out-of-stock-alert.hidden {
    display: none !important;
}
/* ============================================
   END PRODUCT OUT OF STOCK
   ============================================ */

/* ============================================
   MAIL ALERT - AVVISAMI QUANDO DISPONIBILE
   ============================================ */
.product-out-of-stock-alert .js-mailalert {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.product-out-of-stock-alert .alert-stock-title {
    font-size: 16px;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 15px;
}

.product-out-of-stock-alert .mailalert-email {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px auto;
    display: block;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.product-out-of-stock-alert .js-mailalert-add {
    background: #4fb68d;
    border-color: #4fb68d;
    padding: 12px 25px;
    font-weight: 600;
}

.product-out-of-stock-alert .js-mailalert-add:hover {
    background: #3d9a75;
    border-color: #3d9a75;
}

.product-out-of-stock-alert .js-mailalert-alerts .alert {
    margin-top: 10px;
}

.product-out-of-stock-alert .js-mailalert-alerts .alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
}

.product-out-of-stock-alert .js-mailalert-alerts .alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
}
/* ============================================
   END MAIL ALERT
   ============================================ */

/* ============================================
   CATEGORY BOXES HEIGHT
   ============================================ */
.categories-container .category-item .style1 {
    height: 200px;
}

.categories-container .category-item .style1 .category-image {
    height: 100%;
}

.categories-container .category-item .style1 .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ============================================
   END CATEGORY BOXES HEIGHT
   ============================================ */

/* Hide tags block */
#tags_block {
    display: none;
}

/* Hide advertising block */
.advertising-block {
    display: none;
}

/* Hide add to cart button on hover for out of stock products */
.add-to-links li.cart:has(.ajax_add_to_cart_button.disabled) {
    display: none !important;
}

/* ============================================
   SLICK CAROUSEL DOTS - GREEN COLOR
   ============================================ */
.slick-dots li.slick-active button {
    background: #006642 !important;
}

.slick-dots li:hover button {
    background: #1a6b1a !important;
}
/* ============================================
   END SLICK CAROUSEL DOTS
   ============================================ */

/* ============================================
   SLICK CAROUSEL PRODUCTS - TYPOGRAPHY (BRAND BOOK)
   ============================================ */

/* Product name - using Testo base Desktop */
.slick-slide .product_desc h3 .product_name {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #121212;
}

/* Price - using Testo base Desktop bold */
.slick-slide .product_desc .price {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #121212;
}

/* Add to cart button - Primary button style (green) */
.slick-slide .product_desc .cart .ajax_add_to_cart_button,
.slick-slide .product_desc .cart .add-to-cart,
.slick-slide .product_desc .cart button.ajax_add_to_cart_button,
.slick-slide .product_desc .cart button.add-to-cart,
.product-miniature .product_desc .ajax_add_to_cart_button,
.product-miniature .product_desc .add-to-cart {
    font-family: 'Kanit', sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    background-color: #006642 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.slick-slide .product_desc .cart .ajax_add_to_cart_button:hover,
.slick-slide .product_desc .cart .add-to-cart:hover,
.slick-slide .product_desc .cart button.ajax_add_to_cart_button:hover,
.slick-slide .product_desc .cart button.add-to-cart:hover,
.product-miniature .product_desc .ajax_add_to_cart_button:hover,
.product-miniature .product_desc .add-to-cart:hover {
    background-color: #1a6b1a !important;
    color: #fff !important;
}

/* Disabled button - Secondary style (grey) */
.slick-slide .product_desc .cart .ajax_add_to_cart_button.disabled,
.slick-slide .product_desc .cart span.ajax_add_to_cart_button.disabled,
.product-miniature .product_desc .ajax_add_to_cart_button.disabled {
    background-color: #B0BEC5 !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 3px !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.slick-slide .product_desc .cart .ajax_add_to_cart_button.disabled:hover,
.product-miniature .product_desc .ajax_add_to_cart_button.disabled:hover {
    background-color: #B0BEC5 !important;
    color: #000 !important;
}

/* Mobile responsive - Testo Base Mobile */
@media (max-width: 767px) {
    .slick-slide .product_desc h3 .product_name {
        font-size: 14px;
        line-height: 20px;
    }
    
    .slick-slide .product_desc .price {
        font-size: 14px;
        line-height: 20px;
    }
    
    .slick-slide .product_desc .ajax_add_to_cart_button,
    .slick-slide .product_desc .add-to-cart {
        font-size: 12px;
        line-height: 18px;
    }
}

/* ============================================
   END SLICK CAROUSEL PRODUCTS - TYPOGRAPHY
   ============================================ */

/* ============================================
   PRODUCT PAGE - TYPOGRAPHY
   ============================================ */

/* Tasse e info spedizione */
.product-prices .tax-shipping-delivery-label {
    font-size: 18px;
}

.product-prices .tax-shipping-delivery-label .omniversepricing-notice {
    font-size: 16px !important;
}

/* Descrizione breve prodotto */
.product-description {
    padding: 0 !important;
}

.product-description p {
    margin: 0 !important;
}

.product-description,
.product-description p,
.product-description span {
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    font-family: inherit !important;
    color: inherit !important;
    background-color: transparent !important;
}

/* Nasconde il primo br (subito dopo p) e i br consecutivi */
.product-description p > br:first-child,
.product-description br + br {
    display: none;
}

/* Nasconde paragrafi vuoti con solo &nbsp; */
.product-description p:empty,
.product-description p:last-child:has(only-child) {
    display: none;
}

/* Tabella sconti volume */
.product-discounts .product-discounts-title {
    font-size: 18px;
}

.product-discounts .table-product-discounts,
.product-discounts .table-product-discounts th,
.product-discounts .table-product-discounts td {
    font-size: 16px;
}

.buy {
  display: none;
}

/* Bottone avvisami quando disponibile */
.js-mailalert-add.mt-1 {
    margin-top: 0 !important;
}

/* Bottone aggiungi al carrello pagina prodotto - stesso stile globale */
.product-actions .add-to-cart {
    margin-top: 0 !important;
    font-family: 'Kanit', sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    background-color: #006642 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.product-actions .add-to-cart:hover {
    background-color: #1a6b1a !important;
    color: #fff !important;
}

/* Tab dettagli prodotto */
#product-details .product-reference,
#product-details .product-reference .label,
#product-details .product-reference span,
#product-details .product-features,
#product-details .product-features .h6,
#product-details .product-features .data-sheet dt,
#product-details .product-features .data-sheet dd {
    font-size: 18px;
}

/* ============================================
   END PRODUCT PAGE - TYPOGRAPHY
   ============================================ */

/* ============================================
   GLOBAL BUTTON STYLES
   ============================================ */

/* Bottoni attivi - stato normale */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-default,
button[type="submit"],
input[type="submit"],
.add-to-cart,
.product-add-to-cart .add-to-cart,
.ajax_add_to_cart_button,
.continue-shopping,
.checkout a.btn,
a.btn,
.form-control-submit,
#cart .checkout a,
.cart-summary .checkout a,
.block-promo .promo-code-button,
.ps-alert-success .btn,
.ps-alert-error .btn,
.modal .btn-primary,
.modal .btn-secondary,
.wishlist-button-add,
.wishlist-add-to,
.product-miniature .add-to-cart,
.featured-products .add-to-cart,
.product-accessories .add-to-cart,
.crossselling-products .add-to-cart,
.pos-product-item .add-to-cart,
.products .add-to-cart,
.elementor-button,
.elementor-button-link {
    font-family: 'Kanit', sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    background-color: #006642 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Elementor button text color */
.elementor-button .elementor-button-text,
.elementor-button .elementor-button-icon,
.elementor-button .elementor-button-icon i {
    color: #FFFFFF !important;
}

/* Bottoni attivi - stato hover */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-success:hover,
.btn-default:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.add-to-cart:hover,
.product-add-to-cart .add-to-cart:hover,
.ajax_add_to_cart_button:hover,
.continue-shopping:hover,
.checkout a.btn:hover,
a.btn:hover,
.form-control-submit:hover,
#cart .checkout a:hover,
.cart-summary .checkout a:hover,
.block-promo .promo-code-button:hover,
.ps-alert-success .btn:hover,
.ps-alert-error .btn:hover,
.modal .btn-primary:hover,
.modal .btn-secondary:hover,
.wishlist-button-add:hover,
.wishlist-add-to:hover,
.product-miniature .add-to-cart:hover,
.featured-products .add-to-cart:hover,
.product-accessories .add-to-cart:hover,
.crossselling-products .add-to-cart:hover,
.pos-product-item .add-to-cart:hover,
.products .add-to-cart:hover,
.elementor-button:hover,
.elementor-button-link:hover {
    background-color: #1a6b1a !important;
    color: #ffffff !important;
    border-color: #1a6b1a !important;
}

/* Elementor button hover text color */
.elementor-button:hover .elementor-button-text,
.elementor-button:hover .elementor-button-icon,
.elementor-button:hover .elementor-button-icon i {
    color: #ffffff !important;
}

/* Bottoni disabilitati / non disponibili */
.btn:disabled,
.btn.disabled,
.btn-primary:disabled,
.btn-primary.disabled,
.btn-default:disabled,
.btn-default.disabled,
button[type="submit"]:disabled,
button[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="submit"].disabled,
.add-to-cart:disabled,
.add-to-cart.disabled,
.product-add-to-cart .add-to-cart:disabled,
.product-add-to-cart .add-to-cart.disabled,
.ajax_add_to_cart_button:disabled,
.ajax_add_to_cart_button.disabled,
[disabled],
.btn[disabled],
button[disabled],
input[disabled] {
    background-color: #B0BEC5 !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 3px !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* Bottoni disabilitati - nessun effetto hover */
.btn:disabled:hover,
.btn.disabled:hover,
.btn-primary:disabled:hover,
.btn-primary.disabled:hover,
.btn-default:disabled:hover,
.btn-default.disabled:hover,
button[type="submit"]:disabled:hover,
button[type="submit"].disabled:hover,
.add-to-cart:disabled:hover,
.add-to-cart.disabled:hover,
[disabled]:hover {
    background-color: #B0BEC5 !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

/* ============================================
   END GLOBAL BUTTON STYLES
   ============================================ */

/* Bottoni touchspin (+ e -) per quantità - esclusi dallo stile verde */
.btn-touchspin,
.bootstrap-touchspin .btn,
.input-group-btn-vertical .btn {
    background-color: transparent !important;
    color: inherit !important;
    border-color: #ccc !important;
}

.product-quantity .qty .bootstrap-touchspin .input-group-btn-vertical .btn-touchspin {
    border: 1px solid #d9d9d9 !important;
}

.btn-touchspin:hover,
.bootstrap-touchspin .btn:hover,
.input-group-btn-vertical .btn:hover {
    background-color: #f5f5f5 !important;
    color: inherit !important;
    border-color: #ccc !important;
}

/* ============================================
   ACCOUNT PAGE
   ============================================ */

/* Nascondi bottoni footer nelle pagine account */
.page-my-account .page-footer,
.page-customer-account .page-footer,
#my-account .page-footer {
    display: none;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */

/* Header categoria - sfondo fisso senza immagine */
.page-title-wrapper {
    background: #f3f3f3 !important;
    background-image: none !important;
    margin-bottom: 25px !important;
    padding: 20px !important;
}

/* Breadcrumb nel header categoria */
.page-title-wrapper .breadcrumb,
.page-title-wrapper .breadcrumb ol,
.page-title-wrapper .breadcrumb li,
.page-title-wrapper .breadcrumb a,
.page-title-wrapper .breadcrumb span {
    font-size: 18px !important;
    line-height: 28px !important;
}

/* Titolo H1 nel header categoria */
.page-title-wrapper .page-header h1 {
    font-size: 32px !important;
    line-height: 42px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
}

/* Titolo categoria */
.block-category h2.h1,
.block-category .h1 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.product-flag .out_of_stock {
  background: #D32F2F !important;
}

/* Descrizione categoria */
.block-category #category-description,
.block-category #category-description p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

/* Nome prodotto nella lista prodotti */
.product_desc h3,
.product_desc h3 a.product_name {
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
}

/* Prezzo nella lista prodotti */
.product_desc .product-price-and-shipping,
.product_desc .price {
    font-size: 22px !important;
    line-height: 28px !important;
    font-weight: 500 !important;
}

/* Marca prodotto nella lista prodotti */
.product_desc .manufacturer,
.product_desc .manufacturer a {
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
}

/* Altezza minima per la marca - uniforma le card */
.product_desc .manufacturer {
    min-height: 28px;
}

/* Bottone aggiungi al carrello nella lista prodotti (categoria) - stesso stile homepage */
.product_desc .ajax_add_to_cart_button,
.product_desc button.add-to-cart,
#js-product-list .product_desc .cart .ajax_add_to_cart_button,
#js-product-list .product_desc .cart .add-to-cart {
    font-family: 'Kanit', sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    background-color: #006642 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Hover bottone categoria - stesso stile homepage */
.product_desc .ajax_add_to_cart_button:hover,
.product_desc button.add-to-cart:hover,
#js-product-list .product_desc .cart .ajax_add_to_cart_button:hover,
#js-product-list .product_desc .cart .add-to-cart:hover {
    background-color: #1a6b1a !important;
    color: #fff !important;
}

/* Menu categorie sidebar */
.category-top-menu > li > a.h6 {
    font-size: 24px !important;
}

.category-sub-menu a,
.category-sub-menu .category-sub-link {
    font-size: 18px !important;
}

/* Footer - sezione contatti */
.elementor-element-04wlagu,
.elementor-element-04wlagu .elementor-text-editor,
.elementor-element-04wlagu .block,
.elementor-element-04wlagu .icon,
.elementor-element-04wlagu .icon span {
    font-family: 'Kanit', sans-serif !important;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    color: #000000 !important;
}

.elementor-element-04wlagu .icon {
    display: flex !important;
    align-items: flex-start !important;
}

.elementor-element-04wlagu .icon i.material-icons {
    margin-right: 10px !important;
    flex-shrink: 0 !important;
}

.elementor-element-04wlagu .icon span {
    display: inline !important;
}

.pos-links-widget .links-widget-content,
.pos-links-widget .links-widget-content li,
.pos-links-widget .links-widget-content a {
    font-family: 'Kanit', sans-serif !important;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
}

.pos-title-widget .pos-subtitle {
    font-family: 'Kanit', sans-serif !important;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 400 !important;
    color: #000000 !important;
}

/* ============================================
   POPUP CARRELLO (Add to cart modal)
   ============================================ */

/* Titolo popup carrello */
#blockcart-modal .modal-title {
    font-size: 24px !important;
    line-height: 34px !important;
}

/* Nome prodotto popup carrello */
#blockcart-modal .h6,
#blockcart-modal h6,
#blockcart-modal .product-name {
    font-size: 18px !important;
    line-height: 28px !important;
}

/* Testo normale popup carrello */
#blockcart-modal .modal-body p,
#blockcart-modal .cart-content p,
#blockcart-modal .cart-products-count,
#blockcart-modal .modal-body strong,
#blockcart-modal .cart-content strong {
    font-size: 18px !important;
    line-height: 28px !important;
}

/* Bottone "Continua lo shopping" - nero con scritta bianca */
#blockcart-modal .btn-secondary {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

#blockcart-modal .btn-secondary:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}

/* ============================================
   PAGINA CARRELLO
   ============================================ */

/* Titoli intestazione carrello (Prodotto, Prezzo, Quantità, Prezzo totale) */
.cart-grid-body .cart-items-title {
    font-size: 24px !important;
    line-height: 34px !important;
}

/* Testo normale pagina carrello */
.cart-grid-body .product_name,
.cart-grid-body .product-price,
.cart-grid-body .price,
.cart-grid-body .h5,
.cart-grid-body .regular-price,
.cart-grid-body .discount,
.cart-grid-body .product-line-info,
.cart-grid-body .cart-item {
    font-size: 18px !important;
    line-height: 28px !important;
}

/* Bottone "Continua lo shopping" pagina carrello - nero */
.cart-grid-body > a.btn-primary {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.cart-grid-body > a.btn-primary:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
    border-color: #333333 !important;
}

#product-availability {
  font-weight: 500 !important;
}

.tabs {
  margin-top: 0;
}

.tabs .nav-tabs .nav-item .nav-link {
  font-weight: 500 !important;
}

.js-mailalert.text-center {
  display: flex !important;
  flex-wrap: wrap !important;
  column-gap: 10px !important;
  row-gap: 10px !important;
  align-items: center !important;
}

.js-mailalert.text-center > input[type="email"] {
  flex: 1 !important;
  min-width: 200px !important;
  height: 40px !important;
  padding: 8px 12px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  box-sizing: border-box !important;
}

.js-mailalert.text-center > .gdpr_consent_wrapper {
  order: 3 !important;
  width: 100% !important;
  margin-top: 5px !important;
}

.js-mailalert.text-center > button {
  order: 2 !important;
  height: 40px !important;
  padding: 8px 16px !important;
  font-size: 16px !important;
  line-height: 24px !important;
  box-sizing: border-box !important;
}

.h1.namne_details {
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
}

.block-categories {
  background-color: #f3f3f3;
  padding: 15px;
  border-radius: 8px;
}

.block-categories a.h6 {
  font-weight: 500;
}

/* ============================================
   MOBILE STYLES (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  /* Sezione icone servizi - Layout orizzontale */
  .elementor-element-nsytysu .elementor-row {
    display: flex;
    flex-direction: column;
  }

  .elementor-element-nsytysu .elementor-column {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .elementor-element-nsytysu .elementor-image-box-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .elementor-element-nsytysu .elementor-image-box-img {
    flex-shrink: 0;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .elementor-element-nsytysu .elementor-image-box-content {
    flex: 1;
  }

  .elementor-element-nsytysu .elementor-image-box-title {
    margin: 0;
    text-align: left;
  }

  /* Categories slider - Show dots */
  .categories-container .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 15px;
  }

  .categories-container .slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
    padding: 0;
    font-size: 0;
    cursor: pointer;
  }

  .categories-container .slick-dots li.slick-active button {
    background: #006642 !important;
  }

  /* Mail alert form - Stack elements vertically */
  .js-mailalert {
    display: flex;
    flex-direction: column;
  }

  .js-mailalert input.form-control {
    width: 100%;
    margin-bottom: 10px;
  }

  .js-mailalert button {
    width: 100%;
  }

  /* Product listing - Display & Sort on same row */
  .row.flex-layout.center-vertical {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .row.flex-layout.center-vertical > .total-products {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
  }

  .row.flex-layout.center-vertical .total-products p {
    display: none;
  }

  .row.flex-layout.center-vertical > .col-sm-8 {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin-left: auto !important;
  }

  .row.flex-layout.center-vertical .sort-by-row {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .row.flex-layout.center-vertical .products-sort-order {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .row.flex-layout.center-vertical .products-sort-order .select-title {
    font-size: 13px;
    padding: 5px 10px;
  }

  .products-sort-order.dropdown .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    max-width: calc(100vw - 30px);
  }

  /* List view - Reorder: wishlist/compare on same row, cart below */
  #js-product-list .product_content.list .add-to-links {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px;
    padding: 0.5px !important;
  }

  #js-product-list .product_content.list .add-to-links li:not(.cart) {
    order: 1 !important;
    display: inline-flex !important;
  }

  #js-product-list .product_content.list .add-to-links li.cart {
    order: 2 !important;
    width: 100% !important;
    flex-basis: 100% !important;
    border: none !important;
    border-top: none !important;
  }

  #js-product-list .product_content.list .add-to-links li.cart *,
  #js-product-list .product_content.list .add-to-links li.cart::before,
  #js-product-list .product_content.list .add-to-links li.cart::after {
    border: none !important;
  }

  #js-product-list .product_content.list .add-to-links li.cart .product-add-to-cart,
  #js-product-list .product_content.list .add-to-links li.cart form {
    width: 100% !important;
  }

  #js-product-list .product_content.list .add-to-links li.cart button.add-to-cart,
  #js-product-list .product_content.list .add-to-links li.cart button.ajax_add_to_cart_button,
  #js-product-list .product_content.list .add-to-links li.cart span.ajax_add_to_cart_button {
    width: 100% !important;
    height: auto !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
  }

  #js-product-list .product_content.list .js-product-miniature .product_desc .product-desc {
    padding: 20px 0;
  }

  #js-product-list .product_content.list .product-desc,
  #js-product-list .product_content.list .product-desc * {
    font-family: 'Kanit', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  #js-product-list .product_content.list .availability,
  #js-product-list .product_content.list .availability * {
    font-size: 16px !important;
  }

  /* Mobile menu - Reset to vertical accordion style */
  #mobile_menu_wrapper {
    background: #ffffff !important;
  }

  #mobile_menu_wrapper .menu-close {
    background: #ffffff !important;
    color: #000000 !important;
    border-bottom: 1px solid #eee;
  }

  #mobile_menu_wrapper .menu-close i {
    color: #000000 !important;
  }

  #mobile_menu_wrapper .mobile-menu,
  #mobile_menu_wrapper .pos-menu-horizontal {
    background: #ffffff !important;
  }

  #mobile_menu_wrapper .menu-content {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
  }

  #mobile_menu_wrapper .menu-content > .menu-item {
    display: block !important;
    width: 100% !important;
    float: none !important;
    position: relative !important;
    border-bottom: 1px solid #eee !important;
    background: #ffffff !important;
  }

  #mobile_menu_wrapper .menu-content > .menu-item > a {
    display: block !important;
    padding: 15px !important;
    color: #000000 !important;
    font-size: 20px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
  }

  #mobile_menu_wrapper .icon-drop-mobile {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }

  #mobile_menu_wrapper .icon-drop-mobile i {
    color: #000000 !important;
    font-size: 20px !important;
  }

  /* Submenu dropdown - vertical accordion */
  #mobile_menu_wrapper .pos-sub-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  #mobile_menu_wrapper .pos-sub-inner {
    background: #ffffff !important;
    padding: 0 !important;
  }

  #mobile_menu_wrapper .pos-menu-row {
    display: block !important;
    width: 100% !important;
  }

  #mobile_menu_wrapper .pos-menu-col {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }

  #mobile_menu_wrapper .ul-column {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }

  #mobile_menu_wrapper .submenu-item {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    border-bottom: none !important;
  }

  /* Hide duplicate parent link in submenu, keep subcategories visible */
  #mobile_menu_wrapper .submenu-item > a,
  #mobile_menu_wrapper .submenu-item > .icon-drop-mobile {
    display: none !important;
  }

  /* Show subcategories directly when parent menu is open */
  #mobile_menu_wrapper .pos-sub-menu[style*="display: block"] .category-sub-menu,
  #mobile_menu_wrapper .pos-sub-menu[style*="display:block"] .category-sub-menu {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    padding: 0 !important;
    width: 100% !important;
  }

  #mobile_menu_wrapper .category-sub-menu li {
    display: block !important;
    width: 100% !important;
    float: none !important;
    background: #ffffff !important;
  }

  #mobile_menu_wrapper .category-sub-menu li:last-child {
    border-bottom: none !important;
  }

  #mobile_menu_wrapper .category-sub-menu a {
    display: block !important;
    width: 100% !important;
    padding: 0 0 0 25px !important;
    color: #000000 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    background: #ffffff !important;
    border: none !important;
  }

  /* Hide desktop-specific elements (yellow triangle, underline, etc.) */
  #mobile_menu_wrapper .menu-item:before,
  #mobile_menu_wrapper .menu-item:after,
  #mobile_menu_wrapper .menu-item a:before,
  #mobile_menu_wrapper .menu-item a:after,
  #mobile_menu_wrapper .category-sub-menu li:before,
  #mobile_menu_wrapper .category-sub-menu li:after,
  #mobile_menu_wrapper .category-sub-menu a:before,
  #mobile_menu_wrapper .category-sub-menu a:after,
  #mobile_menu_wrapper .menu .menu-dropdown::after,
  #mobile_menu_wrapper .menu-single .menu-dropdown::after,
  #mobile_menu_wrapper .menu-more .menu-dropdown::after {
    display: none !important;
    content: none !important;
  }

  #mobile_menu_wrapper a,
  #mobile_menu_wrapper a:hover,
  #mobile_menu_wrapper a:focus,
  #mobile_menu_wrapper a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    background-image: none !important;
  }

  /* Homepage banners - Same height on mobile */
  .elementor-element-ovgfjcn .elementor-column {
    width: 100% !important;
  }

  .elementor-element-ovgfjcn .home-banner {
    height: 200px !important;
    overflow: hidden;
  }

  .elementor-element-ovgfjcn .home-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Form registrazione mobile - nascondi checkbox optin e customer_privacy */
  .form-group:has(input[name="optin"]),
  .form-group:has(input[name="customer_privacy"]) {
    display: none !important;
  }

  /* Form registrazione mobile - riordina campi */
  #customer-form > div {
    display: flex !important;
    flex-direction: column !important;
  }

  #customer-form .form-group {
    order: 1 !important;
  }

  #customer-form .form-group:has(input[type="file"]) {
    order: 2 !important;
  }

  #customer-form .form-group:has(input[name="psgdpr"]),
  #customer-form .form-group:has(input[name="newsletter"]) {
    order: 3 !important;
  }

  /* Checkbox GDPR e newsletter - testo accanto su mobile */
  .custom-checkbox label {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }

  .custom-checkbox input[type="checkbox"] + span {
    flex-shrink: 0 !important;
  }
}
/* ============================================
   END MOBILE STYLES
   ============================================ */

/* Hide "Non disponibile" availability text in product cards */
.product-miniature .availability .availability-list.out-of-stock {
    display: none !important;
}

/* Category description "Read more" toggle */
.block-category-inner {
    display: flex;
    flex-direction: column;
}

#category-description.category-description-collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

#category-description.category-description-collapsed::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 40px !important;
    background: linear-gradient(to bottom, transparent, #fff) !important;
    pointer-events: none !important;
}

#category-description.category-description-expanded {
    max-height: none !important;
    overflow: visible !important;
}

#category-description.category-description-expanded::after {
    display: none !important;
}

a.category-read-more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 10px !important;
    padding: 0 !important;
    color: #333 !important;
    background: none !important;
    border: none !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

a.category-read-more .category-read-more-text {
    text-decoration: underline !important;
}

a.category-read-more .category-read-more-arrow {
    display: inline-block !important;
    font-size: 10px !important;
    text-decoration: none !important;
    margin-left: 4px !important;
}

a.category-read-more:hover {
    color: #4caf50 !important;
}




/* Hide undefined text in category product cards */
#js-product-list .product_desc .add-to-links,
#js-product-list .product_desc .product-desc {
    display: none !important;
}

/* Category product card - Add to cart button (usa stili globali definiti sopra) */
#js-product-list .product_desc .cart-category {
    margin-top: 10px;
}

/* Disabled button categoria - stesso stile homepage */
#js-product-list .product_desc .cart-category .ajax_add_to_cart_button.disabled,
#js-product-list .product_desc .cart .ajax_add_to_cart_button.disabled,
#js-product-list .product_desc .cart span.ajax_add_to_cart_button.disabled {
    background-color: #B0BEC5 !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 3px !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

#js-product-list .product_desc .cart-category .ajax_add_to_cart_button.disabled:hover,
#js-product-list .product_desc .cart .ajax_add_to_cart_button.disabled:hover {
    background-color: #B0BEC5 !important;
    color: #000 !important;
}


/* Category product cards - uniform height */
#js-product-list .product_content.grid {
    display: flex;
    flex-wrap: wrap;
}

#js-product-list .product_content.grid .item-product {
    display: flex;
}

#js-product-list .product_content.grid .item-product article.js-product-miniature {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#js-product-list .product_content.grid .item-product .product_desc {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#js-product-list .product_content.grid .item-product .inner_desc {
    flex-grow: 1;
}

#js-product-list .product_content.grid .item-product .inner_desc h3 {
    height: 3.2em;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

#js-product-list .product_content.grid .item-product .availability {
    min-height: 24px;
}

#js-product-list .product_content.grid .item-product .cart {
    margin-top: auto;
}


/* Cart button full width */
#js-product-list .product_desc .cart {
    width: 100%;
}

#js-product-list .product_desc .cart .product-add-to-cart,
#js-product-list .product_desc .cart form.add-to-cart-or-refresh {
    width: 100%;
}

#js-product-list .product_desc .cart .add-to-cart,
#js-product-list .product_desc .cart .ajax_add_to_cart_button {
    display: block;
    width: 100%;
    text-align: center;
    /* Stili (colore, padding, font) ereditati dalla regola globale con !important */
}

#js-product-list .product_desc .cart .ajax_add_to_cart_button.disabled,
#js-product-list .product_desc .cart span.ajax_add_to_cart_button {
    display: block;
    width: 100%;
    text-align: center;
    /* Stili disabled ereditati dalla regola globale con !important */
}

/* Show availability for in-stock products, hide for out of stock */
#js-product-list .product_desc .availability {
    display: block !important;
    margin-top: 20px;
    margin-bottom: 20px;
}

#js-product-list .product_desc .availability .availability-list {
    font-size: 0.875rem;
    text-transform: capitalize;
    color: #777777;
    line-height: 1;
    display: block;
}

#js-product-list .product_desc .availability .availability-list span {
    font-weight: 700;
}

#js-product-list .product_desc .availability .availability-list.out-of-stock {
    display: none !important;
}

/* Product page - checkmark icon style */
.product-stock-quantity,
#product-availability {
    display: flex;
    align-items: center;
}

.product-stock-quantity .icon-rt-checkmark,
#product-availability .icon-rt-checkmark {
    font-size: 1.2em;
    font-weight: bold;
    color: #28a745;
    margin-right: 5px;
}

/* Product page - disabled buttons style - stesso stile globale */
.product-add-to-cart .btn.add-to-cart:disabled,
.product-add-to-cart .btn.add-to-cart.disabled,
.product-add-to-cart .btn.buy-now:disabled {
    background-color: #B0BEC5 !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 3px !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

.product-add-to-cart .btn.add-to-cart:disabled:hover,
.product-add-to-cart .btn.add-to-cart.disabled:hover {
    background-color: #B0BEC5 !important;
    color: #000000 !important;
}

.payment-detail {
  padding: 15px !important;
  margin: 30px 0 !important;
}


/* ============================================
   HEADER MOBILE - Forza visibilità
   ============================================ */
@media (max-width: 767px) {
    .headermobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ============================================
   PRODUCT CARDS - Slider styling
   ============================================ */

/* Bottone aggiungi al carrello - full width con bordo verde */
.slick-slide .product-miniature .cart .add-to-cart,
.slick-slide .product-miniature .cart .ajax_add_to_cart_button {
    width: 100% !important;
    border: 2px solid #4FB68D !important;
    margin-bottom: 15px !important;
}

/* Nome prodotto - line-height fissa per uniformare altezza card */
.slick-slide .product-miniature .product_desc h3,
.slick-slide .product-miniature .product_desc h3 .product_name {
    line-height: 1.4 !important;
    min-height: 2.8em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* ============================================
   PRODUCT CARDS - Slider styling (fix)
   ============================================ */

/* Bottone aggiungi al carrello - full width con bordo verde */
.pos-product-widget .product-miniature .cart .add-to-cart,
.pos-product-widget .product-miniature .cart .ajax_add_to_cart_button,
.pos-product-widget .product-miniature .cart form,
.slick-slider .product-miniature .cart .add-to-cart,
.slick-slider .product-miniature .cart .ajax_add_to_cart_button,
.slick-slider .product-miniature .cart form {
    width: 100% !important;
    display: block !important;
}

.pos-product-widget .product-miniature .cart .add-to-cart,
.pos-product-widget .product-miniature .cart .ajax_add_to_cart_button,
.slick-slider .product-miniature .cart .add-to-cart,
.slick-slider .product-miniature .cart .ajax_add_to_cart_button {
    border: 2px solid #4FB68D !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
}

/* Anche per span disabled */
.pos-product-widget .product-miniature .cart span.ajax_add_to_cart_button.disabled,
.slick-slider .product-miniature .cart span.ajax_add_to_cart_button.disabled {
    width: 100% !important;
    display: block !important;
    border: 2px solid #4FB68D !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
    text-align: center;
    padding: 10px;
}

/* Nome prodotto - line-height fissa per uniformare altezza card */
.pos-product-widget .product-miniature .product_desc h3,
.pos-product-widget .product-miniature .product_desc .product_name,
.slick-slider .product-miniature .product_desc h3,
.slick-slider .product-miniature .product_desc .product_name {
    line-height: 1.4 !important;
    min-height: 2.8em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* ============================================
   PRODUCT CARDS - Bordo verde sulle card
   ============================================ */

/* Bordo verde sulle card */
.pos-product-widget .product-miniature,
.slick-slider .product-miniature {
    border: 2px solid #4FB68D !important;
    box-sizing: border-box !important;
}

/* Rimuovi bordo dai bottoni (correzione) */
.pos-product-widget .product-miniature .cart .add-to-cart,
.pos-product-widget .product-miniature .cart .ajax_add_to_cart_button,
.slick-slider .product-miniature .cart .add-to-cart,
.slick-slider .product-miniature .cart .ajax_add_to_cart_button,
.pos-product-widget .product-miniature .cart span.ajax_add_to_cart_button.disabled,
.slick-slider .product-miniature .cart span.ajax_add_to_cart_button.disabled {
    border: none !important;
}

/* ============================================
   PRODUCT CARDS - Margin top bottone + riordino elementi
   ============================================ */

/* Bottone: margin-top invece di margin-bottom */
.pos-product-widget .product-miniature .cart .add-to-cart,
.pos-product-widget .product-miniature .cart .ajax_add_to_cart_button,
.slick-slider .product-miniature .cart .add-to-cart,
.slick-slider .product-miniature .cart .ajax_add_to_cart_button,
.pos-product-widget .product-miniature .cart span.ajax_add_to_cart_button.disabled,
.slick-slider .product-miniature .cart span.ajax_add_to_cart_button.disabled {
    margin-bottom: 0 !important;
    margin-top: 15px !important;
}

/* Usa flexbox per riordinare: disponibilità sopra al bottone */
.pos-product-widget .product-miniature .product_desc,
.slick-slider .product-miniature .product_desc {
    display: flex !important;
    flex-direction: column !important;
}

.pos-product-widget .product-miniature .product_desc .availability,
.slick-slider .product-miniature .product_desc .availability {
    order: 2 !important;
}

.pos-product-widget .product-miniature .product_desc .cart,
.slick-slider .product-miniature .product_desc .cart {
    order: 3 !important;
}

.pos-product-widget .product-miniature .product_desc .inner_desc,
.slick-slider .product-miniature .product_desc .inner_desc {
    order: 1 !important;
}

.pos-product-widget .product-miniature .product_desc .variant-links,
.slick-slider .product-miniature .product_desc .variant-links {
    order: 4 !important;
}

/* ============================================
   PRODUCT CARDS - Forza visibilità disponibilità
   ============================================ */

/* Mostra disponibilità in pos-product-widget (Nuovi prodotti) */
.pos-product-widget .product-miniature .availability,
.pos-product-widget .product-miniature .availability .availability-list,
.pos-product-widget .product-miniature .availability .availability-list.in-stock,
.pos-product-widget .product-miniature .availability .availability-list.out-of-stock {
    display: block !important;
    visibility: visible !important;
}

/* ============================================
   PRODUCT CARDS - Disponibilità solo se in stock
   ============================================ */

/* Mostra disponibilità SOLO se in-stock */
.pos-product-widget .product-miniature .availability .availability-list.in-stock {
    display: block !important;
}

/* Nascondi disponibilità se out-of-stock */
.pos-product-widget .product-miniature .availability .availability-list.out-of-stock {
    display: none !important;
}

/* ============================================
   PRODUCT CARDS - Margini e altezza uniforme
   ============================================ */

/* Margine disponibilità */
.pos-product-widget .product-miniature .product_desc .availability,
.slick-slider .product-miniature .product_desc .availability {
    margin: 1.875rem 0 0 0 !important;
    min-height: 1.5em !important; /* Occupa spazio anche se vuota */
}

/* Margine bottone */
.pos-product-widget .product-miniature .cart .add-to-cart,
.pos-product-widget .product-miniature .cart .ajax_add_to_cart_button,
.pos-product-widget .product-miniature .cart span.ajax_add_to_cart_button.disabled,
.slick-slider .product-miniature .cart .add-to-cart,
.slick-slider .product-miniature .cart .ajax_add_to_cart_button,
.slick-slider .product-miniature .cart span.ajax_add_to_cart_button.disabled {
    margin-bottom: 0 !important;
    margin-top: 15px !important;
}

/* ============================================
   PRODUCT PAGE MOBILE - Layout bottoni
   ============================================ */
@media (max-width: 767px) {
    /* Container principale grid */
    .product-add-to-cart .product-quantity {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 10px 10px !important;
        align-items: center !important;
    }

    /* Riga 1 colonna 1: Quantità */
    .product-add-to-cart .product-quantity > .qty {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: auto !important;
        float: none !important;
        margin: 0 !important;
    }

    /* Riga 1 colonna 2: Aggiungi al carrello */
    .product-add-to-cart .product-quantity > .add {
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }

    .product-add-to-cart .product-quantity > .add .add-to-cart {
        width: 100% !important;
    }

    /* Riga 2: Wishlist e Confronta */
    .product-add-to-cart .product-quantity > .cart_button {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        display: flex !important;
        gap: 15px;
        margin: 0 !important;
    }

    /* Riga 3: Acquista Ora */
    .product-add-to-cart .product-quantity > .buy {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    /* Wishlist e Confronta - icone più grandi */
    .product-add-to-cart .cart_button #wishlist_button i,
    .product-add-to-cart .cart_button .poscompare-add i {
        font-size: 28px !important;
    }

    /* ============================================
       CART PAGE MOBILE - Quantità e Prezzo sulla stessa riga
       ============================================ */
    .cart-container .product-line-grid-right .row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }

    /* Prezzo unitario su riga propria */
    .cart-container .product-line-grid-right .product-price-and-shipping {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    /* Quantità e Prezzo totale sulla stessa riga */
    .cart-container .product-line-grid-right .qty {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
    }

    .cart-container .product-line-grid-right .price {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: none !important;
        text-align: right !important;
        padding-right: 10px !important;
    }

    /* Elimina su una riga separata o inline */
    .cart-container .product-line-grid-right .text-xs-right {
        flex: 0 0 auto !important;
        width: auto !important;
    }

    /* ============================================
       CHECKOUT FORM MOBILE - Layout campi
       ============================================ */

    /* Form group - layout verticale */
    #customer-form .form-group.row {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Label sopra - full width */
    #customer-form .form-group .form-control-label {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 5px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Input sotto - full width */
    #customer-form .form-group .col-md-8 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Nascondi colonna commento vuota */
    #customer-form .form-group .col-md-2.form-control-comment {
        display: none !important;
    }

    /* Checkbox - allineamento corretto a sinistra */
    #customer-form .form-group .custom-checkbox label {
        display: flex !important;
        align-items: flex-start !important;
        text-align: left !important;
        flex-wrap: wrap !important;
        font-size: 16px !important;
    }

    #customer-form .form-group .custom-checkbox span:first-of-type {
        flex-shrink: 0 !important;
        margin-right: 10px !important;
    }

    /* PSGDPR checkbox - testo accanto alla checkbox, non sotto */
    #customer-form .form-group:has(input[name="psgdpr"]) .custom-checkbox label,
    #customer-form .form-group label[for="field-psgdpr"] {
        flex-wrap: nowrap !important;
    }

    /* Il testo del titolo (dopo lo span del checkbox) */
    #customer-form .form-group .custom-checkbox label > br {
        display: none !important;
    }

    /* Descrizione in em - su riga separata */
    #customer-form .form-group .custom-checkbox label em {
        display: block !important;
        width: 100% !important;
        margin-top: 5px !important;
        font-size: 16px !important;
        color: #666 !important;
        line-height: 1.4 !important;
    }

    /* ============================================
       LOGIN FORM MOBILE - Layout campi
       ============================================ */

    /* Form group - layout verticale */
    #login-form .form-group.row {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Label sopra - full width */
    #login-form .form-group .form-control-label {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 5px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Input sotto - full width */
    #login-form .form-group .col-md-8 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Nascondi colonna commento vuota */
    #login-form .form-group .col-md-2.form-control-comment {
        display: none !important;
    }

    /* ============================================
       ADDRESS FORM MOBILE - Layout campi
       ============================================ */

    /* Form group - layout verticale */
    .js-address-form .form-group.row {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Label sopra - full width con flex per allineare "Opzionale" a destra */
    .js-address-form .form-group.row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .js-address-form .form-group .form-control-label {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: none !important;
        margin-bottom: 5px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* "(Opzionale)" allineato a destra, sulla stessa riga della label */
    .js-address-form .form-group .col-md-2.form-control-comment {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 5px !important;
        text-align: right !important;
        order: 0 !important;
        font-size: 0.85em !important;
        color: #666 !important;
    }

    /* Input sotto - full width su nuova riga */
    .js-address-form .form-group .col-md-8 {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        order: 1 !important;
    }

    /* ============================================
       DELIVERY OPTIONS MOBILE - Logo a sinistra, testi a destra
       ============================================ */

    /* Rimuove space-between del tema */
    body#checkout .delivery-options .delivery-option,
    body#checkout .delivery-options .delivery-option label > .row,
    body#checkout .delivery-options .delivery-option .carrier {
        justify-content: flex-start !important;
    }

    /* Layout flex */
    .delivery-option label.delivery-option-2 > .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Colonna logo */
    .delivery-option label.delivery-option-2 > .row > .col-sm-5 {
        flex: 0 0 60px !important;
        width: 60px !important;
        padding: 0 !important;
    }

    .delivery-option .carrier-logo {
        width: 60px !important;
        padding: 0 !important;
    }

    .delivery-option .carrier-logo img {
        width: 60px !important;
        height: auto !important;
    }

    /* Nasconde container nome originale (nome spostato via JS) */
    .delivery-option .carriere-name-container {
        display: none !important;
    }

    /* Colonna testi (nome + tempo) */
    .delivery-option label.delivery-option-2 > .row > .col-sm-4 {
        flex: 1 1 auto !important;
        width: auto !important;
        padding: 0 0 0 20px !important;
    }

    /* Nome corriere (spostato qui via JS) */
    .delivery-option .col-sm-4 .carrier-name {
        display: block !important;
        font-weight: 600 !important;
        margin-bottom: 2px !important;
    }

    /* Colonna prezzo - tutto a destra */
    .delivery-option label.delivery-option-2 > .row > .col-sm-3 {
        flex: 0 0 auto !important;
        width: auto !important;
        padding: 0 !important;
        text-align: right !important;
        margin-left: auto !important;
    }

    .delivery-option .carrier-delay {
        font-size: 13px !important;
    }

    .delivery-option .carrier-price {
        font-weight: 600 !important;
    }
}

/* ============================================
   CATEGORY PRODUCTS SLIDER - Card uniformi
   ============================================ */

/* Card stessa altezza nello slider */
.categoryproducts .product_categoryslide .product-miniature {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.categoryproducts .product_categoryslide .slick-slide > div {
    height: 100% !important;
}

.categoryproducts .product_categoryslide .slick-slide > div > div {
    height: 100% !important;
}

.categoryproducts .product_categoryslide .product_desc {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.categoryproducts .product_categoryslide .inner_desc {
    flex: 1 !important;
}

/* Forza visibilità disponibilità */
.categoryproducts .product_categoryslide .availability,
.categoryproducts .product_categoryslide .availability .availability-list,
.categoryproducts .product_categoryslide .availability .availability-list.in-stock {
    display: block !important;
    visibility: visible !important;
}

/* Disponibilità visibile con stile coerente */
.categoryproducts .product_categoryslide .availability {
    min-height: 30px !important;
    margin: 10px 0 !important;
}

.categoryproducts .product_categoryslide .availability .availability-list {
    font-size: 13px !important;
}

.categoryproducts .product_categoryslide .availability .in-stock span {
    color: #666 !important;
    font-weight: 400 !important;
}

.categoryproducts .product_categoryslide .availability .out-of-stock span {
    color: #dc3545 !important;
}

/* Nascondi solo se out-of-stock (come nelle altre card) */
.categoryproducts .product_categoryslide .availability .availability-list.out-of-stock {
    display: none !important;
}

/* Bottone in fondo */
.categoryproducts .product_categoryslide .cart {
    margin-top: auto !important;
}

/* Bordo verde come le altre card */
.categoryproducts .product_categoryslide .product-miniature {
    border: 1px solid #4FB68D !important;
    border-radius: 4px !important;
}

/* ============================================
   CATEGORY PRODUCTS SLIDER - Mobile: 1 card + dots
   ============================================ */
@media (max-width: 767px) {
    /* Una sola card visibile su mobile */
    .categoryproducts .product_categoryslide .slick-slide {
        width: 100% !important;
        max-width: 100% !important;
    }

    .categoryproducts .product_categoryslide .slick-track {
        display: flex !important;
    }

    .categoryproducts .product_categoryslide .slick-slide > div {
        width: 100% !important;
        padding: 0 10px !important;
    }

    /* Mostra dots */
    .categoryproducts .product_categoryslide .slick-dots {
        display: flex !important;
        justify-content: center !important;
        padding: 15px 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .categoryproducts .product_categoryslide .slick-dots li {
        margin: 0 5px !important;
    }

    .categoryproducts .product_categoryslide .slick-dots li button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: #ccc !important;
        border: none !important;
        padding: 0 !important;
        font-size: 0 !important;
        cursor: pointer !important;
    }

    .categoryproducts .product_categoryslide .slick-dots li.slick-active button {
        background: #4FB68D !important;
    }

    /* Dots limitati: nascondi tutti, mostra solo .dot-visible */
    .categoryproducts .product_categoryslide .slick-dots li {
        display: none !important;
        transition: transform 0.3s ease, opacity 0.3s ease !important;
    }

    .categoryproducts .product_categoryslide .slick-dots li.dot-visible {
        display: inline-block !important;
    }

    .categoryproducts .product_categoryslide .slick-dots li.dot-small button {
        width: 7px !important;
        height: 7px !important;
        opacity: 0.6 !important;
    }

    /* Nascondi frecce su mobile */
    .categoryproducts .product_categoryslide .slick-prev,
    .categoryproducts .product_categoryslide .slick-next {
        display: none !important;
    }

    /* =====================================================
       SIDEBAR MOBILE - Bottone filtri
       ===================================================== */

    /* Wrapper bottone categorie */
    .mobile-filters-wrapper {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Bottone per aprire la sidebar */
    .mobile-filters-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 10px 15px;
        background: #4FB68D;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
    }

    .mobile-filters-toggle i {
        font-size: 18px;
    }

    /* Mostra il conteggio prodotti su mobile */
    .total-products .hidden-sm-down {
        display: block !important;
        font-size: 16px;
        color: #666;
        margin-bottom: 8px;
    }

    /* Nascondi sidebar di default su mobile */
    #left-column {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        padding: 60px 15px 15px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    /* Sidebar aperta */
    #left-column.sidebar-open {
        display: block;
        transform: translateX(0);
    }

    /* Bottone chiudi dentro la sidebar */
    .sidebar-close-btn {
        position: fixed;
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Overlay scuro dietro sidebar */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    .sidebar-overlay.active {
        display: block;
    }

    /* Nascondi elementi non necessari nella sidebar mobile */
    #left-column .advertising-block,
    #left-column #tags_block {
        display: none;
    }
}

/* Cover prodotto ridotta e centrata */
.product-cover .cover-item {
    width: 65% !important;
    margin: 0 auto;
    display: block !important;
}

/* Rende cliccabile l'intera sezione categoria */
.category-item .style1 {
    position: relative;
}

.category-item .style1 .category-content a.name::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.category-item .style1:hover {
    cursor: pointer;
}

/* Stili prodotto non disponibile (stock = 0) */
.product-actions:has(.product-add-buttons.hidden) {
    padding-top: 10px !important;
}

.product-actions:has(.product-add-buttons.hidden) .product-add-to-cart {
    padding-top: 0 !important;
}

/* Rimuove margin-bottom dalla descrizione breve se prodotto non disponibile */
.product-description-short:has(+ .product-actions .product-add-buttons.hidden),
[id^="product-description-short"]:has(+ .product-actions .product-add-buttons.hidden) {
    margin-bottom: 0 !important;
}

/* Fallback: se la descrizione è dentro un contenitore che contiene anche product-actions */
.col-md-6:has(.product-add-buttons.hidden) .product-description-short,
.col-md-6:has(.product-add-buttons.hidden) [id^="product-description-short"],
.product-rightside:has(.product-add-buttons.hidden) .product-description-short,
.product-rightside:has(.product-add-buttons.hidden) [id^="product-description-short"] {
    margin-bottom: 0 !important;
}

/* Pagine CMS - testo nero (solo nel contenuto principale) */
#content.page-cms,
#content.page-cms p,
#content.page-cms span,
#content.page-cms li,
#content.page-cms td,
#content.page-cms th,
#content.page-cms strong {
    color: #000000 !important;
}

/* Pagina conferma ordine (thank you page) - testo nero */
.page-order-confirmation,
.page-order-confirmation .card-block,
.page-order-confirmation p,
.page-order-confirmation span,
.page-order-confirmation li,
.page-order-confirmation td,
.page-order-confirmation th,
.page-order-confirmation em,
#content-hook_order_confirmation,
#content-hook_order_confirmation .card-block,
#content-hook_order_confirmation p,
#content-hook_order_confirmation span,
#content-hook_order_confirmation li,
#order-items,
#order-items .details span,
#order-items .qty,
#order-details,
#order-details ul li {
    color: #000000 !important;
}

/* Pagina autenticazione professionale (lpsproaccount) - testo nero */
.module-lpsproaccount-proauthentication #content,
.module-lpsproaccount-proauthentication #content p,
.module-lpsproaccount-proauthentication #content span,
.module-lpsproaccount-proauthentication #content li,
.module-lpsproaccount-proauthentication #content label,
.module-lpsproaccount-proauthentication .page-content,
.module-lpsproaccount-proauthentication .page-content p,
.module-lpsproaccount-proauthentication .page-content span {
    color: #000000 !important;
}

/* Nascondi checkbox optin e customer_privacy nel form registrazione */
.form-group:has(input[name="optin"]),
.form-group:has(input[name="customer_privacy"]),
.form-group:has(label[for="field-optin"]),
.form-group:has(label[for="field-customer_privacy"]) {
    display: none !important;
}

/* Fallback per browser senza supporto :has() - nascondi contenuto */
#customer-form label[for="field-optin"],
#customer-form label[for="field-optin"] + div,
#customer-form label[for="field-optin"] ~ div,
#customer-form label[for="field-customer_privacy"],
#customer-form label[for="field-customer_privacy"] + div,
#customer-form label[for="field-customer_privacy"] ~ div,
#customer-form input[name="optin"],
#customer-form input[name="customer_privacy"] {
    display: none !important;
}

/* Margin bottom per checkbox GDPR */
.form-group:has(input[name="psgdpr"]) {
    margin-bottom: 10px !important;
}

/* Riordina campi form registrazione - checkbox in fondo */
#customer-form > div {
    display: flex !important;
    flex-direction: column !important;
}

/* Ordine elementi: campi normali (order: 1), allegato (order: 2), checkbox (order: 3) */
#customer-form .form-group {
    order: 1 !important;
}

/* Allegato prima delle checkbox */
#customer-form .form-group:has(input[type="file"]) {
    order: 2 !important;
}

/* Checkbox in fondo (newsletter e GDPR) */
#customer-form .form-group:has(input[name="psgdpr"]),
#customer-form .form-group:has(input[name="newsletter"]) {
    order: 3 !important;
}

/* Allinea testo em della newsletter al testo principale */
#customer-form .form-group:has(input[name="newsletter"]) .custom-checkbox label em {
    display: block !important;
    margin-left: 28px !important;
    margin-top: 5px !important;
}

/* ============================================
   NEWSLETTER FOOTER - GDPR CHECKBOX
   ============================================ */
.pos-newsletter-widget .gdpr_consent,
.pos-newsletter-form .gdpr_consent {
    margin-top: 10px !important;
    width: 100% !important;
    clear: both !important;
}

.pos-newsletter-widget .gdpr_consent .custom-checkbox,
.pos-newsletter-form .gdpr_consent .custom-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
}

.pos-newsletter-widget .gdpr_consent .custom-checkbox label,
.pos-newsletter-form .gdpr_consent .custom-checkbox label,
.pos-newsletter-widget .psgdpr_consent_message,
.pos-newsletter-form .psgdpr_consent_message {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #666 !important;
    cursor: pointer !important;
    position: relative !important;
    padding-left: 28px !important;
}

/* Checkbox icon - sovrascrive position:absolute del checkout */
.pos-newsletter-widget .gdpr_consent .custom-checkbox span,
.pos-newsletter-form .gdpr_consent .custom-checkbox span,
body#checkout .pos-newsletter-widget .gdpr_consent .custom-checkbox span,
body#checkout .pos-newsletter-form .gdpr_consent .custom-checkbox span {
    position: static !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* Primo span - icona checkbox */
.pos-newsletter-widget .gdpr_consent .custom-checkbox label > span:first-of-type,
.pos-newsletter-form .gdpr_consent .custom-checkbox label > span:first-of-type,
body#checkout .pos-newsletter-widget .gdpr_consent .custom-checkbox label > span:first-of-type,
body#checkout .pos-newsletter-form .gdpr_consent .custom-checkbox label > span:first-of-type {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
}

/* Secondo span - testo privacy */
.pos-newsletter-widget .gdpr_consent .custom-checkbox label > span:last-of-type,
.pos-newsletter-form .gdpr_consent .custom-checkbox label > span:last-of-type,
body#checkout .pos-newsletter-widget .gdpr_consent .custom-checkbox label > span:last-of-type,
body#checkout .pos-newsletter-form .gdpr_consent .custom-checkbox label > span:last-of-type {
    position: static !important;
    flex: 1 !important;
    white-space: normal !important;
    text-align: left !important;
}

/* Input checkbox nascosto */
.pos-newsletter-widget .gdpr_consent input[type="checkbox"],
.pos-newsletter-form .gdpr_consent input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1 !important;
}

/* Bottone Iscriviti newsletter - border radius destro */
.pos-newsletter-button,
.pos-newsletter-widget .pos-newsletter-button,
.pos-newsletter-form .pos-newsletter-button,
.pos-newsletter-button:disabled,
.pos-newsletter-button[disabled],
.pos-newsletter-widget .pos-newsletter-button:disabled,
.pos-newsletter-form .pos-newsletter-button:disabled {
    border-radius: 0 30px 30px 0 !important;
}
