/*!
 * 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;
}

/*----------HEADER----------*/



.elementor-widget-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 15px;
}

.elementor-element-wekgbcv .elementor-widget {
  flex-shrink: 0;
}

/* Stile per il box contatto - testo bianco e icona telefono */
.box-contact,
.box-contact .title-contact,
.box-contact .number-contact,
.box-contact .number-contact a,
#contact-link,
#contact-link a,
#contact-link span {
  color: white !important;
}

/* Box contatto con layout flex per allineare icona e contenuto */
.box-contact {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Icona telefono */
.box-contact .contact-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  width: auto !important;
}

.box-contact .contact-img i,
#contact-link i {
  color: white !important;
  font-size: 24px;
  margin: 0;
  line-height: 1;
}

/* Nascondi l'immagine se presente e mostra solo l'icona */
.box-contact .contact-img img {
  display: none !important;
}

/* Contenuto del box contatto */
.box-contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

/* Allineamento icone a destra con spaziatura uniforme */
.elementor-element-wekgbcv .elementor-widget-wrap {
  flex-wrap: nowrap !important;
  white-space: nowrap;
  justify-content: flex-end !important;
  gap: 10px !important;
}

/* Tutte le icone bianche nell'header */
.elementor-element-wekgbcv i,
.elementor-element-wekgbcv .wishlist-top-icon,
.elementor-element-wekgbcv .icon-rt-bag2,
.elementor-element-wekgbcv .icon-rt-heart2,
.elementor-element-wekgbcv .icon-rt-ios-shuffle-strong,
.compare-top i,
.wishlist-top i,
.blockcart i {
  color: white !important;
}

/* Testo bianco per compare, wishlist e cart */
.compare-top a,
.compare-top-text,
.wishlist-top a,
.wishlist-top-text,
.blockcart a,
.cart-products-total,
.cart-products-count {
  color: white !important;
}

/* Nascondi il conteggio della wishlist */
.wishlist-top-count {
  display: none !important;
}

/* Nascondi il testo "Wishlist" e "Compare" - mostra solo icone */
.wishlist-top-text,
.compare-top-text {
  display: none !important;
}

/* Nascondi completamente il widget Compare */
.elementor-widget-posCompare,
.elementor-element-dgwutqj,
div[data-id="dgwutqj"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Centra la barra di ricerca al centro della pagina */
.elementor-element-fefleeb .elementor-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Riduce dimensione immagine logo al 60% */
.elementor-element-svfnpiu .site-logo img {
  width: 60% !important;
  height: auto !important;
}

/* Barra di ricerca al centro - occupa spazio rimanente */
.elementor-element-tlnwjar {
  flex: 1 1 auto !important;
  display: flex !important;
  justify-content: center !important;
  padding: 0 20px !important;
}

/* Elementi destra - larghezza automatica */
.elementor-element-wekgbcv {
  flex: 0 0 auto !important;
  width: auto !important;
}

.elementor-element-tlnwjar .elementor-widget-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 auto;
}

.elementor-element-vyyfxkk {
  width: 100% !important;
  max-width: 100% !important;
}

/* Allinea in alto il menu "All Categories" */
.elementor-element-uerahut .elementor-column-wrap {
  display: flex !important;
  align-items: flex-start !important;
}

.elementor-element-uerahut .elementor-widget-wrap {
  width: 100% !important;
}

/* Pulsante slideshow - margine superiore 20px e testo su una riga */
.slideshow-button {
  margin-top: 20px !important;
  white-space: nowrap !important;
}

