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

/* ============================================================
   PRINT'IN — Menu & Header Overrides
   Adapted from Gift'In style with Print'In brand colors
   Primary: #0E356E (navy blue)
   Hover: #092a55 (dark navy)
   Font: Rubik
   ============================================================ */

/* -------------------------------------------------------
   0. HIDE VERTICAL MENU + SLIDESHOW FULL WIDTH
   ------------------------------------------------------- */
/* Cacher la colonne du menu vertical (à gauche du slideshow) */
.elementor-element.elementor-element-eyuazqn {
  display: none !important;
}
/* Slideshow en pleine largeur */
.elementor-element.elementor-element-hcmxmtd {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}
/* Section parent — pas de marge/padding qui limite */
.elementor-element.elementor-element-jasaaia > .elementor-container {
  max-width: 100% !important;
  padding: 0 !important;
}
/* Cacher aussi le titre vertical au cas où il apparaît ailleurs */
.pos-menu-vertical,
.pos-menu-vertical .title_vertical {
  display: none !important;
}

/* -------------------------------------------------------
   1. HEADER — Sticky header
   ------------------------------------------------------- */
#header .sticky-inner.scroll-menu {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

/* -------------------------------------------------------
   2. LOGO — Taille agrandie
   ------------------------------------------------------- */
#_desktop_logo .site-logo img {
  max-width: 150px !important;
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
}

/* -------------------------------------------------------
   3. ICÔNES — Transitions smooth
   ------------------------------------------------------- */
.elementor-widget-posAccount .pos-account > a,
.elementor-widget-posCart .blockcart > a {
  transition: color 0.3s ease !important;
}

/* -------------------------------------------------------
   4. MENU — Géré dans layout-both-columns.tpl (inline style)
   ------------------------------------------------------- */

/* -------------------------------------------------------
   5. SOUS-MENUS (dropdowns) — Style uniforme Poppins
   ------------------------------------------------------- */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .pos-sub-inner {
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(14, 53, 110, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  border-top: 3px solid #0E356E !important;
  border-radius: 0 0 10px 10px !important;
  padding: 22px 28px !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu .pos-sub-inner {
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(14, 53, 110, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  border-top: 3px solid #0E356E !important;
  border-radius: 0 0 10px 10px !important;
  padding: 12px 0 !important;
}

/* -------------------------------------------------------
   6. STYLE UNIFORME — column_title ET submenu-item > a (Poppins)
   ------------------------------------------------------- */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .column_title,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown a.column_title,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown h4.column_title {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #0E356E !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  line-height: 1.4 !important;
  margin-bottom: 14px !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #e8eef5 !important;
  display: block !important;
  transition: color 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown a.column_title:hover {
  color: #0363cd !important;
}

/* Liens de sous-catégories dans les dropdowns */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #555555 !important;
  text-transform: capitalize !important;
  line-height: 1.2 !important;
  display: block !important;
  padding: 3px 0 !important;
  margin: 0 !important;
  transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease !important;
  position: relative !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a:hover {
  color: #0E356E !important;
  padding-left: 8px !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a::before {
  content: "" !important;
  display: inline-block !important;
  width: 0 !important;
  height: 2px !important;
  background: #0E356E !important;
  vertical-align: middle !important;
  margin-right: 0 !important;
  transition: width 0.3s ease, margin-right 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a:hover::before {
  width: 10px !important;
  margin-right: 6px !important;
}

/* Sous-sous-catégories */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item .category-sub-menu a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  color: #777777 !important;
  text-transform: capitalize !important;
  line-height: 1.2 !important;
  display: block !important;
  padding: 2px 0 !important;
  margin: 0 !important;
  transition: color 0.3s ease, padding-left 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item .category-sub-menu a:hover {
  color: #0E356E !important;
  padding-left: 8px !important;
}

/* Flyout menu items */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #555555 !important;
  text-transform: capitalize !important;
  background: #ffffff !important;
  padding: 4px 15px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li {
  margin: 0 !important;
  padding: 0 !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li a:hover {
  color: #0E356E !important;
  background: #f5f8fc !important;
  padding-left: 20px !important;
}

/* -------------------------------------------------------
   7. ANIMATION UNIFORME — slideDown sur tous les dropdowns
   ------------------------------------------------------- */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown {
  padding-top: 0 !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu-dropdown.cat-drop-menu {
  padding-top: 0 !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu-dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-12px) !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease !important;
  margin-top: 0 !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* -------------------------------------------------------
   7b. BARRE DE RECHERCHE
   ------------------------------------------------------- */
.pos-search.search-dropdown .dropdown-menu {
  display: none !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  border-radius: 0 0 8px 8px !important;
  padding: 0 !important;
  min-width: 320px !important;
  right: 0 !important;
  left: auto !important;
}
.pos-search.search-dropdown.open .dropdown-menu,
.pos-search.search-dropdown .dropdown-menu.show {
  display: block !important;
}
.pos-search .pos-search__container {
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}
.pos-search .pos-search__container .pos-search__input {
  border: none !important;
  outline: none !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  color: #333 !important;
  padding: 8px 15px !important;
  background: #ffffff !important;
}
.pos-search .pos-search__container .pos-search__submit {
  background: #0E356E !important;
  color: #ffffff !important;
  border: none !important;
  padding: 8px 12px !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}
.pos-search .pos-search__container .pos-search__submit:hover {
  background: #092a55 !important;
}

/* -------------------------------------------------------
   8. MOBILE — Menu cohérent (style GiftIn)
   ------------------------------------------------------- */
#_mobile_megamenu {
  background: #ffffff !important;
}
#_mobile_megamenu .pos-menu-horizontal {
  background: #ffffff !important;
}
#_mobile_megamenu .pos-menu-horizontal .menu-item > a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #253237 !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  background: #ffffff !important;
  border-top: 1px solid #f0f0f0 !important;
  padding: 10px 20px !important;
  padding-right: 50px !important;
}
#_mobile_megamenu .pos-menu-horizontal .menu-item > a:hover {
  color: #0E356E !important;
}
#_mobile_megamenu .pos-menu-horizontal .menu-item li a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #555555 !important;
  text-transform: capitalize !important;
  background: #ffffff !important;
  border-top: 1px solid #f5f5f5 !important;
}
#_mobile_megamenu .pos-menu-horizontal .menu-item li a:hover {
  color: #0E356E !important;
}
#_mobile_megamenu .pos-menu-horizontal .menu-content .menu-item .column_title {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #333333 !important;
  text-transform: capitalize !important;
  background: #ffffff !important;
  border-top: 1px solid #f0f0f0 !important;
  margin-bottom: 0 !important;
  padding: 10px 20px 10px 30px !important;
}
#_mobile_megamenu .pos-menu-horizontal .menu-item .icon-drop-mobile i {
  color: #0E356E !important;
}

