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

.qty-custom{
  float: right !important;
  margin-left: 20px;
  padding-bottom: 30px;
}


.subcategory-name{
  font-size: 12px;
  text-align: center;
  /* float: left; */
  width: 97%;
  display: inline-table;
  line-height: 17px;
}

.subcategory-image img{
border: 1px solid #cfcfcf;
border-radius: 24px;
border-radius: 100px;
height: 90Px;
width: 150px;
  
}

.subcategory-miniature{
  height: 190Px; 
}

@media(min-width:1024px) {
.page-title-wrapper{
/*background-image: none !important;
  background-color: #f8f8f8 !important;*/
  height: 200px;
  
}
  
  #search_filters {

    margin-top: 80px;
  }
}

#product .page-title-wrapper{
  margin-bottom:30px !important;
}


#comptepro .elementor-icon-box-title{
  padding: 5px;
}


#cmsinfo_block {
  background-color: #fff;
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  box-shadow: 0 1px 5px rgba(0,0,0,.2);
  border-radius: 5px;
  float: left;
  padding: 42px;
  text-align: center;
}





b, strong {
  
  color: #000000b3 !important;
}

@media (min-width: 992px){
#magasin_right{
  margin-top: -1%;
  line-height: 12px;
}
  #magasin_center {
    margin-left: 20% !important;
    margin-top: 5% !important;
  }
  
  .address {
    margin-top: 54px;
    line-height: 14px;
  }
  
}

@media (max-width: 480px){
  
  .address {
    margin-top: 40px;
    
  }
  #magasin_center {
   
    margin-top: 10% !important;
  }

}

.subcategories-wrapper {
  display: flex;
  justify-content: center; /* Centre horizontalement */
  align-items: center; /* Centre verticalement */
  flex-wrap: wrap;
}

.subcategory-miniature {
  text-align: center; /* Centre le contenu horizontalement */
  margin: 0 10px; /* Espace entre les éléments si nécessaire */
}

.js-product-miniature.style_product3 .add-to-links{
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow:none !important;
}

#index .js-product-miniature{
  height:400px; 
}

.js-product-miniature.style_product_default .add-to-links{
  bottom:0px !important;
}

#category .js-product-miniature, #prices-drop .js-product-miniature, #product .js-product-miniature{
  height:400px;
}

.js-product-miniature .img_block{
  overflow: initial !important;
}

#index .js-product-miniature.style_product3 .add-to-links{
  bottom: -11.375rem !important;
}

#product .js-product-miniature.style_product3 .add-to-links, #category .js-product-miniature.style_product3 .add-to-links, #prices-drop .js-product-miniature.style_product3 .add-to-links{
  bottom: -12.575rem !important;
}

.item_soc {
  float: left;
  margin-right: 7px;
}

.item_soc img {  
  width:50px !important;
}

#social_block {
  margin-top: 7px;
  margin-bottom: 7px;
  float: left;
  width: 100%;
}

#footer .titre{
  color:white !important;
  font-weight:400 !important;
}

.block_top span{
  font-size: 14px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
color: #999999 !important;

}

#paiement_s .block_top{
 text-indent: -60px;
}


.menu-video{

  width: auto !important;
  height: auto !important;
  line-height: 72Px;
  text-align: center;
  font-size: 13Px!important;
  font-weight: bold!important;
  top: -100Px;
  position: relative;
  
  
}

.categ-0 a, .categ-0 {
  font-size: 20Px !important;
}

.categ-0 {
  border: 1px #cfcfcf solid;
  background: white;
}

.categ-v {
  border: 1px solid #cfcfcf;
  background: white !important;
  /*font-size: 93% !important;*/
}

.menu-video a {
  display: inline-block;
  color: #2483a0;
}

.iframe-video {
  text-align: center;
}

.iframe-video img{

  max-width:100%;
  height:150px !important;
}

.menu-video a[data-title-0]:hover::after {
  content: attr(data-title-0);
  position: absolute;
  top: -180px;
  left: 0;
  line-height:22px;
  border:1px solid;
  padding:20Px;
  border-radius: 5px;
  background: white;
  color:black !important;
  z-index:999;
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;

}

.menu-video a[data-title]:hover::after {
  content: attr(data-title);
  position: absolute;
  top: -115px;
  left: 0;
  line-height:22px;
  border:1px solid;
  padding:20Px;
  border-radius: 5px;
  background: white;
  color:black !important;
  z-index:999;
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;

}