/* Banner button - stesso stile del slideshow button */
.banner-button {
  margin-top: 20px !important;
  margin-bottom: 15px !important;
  white-space: nowrap !important;
  display: inline-block !important;
  background-color: #104e82 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.banner-button:hover {
  background-color: #0d3e68 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Rimuovi la freccia a destra del banner button */
.banner-button::after {
  content: none !important;
  display: none !important;
}

/* Forza margin-bottom anche se è l'ultimo elemento */
.home-banner .banner-content .banner-button,
.home-banner .banner-content > *:last-child.banner-button {
  margin-bottom: 15px !important;
}

.elementor-element-yognaus .elementor-row {
  gap: 15px !important;
}

.elementor-element-nbprytx.elementor-column,
.elementor-element-zrqokno.elementor-column {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-element-nbprytx .elementor-column-wrap,
.elementor-element-zrqokno .elementor-column-wrap {
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Colonna sinistra - immagine grande */
.elementor-element-nbprytx .elementor-widget-wrap {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-element-garaape {
  max-height: 500px !important;
  height: 500px !important;
  width: 100% !important;
  display: flex !important;
  margin: 0 !important;
}

.elementor-element-garaape .elementor-widget-container {
  height: 100% !important;
  width: 100% !important;
  display: flex !important;
}

.elementor-element-garaape .home-banner {
  height: 100% !important;
  width: 100% !important;
}

.elementor-element-garaape .home-banner img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}

/* Scurisce le immagini per migliorare leggibilità testo */
.elementor-element-garaape .home-banner img,
.elementor-element-ydhgyau .home-banner img,
.elementor-element-g50uo4h .home-banner img {
  filter: brightness(0.55) !important;
}

/* Colonna destra - due immagini sovrapposte */
.elementor-element-zrqokno .elementor-widget-wrap {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  align-items: flex-start !important;
  gap: 15px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-element-ydhgyau,
.elementor-element-g50uo4h {
  width: 100% !important;
  max-height: 242.5px !important;
  height: 242.5px !important;
  display: flex !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.elementor-element-ydhgyau .elementor-widget-container,
.elementor-element-g50uo4h .elementor-widget-container {
  height: 100% !important;
  width: 100% !important;
  display: flex !important;
}

.elementor-element-ydhgyau .home-banner,
.elementor-element-g50uo4h .home-banner {
  height: 100% !important;
  width: 100% !important;
}

.elementor-element-ydhgyau .home-banner img,
.elementor-element-g50uo4h .home-banner img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}

/* Icone Font Awesome per gli elementi della riga - posizionate a fianco di tutto il contenuto */

/* Tutto materiale disponibile - icona cubes */
.elementor-element-fdodsis .elementor-image-box-wrapper {
  display: flex !important;
  align-items: flex-start !important;
  flex-direction: row !important;
}

.elementor-element-fdodsis .elementor-image-box-wrapper::before {
  font-family: "FontAwesome" !important;
  content: "\f1b3" !important;
  margin-right: 15px !important;
  display: inline-block !important;
  font-size: 32px !important;
  color: #104e82 !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* Assistenza tecnica specializzata - icona wrench */
.elementor-element-pfbobqd .elementor-image-box-wrapper {
  display: flex !important;
  align-items: flex-start !important;
  flex-direction: row !important;
}

.elementor-element-pfbobqd .elementor-image-box-wrapper::before {
  font-family: "FontAwesome" !important;
  content: "\f0ad" !important;
  margin-right: 15px !important;
  display: inline-block !important;
  font-size: 32px !important;
  color: #104e82 !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* Consulenza su misura - icona cogs */
.elementor-element-hmajptb .elementor-image-box-wrapper {
  display: flex !important;
  align-items: flex-start !important;
  flex-direction: row !important;
}

.elementor-element-hmajptb .elementor-image-box-wrapper::before {
  font-family: "FontAwesome" !important;
  content: "\f085" !important;
  margin-right: 15px !important;
  display: inline-block !important;
  font-size: 32px !important;
  color: #104e82 !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* Preventivi personalizzati - icona file */
.elementor-element-ggjffjf .elementor-image-box-wrapper {
  display: flex !important;
  align-items: flex-start !important;
  flex-direction: row !important;
}

.elementor-element-ggjffjf .elementor-image-box-wrapper::before {
  font-family: "FontAwesome" !important;
  content: "\f016" !important;
  margin-right: 15px !important;
  display: inline-block !important;
  font-size: 32px !important;
  color: #104e82 !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* Hover colore blu per link categorie "VEDI TUTTI" */
.category-item .category-content .link:hover {
  color: #104e82 !important;
}


.elementor-element-toldzjl {
  min-height: 400px !important;
  max-height: 400px !important;
  background-color: #ffffff !important;
  padding: 20px !important;
}

.elementor-element-toldzjl .home-banner {
  height: 400px !important;
  max-height: 400px !important;
  position: relative;
  overflow: hidden;
  border-radius: 40px !important;
  background-color: #ffffff !important;
}

.elementor-element-toldzjl .home-banner img {
  height: 400px !important;
  max-height: 400px !important;
  object-fit: cover !important;
  filter: brightness(0.7) !important;
  border-radius: 40px !important;
}

/* Rimosso gradiente scuro dal banner "La nostra storia" */
/*
.elementor-element-toldzjl .home-banner figcaption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}
*/

.elementor-element-toldzjl strong,
.elementor-element-toldzjl b {
  color: #FED801 !important;
  font-weight: 700 !important;
  font-size: 25px !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
}

.elementor-element-gelhfop {
  padding: 5px !important;
}

.elementor-column-wrap.elementor-element-populated:has(.elementor-element-gelhfop) {
  padding: 0px !important;
}

.elementor-element-hzfbbmp .main-menu .menu-content > li > a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 18px !important;
  margin: 0px 40px 0 0 !important; 
}

.elementor-element-hzfbbmp .main-menu .menu-content > li > a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.elementor-element-hzfbbmp .main-menu .menu-content > li > a span {
  color: #ffffff !important;
  text-decoration: none !important;
}

.elementor-element-hzfbbmp .main-menu .menu-dropdown a {
  color: #0d547b !important;
  text-decoration: none !important;
}

.elementor-element-hzfbbmp .main-menu .menu-dropdown a:hover {
  color: #0d547b !important;
  text-decoration: none !important;
}

.elementor-element-hzfbbmp .main-menu .menu-dropdown a span {
  color: #0d547b !important;
  text-decoration: none !important;
}

.elementor-element-hzfbbmp {
  padding: 0 !important;
}

.elementor-column-wrap.elementor-element-populated:has(.elementor-element-hzfbbmp) {
  padding: 10px 10px !important;
}

.elementor-element-ceqgvja {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 0 !important;
}

.elementor-element-ceqgvja .box-contact {
  margin: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}

.elementor-element-ceqgvja .contact-img {
  display: none !important;
}

.elementor-element-ceqgvja .contact-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px !important;
}

.elementor-element-svfnpiu,
.elementor-element-wekgbcv {
  width: 25% !important;
  max-width: 25% !important;
  flex: 0 0 25% !important;
}

.elementor-element-tlnwjar {
  width: 50% !important;
  max-width: 50% !important;
  flex: 0 0 50% !important;
}

.elementor-element-wekgbcv .elementor-widget-wrap {
  display: flex !important;
  gap: 40px !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.pos-slideshow .slider-item {
  border-radius: 50px !important;
  overflow: hidden !important;
}

.pos-slideshow .slideshow-item {
  border-radius: 50px !important;
  overflow: hidden !important;
}

.pos-menu-vertical .menu-content > li {
  border-left: 2px solid #0d547b !important;
  border-right: 2px solid #0d547b !important;
  border-top: none !important;
  border-bottom: none !important;
}

.pos-menu-vertical .menu-content > li:first-child {
  border-top: 2px solid #0d547b !important;
}

.pos-menu-vertical .menu-content > li:last-child {
  border-bottom: 2px solid #0d547b !important;
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  overflow: visible !important;
}

.pos-menu-vertical .menu-content > li:last-child > a {
  border-bottom-left-radius: 18px !important;
  border-bottom-right-radius: 18px !important;
}

.elementor-element-ti7ugc1 .elementor-column-wrap {
  align-items: flex-start !important;
}

.elementor-element-7hfvrc4 .elementor-row {
  align-items: flex-start !important;
}

.elementor-element-hcbkgsq .elementor-container {
  max-width: 1440px !important;
  width: 1440px !important;
}

.elementor-element-m4ldv4m .elementor-image,
.elementor-element-m4ldv4m .elementor-widget-container,
.elementor-element-m4ldv4m figure {
  max-height: 600px !important;
  height: 600px !important;
  max-width: 700px !important;
  width: 700px !important;
  overflow: hidden !important;
  display: block !important;
}

.elementor-element-m4ldv4m img {
  max-height: 600px !important;
  height: 600px !important;
  max-width: 700px !important;
  width: 700px !important;
  object-fit: cover !important;
  display: block !important;
}

.elementor-element-n1k3979 .elementor-image,
.elementor-element-n1k3979 .elementor-widget-container,
.elementor-element-n1k3979 figure {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  overflow: hidden !important;
  display: block !important;
}

.elementor-element-n1k3979 img {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.elementor-element-6kxp7z6 .elementor-column-wrap {
  align-items: flex-start !important;
}

.elementor-element-534meze .elementor-column-wrap {
  align-items: flex-start !important;
}

.elementor-element-rze5jdh li {
  list-style-type: disc !important;
  margin-left: 20px !important;
  text-align: left !important;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
  line-height: 1.5 !important;
}

.elementor-element-rze5jdh li br {
  display: none !important;
}

.elementor-element-rze5jdh li:last-child {
  list-style-type: none !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
}

.elementor-element-rze5jdh .elementor-heading-title {
  text-align: left !important;
}

.elementor-element-coxba34 .elementor-image,
.elementor-element-coxba34 .elementor-widget-container,
.elementor-element-coxba34 figure {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  overflow: hidden !important;
  display: block !important;
}

.elementor-element-coxba34 img {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.elementor-element-lnyvxhr ul {
  list-style-type: disc !important;
  margin-left: 20px !important;
  padding-left: 0 !important;
}

.page-content.page-cms ul {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #000000 !important;
  text-align: left !important;
  margin-bottom: 10px !important;
  line-height: 1.5 !important;
}

.elementor-element-odda9tv .elementor-column-wrap,
.elementor-element-foqw84w .elementor-column-wrap {
  align-items: flex-start !important;
}

.elementor-element-coxba34 .elementor-image,
.elementor-element-coxba34 .elementor-widget-container,
.elementor-element-coxba34 figure {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  overflow: hidden !important;
  display: block !important;
}

.elementor-element-coxba34 img {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.page-title-wrapper {
  background-image: url('/img/cms/chi%20siamo/background-chi-siamo.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  margin-bottom: 10px !important;
}

.elementor-element-v7jnsyx .elementor-column-wrap,
.elementor-element-wvwmhpf .elementor-column-wrap {
  align-items: flex-start !important;
}

.elementor-element-9vv55ee .elementor-image,
.elementor-element-9vv55ee .elementor-widget-container,
.elementor-element-9vv55ee figure {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  max-width: 700px !important;
  width: 700px !important;
  overflow: hidden !important;
  display: block !important;
}

.elementor-element-9vv55ee img {
  max-height: 600px !important;
  min-height: 600px !important;
  height: 600px !important;
  max-width: 700px !important;
  width: 700px !important;
  object-fit: cover !important;
  display: block !important;
}

.elementor-element-g98j5qm ul {
  list-style-type: disc !important;
  margin-left: 20px !important;
  padding-left: 0 !important;
}

.elementor-element-g98j5qm li {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #000000 !important;
  text-align: left !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

.box-contact .number-contact {
  color: #000000 !important;
}

.box-contact .title-contact,
.box-contact .contact-img i {
  color: #000000 !important;
}

.elementor-element-ceqgvja .box-contact .title-contact,
.elementor-element-ceqgvja .box-contact .number-contact,
.elementor-element-ceqgvja .box-contact .contact-img i {
  color: #FFFFFF !important;
}

.elementor-1010000 .elementor-element.elementor-element-f46x22j .elementor-image img {
  max-width: 20% !important;
}

.elementor-element-cwoqmri {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pos-brand-widgets .brand-item img {
  max-width: 45% !important;
  width: auto !important;
  height: auto !important;
}

/* Override padding colonne elementor */
.elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 5px !important;
}

/* Fix sottomenu verticale */
.pos-menu-vertical .menu-content > li:last-child {
  overflow: visible !important;
}

.pos-menu-vertical .menu-content .menu-item:hover > .pos-sub-menu.menu-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Immagine banner "La nostra storia" - altezza 250px, larghezza 100% */
.elementor-element-46fzioq .home-banner img {
  width: 100% !important;
  max-height: 320px !important;
}

/* Sfondo menu sticky scroll */
.elementor-element-ykzxlrf {
  background-color: #0D547B !important;
}

/* Evidenziazione strong */
strong {
  font-weight: 700 !important;
  color: #0D547B !important;
}

/* Immagine crema.jpg - larghezza piena */
.elementor-element-xqwl6bu img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

@media (max-width: 767px) {
  ul li,
  ol li {
    font-size: 12px !important;
  }

  .elementor-element-dpfigcz .blockcart a,
  .elementor-element-dpfigcz .icon-rt-bag2 {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 29px !important;
    color: #0D547B !important;
  }

  .elementor-element-dpfigcz .cart-products-total {
    display: none !important;
  }

  .quickmenu-mobile {
    display: none !important;
  }

  .elementor-element-kglznql {
    display: block !important;
  }

  #header,
  header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .elementor-image-carousel .slick-slide-inner {
    height: 250px !important;
  }

  .elementor-image-carousel .slick-slide-image {
    width: 100% !important;
    height: 270px !important;
    object-fit: cover !important;
  }

  .elementor-hidden-tablet, .elementor-hidden-phone {
    background: none !important;
  }

  .elementor-slick-slider .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
  }

  .popup_cart.popup-dropdown {
    display: none !important;
  }

  .elementor-widget-image-carousel .elementor-slick-slider ul.slick-dots {
    margin: 6px 0 0 0 !important;
  }

  .elementor-element-garaape,
  .elementor-element-ydhgyau,
  .elementor-element-g50uo4h {
    height: 250px !important;
    max-height: 250px !important;
  }

  .elementor-element-garaape .home-banner,
  .elementor-element-ydhgyau .home-banner,
  .elementor-element-g50uo4h .home-banner {
    height: 250px !important;
  }

  .elementor-element-garaape .home-banner img,
  .elementor-element-ydhgyau .home-banner img,
  .elementor-element-g50uo4h .home-banner img {
    height: 250px !important;
    object-fit: cover !important;
  }

  .elementor-element-hqcbboh,
  .elementor-element-hqcbboh .elementor-widget-container,
  .elementor-element-hqcbboh .elementor-image-box-wrapper {
    width: 100% !important;
    margin-left: 2px;
  }
  .elementor-1010000 .elementor-element.elementor-element-3k7eolp,
  .elementor-1010000 .elementor-element.elementor-element-mryzzbp {
    padding: 5px !important;
  }

  .elementor-element-qom4kai .elementor-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .elementor-element-qom4kai .elementor-column {
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0 5px !important;
  }

  .elementor-element-20bszy4 .elementor-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .elementor-element-20bszy4 .elementor-column {
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0 8px !important;
  }

  .elementor-element-jarmazx,
  .elementor-element-y71l3g5,
  .elementor-element-21n8c9d {
    display: none !important;
  }

  .elementor-element-20bszy4 img {
    max-width: 50px !important;
    height: auto !important;
  }

  .elementor-element-20bszy4 .pos-socials-widget i {
    font-size: 28px !important;
  }

  .elementor-element-20bszy4 {
    width: 100% !important;
  }

  .elementor-element-20bszy4 > .elementor-container {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .elementor-element-20bszy4 .elementor-container > .elementor-row {
    width: auto !important;
    margin: 0 auto !important;
  }

  .elementor-element-fbkpjfo {
    text-align: center !important;
    width: 100% !important;
  }

  .elementor-element-fbkpjfo .elementor-widget-container {
    display: flex !important;
    justify-content: center !important;
  }

  .elementor-1010000 .elementor-element.elementor-element-ruzmgvt > .elementor-widget-container {
    margin-bottom: 0 !important;
  }

  .elementor-1010000 .elementor-element.elementor-element-xkszerv .pos-links-widget,
  .elementor-1010000 .elementor-element.elementor-element-phjzohc .pos-links-widget,
      .elementor-1010000 .elementor-element.elementor-element-dgeahpv {
        padding: 5px;
      }
  a.nav-link[href="#tab-mobile-vegamenu"],
  a.nav-link[href="#tab-mobile-megamenu"],
  .menu-item.menu-item2 {
    display: none !important;
  }

  .menu-item a span,
  .menu-item .column_title,
  .submenu-item a,
  .ul-column a,
  .category-sub-menu a {
    text-transform: uppercase !important;
  }

  .has-quickmenu #footer {
    padding-bottom: 0 !important;
  }
}

.slick-prev,
.slick-next {
  border: 1px solid #595959 !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
  color: #595959 !important;
}
.slick-prev:hover,
.slick-next:hover {
  color: #ffffff !important;
}
.slick-slider .slick-prev:before, .slick-slider .slick-next:before {
  font-size: 12px !important;
  color: #595959 !important;
}
.slick-slider .slick-prev:hover:before, .slick-slider .slick-next:hover:before {
  color: #ffffff !important;
}

/* === Fix contrasto accessibilità - manufacturer link === */
.js-product-miniature .product_desc .manufacturer a {
  color: #595959 !important;
}

/* === Fix contrasto accessibilità - prezzo barrato === */
.js-product-miniature .product_desc .regular-price {
  color: #595959 !important;
}

/* Prezzo barrato pagina prodotto */
.desktop-product-prices .product-prices .regular-price,
.mobile-product-prices .product-prices .regular-price,
#product .product-prices .regular-price {
  color: #595959 !important;
}

/* Etichetta tasse/spedizione pagina prodotto */
.desktop-product-prices .tax-shipping-delivery-label,
.mobile-product-prices .tax-shipping-delivery-label,
#product .product-prices .tax-shipping-delivery-label {
  color: #595959 !important;
}

/* Tab prodotto - fix contrasto */
#product .tabs .nav-tabs .nav-link {
  color: #595959 !important;
}
#product .tabs .nav-tabs .nav-link.active {
  color: #000000 !important;
}

/* === Fix contrasto accessibilità - menu sticky/header scuro === */
.elementor-element-ykzxlrf .menu-item a span,
.elementor-element-fdxoqge .menu-item a span,
.menu-item2.menu_initialized a span {
  color: #ffffff !important;
}

/* === Fix contrasto accessibilità - contatore prodotti categorie === */
.category-content .count {
  color: #595959 !important;
}

/* === Fix contrasto accessibilità - totale prodotti in lista === */
.total-products p {
  color: #595959 !important;
}

/* === Fix contrasto accessibilità - input form === */
.form-control,
input.form-control,
textarea.form-control {
  color: #595959 !important;
}
.form-control::placeholder {
  color: #595959 !important;
  opacity: 1;
}

/* === Fix contrasto accessibilità - sezione Elementor mobile con sfondo #80a5ba === */
.elementor-element-2nzzt3b {
  background-color: #4a7a94 !important;
}

/* === Fix contrasto accessibilità - Footer testo (#7a7a7a su #efefef = 3.73:1) === */
.elementor-element-3k7eolp .elementor-text-editor p,
.elementor-element-3k7eolp .elementor-text-editor span,
.elementor-element-mryzzbp .elementor-text-editor p,
.elementor-element-mryzzbp .elementor-text-editor span {
  color: #595959 !important;
}

.current-price-value {
  font-weight: 700 !important;
  color: #0D547B !important;
}

.blockreassurance_product,
.product-additional-info .social-sharing {
  display: none !important;
}

/* Nascondere pulsanti hover prodotti slider */
.slick-slide .product-miniature .add-to-links,
.slick-slide .product-miniature .quick-view,
.slick-slide .product-miniature .addToWishlist {
  display: none !important;
}

.form-control-select {
  border: 1px solid #253237 !important;
}

.product-variants-item .form-control-select,
.product-variants-item ul {
  margin: 0 !important;
  color: #555151 !important;
}
.payment-detail {
  padding: 20px !important;
}

.nav-tabs {
  display: flex !important;
  justify-content: center !important;
}

.nav-tabs .nav-item:nth-child(1) {
  order: 2 !important;
}

.nav-tabs .nav-item:nth-child(2) {
  order: 1 !important;
}

.nav-tabs .nav-item:nth-child(3) {
  order: 3 !important;
}

.product-information .product-description {
  margin-bottom: 0 !important;
}

#product .product-description h4 {
  margin-bottom: 0;
}

.product-information .product-description {
  padding: 15px 0;
}

#tags_block {
  display: none !important;
}

#category-description {
  font-size: 20px !important;
}

/* Descrizione categoria - paragrafo 18px su desktop */
@media (min-width: 768px) {
  #category-description p {
    font-size: 18px !important;
  }
}

.block-category h2.h1 {
  font-size: 25px !important;
}

.product-price-and-shipping {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.product-price-and-shipping .regular-price {
  order: 1 !important;
  text-align: left !important;
  font-size: 15px;
}

.product-price-and-shipping .price-sale {
  order: 2 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0D547B !important;
}

.product-price-and-shipping .discount-percentage {
  order: 3 !important;
  text-align: right !important;
}

ul.display {
  display: none !important;
}

.desc_contact {
  font-size: 22px;
  margin-bottom: 35px;
}

#contact #wrapper .container {
  display: flex !important;
  flex-direction: column !important;
}

#contact #wrapper .container > .section .desc_contact {
  display: none !important;
}

#contact #wrapper .container > .section {
  order: 2 !important;
}

/* Nascondere titolo "Contattaci" nel form */
#contact .col-md-9.col-md-offset-3 h3 {
  display: none !important;
}