/* ============================================
   9. FOOTER PRINT'IN — fond blanc
   ============================================ */

/* Footer headings (generic) */
#footer h4,
#footer .footer-title {
  color: #222222 !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-bottom: 15px !important;
  position: relative !important;
  padding-bottom: 12px !important;
}
#footer h4::after,
#footer .footer-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 40px !important;
  height: 2px !important;
  background: #0E356E !important;
}

/* Footer links */
#footer a {
  color: #555555 !important;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif !important;
  transition: color 0.3s ease, padding-left 0.3s ease !important;
}
#footer a:hover {
  color: #0E356E !important;
  padding-left: 5px !important;
}

/* Footer social icons */
#footer .pos-social a {
  color: #777777 !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}
#footer .pos-social a:hover {
  color: #0E356E !important;
  transform: translateY(-2px) !important;
}

/* Footer text */
#footer .elementor-text-editor,
#footer .elementor-text-editor p {
  font-family: "Poppins", sans-serif !important;
  color: #555555 !important;
}
#footer .elementor-text-editor i.fa {
  color: #0E356E !important;
}

/* Footer copyright */
#footer .copyright {
  font-size: 13px !important;
  color: #999999 !important;
}
#footer .copyright a {
  color: #0E356E !important;
  text-decoration: none !important;
}
#footer .copyright a:hover {
  color: #092a55 !important;
}

/* Footer responsive */
@media (max-width: 767px) {
  #footer .elementor-column {
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  #footer h4::after,
  #footer .footer-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* ============================================
   10. MOBILE — Header, Menu, Bottom Nav (GiftIn style)
   ============================================ */

/* --- 10.1 Mobile Header — clean, sticky, logo centré --- */
@media (max-width: 991px) {
  /* Cacher les 2 premières rangées header desktop (top bar + search/logo/cart) */
  .elementor-element.elementor-element-hucobpz,
  .elementor-element.elementor-element-ftoshxt {
    display: none !important;
  }
  /* Menu bar : height:0 au lieu de display:none pour garder #_desktop_megamenu accessible */
  .elementor-element.elementor-element-zdbhpxp {
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    visibility: hidden !important;
    border: none !important;
  }
  #_desktop_megamenu {
    visibility: visible !important;
    display: block !important;
  }
  /* Header sticky — supprimer espace mort */
  #header {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: #fff !important;
  }
  #header.use-sticky {
    position: sticky !important;
  }
  /* Afficher la rangée mobile : hamburger + search + logo + account/cart */
  .elementor-element.elementor-element-evpwlqu {
    display: flex !important;
    background: #ffffff !important;
    padding: 8px 12px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
  }
  .elementor-element.elementor-element-evpwlqu > .elementor-container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    max-width: 100% !important;
    gap: 8px !important;
  }
  /* Bouton hamburger */
  #printin-hamburger {
    flex: 0 0 auto !important;
    order: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    width: 38px !important;
    height: 38px !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  #printin-hamburger i {
    font-size: 28px !important;
    color: #253237 !important;
  }
  #printin-hamburger:active i { color: #0E356E !important; }
  /* Colonne recherche — icône seule */
  .elementor-element.elementor-element-ewzyjuc {
    width: auto !important;
    flex: 0 0 auto !important;
    order: 1 !important;
  }
  .elementor-element-qwbhurg .pos-search__container {
    display: none !important;
  }
  .elementor-element-qwbhurg .pos-search__toggle {
    display: flex !important;
  }
  .elementor-element-qwbhurg .pos-search__toggle i {
    font-size: 24px !important;
    color: #253237 !important;
    border: none !important;
  }
  /* Colonne logo — centrée */
  .elementor-element.elementor-element-ebovnoc {
    flex: 1 !important;
    text-align: center !important;
    order: 2 !important;
    width: auto !important;
  }
  .elementor-element-qncmlch .site-logo img {
    max-width: 120px !important;
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
  }
  /* Colonne compte + panier — à droite */
  .elementor-element.elementor-element-zmykrpg {
    width: auto !important;
    flex: 0 0 auto !important;
    order: 3 !important;
  }
  .elementor-element-zmykrpg .elementor-widget-wrap,
  .elementor-element-zmykrpg .elementor-column-wrap .elementor-widget-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  /* Icône compte */
  .elementor-element-cedormf .pos-account > a {
    border: none !important;
    padding: 0 !important;
  }
  .elementor-element-cedormf .pos-account i {
    font-size: 24px !important;
    color: #253237 !important;
  }
  .elementor-element-cedormf .pos-account > a span,
  .elementor-element-cedormf .pos-account > a .pos-acc-title {
    display: none !important;
  }
  .elementor-element-cedormf > .elementor-widget-container {
    margin: 0 !important;
  }
  /* Icône panier */
  .elementor-element-wpjruyg .blockcart > a {
    color: #253237 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .elementor-element-wpjruyg .blockcart > a > i {
    font-size: 24px !important;
    color: #253237 !important;
  }
  .elementor-element-wpjruyg .blockcart > a .cart-products-total {
    display: none !important;
  }
  .elementor-element-wpjruyg .blockcart .cart-products-count {
    top: -4px !important;
    left: 16px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    background: #fdc839 !important;
    color: #253237 !important;
    font-weight: 700 !important;
  }
}
@media (max-width: 575px) {
  .elementor-element-qncmlch .site-logo img {
    max-width: 100px !important;
    max-height: 36px !important;
  }
}