@media (min-width: 992px){
  .categ-v, .categ-0 {
    margin-right: 15px;
}
  
  .page-heading {
    font-size: 24px !important;
    margin: 15px 0 15px !important;
    padding: 5px 0 !important;
   
  }
  

  .title_menu{

    float: left;
    width: 100%;
    font-size: 11px;
    text-align: center;
    position: relative;
    top: -20px;
  }
}


@media (min-width: 640px){
  .categ-v, .categ-0 {
    height: 73px;
    border: 1px solid #cfcfcf;
   
}
}


@media (min-width: 992px){
  .videos-list .col-md-3, .videos-list .col-lg-3 {
    max-width: 23.2%;
    margin-right: 20px !important;
}
}

.title-video {
  
 
  font-family: "Caudex", sans-serif;
  font-weight: 600 !important;
  margin-top: 15px;
  margin-bottom: 18px;
  
  font-size: 17px !important;
  text-transform: none;
  line-height: 1.3em;

 
  height: 80px;
  display: table;
  width: 100%;
}

.title-video a {
color: #006058 !important;
  
}

.title-video span {
  display: table-cell;
  vertical-align: middle;
}

.desc-video {
  
  color: #000000;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4em;
 
  height: 115px;
}

.date-video {
  padding-top: 30px;
  font-size: 13px;
  text-align: justify;
  line-height: 26px;
  /* height: 95px; */
  float: left;
  font-weight: 700;
  margin-left: 10px;
}

.agrendir {
  width: 40px;
  float: right;
  
  
}

.agrendir img{
  filter: hue-rotate(0deg);
}

.colorize {
  filter: hue-rotate(120deg);
}


.video {
  height: 440px;
 
  margin-bottom: 30px;
  
  padding: 20px 20px 20px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
  
}

.archive, .subcategory-miniature, .video{
  transition: all 0.3s;
}

/*.video:hover, .archive:hover {
  border-color: #abd373; /* Couleur de surbrillance au survol */
  transform: scale(1.1);
  overflow:hidden;
  background:white;
}*/

.subcategory-miniature:hover {
  transform: scale(1.3);
}

@media (min-width: 992px){
  .archives .col-lg-3 {

    max-width: 23% !important; 
  }

  .archive {
    margin: 10px;
  }

  #content-news .col-lg-6{
    margin-right: 2%;
    max-width: 48% !important;
  }

  .cms-id-10 .page-heading {

    left: 15px;
    position: relative;
  }


}

.img-news {
  text-align: center;
  height: 240px;
  width: 100%;
}

.title-news {
  height: 30px;
  font-size: 29px;
  font-weight: 600;
  font-family: 'Roboto Condensed' !important;
  color: black;
  letter-spacing: 0px;
}


.sep-news {
  display: block;
  width: 100%;
  height: 6px;
  background: black;
  margin-top: 10px;
  margin-bottom: 20px;
}

.sub-title-news {
  height: 30px;
  font-size: 29px;
  font-weight: 400;
  font-family: 'Roboto Condensed' !important;
  color: #006058;
  letter-spacing: 0px;
  line-height: 34px;
}

.bloc-news {
  border: 1px solid #cfcfcf;
  padding: 20px;
  box-shadow: 5px -2px 7px #cfcfcf;
  height: 500px;
  background: #ecece9;
}

.page-heading, .page-subheading {
  
  font-weight: 700;
  color: #3d3d3d;
  line-height: 30px;
  letter-spacing: .02em;
  text-transform: uppercase;
}


#cms .block-newsletter {
  margin-top: 30px !important;
}

.js-emailsubscription {
  border: 1px solid #cfcfcf;
  padding: 35px;
  box-shadow: 4px -2px 9px #cfcfcf;
  background: #ecece9;
  
  float: left;
  width: 98%;
}

.title_news {
  float: left;
  padding: 5px 20px 0px 0px;
  line-height: 22px;
}


@media (min-width: 992px){
  .block-newsletter .form-control {
    float: left;
    width: 50%;
    margin-right: 2%;
}
}


.newsletter-message {
  text-align: center;
  color: #808080b0;
  font-style: italic;
  font-size: 13px !important;
  margin-top: 8px;
}

.d-lg-none {
  display: none!important;
}