/* Header mobile - menu e ricerca sulla stessa riga */
@media (max-width: 767px) {
  .elementor-element-r5tfbfi .elementor-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .elementor-element-r5tfbfi .elementor-col-33 {
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
    margin-right: 15px;
  }

  .elementor-element-r5tfbfi .elementor-col-66 {
    width: auto !important;
    flex: 1 1 auto !important;
    padding: 0 !important;
  }

  .elementor-element-r5tfbfi .elementor-column-wrap {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .elementor-element-r5tfbfi .elementor-widget-wrap {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Bordo ricerca mobile - input e pulsante */
  .elementor-element-r5tfbfi .pos-search__input {
    border: 1px solid #0d547b !important;
  }

  .elementor-element-r5tfbfi .pos-search__submit {
    border: 1px solid #0d547b !important;
  }

  /* Altezza ricerca mobile */
  .elementor-element-r5tfbfi .pos-search__input,
  .elementor-element-r5tfbfi .pos-search__submit {
    height: 38px !important;
  }
}

/* Sezione caratteristiche - allineamento su mobile */
@media (max-width: 767px) {
  /* Primo elemento - forzare icona a sinistra come gli altri */
  .elementor-element-fdodsis .elementor-image-box-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
  }

  .elementor-element-fdodsis .elementor-image-box-img {
    flex: 0 0 auto !important;
    margin-right: 15px !important;
    margin-bottom: 0 !important;
  }

  .elementor-element-fdodsis .elementor-image-box-content {
    flex: 1 !important;
    text-align: left !important;
    margin-left: -9px !important;
  }

  .elementor-element-mgwtecz .elementor-image-box-title,
  .elementor-element-mgwtecz .elementor-image-box-description {
    text-align: left !important;
  }

  /* Consulenza su misura - allineamento */
  .elementor-element-hmajptb .elementor-image-box-content {
    margin-left: -5px !important;
  }

  /* Banner rivenditore Sandvic Coromant - mobile */
  .elementor-element-2nzzt3b {
    background-color: #4a7a94 !important;
    padding: 15px 10px !important;
    margin-top: -5px;
  }

  .elementor-element-2nzzt3b .elementor-heading-title {
    text-align: center !important;
    font-size: 16px !important;
  }

  .elementor-element-2nzzt3b .elementor-heading-title strong {
    color: #ffffff !important;
  }

  /* Descrizione categoria mobile */
  #category-description p {
    font-size: 16px !important;
    margin-bottom: 0 !important;
  }

  /* Sort by / Ordina per - mobile */
  .sort-by-row .select-title,
  .sort-by-row .dropdown-menu a,
  .sort-by-row .filter-button .btn {
    font-size: 16px !important;
  }

  /* Form contattaci - label mobile */
  .form-fields .form-group .form-control-label,
  .form-fields .form-group .form-control-comment,
  .form-fields .form-group .form-control,
  .form-fields .form-group select,
  .form-fields .form-group textarea,
  .form-fields .form-group input,
  .form-fields .form-group .btn,
  .form-fields .form-group .buttonText {
    font-size: 16px !important;
  }

  /* Dots slider mobile */
  .slick-slider-block .slick-dots {
    margin-top: 0px !important;
    margin-bottom: 10px !important;
  }

  /* Pulsante aggiungi al carrello mobile */
  button.ajax_add_to_cart_button.add-to-cart {
    padding: 10px 5px !important;
  }

  /* Nascondere titolo Newsletter su mobile */
  .elementor-element-fvttnbx h4.pos-title,
  .elementor-element-9zmtptn h4.pos-title {
    display: none !important;
  }

  .elementor-1010000 .elementor-element.elementor-element-9zmtptn .pos-subtitle {
    font-size: 18px !important;
    padding-top: 15px;
  }

  .block_newsletter form {
    padding-bottom: 20px;
  }

  /* Icona carrello mobile */
  .elementor-element-f1pf44l .icon-rt-bag2 {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #0d547b !important;
  }

}