/* --- 10.2 Mobile Side Menu — slide-in panel (GiftIn style) --- */
@media (max-width: 991px) {
  /* Overlay sombre */
  body.mobile-menu-open::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.45) !important;
    z-index: 1000 !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
  }
  body.mobile-menu-open {
    overflow: hidden !important;
  }
  /* Panel menu */
  #_desktop_megamenu {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    width: 300px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.12) !important;
    padding: 0 !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body.mobile-menu-open #_desktop_megamenu,
  #_desktop_megamenu.open-mobile-menu {
    left: 0 !important;
  }
  /* Close button du menu */
  .printin-menu-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    color: #fff !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
  }
  .printin-menu-close i {
    font-size: 22px !important;
    color: #fff !important;
  }
  /* Header du menu — géré par JS (.printin-menu-header), pas ::before */
  #_desktop_megamenu .pos-menu-horizontal::before {
    display: none !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content {
    padding: 0 !important;
    background: #ffffff !important;
  }
  /* Items de menu niveau 1 */
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item {
    display: block !important;
    border-bottom: 1px solid #f0f0f0 !important;
    position: relative !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a {
    display: flex !important;
    align-items: center !important;
    padding: 15px 50px 15px 20px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #253237 !important;
    text-transform: none !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
    fill: #253237 !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a:hover,
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.active > a,
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.home > a {
    color: #0E356E !important;
    background: #f5f7fa !important;
    border-left: none !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a span {
    font-size: 15px !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a i.icon-rt-arrow-down {
    display: none !important;
  }
  /* Toggle expand/collapse */
  #_desktop_megamenu .icon-drop-mobile {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 50px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 2 !important;
    border-left: 1px solid #f0f0f0 !important;
    transition: background 0.2s ease !important;
  }
  #_desktop_megamenu .icon-drop-mobile:active {
    background: #f0f4fa !important;
  }
  #_desktop_megamenu .icon-drop-mobile i {
    color: #0E356E !important;
    font-size: 22px !important;
    transition: transform 0.3s ease !important;
  }
  #_desktop_megamenu .icon-drop-mobile i.add { display: block !important; }
  #_desktop_megamenu .icon-drop-mobile i.remove { display: none !important; }
  #_desktop_megamenu .menu-item.open_menu > .icon-drop-mobile i.add,
  #_desktop_megamenu .pos-menu-col.open_menu > .icon-drop-mobile i.add,
  #_desktop_megamenu .open_menu > .icon-drop-mobile i.add { display: none !important; }
  #_desktop_megamenu .menu-item.open_menu > .icon-drop-mobile i.remove,
  #_desktop_megamenu .pos-menu-col.open_menu > .icon-drop-mobile i.remove,
  #_desktop_megamenu .open_menu > .icon-drop-mobile i.remove { display: block !important; }
  /* Sous-menus */
  #_desktop_megamenu .pos-sub-menu.menu-dropdown {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    background: #f8f9fb !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  #_desktop_megamenu .menu-item.open_menu > .pos-sub-menu.menu-dropdown,
  #_desktop_megamenu .menu-item.open_menu > .ul-column.column_dropdown {
    display: block !important;
  }
  #_desktop_megamenu .pos-sub-menu .column_title,
  #_desktop_megamenu .pos-sub-menu .pos-menu-col a {
    display: block !important;
    padding: 12px 20px 12px 35px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    border-bottom: 1px solid #eef0f3 !important;
    text-transform: none !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
  }
  #_desktop_megamenu .pos-sub-menu .column_title {
    font-weight: 600 !important;
    color: #0E356E !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 14px 20px 10px 35px !important;
    border-bottom: none !important;
  }
  #_desktop_megamenu .pos-sub-menu .pos-menu-col a:hover {
    color: #0E356E !important;
    padding-left: 42px !important;
    background: #e8eef6 !important;
  }
  #_desktop_megamenu .ul-column.column_dropdown {
    position: static !important;
    width: 100% !important;
    display: none !important;
    background: #f8f9fb !important;
  }
  #_desktop_megamenu .ul-column .pos-menu-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  #_desktop_megamenu .pos-sub-inner {
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  #_desktop_megamenu .pos-menu-row {
    margin: 0 !important;
  }
  /* Flyout cat-drop-menu mobile */
  #_desktop_megamenu .menu-dropdown.cat-drop-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: #f8f9fb !important;
  }
  #_desktop_megamenu .menu-dropdown.cat-drop-menu .pos-sub-inner {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  #_desktop_megamenu .menu-dropdown.cat-drop-menu li a {
    padding: 12px 20px 12px 35px !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-size: 14px !important;
  }
  body.mobile-menu-open .elementor-element-evpwlqu {
    z-index: 998 !important;
  }
}

/* --- 10.3 Bottom Navigation Bar (GiftIn style) --- */
.quickmenu-mobile {
  background: #ffffff !important;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.08) !important;
  border-top: none !important;
}
.quickmenu-mobile-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  padding: 6px 10px !important;
  height: 58px !important;
}
.quickmenu-mobile-wrapper > div,
.quickmenu-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 4px 6px !important;
  min-width: 50px !important;
  -webkit-tap-highlight-color: transparent !important;
  position: relative !important;
}
.quickmenu-item .block-icon {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
}
.quickmenu-item .block-icon svg {
  width: 22px !important;
  height: 22px !important;
  transition: transform 0.2s ease !important;
}
.quickmenu-item .block-icon img {
  width: 22px !important;
  height: 22px !important;
}
.quickmenu-item:active .block-icon svg {
  transform: scale(1.15) !important;
}
.quickmenu-item .block-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #999 !important;
  margin-top: 2px !important;
  transition: color 0.2s ease !important;
  white-space: nowrap !important;
}
.quickmenu-item:active .block-title,
.quickmenu-item:hover .block-title {
  color: #0E356E !important;
}
/* Badge panier */
.qm-count {
  position: absolute !important;
  top: -4px !important;
  right: -8px !important;
  width: 18px !important;
  height: 18px !important;
  font-size: 10px !important;
  background: #fdc839 !important;
  color: #253237 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}
.quickmenu-item .quickmenu-item_content {
  display: none !important;
}

@media (min-width: 1025px) {
  .quickmenu-mobile { display: none !important; }
}
@media (max-width: 1024px) {
  .has-quickmenu #footer {
    padding-bottom: 62px !important;
  }
}

/* --- 10.4 Mobile Responsive — sections, produits, typo --- */
@media (max-width: 991px) {
  /* Sections homepage */
  .elementor-5010000 > .elementor-element[data-element_type="section"] {
    margin-bottom: 25px !important;
    padding: 20px 10px !important;
  }
  .elementor-element.elementor-element-qadbhcq,
  .elementor-element.elementor-element-nturhaf,
  .elementor-element.elementor-element-kfrrwqu,
  .elementor-element.elementor-element-oumzyxr,
  .elementor-element.elementor-element-rksgema {
    border-radius: 12px !important;
    padding: 20px 10px !important;
    border-left-width: 4px !important;
  }
  /* Titres */
  .pos-title-widget .pos-title {
    font-size: 18px !important;
    padding-left: 14px !important;
  }
  /* Filtres tabs — scroll horizontal */
  .tab-titles {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding-bottom: 5px !important;
    scrollbar-width: none !important;
  }
  .tab-titles::-webkit-scrollbar { display: none !important; }
  .tab-titles li a {
    font-size: 11px !important;
    padding: 4px 12px !important;
    white-space: nowrap !important;
  }
  /* Slideshow */
  .pos-slideshow {
    max-height: 350px !important;
    border-radius: 0 0 12px 12px !important;
  }
  /* Product cards */
  .product-miniature {
    margin-bottom: 12px !important;
    border-radius: 12px !important;
  }
  .product-miniature .img_block {
    border-radius: 12px 12px 0 0 !important;
  }
  /* Banners */
  .home-banner {
    border-radius: 10px !important;
    margin-bottom: 10px !important;
  }
  /* Slick arrows — plus petits */
  .pos-product-widget .slick-arrow,
  .slick-slider-block .slick-arrow {
    width: 34px !important;
    height: 34px !important;
  }
}