@media (min-width: 992px){
  .archives .col-lg-3 {
    max-width: 23% !important;
    margin: 10px;
}
  
}

.archive {
  border: 1Px solid #cfcfcf;
  box-shadow: 1px 2px 5px #cfcfcf;
  
  background: white;
  height: 150px;
}


.title-archive {
  color: #006058!important;
  font-weight: 600;
  padding-top: 24px;
  text-align: center;
  font-size: 15px;
  height: 117px;
  width: 100%;
  font-family: FontAwesome!important;
}

.title-archive img {
  max-width: 40px;
}

.image-news {
  float: left;
  width: 20%;
} 

.archive .agrendir {
  font-size: 12px !important;
  font-weight: 600 !important;
  padding-bottom: 5px;
  
  color: black;
  float: right;
  width: 42%;
}



@media (min-width: 992px){
  
  .blockcart .popup_cart.popup-dropdown {
    margin-top: 20Px !important;
    /*left: -140px !important;*/
  }
  
  
  .elementor-4010000 .elementor-element.elementor-element-gjjpnah{
    
    padding:0px !important;
  }
  
  
  .categ_item .column_title {
 
  
  font-size: 14px !important;
  
  line-height: 22px !important;
  text-align: center;
  border-bottom: 1px dashed #cfcfcf;
  padding: 20px !important;
  height: 100px !important;
}
  
  .main-menu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .pos-sub-inner{
    
    margin-top: 23px;
  }
  
  #poscookielaw p {
    
    width: 70%;
    line-height: 29px;
  }
  
  
  #poscookielaw span {

    height:15px !important;
  }
  
  
}


#poscookielaw strong{

  color:white !important;

}

#blockEmailSubscription_displayAfterBodyOpeningTag{
  display:none !important;
}

.alert{
  
  display: block;
  float: left;
  width: 98% !important;
  margin-top: 4px;
  
}

#posnewsletterpopup .pnp-content{
  max-width: 100% !important;
}

.pnp-desc  h1{
  padding: 15px;
  font-size: 38px;
  letter-spacing: 4px;
  color: white ;
}

.pnp-desc  h2{
padding: 20px;
font-size: 24px;
letter-spacing: 2px;
color: white;
line-height: 40px;
}

.newsletter-input {
  display: block !important;
  width: 60% !important;
  margin-left: 20%;
  text-align: center;
  height: 50px !important;
  border-radius: 0px !important;
  font-size: 18px !important;
}

.pos-btn-newsletter {
  display: block !important;
  width: 60% !important;
  margin-left: 20%;
  text-align: center;
  height: 50px !important;
  border-radius: 0px !important;
  color: white !important;
  font-size: 16px !important;
  margin-top: 10px;
}

.logo-news{
  text-align:center;
  
}

.logo-news img{
  max-width:30%;

}


#posnewsletterpopup .pnp-newsletter-form form {
  flex-direction: unset !important;
}

#category  #header {
  border-bottom: none !important;
  margin-bottom: 60px;
  
}

#category  .page-title-wrapper {
 /* display: none;*/ 

}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Pourcentage basé sur le rapport hauteur/largeur de 16:9 */
  height: 0;
  overflow: hidden;
  
  position: relative;
  top: -20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media(min-width:1024px) {
#product-list-header{
  margin: -20% 0% 80px -30%;
  padding: 25px 25px 0px 25px;
  background-color: #ffffff;
  border-style: solid;
  border-width: 3px 3px 3px 3px;
  border-color: #006058;
  width: 100%;
}
}

#product-list-header H2{
  font-size:30px !important;
}

#category-description p{
  font-size:18px !important;
}

#products-list{
  margin-top: 25px;
}

/* video page */

Unminify JS, CSS, HTML
Free tool to unminify JS, CSS, HTML online

.elementor-23010000 .elementor-element.elementor-element-rxgr1an {
  background-color: #f1ede6;
  padding: 50px 30px 10px 30px;
}

.elementor-23010000 .elementor-element.elementor-element-uyrltcy {
  text-align: center;
}

.elementor-23010000 .elementor-element.elementor-element-m6jopdc .elementor-text-editor {
  text-align: center;
}

.elementor-23010000 .elementor-element.elementor-element-m6jopdc {
  font-size: 17px;
  font-weight: 600;
}

body:not(.rtl) .elementor-23010000 .elementor-element.elementor-element-m6jopdc .elementor-drop-cap {
  margin-right: 10px;
}