/* Nascondere dots slider su desktop */
@media (min-width: 768px) {
  .slick-slider-block .slick-dots {
    display: none !important;
  }
}

/* Immagine Crema - altezza ridotta */
.elementor-element-j3pyxc1 .elementor-image img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
}

/* ========================================
   PAGINA PRODOTTO - RIORDINO MOBILE (CSS Flexbox)
   Ordine: Titolo - Immagine - Descrizione - Varianti - Prezzi - Qty+Cart+Wishlist - Tab
   Nascondere: Buy now, Social sharing, Blockreassurance, Payment detail
   ======================================== */
/* === Nascondere elementi duplicati mobile su DESKTOP === */
@media (min-width: 768px) {
  #product .mobile-product-title,
  #product .mobile-product-prices,
  #product .mobile-review-wishlist {
    display: none !important;
  }
}

/* === Nascondere elementi desktop su MOBILE === */
@media (max-width: 767px) {
  #product .desktop-product-prices,
  #product .desktop-product-description,
  #product .desktop-reviews {
    display: none !important;
  }
}

/* === Stile sezioni desktop riordinate === */
@media (min-width: 768px) {
  #product .desktop-product-prices {
    margin: 15px 0;
  }

  #product .desktop-product-description {
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  #product .desktop-reviews {
    margin: 15px 0;
  }
}