@media (max-width: 575px) {
  .elementor-element-qncmlch .site-logo img {
    max-width: 90px !important;
    max-height: 32px !important;
  }
  .pos-slideshow {
    max-height: 220px !important;
  }
  .pos-title-widget .pos-title {
    font-size: 16px !important;
  }
  .product-miniature,
  .js-product-miniature.style_product2 {
    border-radius: 10px !important;
  }
  .product-miniature .img_block {
    border-radius: 10px 10px 0 0 !important;
  }
  /* Product card compact */
  .product-miniature .product_desc .inner_desc {
    padding: 10px !important;
  }
  .product-miniature h3 a.product_name {
    font-size: 13px !important;
  }
  .product-miniature .price {
    font-size: 15px !important;
  }
  /* Sections spacing réduit */
  .elementor-5010000 > .elementor-element[data-element_type="section"] {
    margin-bottom: 15px !important;
    padding: 15px 8px !important;
  }
}

/* --- 10.5 Mobile Search Overlay (quand toggle actif) --- */
@media (max-width: 991px) {
  .elementor-element-qwbhurg .pos-search.search-show .pos-search__container,
  .elementor-element-qwbhurg .pos-search.open .pos-search__container {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1002 !important;
    background: #ffffff !important;
    padding: 10px 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  }
  .elementor-element-qwbhurg .pos-search__input {
    min-width: 0 !important;
    flex: 1 !important;
    border: 2px solid #e0e0e0 !important;
    border-right: none !important;
    border-radius: 25px 0 0 25px !important;
    padding: 10px 16px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
  }
  .elementor-element-qwbhurg .pos-search__submit {
    border-radius: 0 25px 25px 0 !important;
    background: #0E356E !important;
    color: #ffffff !important;
    min-width: 50px !important;
    min-height: auto !important;
  }
}

/* =================================================================
   11. PRODUCT CARDS — Style moderne (homepage + listing)
   ================================================================= */

/* --- 11.1 Product Card Container --- */
.product-miniature,
article.product-miniature,
.js-product-miniature.style_product2,
.thumbnail-container.product-miniature {
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid #f0f0f0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  background: #fff !important;
  margin-bottom: 20px !important;
}
.product-miniature:hover,
.js-product-miniature.style_product2:hover,
.thumbnail-container.product-miniature:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 8px 28px rgba(14,53,110,0.15) !important;
  border-color: rgba(14,53,110,0.15) !important;
}

/* --- 11.2 Product Image Block --- */
.product-miniature .img_block,
.js-product-miniature.style_product2 .img_block {
  border-radius: 16px 16px 0 0 !important;
  overflow: hidden !important;
  position: relative !important;
  background: #f8f9fa !important;
}
.product-miniature .img_block img,
.js-product-miniature.style_product2 .img_block img {
  transition: transform 0.5s ease !important;
  width: 100% !important;
  height: auto !important;
}
.product-miniature:hover .img_block img,
.js-product-miniature.style_product2:hover .img_block img {
  transform: scale(1.05) !important;
}