body.rtl .elementor-23010000 .elementor-element.elementor-element-m6jopdc .elementor-drop-cap {
  margin-left: 10px;
}

.elementor-23010000 .elementor-element.elementor-element-m6jopdc>.elementor-widget-container {
  margin: 20px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-pf2ggig {
  background-color: #f1ede6;
  padding: 20px 0px 50px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-xj3kbga.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-xj3kbga.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-xj3kbga.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-xj3kbga .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-23010000 .elementor-element.elementor-element-xj3kbga .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-xj3kbga>.elementor-widget-container {
  padding: 15px 15px 15px 15px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-23010000 .elementor-element.elementor-element-5vx0eyf.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-5vx0eyf.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-5vx0eyf.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-5vx0eyf .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-23010000 .elementor-element.elementor-element-5vx0eyf .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-5vx0eyf>.elementor-widget-container {
  padding: 15px 15px 15px 15px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-23010000 .elementor-element.elementor-element-ex724xc.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ex724xc.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ex724xc.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ex724xc .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-23010000 .elementor-element.elementor-element-ex724xc .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ex724xc>.elementor-widget-container {
  padding: 15px 5px 15px 6px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-23010000 .elementor-element.elementor-element-nvka1gd.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-nvka1gd.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-nvka1gd.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-nvka1gd .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-23010000 .elementor-element.elementor-element-nvka1gd .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-nvka1gd>.elementor-widget-container {
  padding: 15px 5px 15px 6px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-23010000 .elementor-element.elementor-element-y5hdt37.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-y5hdt37.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-y5hdt37.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-y5hdt37 .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-23010000 .elementor-element.elementor-element-y5hdt37 .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-y5hdt37>.elementor-widget-container {
  padding: 15px 5px 15px 6px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-23010000 .elementor-element.elementor-element-5vktwkl {
  padding: 25px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-s9jem0v>.elementor-widget-container {
  padding: 20px 20px 20px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-yz7pxkw>.elementor-widget-container {
  padding: 20px 20px 43px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-ieazc1g>.elementor-widget-container {
  padding: 20px 20px 41px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-twya3ug>.elementor-widget-container {
  padding: 20px 20px 20px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-c17gqrm {
  padding: 0px 0px 25px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-2euds1w>.elementor-widget-container {
  padding: 20px 20px 20px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-ejdejva>.elementor-widget-container {
  padding: 20px 20px 43px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-07ouwlq>.elementor-widget-container {
  padding: 20px 20px 41px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au .elementor-image-box-title {
  margin-bottom: 18px;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au .elementor-image-box-content .elementor-image-box-title {
  font-size: 17px;
  text-transform: none;
  line-height: 1.3em;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au .elementor-image-box-content .elementor-image-box-description {
  font-size: 15px;
  line-height: 1.4em;
}

.elementor-23010000 .elementor-element.elementor-element-wpqp8au>.elementor-widget-container {
  padding: 20px 20px 20px 20px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f1ede6;
  border-radius: 0px 0px 0px 0px;
}

@media(max-width:1024px) {
  .elementor-23010000 .elementor-element.elementor-element-m6jopdc>.elementor-widget-container {
    padding: 0px 30px 0px 30px;
  }
}

@media(max-width:767px) {
  .elementor-23010000 .elementor-element.elementor-element-m6jopdc>.elementor-widget-container {
    padding: 0px 20px 0px 20px;
  }
  .elementor-23010000 .elementor-element.elementor-element-pf2ggig {
    padding: 30px 30px 30px 30px;
  }
}


#Allvideos .page-title-wrapper {
  display:none;
}

.elementor-23010000 .elementor-section-wrap{
  background-color: #f1ede6;

}


#title-video-page{
padding: 50px 30px 30px 30px;
  
}

#Allvideos .card-block{
  padding:0px !important;
}

#Allvideos .card{
  border:none !important;
}

#videolist-s{
  padding: 25px 0px 0px 0px;
}

#Allvideos .elementor-icon, #Allvideos .elementor-icon-box-title{
  cursor:pointer;
}



.loader{
  
  background: url(/img/loader.gif) no-repeat center center;
  display: none; 
  height:32px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 5px;
  display: none;
}

.active_tab{
  border: 2px solid;
}

/*fin video*/

.page-title-wrapper {
  background-color: #F1EDE6 !important;
}

.menu-dropdown a {
  font-size : 14px !important;
  line-height: 1.4  !important;
}

.product-actions .add-to-cart {
  border-radius: 100px;
}


#product .page-title-wrapper{
  height:120px !important;
  padding: 38px 0 !important;
}

.elementor-widget-button a.elementor-button {
  border-radius: 100px !important;
  background color: #006058 !important;
  font-weight: 600 !important;
  display: inline-block !important;
}

.js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button {
  
 /* color:white !important;
  border-radius: 100px !important;
  background-color: #006058 !important;
  font-weight: 600 !important;
  display: inline-block !important;
  padding: 12px 24px !important;*/
  
  color: white !important;
  border-radius: 100px !important;
  background-color: #006058 !important;
  font-weight: 600 !important;
  display: inline-block !important;
  padding: 10px 14px !important;
  font-size: 12px;
}

.js-product-miniature.style_product_default .add-to-links{
  position:relative !important;
}

#ouvrage .js-product-miniature{
  height: 430px !important;
}

#video-top .ce-edit-btn, #Svideos .ce-edit-btn{
  display:none !important;
}

/*page video detail */

.elementor-26010000 .elementor-element.elementor-element-cs506mk {
  padding: 30px 0px 50px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-xepn1gz>.elementor-element-populated {
  padding: 0px 50px 0px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-zyydzer {
  text-align: left;
}

.elementor-26010000 .elementor-element.elementor-element-lidbcjl .elementor-text-editor {
  text-align: left;
}

.elementor-26010000 .elementor-element.elementor-element-lidbcjl {
  font-size: 17px;
  font-weight: 600;
}

body:not(.rtl) .elementor-26010000 .elementor-element.elementor-element-lidbcjl .elementor-drop-cap {
  margin-right: 10px;
}

body.rtl .elementor-26010000 .elementor-element.elementor-element-lidbcjl .elementor-drop-cap {
  margin-left: 10px;
}

.elementor-26010000 .elementor-element.elementor-element-lidbcjl>.elementor-widget-container {
  margin: 20px 0px 30px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-nl88io3 .elementor-button .elementor-align-icon-right {
  margin-left: 16px;
}

.elementor-26010000 .elementor-element.elementor-element-nl88io3 .elementor-button .elementor-align-icon-left {
  margin-right: 16px;
}

.elementor-26010000 .elementor-element.elementor-element-nl88io3 a.elementor-button {
  background-color: #006058;
  border-radius: 100px 100px 100px 100px;
}

.elementor-26010000 .elementor-element.elementor-element-nl88io3 a.elementor-button:hover {
  color: #006058;
  background-color: #f1ede6;
}

.elementor-26010000 .elementor-element.elementor-element-nl88io3>.elementor-widget-container {
  margin: 50px 0px 0px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-c630nr1>.elementor-element-populated {
  background-color: #f1ede6;
  border-radius: 15px 15px 15px 15px;
  padding: 30px 30px 30px 30px;
}

.elementor-26010000 .elementor-element.elementor-element-3pt8782>.elementor-widget-container {
  margin: 0px 0px 20px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx .elementor-image-box-content .elementor-image-box-title {
  font-size: 15px;
  font-family: "Nunito", sans-serif;
  line-height: 1.4em;
}

.elementor-26010000 .elementor-element.elementor-element-xgrfmyx>.elementor-widget-container {
  margin: 0px 0px 15px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7 .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7 .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7 .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7 .elementor-image-box-content .elementor-image-box-title {
  font-size: 15px;
  font-family: "Nunito", sans-serif;
  line-height: 1.4em;
}

.elementor-26010000 .elementor-element.elementor-element-d9ayme7>.elementor-widget-container {
  margin: 0px 0px 15px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe.elementor-position-right .elementor-image-box-img {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe.elementor-position-left .elementor-image-box-img {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe.elementor-position-top .elementor-image-box-img {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe .elementor-image-box-wrapper .elementor-image-box-img {
  width: 100%;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe .elementor-image-box-wrapper .elementor-image-box-img img {
  opacity: 1;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe .elementor-image-box-wrapper {
  text-align: left;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe .elementor-image-box-content .elementor-image-box-title {
  font-size: 15px;
  font-family: "Nunito", sans-serif;
}

.elementor-26010000 .elementor-element.elementor-element-s89m7pe>.elementor-widget-container {
  margin: 0px 0px 15px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-xnaaqxb {
  background-color: #006058;
  padding: 50px 30px 10px 30px;
}

.elementor-26010000 .elementor-element.elementor-element-medhwzw {
  text-align: center;
}

.elementor-26010000 .elementor-element.elementor-element-medhwzw .elementor-heading-title {
  color: #ffffff;
}

.elementor-26010000 .elementor-element.elementor-element-hpqbfar {
  background-color: #006058;
  padding: 5px 0px 50px 0px;
}

.elementor-26010000 .elementor-element.elementor-element-tjmxwpw.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-tjmxwpw.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-tjmxwpw.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-tjmxwpw .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-26010000 .elementor-element.elementor-element-tjmxwpw .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-tjmxwpw>.elementor-widget-container {
  padding: 15px 15px 15px 15px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-26010000 .elementor-element.elementor-element-vzkdfgo.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-vzkdfgo.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-vzkdfgo.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-vzkdfgo .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-26010000 .elementor-element.elementor-element-vzkdfgo .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-vzkdfgo>.elementor-widget-container {
  padding: 15px 15px 15px 15px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-26010000 .elementor-element.elementor-element-ewsaudx.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-ewsaudx.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-ewsaudx.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-ewsaudx .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-26010000 .elementor-element.elementor-element-ewsaudx .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-ewsaudx>.elementor-widget-container {
  padding: 15px 5px 15px 6px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-26010000 .elementor-element.elementor-element-asqrepo.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-asqrepo.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-asqrepo.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-asqrepo .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-26010000 .elementor-element.elementor-element-asqrepo .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-asqrepo>.elementor-widget-container {
  padding: 15px 5px 15px 6px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

.elementor-26010000 .elementor-element.elementor-element-kkzmhvr.elementor-position-right .elementor-icon-box-icon {
  margin-left: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-kkzmhvr.elementor-position-left .elementor-icon-box-icon {
  margin-right: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-kkzmhvr.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-kkzmhvr .elementor-icon i {
  transform: rotate(0deg);
}

.elementor-26010000 .elementor-element.elementor-element-kkzmhvr .elementor-icon-box-content .elementor-icon-box-description {
  font-size: 15px;
}

.elementor-26010000 .elementor-element.elementor-element-kkzmhvr>.elementor-widget-container {
  padding: 15px 5px 15px 6px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
}

@media(min-width:768px) {
  .elementor-26010000 .elementor-element.elementor-element-xepn1gz {
    width: 75.000%;
  }
  .elementor-26010000 .elementor-element.elementor-element-c630nr1 {
    width: 25.000%;
  }
}

@media(max-width:1024px) {
  .elementor-26010000 .elementor-element.elementor-element-cs506mk {
    padding: 47px 47px 47px 47px;
  }
  .elementor-26010000 .elementor-element.elementor-element-xepn1gz>.elementor-element-populated {
    margin: 0px 0px 0px 0px;
    padding: 0px 30px 0px 0px;
  }
  .elementor-26010000 .elementor-element.elementor-element-c630nr1>.elementor-element-populated {
    padding: 15px 15px 15px 15px;
  }
  
 
}

@media(max-width:767px) {
  .elementor-26010000 .elementor-element.elementor-element-cs506mk {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 30px 30px 30px 30px;
  }
  .elementor-26010000 .elementor-element.elementor-element-xepn1gz>.elementor-element-populated {
    padding: 0px 0px 0px 0px;
  }
  .elementor-26010000 .elementor-element.elementor-element-nl88io3>.elementor-widget-container {
    margin: 40px 0px 40px 0px;
  }
  .elementor-26010000 .elementor-element.elementor-element-xnaaqxb {
    padding: 40px 40px 40px 40px;
  }
}

#Svideos .card{
  border:none !important;
}

#Svideos .page-title-wrapper{
  display:none !important;
}


/***
* class: .sticky-inner
*/


 
   .sticky {
     position: fixed;
     top: 0;
     width: 100%;
     background-color: #fff; /* Couleur de fond */
     box-shadow: 0px 2px 5px rgba(0,0,0,0.1); /* Ombre */
     z-index: 1000; /* Assure que l'élément reste au-dessus des autres contenus */
   }






.btn-secondary, .btn-tertiary, .btn-primary, .poscompare-product .product_desc div.cart button.ajax_add_to_cart_button, .poscompare-product .product_desc div.cart span.ajax_add_to_cart_button{
  background : #006058 !important;
  border: 2px solid #006058 !important;
  color: white !important;
  border-radius: 100px !important;
}

.btn-secondary:hover, 
.btn-tertiary:hover, 
.btn-primary:hover, 
.poscompare-product .product_desc div.cart button.ajax_add_to_cart_button:hover, 
.poscompare-product .product_desc div.cart span.ajax_add_to_cart_button:hover {
  background: #253237 !important;
  border: 2px solid #253237 !important;
}


.elementor-28010000 .elementor-element.elementor-element-ug4dot0 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.elementor-28010000 .elementor-element.elementor-element-6z8ttnu > .elementor-element-populated {
  background-color: rgba(122,122,122,0.31);
  padding: 200px 100px 200px 100px;
}

body:not(.rtl) .elementor-28010000 .elementor-element.elementor-element-st0bbrj .elementor-drop-cap {
  margin-right: 10px;
}

body.rtl .elementor-28010000 .elementor-element.elementor-element-st0bbrj .elementor-drop-cap {
  margin-left: 10px;
}

.elementor-28010000 .elementor-element.elementor-element-cxf1xmn > .elementor-element-populated {
  padding: 20px 30px 20px 30px;
}

.elementor-28010000 .elementor-element.elementor-element-r89v719 .elementor-heading-title {
  font-size: 22px;
  line-height: 1.3em;
}

.elementor-28010000 .elementor-element.elementor-element-wmu1eib {
  color: #000000;
}

.elementor-28010000 .elementor-element.elementor-element-wmu1eib p{
  color: #000000 !important;
  font-family: "Nunito", sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  font-size:16px !important;
}

body:not(.rtl) .elementor-28010000 .elementor-element.elementor-element-wmu1eib .elementor-drop-cap {
  margin-right: 10px;
}

body.rtl .elementor-28010000 .elementor-element.elementor-element-wmu1eib .elementor-drop-cap {
  margin-left: 10px;
}

.elementor-28010000 .elementor-element.elementor-element-wmu1eib > .elementor-widget-container {
  margin: 15px 0px 0px 0px;
}

.elementor-28010000 .elementor-element.elementor-element-g8yxcuv a.elementor-button {
  background-color: #006058;
}

.elementor-28010000 .elementor-element.elementor-element-g8yxcuv > .elementor-widget-container {
  margin: 20px 0px 0px 0px;
}

.elementor-11070101 .elementor-element.elementor-element-hwghkxt .elementor-icon-list-text {
  padding-left: 21px;
  color: #006058;
  font-size: 16px;
}

.elementor-widget-icon-list .elementor-icon-list-text{
  font-size: 16px;
}


@media(min-width:1024px) {
  .pos-search__result{
    width: 340px !important;;
  }
}


@media(max-width:480px) {
  .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button{
    width: auto !important;
    height: auto  !important;
}
  #product .page-title-wrapper {
    height: auto !important; */
     padding:  0px !important;
  }
  

  .ui-jolisearch.centered-list {
   
    transform: translateX(-50%);
    width: 100% !important;
    top: 105px !important;
  }

}


select.form-control:not([size]):not([multiple]) {
 
  border: 1px solid rgba(0, 0, 0, 0.25);
}


.page-cms-3 [class^="p"] {
  
  line-height: 26px !important;
  font-size:16px !important;
}

.page-cms-3 [class^="p"] > b {

  line-height: 26px !important;
  font-size:20px !important;
}

#payment-option-2-container img{
  max-width:200px;
}

.blockreassurance_product > div:nth-child(2) {
  display: none !important;
}

.unit_price_ p{
  display: inline;
  color: #006058;
  font-weight: 600;
  font-size: 1rem;
}


@media screen and (min-width: 1024px) {
  #rc-imageselect,.g-recaptcha, #myCaptcha, .myCaptcha{
    transform:scale(0.77);
    -webkit-transform:scale(0.6);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
    margin-top:20px;
  }
}


@media screen and (max-height: 575px) {
  #rc-imageselect,.g-recaptcha, #myCaptcha , .myCaptcha {
    transform:scale(0.77);
    -webkit-transform:scale(0.77);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
    margin-top:20px;
  }
}

.btn-primary span{
  text-transform :initial !important;
}

.pos-search__result{
  display:none !important;
}

.ui-jolisearch .jolisearch-title{
  background: #006058 !important;
}
  

@media(max-width:767px) {
  
  #acb-banner.acb-position-bottom {
    top: 57% !important;
    bottom: auto !important;
  }
  
  #acb-banner {
    max-height: 95%;
    margin: 10px 10px 10px 10px;
    width: 95% !important;
    flex-direction: column;
    border-top-width: inherit;
  }
  
  .acbCheckboxContainer {
    margin: 2px !important;
  }
  
  #acb-banner.acb-gdpr .acb-button {
    width: auto !important;
  } 
  
  .elementor-18010000 .elementor-element.elementor-element-ultl6hp button {
    font-size: 9px !important;
  }
  
  
  #myCaptcha, .myCaptcha {
    margin-top: 20px;
    /* width: 191px; */
    transform: scale(0.9);
    position: relative;
    left: -15px;
  }
  
  
  .js-product-miniature.style_product_default .add-to-links{
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  #index .product-price-and-shipping {
   
    height: 45px;
  }
  
  #index .js-product-miniature .product_desc .product_name{
    
    height: 60px;
  }
  
  .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button:before{
    margin-bottom: 8px;
  }
  
  .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button{
    font-size: 10px !important;
    padding: 11px 14px !important;
    line-height: 14px;
  }
  
  
  .blockcart .popup_cart.popup-dropdown{
    top: 49px !important;
    right: -50px !important;
  }
  
  
  #category #left-column #search_filters_wrapper {
    display: flex;
    
    flex-direction: column-reverse;
  }
  
  #category #search_filter_toggler{
    width: 85px !important;
  }
  
  #authentication .container .row-wrapper, #registration .container .row-wrapper{
    display: flex;
    flex-direction: column-reverse; 
  }
  
  .container_2{
    margin-bottom: 20px;
  }
  
  .elementor-button .elementor-button-text{
    display: flex;
  }
  
  .elementor-26010000 .elementor-element.elementor-element-cs506mk {
   
    padding: 30px 0px 30px 0px !important;
  }
  
  .elementor-11070101 .elementor-element.elementor-element-thxxzdq, .elementor-11070101 .elementor-element.elementor-element-tmypnek > .elementor-element-populated{
    padding : 0px !important;
  }
  
  #footer #myCaptcha, #footer .myCaptcha{
    left: -39px !important;
    transform: scale(0.7) !important;
  }
  
  
}

@media screen and (min-width: 1024px) {
.js-product-miniature.style_product_default .add-to-links{
  opacity: 1 !important;
  visibility: visible !important;
}
  
  
  #index .product-price-and-shipping {

    height: 60px;
  }

  #index .js-product-miniature .product_desc .product_name{

    height: 60px;
  }
  
  #tabyr04gxj .product-price-and-shipping {

    height: 25px !important;
  }

  
  #tabyr04gxj .js-product-miniature .product_desc .product_name{

    height: 40px !important;
  }

  .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button:before, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button:before{
    margin-bottom: 8px;
  }

  .js-product-miniature.style_product_default .add-to-links li.cart button.ajax_add_to_cart_button, .js-product-miniature.style_product_default .add-to-links li.cart span.ajax_add_to_cart_button{
    font-size: 10px !important;
    padding: 11px 14px !important;
    line-height: 14px;
  }
  
}

#payment-option-1-container img {
  max-width: 200px;
}

.product-description strong {
  color: inherit !important;
}

label[for="payment-option-3"] {
  display: flex;
  align-items: center;
  gap: 10px; /* espace entre le texte et l'image */
  text-align: left;
  justify-content: flex-start;
}

label[for="payment-option-3"] span {
  flex: 1; /* permet au texte de prendre l'espace */
  text-align: left;
}

label[for="payment-option-3"] img {
  width: 26%;
  height: auto;
  
}

.paypal-mark{
  padding: 0px !important;
  margin-left: 10px  !important;
  border:none  !important;
}

/* popup */
.fancybox-wrap {
  max-width: 600px !important;
  width: auto !important;
}


.fancybox-inner {
  width: auto !important;
  max-width: 600px !important;
  overflow: hidden !important;
}


.fancybox-skin {
  box-sizing: border-box;
}


#everpspopup_block_center .container,
#everpspopup_block_center .holiday-notice {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