/* === Nascondere Buy Now su desktop e mobile === */
#product .product-add-to-cart .buy,
#product .product-quantity .buy {
  display: none !important;
}

/* === Nascondere solo il testo dentro payment-detail (globale) === */
.payment-detail p {
  display: none !important;
}

/* === Stile bottone Aggiungi al carrello === */
#product .product-actions .add-to-cart {
  background: #253237 !important;
  color: #FFF !important;
  border-color: #253237 !important;
}

/* ========================================
   PAGINA CARRELLO
   ======================================== */
/* === Nascondere bottone Continua lo shopping === */
#cart .cart-grid-body a[href="/"],
#cart .cart-grid-body a[href="https://utensileriamazzini.atrapoco.com/"],
.cart-detailed-actions a.btn-primary[href="/"],
.cart-detailed-actions a.btn-primary[href="https://utensileriamazzini.atrapoco.com/"] {
  display: none !important;
}

/* === Allineamento colonne carrello === */
#cart .cart-items .cart-items-title .row,
#cart .cart-items .cart-item .product-line-grid {
  display: flex;
  align-items: center !important;
}

/* Header e dati - stessa larghezza colonne */
#cart .cart-items .cart-items-title .product-line-grid-left,
#cart .cart-items .cart-item .product-line-grid-left {
  width: 41.66667% !important;
  flex: 0 0 41.66667% !important;
}