/* --- 11.3 Quick View Button --- */
.product-miniature .quick-view a,
.product-miniature .quick-view a.quick_view,
.js-product-miniature.style_product2 .quick-view a.quick_view {
  background: #0E356E !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 0 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(14,53,110,0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product-miniature .quick-view a i,
.product-miniature .quick-view a.quick_view i,
.js-product-miniature.style_product2 .quick-view a.quick_view i {
  font-size: 20px !important;
  color: #fff !important;
}
.product-miniature .quick-view a:hover,
.product-miniature .quick-view a.quick_view:hover,
.js-product-miniature.style_product2 .quick-view a.quick_view:hover {
  background: #092a55 !important;
  transform: scale(1.1) !important;
}

/* --- 11.4 Product Flags (New, Promo, etc.) --- */
.product-miniature .product-flag li,
.product-flag li,
.js-product-miniature .product-flag li {
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 4px 12px !important;
  color: #fff !important;
}
.product-flag li.new {
  background: linear-gradient(135deg, #00b894, #55efc4) !important;
}
.product-flag li.on-sale,
.product-flag li.discount {
  background: linear-gradient(135deg, #0E356E, #1a5cb0) !important;
}
.product-flag li.pack {
  background: linear-gradient(135deg, #0984e3, #74b9ff) !important;
}

/* --- 11.5 Product Description Block --- */
.product-miniature .product_desc,
.js-product-miniature.style_product2 .product_desc {
  padding: 15px !important;
  text-align: left !important;
}
.product-miniature .product_desc .inner_desc {
  padding: 0 !important;
}
.product-miniature .product_name,
.product-miniature a.product_name,
.js-product-miniature .product_name {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #253237 !important;
  transition: color 0.3s ease !important;
  line-height: 1.4 !important;
  display: block !important;
  margin-bottom: 6px !important;
}
.product-miniature .product_name:hover,
.product-miniature a.product_name:hover {
  color: #0E356E !important;
}

/* --- 11.6 Product Price --- */
.product-miniature .price,
.product-miniature .product-price-and-shipping .price,
.js-product-miniature .price {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  color: #0E356E !important;
  font-size: 17px !important;
}
.product-miniature .regular-price {
  font-size: 13px !important;
  color: #999 !important;
  text-decoration: line-through !important;
}

/* --- 11.7 Add to Cart Button (card) — icône panier jaune uniforme --- */
.product-miniature .add-to-links li.cart button.ajax_add_to_cart_button,
.product-miniature .add-to-links li.cart span.ajax_add_to_cart_button,
.js-product-miniature.style_product2 .add-to-links li.cart button.ajax_add_to_cart_button,
.js-product-miniature.style_product2 .add-to-links li.cart span.ajax_add_to_cart_button {
  background: #fdc839 !important;
  color: #253237 !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-size: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(253,200,57,0.3) !important;
  position: relative !important;
}
.product-miniature .add-to-links li.cart button.ajax_add_to_cart_button::before,
.product-miniature .add-to-links li.cart span.ajax_add_to_cart_button::before,
.js-product-miniature.style_product2 .add-to-links li.cart button.ajax_add_to_cart_button::before,
.js-product-miniature.style_product2 .add-to-links li.cart span.ajax_add_to_cart_button::before {
  font-family: "roadthemes-icon" !important;
  content: '\e905' !important;
  font-size: 16px !important;
  display: block !important;
  color: #253237 !important;
}
.product-miniature .add-to-links li.cart button.ajax_add_to_cart_button:hover,
.product-miniature .add-to-links li.cart span.ajax_add_to_cart_button:hover,
.js-product-miniature.style_product2 .add-to-links li.cart button.ajax_add_to_cart_button:hover,
.js-product-miniature.style_product2 .add-to-links li.cart span.ajax_add_to_cart_button:hover {
  background: #f5b800 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 14px rgba(253,200,57,0.45) !important;
}
/* Disabled state */
.product-miniature .add-to-links li.cart button.ajax_add_to_cart_button.disabled,
.product-miniature .add-to-links li.cart span.ajax_add_to_cart_button.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
/* Also handle .product-add-to-cart wrapping form buttons the same way */
.product-miniature .product-add-to-cart .add-to-cart,
.product-miniature .product-add-to-cart .add-to-cart.btn-default {
  background: #fdc839 !important;
  color: #253237 !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(253,200,57,0.3) !important;
}
.product-miniature .product-add-to-cart .add-to-cart::before,
.product-miniature .product-add-to-cart .add-to-cart.btn-default::before {
  font-family: "roadthemes-icon" !important;
  content: '\e905' !important;
  font-size: 16px !important;
  display: block !important;
  color: #253237 !important;
}
.product-miniature .product-add-to-cart .add-to-cart:hover {
  background: #f5b800 !important;
  transform: scale(1.1) !important;
}

/* --- 11.8 Wishlist & Compare Icons --- */
.product-miniature .add-to-links,
.js-product-miniature.style_product2 .add-to-links {
  border-radius: 0 0 16px 16px !important;
}
.product-miniature .add-to-links li a,
.js-product-miniature.style_product2 .add-to-links li a {
  transition: all 0.3s ease !important;
  color: #555 !important;
}
.product-miniature .add-to-links li a:hover,
.js-product-miniature.style_product2 .add-to-links li a:hover {
  color: #0E356E !important;
  transform: scale(1.1) !important;
}

/* --- 11.9 Manufacturer name --- */
.product-miniature .manufacturer a,
.js-product-miniature .manufacturer a {
  font-family: "Poppins", sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #0E356E !important;
  opacity: 0.7 !important;
  transition: opacity 0.3s ease !important;
}
.product-miniature .manufacturer a:hover {
  opacity: 1 !important;
}

/* --- 11.10 Star Ratings --- */
.product-miniature .star_content .rating_star,
.js-product-miniature .star_content .rating_star {
  background-color: #0E356E !important;
}

/* --- 11.11 Product card link colors + count badge --- */
.product-miniature .product-price-and-shipping {
  margin-top: 4px !important;
  margin-bottom: 6px !important;
}
.product-miniature .discount-percentage,
.js-product-miniature .discount-percentage {
  background: #0E356E !important;
  color: #fff !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
}

/* =================================================================
   12. HOMEPAGE SECTIONS — Titres, Sliders, Layout
   ================================================================= */

/* --- 12.1 Section Titles --- */
.pos-title-widget .pos-title {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  color: #253237 !important;
  position: relative !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding-left: 18px !important;
}
.pos-title-widget .pos-title::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  bottom: 2px !important;
  width: 4px !important;
  background: #0E356E !important;
  border-radius: 3px !important;
}
.pos-title-widget .pos-title::after {
  display: none !important;
}

/* --- 12.2 Slick Slider Arrows --- */
.pos-product-widget .slick-arrow,
.slick-slider-block .slick-arrow {
  width: 44px !important;
  height: 44px !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
  z-index: 5 !important;
}
.pos-product-widget .slick-arrow:hover,
.slick-slider-block .slick-arrow:hover {
  background: #0E356E !important;
  box-shadow: 0 4px 16px rgba(14,53,110,0.3) !important;
}
.pos-product-widget .slick-arrow:hover:before,
.slick-slider-block .slick-arrow:hover:before {
  color: #fff !important;
}

/* --- 12.3 Slideshow --- */
.pos-slideshow,
.pos-slideshow-wrapper {
  border-radius: 0 0 16px 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
.pos-slideshow .slick-dots li.slick-active button:before {
  color: #0E356E !important;
}
/* Slideshow CTA buttons */
.pos-slideshow a.slideshow-button,
a.slideshow-button {
  background-color: #0E356E !important;
  border-radius: 50px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  padding: 14px 32px !important;
  letter-spacing: 1px !important;
}
.pos-slideshow a.slideshow-button:hover,
a.slideshow-button:hover {
  background-color: #092a55 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(14,53,110,0.4) !important;
}

/* --- 12.3b Tab Titles (Elementor product tabs) --- */
.tab-titles {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.tab-titles li a {
  font-family: "Poppins", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #888 !important;
  background: #f0f0f0 !important;
  border-radius: 25px !important;
  padding: 5px 16px !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  white-space: nowrap !important;
}
.tab-titles li a.active,
.tab-titles li a:hover {
  color: #ffffff !important;
  background: #0E356E !important;
}
.tab-titles li a.active::after {
  display: none !important;
}

/* --- 12.3c Banners (homepage banners) --- */
.home-banner {
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.home-banner:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}
.home-banner img {
  border-radius: 12px !important;
  transition: transform 0.5s ease !important;
}
.home-banner:hover img {
  transform: scale(1.03) !important;
}

/* --- 12.4 Global buttons override --- */
.btn-primary,
.btn.btn-primary,
button.btn-primary {
  background-color: #0E356E !important;
  border-color: #0E356E !important;
  border-radius: 50px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.5px !important;
}
.btn-primary:hover,
.btn.btn-primary:hover,
button.btn-primary:hover {
  background-color: #092a55 !important;
  border-color: #092a55 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(14,53,110,0.3) !important;
}

/* Secondary / outline buttons */
.btn-secondary,
.btn.btn-secondary {
  border-radius: 50px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

/* --- 12.5 Links accent color --- */
a {
  transition: color 0.3s ease !important;
}
a:hover {
  color: #0E356E !important;
}

/* --- 12.6 General body and typography polish --- */
body {
  font-family: "Poppins", sans-serif !important;
  color: #666666 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif !important;
  color: #253237 !important;
}

/* --- 12.7 Homepage Elementor section spacing --- */
.elementor-5010000 > .elementor-element[data-element_type="section"] {
  margin-bottom: 50px !important;
  padding: 30px 0 !important;
}

/* --- 12.7b COULEURS PAR SECTION --- */

/* ---- PROMOTIONS (qadbhcq / c7drb0w) — ROUGE ---- */
.elementor-element.elementor-element-qadbhcq {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  padding: 35px 20px !important;
  border-left: 5px solid #E53935 !important;
}
.elementor-element-c7drb0w .tab-titles li a {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #E53935 !important;
  background: transparent !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  position: relative !important;
  padding-left: 18px !important;
}
.elementor-element-c7drb0w .tab-titles li a::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 3px !important;
  bottom: 3px !important;
  width: 4px !important;
  background: #E53935 !important;
  border-radius: 3px !important;
}
.elementor-element-c7drb0w .tab-titles li a.active,
.elementor-element-c7drb0w .tab-titles li a:hover {
  color: #E53935 !important;
  background: transparent !important;
}
.elementor-element-qadbhcq .slick-dots li.slick-active button:before {
  color: #E53935 !important;
}
.elementor-element-qadbhcq .slick-arrow:hover {
  background: #E53935 !important;
}

/* ---- NOS ENCRES (nturhaf / dmsmokc / wllvdky) — NAVY BLUE ---- */
.elementor-element.elementor-element-nturhaf {
  background: linear-gradient(135deg, #f0f4fa 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  padding: 35px 20px !important;
  border-left: 5px solid #0E356E !important;
}
.elementor-element-dmsmokc .pos-title-widget .pos-title::before {
  background: #0E356E !important;
}
.elementor-element-wllvdky .tab-titles li a.active,
.elementor-element-wllvdky .tab-titles li a:hover {
  color: #ffffff !important;
  background: #0E356E !important;
}
.elementor-element-nturhaf .slick-dots li.slick-active button:before {
  color: #0E356E !important;
}
.elementor-element-nturhaf .slick-arrow:hover {
  background: #0E356E !important;
}

/* ---- PAPIERS (kfrrwqu / wtvxbjx / gyncdmg) — JAUNE/GOLD ---- */
.elementor-element.elementor-element-kfrrwqu {
  background: linear-gradient(135deg, #fffdf0 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  padding: 35px 20px !important;
  border-left: 5px solid #fdc839 !important;
}
.elementor-element-wtvxbjx .pos-title-widget .pos-title::before {
  background: #fdc839 !important;
}
.elementor-element-gyncdmg .tab-titles li a.active,
.elementor-element-gyncdmg .tab-titles li a:hover {
  color: #253237 !important;
  background: #fdc839 !important;
}
.elementor-element-kfrrwqu .slick-dots li.slick-active button:before {
  color: #fdc839 !important;
}
.elementor-element-kfrrwqu .slick-arrow:hover {
  background: #fdc839 !important;
}

/* ---- PIECES DE RECHANGE (oumzyxr / ldcnooj / wcaxewc) — VERT ---- */
.elementor-element.elementor-element-oumzyxr {
  background: linear-gradient(135deg, #f0faf2 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  padding: 35px 20px !important;
  border-left: 5px solid #2E7D32 !important;
}
.elementor-element-ldcnooj .pos-title-widget .pos-title::before {
  background: #2E7D32 !important;
}
.elementor-element-wcaxewc .tab-titles li a.active,
.elementor-element-wcaxewc .tab-titles li a:hover {
  color: #ffffff !important;
  background: #2E7D32 !important;
}
.elementor-element-oumzyxr .slick-dots li.slick-active button:before {
  color: #2E7D32 !important;
}
.elementor-element-oumzyxr .slick-arrow:hover {
  background: #2E7D32 !important;
}

/* ---- CARTOUCHES LASER (rksgema / sknysig / pphseda) — NAVY BLUE ---- */
.elementor-element.elementor-element-rksgema {
  background: linear-gradient(135deg, #f0f4fa 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  padding: 35px 20px !important;
  border-left: 5px solid #0E356E !important;
}
.elementor-element-sknysig .pos-title-widget .pos-title::before {
  background: #0E356E !important;
}
.elementor-element-pphseda .tab-titles li a.active,
.elementor-element-pphseda .tab-titles li a:hover {
  color: #ffffff !important;
  background: #0E356E !important;
}
.elementor-element-rksgema .slick-dots li.slick-active button:before {
  color: #0E356E !important;
}
.elementor-element-rksgema .slick-arrow:hover {
  background: #0E356E !important;
}

/* ---- FEATURED BANNER (wokjzcm / mrnf7pj) ---- */
.elementor-element.elementor-element-wokjzcm {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* ---- BANNERS entre sections ---- */
.elementor-element.elementor-element-qadbhcq + .elementor-element,
.elementor-element.elementor-element-ddxlyze,
.elementor-element.elementor-element-mzmkahs {
  padding: 10px 0 !important;
}

/* --- 12.8 Slick dots global --- */
.slick-dots li button:before {
  font-size: 10px !important;
  color: #ccc !important;
  transition: color 0.3s ease !important;
}
.slick-dots li.slick-active button:before {
  color: #0E356E !important;
}

/* --- 12.9 Responsive --- */
@media (max-width: 991px) {
  .product-miniature {
    margin-bottom: 15px !important;
  }
  .pos-title-widget .pos-title {
    font-size: 20px !important;
  }
}
@media (max-width: 575px) {
  .pos-title-widget .pos-title {
    font-size: 18px !important;
  }
  .product-miniature,
  .js-product-miniature.style_product2 {
    border-radius: 12px !important;
  }
  .product-miniature .img_block {
    border-radius: 12px 12px 0 0 !important;
  }
}

/* --- 10.5 Mobile Menu Close Button --- */
#_desktop_megamenu .printin-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #0E356E;
  font-size: 24px;
}

/* ============================================================
   14. PRODUCT PAGE REDESIGN — Print'In
   ============================================================ */

/* --- 14.1 Layout — Images LEFT, Info RIGHT --- */
.product-layout1 {
  display: flex;
  flex-wrap: wrap;
}
.product-layout1 > .col-md-6:first-child {
  flex: 0 0 55%;
  max-width: 55%;
  padding-right: 30px;
}
.product-layout1 > .col-md-6:nth-child(2) {
  flex: 0 0 45%;
  max-width: 45%;
}
.product-layout1 > .col-md-12 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 40px;
}

/* --- 14.2 Image Gallery --- */
.product-layout1 .images-container {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
}
.product-layout1 .product-cover-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.product-layout1 .product-cover {
  border-radius: 16px;
  overflow: hidden;
}
.product-layout1 .product-cover .cover-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.product-layout1 .product-cover .cover-item:hover img {
  transform: scale(1.05);
}

/* Slick arrows */
.product-layout1 .product-cover .slick-prev,
.product-layout1 .product-cover .slick-next {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  transition: all 0.2s ease;
}
.product-layout1 .product-cover .slick-prev:hover,
.product-layout1 .product-cover .slick-next:hover {
  background: #0E356E !important;
  box-shadow: 0 4px 12px rgba(14,53,110,0.3);
}
.product-layout1 .product-cover .slick-prev:hover:before,
.product-layout1 .product-cover .slick-next:hover:before {
  color: #fff;
}
.product-layout1 .product-cover .slick-prev { left: 12px; }
.product-layout1 .product-cover .slick-next { right: 12px; }

/* Slick dots */
.product-layout1 .product-cover .slick-dots {
  bottom: 12px;
}
.product-layout1 .product-cover .slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
}
.product-layout1 .product-cover .slick-dots li.slick-active button:before {
  color: #0E356E;
}

/* Thumbnails */
.product-layout1 .product-images {
  margin-top: 12px;
  padding: 0 4px;
}
.product-layout1 .product-images .image-item {
  padding: 4px;
  cursor: pointer;
}
.product-layout1 .product-images .image-item img {
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  width: 100%;
}
.product-layout1 .product-images .image-item img:hover,
.product-layout1 .product-images .image-item img.selected {
  border-color: #0E356E;
  box-shadow: 0 2px 10px rgba(14,53,110,0.25);
}

/* Product flags */
.product-layout1 .product-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-layout1 .product-flag li {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}
.product-layout1 .product-flag li.new { background: linear-gradient(135deg, #00b894, #55efc4); }
.product-layout1 .product-flag li.on-sale,
.product-layout1 .product-flag li.discount { background: linear-gradient(135deg, #0E356E, #1a5cb0); }
.product-layout1 .product-flag li.pack { background: linear-gradient(135deg, #0984e3, #74b9ff); }

/* --- 14.3 Product Title & Price --- */
.product-layout1 .namne_details,
.product-layout1 h1.namne_details {
  font-family: "Rubik", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #253237;
  line-height: 1.3;
  margin-bottom: 10px;
}
.product-layout1 .product-prices {
  margin-bottom: 16px;
}
.product-layout1 .product-prices .current-price-value,
.product-layout1 .product-prices .current-price span {
  font-family: "Rubik", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #0E356E;
}
.product-layout1 .product-prices .regular-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
.product-layout1 .product-prices .discount-percentage,
.product-layout1 .product-prices .discount-amount {
  display: inline-block;
  background: linear-gradient(135deg, #00b894, #55efc4);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}
.product-layout1 .tax-shipping-delivery-label {
  font-size: 12px;
  color: #999;
}

/* --- 14.4 Short Description --- */
.product-layout1 .product-description {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

/* --- 14.5 Product Variants --- */
.product-layout1 .product-variants {
  margin-bottom: 20px;
}
.product-layout1 .product-variants > .product-variants-item {
  margin-bottom: 14px;
}
.product-layout1 .product-variants .control-label {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #253237;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* Color swatches */
.product-layout1 .product-variants .color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 6px 6px 0;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
}
.product-layout1 .product-variants .color:hover {
  transform: scale(1.15);
  border-color: #0E356E;
}
.product-layout1 .product-variants .color.selected,
.product-layout1 .product-variants .color.active,
.product-layout1 .product-variants .input-color:checked + .color {
  border-color: #0E356E;
  box-shadow: 0 0 0 3px rgba(14,53,110,0.25);
  transform: scale(1.15);
}

/* Size/radio variants as pills */
.product-layout1 .product-variants .radio-label,
.product-layout1 .product-variants ul li label {
  display: inline-block;
  padding: 8px 18px;
  margin: 0 6px 6px 0;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.product-layout1 .product-variants .radio-label:hover,
.product-layout1 .product-variants ul li label:hover {
  border-color: #0E356E;
  color: #0E356E;
}
.product-layout1 .product-variants .input-radio:checked + .radio-label,
.product-layout1 .product-variants input:checked + label {
  background: #0E356E;
  border-color: #0E356E;
  color: #fff;
  box-shadow: 0 4px 12px rgba(14,53,110,0.3);
}

/* Select variant */
.product-layout1 .product-variants select {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230E356E' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
  background-color: #fff;
  padding-right: 36px;
}
.product-layout1 .product-variants select:focus {
  border-color: #0E356E;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14,53,110,0.15);
}

/* --- 14.6 Quantity Selector --- */
.product-layout1 .qty input[type="number"],
.product-layout1 #quantity_wanted {
  width: 70px;
  height: 46px;
  text-align: center;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s ease;
  -moz-appearance: textfield;
}
.product-layout1 .qty input[type="number"]::-webkit-inner-spin-button,
.product-layout1 .qty input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-layout1 .qty input[type="number"]:focus,
.product-layout1 #quantity_wanted:focus {
  border-color: #0E356E;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14,53,110,0.15);
}
.product-layout1 .product-quantity .qty .input-group-btn-vertical button,
.product-layout1 .qty .bootstrap-touchspin .input-group-btn-vertical button {
  border: none;
  background: #f8f9fa;
  color: #253237;
  width: 36px;
  height: 23px;
  border-radius: 6px;
  transition: all 0.2s;
}
.product-layout1 .product-quantity .qty .input-group-btn-vertical button:hover {
  background: #0E356E;
  color: #fff;
}

/* --- 14.7 Add to Cart Button --- */
.product-layout1 .add-to-cart,
.product-layout1 .add-to-cart.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: #0E356E !important;
  border: none !important;
  border-radius: 30px;
  color: #fff !important;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(14,53,110,0.3);
}
.product-layout1 .add-to-cart:hover,
.product-layout1 .add-to-cart.btn-primary:hover {
  background: #0a3060 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,53,110,0.4);
}
.product-layout1 .add-to-cart:active {
  transform: translateY(0);
}
.product-layout1 .add-to-cart .material-icons {
  font-size: 20px;
}

/* Buy Now */
.product-layout1 .btn-buynow,
.product-layout1 .pos-buynow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #253237 !important;
  border: none;
  border-radius: 30px;
  color: #fff !important;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.product-layout1 .btn-buynow:hover {
  background: #333 !important;
  transform: translateY(-2px);
}

/* Wishlist / Compare */
.product-layout1 .product-additional-info a,
.product-layout1 .leofeature-product a {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  color: #777;
  transition: color 0.2s ease;
}
.product-layout1 .product-additional-info a:hover,
.product-layout1 .leofeature-product a:hover {
  color: #0E356E;
}

/* --- 14.8 Breadcrumb --- */
#product .breadcrumb {
  background: transparent;
  padding: 12px 0;
  margin-bottom: 0;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
}
#product .breadcrumb li a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}
#product .breadcrumb li a:hover {
  color: #0E356E;
}
#product .breadcrumb li:last-child a {
  color: #0E356E;
  font-weight: 500;
}

/* --- 14.9 Product Tabs --- */
.product-layout1 .nav-tabs,
#product .product-tab .nav-tabs {
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}
.product-layout1 .nav-tabs .nav-link,
#product .product-tab .nav-tabs .nav-link {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 20px;
  margin-bottom: -2px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.product-layout1 .nav-tabs .nav-link:hover,
#product .product-tab .nav-tabs .nav-link:hover {
  color: #0E356E;
  border-bottom-color: rgba(14,53,110,0.3);
}
.product-layout1 .nav-tabs .nav-link.active,
#product .product-tab .nav-tabs .nav-link.active {
  color: #0E356E;
  border-bottom-color: #0E356E;
  background: transparent;
}
.product-layout1 .tab-content,
#product .product-tab .tab-content {
  padding: 20px 0;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Data sheet / Features */
.product-layout1 .data-sheet,
#product .product-tab .data-sheet {
  width: 100%;
}
.product-layout1 .data-sheet .name,
#product .product-tab .data-sheet .name {
  font-weight: 600;
  color: #0E356E;
  padding: 10px 16px;
  background: #f0f4fa;
  border-radius: 6px 0 0 6px;
  min-width: 140px;
}
.product-layout1 .data-sheet .value,
#product .product-tab .data-sheet .value {
  padding: 10px 16px;
  color: #333;
}

/* --- 14.10 Reassurance Block --- */
.product-layout1 .blockreassurance_product {
  margin-top: 20px;
  padding: 16px;
  background: #fafbfc;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}
.product-layout1 .blockreassurance_product .block-reassurance-item {
  padding: 8px 0;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
}

/* --- 14.11 Social Sharing ---
   font-size: 0 sur le lien masque le libellé texte ("Partager", "Tweet"...),
   seule l'icône (glyphe :before, police roadthemes-icon) reste visible. */
.product-layout1 .social-sharing li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #555;
  font-size: 0;
  transition: all 0.2s ease;
  margin-right: 6px;
}
.product-layout1 .social-sharing li a:before {
  font-size: 16px;
}
.product-layout1 .social-sharing li a:hover {
  background: #0E356E;
  color: #fff;
  transform: translateY(-2px);
}

/* --- 14.12 Related / Accessory Products --- */
#product .pos-featured-products .pos-title h2,
#product .crossselling-products h2,
#product .product-accessories h2 {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #253237;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
#product .pos-featured-products .pos-title h2::after,
#product .crossselling-products h2::after,
#product .product-accessories h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0E356E;
  border-radius: 2px;
}

/* --- 14.13 Image Modal / Lightbox --- */
.product-images-modal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* --- 14.14 Responsive --- */
@media (max-width: 991px) {
  .product-layout1 > .col-md-6:first-child,
  .product-layout1 > .col-md-6:nth-child(2) {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
  }
  .product-layout1 > .col-md-6:nth-child(2) {
    margin-top: 24px;
  }
  .product-layout1 .namne_details,
  .product-layout1 h1.namne_details {
    font-size: 22px;
  }
  .product-layout1 .product-prices .current-price-value {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .product-layout1 .add-to-cart,
  .product-layout1 .add-to-cart.btn-primary,
  .product-layout1 .btn-buynow {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
  .product-layout1 .namne_details {
    font-size: 20px;
  }
  .product-layout1 .product-prices .current-price-value {
    font-size: 24px;
  }
  .product-layout1 .nav-tabs .nav-link {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .product-layout1 .product-variants .color {
    width: 32px;
    height: 32px;
  }
  .product-layout1 .product-variants .radio-label {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* =================================================================
   15. CATEGORY PAGE — Hide subcategories block
   ================================================================= */
#subcategories { display: none !important; }

/* =================================================================
   16. Hide newsletter block
   ================================================================= */
.block_newsletter { display: none !important; }

/* =================================================================
   18. Filtres catégorie en accordéon (desktop) — ouverture/fermeture
   avec icône +/- (le comportement mobile existait déjà nativement,
   on l'étend ici à toutes les tailles d'écran)
   ================================================================= */
#category #left-column #search_filters .facet .title {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
#category #left-column #search_filters .facet .title .facet-title {
    margin: 0;
}
#category #left-column #search_filters .facet .title .collapse-icons {
    position: static;
    cursor: pointer;
}
#category #left-column #search_filters .facet .title .collapse-icons .remove { display: none; }
#category #left-column #search_filters .facet .title .collapse-icons .add { display: inline-block; }
#category #left-column #search_filters .facet .title[aria-expanded='true'] .collapse-icons .add { display: none; }
#category #left-column #search_filters .facet .title[aria-expanded='true'] .collapse-icons .remove { display: inline-block; }
#category #left-column #search_filters .facet ul.collapse:not(.in) {
    display: none;
}
#category #left-column #search_filters .facet ul.collapse.in {
    display: block;
}

/* =================================================================
   19. Badge "PROMO" — section "Nos promotions" (page d'accueil)
   Affiché systématiquement sur toutes les cartes de cette section,
   indépendamment d'une remise réelle, pour identifier visuellement
   les produits mis en avant dans la catégorie Promotion.
   ================================================================= */
.product-flag .promo {
    display: inline-block !important;
    color: #ffffff;
    background: #E53935;
    padding: 0 7px;
    line-height: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}

/* =================================================================
   17. Category page banner with custom background
   ================================================================= */
.page-title-wrapper {
    background: url('../img/category-banner.webp') center center no-repeat !important;
    background-size: cover !important;
    min-height: 150px;
}