#cart .cart-items .cart-items-title .product-line-grid-right,
#cart .cart-items .cart-item .product-line-grid-right {
  width: 58.33333% !important;
  flex: 0 0 58.33333% !important;
}

/* Righe interne allineate */
#cart .cart-items .product-line-grid-right > .row {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

/* Colonne dati */
#cart .cart-items .product-line-grid-right .col-md-4 {
  width: 33.33% !important;
  flex: 0 0 33.33% !important;
  text-align: center !important;
}

#cart .cart-items .product-line-grid-right .col-md-3 {
  width: 25% !important;
  flex: 0 0 25% !important;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

#cart .cart-items .product-line-grid-right .col-md-3.qty .input-group,
#cart .cart-items .product-line-grid-right .col-md-3.qty .bootstrap-touchspin {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 auto !important;
}

#cart .cart-items .product-line-grid-right .col-md-1 {
  width: 8.33% !important;
  flex: 0 0 8.33% !important;
  text-align: right !important;
}

/* Allineamento verticale prezzo con sconto */
#cart .cart-items .product-price-and-shipping {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

#cart .cart-items .product-price-and-shipping .price {
  order: 1 !important;
}

#cart .cart-items .product-price-and-shipping .regular-price {
  order: 2 !important;
  font-size: 12px !important;
}

#cart .cart-items .product-price-and-shipping .discount-percentage {
  order: 3 !important;
}

@media (max-width: 767px) {

  /* Container principale come flexbox column */
  #product .product-container.product-layout1 {
    display: flex !important;
    flex-direction: column !important;
  }

  /* 1. Titolo mobile - PRIMO (nth-child(1)) */
  #product .product-container.product-layout1 > .mobile-product-title {
    order: 1 !important;
    width: 100% !important;
  }

  #product .mobile-product-title .namne_details {
    font-size: 18px !important;
    margin: 0 !important;
  }

  /* 2. Colonna immagini - ordine 2 (nth-child(2)) */
  #product .product-container.product-layout1 > div:nth-child(2) {
    order: 2 !important;
    width: 100% !important;
    padding: 0 15px !important;
    margin-bottom: 15px !important;
  }

  /* 3. Colonna info - ordine 3 (nth-child(3)) */
  #product .product-container.product-layout1 > div:nth-child(3) {
    order: 3 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Nascondere titolo desktop su mobile */
  #product .product-container.product-layout1 > div:nth-child(3) > .namne_details {
    display: none !important;
  }

  /* Nascondere recensioni/stelle su mobile */
  #product .product-container.product-layout1 > div:nth-child(3) > #product_comments_block_extra {
    display: none !important;
  }

  /* Nascondere prezzi desktop su mobile (usiamo quelli duplicati in .mobile-product-prices) */
  #product .product-container.product-layout1 > div:nth-child(3) > .js-product-prices,
  #product .product-container.product-layout1 > div:nth-child(3) > .product-prices {
    display: none !important;
  }

  /* Stile prezzi mobile */
  #product .mobile-product-prices {
    margin-bottom: 15px !important;
  }

  /* product-information come flexbox */
  #product .product-information {
    display: flex !important;
    flex-direction: column !important;
    order: 1 !important;
  }

  /* 3. Descrizione breve - primo in product-information */
  #product .product-information > .product-description,
  #product .product-information > [id^="product-description-short"] {
    order: 1 !important;
    margin-bottom: 0 !important;
    padding: 0 0 10px 0 !important;
  }

  /* product-actions come flexbox */
  #product .product-actions {
    order: 2 !important;
  }

  #product .product-actions form#add-to-cart-or-refresh {
    display: flex !important;
    flex-direction: column !important;
  }

  /* 4. Varianti */
  #product .product-actions .product-variants {
    order: 1 !important;
    margin-bottom: 0 !important;
  }

  /* 5. Prezzi mobile (duplicati dentro il form) */
  #product .product-actions .mobile-product-prices {
    order: 2 !important;
    margin-bottom: 0 !important;
  }

  #product .mobile-product-prices .product-prices {
    margin-top: 0 !important;
  }

  #product .mobile-product-prices .current-price-value {
    font-size: 25px !important;
  }

  /* 6. Riga Wishlist + Recensione mobile - spostata sotto add-to-cart */
  #product .product-actions .mobile-review-wishlist {
    order: 6 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 0 !important;
  }

  /* Wishlist a sinistra (order: 1) */
  #product .mobile-review-wishlist .mobile-wishlist-link {
    order: 1 !important;
    flex: 0 0 auto !important;
  }

  /* Wishlist - solo icona */
  #product .mobile-review-wishlist .mobile-wishlist-link a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    color: #333 !important;
    text-decoration: none !important;
  }

  #product .mobile-review-wishlist .mobile-wishlist-link a i {
    font-size: 30px !important;
  }

  /* Recensione a destra (order: 2) */
  #product .mobile-review-wishlist .mobile-review-link {
    order: 2 !important;
    flex: 0 0 auto !important;
  }

  #product .mobile-review-wishlist .mobile-review-link a {
    font-size: 16px !important;
    color: #333 !important;
    text-decoration: none !important;
  }

  #product .mobile-review-wishlist .mobile-review-link a::before {
    font-size: 20px !important;
  }

  #product .mobile-review-wishlist .mobile-review-link a:hover,
  #product .mobile-review-wishlist .mobile-wishlist-link a:hover {
    color: #000 !important;
  }

  /* Nascondere stelle/rating dentro mobile-review-link */
  #product .mobile-review-wishlist #product_comments_block_extra .comments_advices {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  /* Nascondere wishlist originale nel product-quantity su mobile */
  #product .product-add-to-cart .product-quantity .cart_button {
    display: none !important;
  }

  /* Sconti prodotto */
  #product .product-actions .product-discounts {
    order: 4 !important;
  }

  /* 7. Add to cart (Qty + Carrello) */
  #product .product-add-to-cart {
    order: 5 !important;
  }

  /* Riga Quantità + Carrello + Wishlist */
  #product .product-add-to-cart .product-quantity {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
  }

  #product .product-add-to-cart .product-quantity .qty {
    flex: 0 0 33.33% !important;
    order: 1 !important;
    margin-bottom: 0 !important;
  }

  #product .product-add-to-cart .product-quantity .qty input {
    width: 100% !important;
    text-align: center !important;
  }

  #product .product-add-to-cart .product-quantity .add {
    flex: 0 0 57.66% !important;
    order: 2 !important;
    margin-bottom: 0 !important;
  }

  #product .product-add-to-cart .product-quantity .add .add-to-cart {
    width: 100% !important;
    padding: 12px 10px !important;
    font-size: 16px !important;
  }

  #product .product-add-to-cart .product-quantity .cart_button {
    flex: 0 0 auto !important;
  }

  /* Wishlist - solo icona */
  #product .product-add-to-cart .cart_button a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    font-size: 0 !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
  }

  #product .product-add-to-cart .cart_button a i {
    font-size: 20px !important;
    color: #333 !important;
  }

  /* Nascondere Buy Now su mobile */
  #product .product-add-to-cart .buy,
  #product .product-quantity .buy {
    display: none !important;
  }

  /* Nascondere Social sharing / additional info su mobile */
  #product .product-additional-info,
  #product .social-sharing {
    display: none !important;
  }

  /* Nascondere Blockreassurance su mobile */
  #product .blockreassurance,
  #product [class*="reassurance"] {
    display: none !important;
  }

  /* Nascondere Payment detail su mobile */
  #product .payment-detail {
    display: none !important;
  }

  /* 7. Tab - ultimo */
  #product .product-container.product-layout1 > .col-md-12 {
    order: 10 !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }

  #product .product-tabs .nav-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
  }

  #product .product-tabs .nav-tabs .nav-item {
    flex: 0 0 auto !important;
    float: none !important;
    display: inline-block !important;
  }

  #product .product-tabs .nav-tabs .nav-link {
    font-size: 12px !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  #product .page-title-wrapper {
    padding: 0 0 10px 0 !important;
  }

  .tabs {
    margin-top: 20px !important;
  }

  .tabs .tab-content {
    padding: 0 !important;
  }

  .bootstrap-touchspin .input-group-btn-vertical i {
    font-size: 25px !important;
      font-weight: 300 !important;
      top: 5px !important;
      left: 5px !important;
  }
}

/* Checkout form - nasconde "opzionale" e aggiunge asterisco ai campi obbligatori */
.form-group .form-control-comment {
  display: none !important;
}

/* Asterisco per campi input normali */
.form-group label.form-control-label.required::after {
  content: " *";
  color: #e74c3c;
  font-weight: bold;
}

/* Nasconde asterisco per checkbox (gestito da JS) */
.form-group label.form-control-label.required.hide-asterisk::after,
.form-group .col-md-2 label.required.hide-asterisk::after,
label.required.hide-asterisk::after {
  content: none !important;
  display: none !important;
}

/* Stile asterisco checkbox (inserito da JS) */
.custom-checkbox .required-asterisk {
  color: #e74c3c;
  font-weight: bold;
  display: inline !important;
  position: static !important;
  float: none !important;
  margin-left: 0 !important;
}

/* Nasconde campo Complemento Indirizzo */
.form-group:has(#field-address2) {
  display: none !important;
}

/* Bottoni checkout (Continua e Invia l'ordine) */
button.continue.btn-primary,
button.btn-primary.center-block {
  background-color: #0d547b !important;
  color: #fff !important;
  border: 1px solid #0d547b !important;
}

button.continue.btn-primary:hover,
button.btn-primary.center-block:hover {
  background-color: #253237 !important;
  color: #fff !important;
  border: 1px solid #253237 !important;
}

/* Carrello Mobile Layout */
.product-line-grid-mobile {
  border-bottom: 1px solid #eee;
}

.product-line-grid-mobile .mobile-cart-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.product-line-grid-mobile .mobile-cart-header .product-image {
  width: 60px;
  flex: 0 0 60px;
  margin-right: 10px;
}

.product-line-grid-mobile .mobile-cart-header .product-image img {
  width: 100%;
  height: auto;
}

.product-line-grid-mobile .mobile-cart-title {
  flex: 1;
}

.product-line-grid-mobile .mobile-cart-title .product_name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: block;
}

.product-line-grid-mobile .mobile-cart-title .product-line-info {
  font-size: 14px;
  color: #666;
}

.product-line-grid-mobile .mobile-cart-delete {
  flex: 0 0 30px;
  text-align: right;
}

.product-line-grid-mobile .mobile-cart-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
}

.product-line-grid-mobile .mobile-cart-prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.product-line-grid-mobile .mobile-cart-prices .price {
  font-size: 18px;
  font-weight: 600;
  color: #0d547b;
  order: 2;
}

.product-line-grid-mobile .mobile-cart-prices .regular-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  order: 1;
}

.product-line-grid-mobile .mobile-cart-qty {
  width: auto;
}

/* Pulsanti touchspin carrello mobile - layout orizzontale */
.product-line-grid-mobile .bootstrap-touchspin {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}

.product-line-grid-mobile .bootstrap-touchspin > .form-control {
  order: 2;
  width: 50px !important;
  min-width: 50px;
  height: 36px;
  font-size: 16px;
  text-align: center;
  flex: 0 0 auto;
}

.product-line-grid-mobile .bootstrap-touchspin .input-group-btn-vertical {
  display: contents;
}

.product-line-grid-mobile .bootstrap-touchspin .bootstrap-touchspin-down {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 34px;
  padding: 0;
  margin-top: 0 !important;
  border-right: none !important;
}

.product-line-grid-mobile .bootstrap-touchspin .bootstrap-touchspin-up {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 34px;
  padding: 0;
  border-left: none !important;
}

/* Nascondi pulsante Acquista ora */
.product-add-to-cart .buy,
.buy .btn.buy-now {
  display: none !important;
}

/* Nascondi/mostra layout carrello desktop/mobile */
@media (max-width: 767px) {
  .cart-items .cart-item .product-line-grid,
  .cart-items .cart-item .product-line-grid.row,
  .cart-items li.cart-item .product-line-grid {
    display: none !important;
  }
  .product-line-grid-mobile {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .product-line-grid-mobile {
    display: none !important;
  }
}

/* Nascondi campo Titolo sociale (Sig./Sig.ra) */
.form-group:has(#field-id_gender-1),
.form-group:has([name="id_gender"]) {
  display: none !important;
}

/* Font size checkbox form checkout - mobile */
@media (max-width: 767px) {
  .custom-checkbox label {
    font-size: 15px;
  }
}

/* Stile sezione "Crea un account" - mobile */
@media (max-width: 767px) {
  .form-informations {
    margin-top: 20px;
  }
  .form-informations .form-informations-title {
    font-size: 16px;
  }
  .form-informations .form-informations-subtitle {
    font-size: 15px;
  }
}

/* Testo indirizzo checkout - mobile */
@media (max-width: 767px) {
  .checkout-step form > p:first-child,
  #delivery-addresses + p,
  .js-address-selector ~ p {
    font-size: 15px;
  }

  /* Link aggiungi indirizzo */
  .add-address,
  .add-address a {
    font-size: 15px;
  }

  /* Link indirizzo fatturazione diverso */
  a[data-link-action="different-invoice-address"] {
    font-size: 14px;
    text-decoration: underline;
  }

  /* Riepilogo carrello checkout - padding */
  .cart-grid-right .card-block,
  #js-checkout-summary .card-block {
    padding: 5px;
  }

  /* Riepilogo prodotti checkout - font sizes */
  #js-checkout-summary .media-body .product-name a {
    font-size: 16px;
  }
  #js-checkout-summary .media-body .product-quantity,
  #js-checkout-summary .media-body .product-line-info-secondary {
    font-size: 14px;
  }
  #js-checkout-summary .media-body .product-price {
    font-size: 18px;
  }

  /* Totali checkout - font sizes */
  #js-checkout-summary .cart-summary-subtotals .value {
    font-size: 20px;
  }
  #js-checkout-summary .cart-total .value {
    font-size: 22px;
  }

  /* Footer colonna info - margin bottom */
  .elementor-element-zgnwyxs {
    margin-bottom: 20px;
  }

  /* Footer links - font size */
  .links-widget-content li a {
    font-size: 16px;
  }

  /* Footer titoli sezioni - font size */
  .links-widget-title {
    font-size: 18px !important;
  }

  /* Footer immagine Crema - altezza ridotta */
  .elementor-element-n1k3979,
  .elementor-element-n1k3979 .elementor-widget-container,
  .elementor-element-n1k3979 .elementor-image {
    height: auto !important;
    min-height: auto !important;
    max-height: 150px !important;
  }
  .elementor-element-n1k3979 img {
    max-height: 150px !important;
    min-height: 150px !important;
    height: 150px !important;
    object-fit: cover !important;
  }

  /* Elementor testo ul li - font size */
  .elementor-text-editor ul li {
    font-size: 18px !important;
  }
}

/* Form checkout mobile - allineamento campi */
@media (max-width: 767px) {
  /* Layout verticale per i form-group */
  #customer-form .form-group,
  .js-customer-form .form-group,
  .checkout-step .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  /* Label sopra l'input a larghezza piena */
  #customer-form .form-group > label.form-control-label,
  .js-customer-form .form-group > label.form-control-label,
  .checkout-step .form-group > label.form-control-label {
    width: 100%;
    max-width: 100%;
    flex: none;
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.5rem;
    font-size: 16px;
  }

  /* Input a larghezza piena */
  #customer-form .form-group > .col-md-8,
  .js-customer-form .form-group > .col-md-8,
  .checkout-step .form-group > .col-md-8,
  #customer-form .form-group > .col-md-6,
  .js-customer-form .form-group > .col-md-6,
  .checkout-step .form-group > .col-md-6 {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  /* Input campo testo a larghezza piena */
  #customer-form .form-group input.form-control,
  .js-customer-form .form-group input.form-control,
  .checkout-step .form-group input.form-control,
  #customer-form .form-group select.form-control,
  .js-customer-form .form-group select.form-control,
  .checkout-step .form-group select.form-control {
    width: 100%;
    font-size: 16px;
  }

  /* Nascondi la colonna commento vuota */
  #customer-form .form-group > .form-control-comment,
  .js-customer-form .form-group > .form-control-comment,
  .checkout-step .form-group > .form-control-comment,
  #customer-form .form-group > .col-md-2:empty,
  .js-customer-form .form-group > .col-md-2:empty,
  .checkout-step .form-group > .col-md-2:empty {
    display: none;
  }

  /* Checkbox layout */
  #customer-form .form-group.custom-checkbox,
  .js-customer-form .form-group.custom-checkbox,
  .checkout-step .form-group.custom-checkbox {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
