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

/* ============================================================
   GIFT'IN — Menu & Header Overrides (solution finale)
   ============================================================ */

/* -------------------------------------------------------
   1. HEADER — Fond blanc TOUJOURS (pas transparent)
   Écrase le absolute-header transparent du theme.css
   ------------------------------------------------------- */
body.page-index:not(.elementor-editor-active) .absolute-header:not(.scroll-menu) {
  background: #ffffff !important;
}
body.page-index:not(.elementor-editor-active) .absolute-header:not(.scroll-menu).light-backgound {
  background: #ffffff !important;
}
#header .sticky-inner.scroll-menu {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

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

/* -------------------------------------------------------
   3. ICÔNES (recherche, compte, panier) — Plus grandes
   ------------------------------------------------------- */
.elementor-widget-posSearch .pos-search__toggle i {
  font-size: 28px !important;
  color: #ff5546 !important;
  transition: color 0.3s ease;
}
.elementor-widget-posSearch .pos-search__toggle i:hover {
  color: #d93e2d !important;
}
.elementor-widget-posAccount .pos-account > a {
  color: #ff5546 !important;
  padding: 0 8px !important;
}
.elementor-widget-posAccount .pos-account > a i {
  font-size: 28px !important;
  transition: color 0.3s ease;
}
.elementor-widget-posAccount .pos-account > a:hover,
.elementor-widget-posAccount .pos-account > a:hover i {
  color: #d93e2d !important;
}
.elementor-widget-posCart .blockcart > a {
  color: #ff5546 !important;
  padding: 0 8px !important;
}
.elementor-widget-posCart .blockcart > a > i {
  font-size: 30px !important;
  transition: color 0.3s ease;
}
.elementor-widget-posCart .blockcart > a:hover,
.elementor-widget-posCart .blockcart > a:hover > i {
  color: #d93e2d !important;
}
.elementor-widget-posCart .blockcart .cart-products-count {
  width: 18px !important;
  height: 18px !important;
  font-size: 10px !important;
  line-height: 18px !important;
  text-align: center !important;
  background-color: #ff5546 !important;
  color: #fff !important;
  border-radius: 50% !important;
}

/* -------------------------------------------------------
   4. MENU PRINCIPAL — Catégories (liens de niveau 1)
      Rouge Gift'in, Poppins bold, uppercase
   ------------------------------------------------------- */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #ff5546 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: color 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > a,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.active > a,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.home > a {
  color: #d93e2d !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a i {
  color: inherit !important;
}

/* -------------------------------------------------------
   5. SOUS-MENUS (dropdowns) — Style uniforme
   ------------------------------------------------------- */

/* Conteneur dropdown — fond blanc, ombre, bordure rouge top */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .pos-sub-inner {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-top: 2px solid #ff5546 !important;
  border-radius: 0 0 8px 8px !important;
  padding: 20px 25px !important;
}

/* Flyout dropdown — même style */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu .pos-sub-inner {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-top: 2px solid #ff5546 !important;
  border-radius: 0 0 8px 8px !important;
}

/* -------------------------------------------------------
   6. STYLE UNIFORME — column_title ET submenu-item > a
      MÊME apparence pour TOUT le contenu des dropdowns
   ------------------------------------------------------- */

/* Titres de colonnes (ex: "T-shirts imprimés", "Textile personnalisé")
   → même style que les submenu-items */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown .column_title,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown a.column_title,
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown h4.column_title {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #333333 !important;
  text-transform: capitalize !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  display: block !important;
  transition: color 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown a.column_title:hover {
  color: #ff5546 !important;
}

/* Liens de sous-catégories dans les dropdowns */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #555555 !important;
  text-transform: capitalize !important;
  line-height: 1.4 !important;
  display: block !important;
  padding: 4px 0 !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item > a:hover {
  color: #ff5546 !important;
  transform: translateX(6px) !important;
}

/* Sous-sous-catégories */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item .category-sub-menu a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #555555 !important;
  text-transform: capitalize !important;
  line-height: 28px !important;
  display: block !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown .submenu-item .category-sub-menu a:hover {
  color: #ff5546 !important;
  transform: translateX(6px) !important;
}

/* Flyout menu items — même style */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li a {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #555555 !important;
  text-transform: capitalize !important;
  background: #ffffff !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item .menu-dropdown.cat-drop-menu li a:hover {
  color: #ff5546 !important;
  transform: translateX(6px) !important;
}

/* -------------------------------------------------------
   7. ANIMATION UNIFORME — slideDown sur tous les dropdowns
      + suppression espace vide (padding-top) entre menu et dropdown
   ------------------------------------------------------- */
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-dropdown {
  padding-top: 0 !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu-dropdown.cat-drop-menu {
  padding-top: 0 !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > .menu-dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}
#_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item:hover > .menu-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

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

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

/* Logo mobile */
@media (max-width: 991px) {
  #_desktop_logo .site-logo img {
    max-width: 120px !important;
    max-height: 40px !important;
  }
}
@media (max-width: 575px) {
  #_desktop_logo .site-logo img {
    max-width: 100px !important;
    max-height: 36px !important;
  }
}

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

/* Footer main section */
.elementor-6010000 .elementor-element.elementor-element-gft_footer1 {
  background-color: #ffffff !important;
  border-top: 2px solid #f0f0f0 !important;
}
.elementor-6010000 .elementor-element.elementor-element-gft_footer2 {
  background-color: #f8f8f8 !important;
}

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

/* Footer links */
.elementor-6010000 .pos-links a {
  color: #555555 !important;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif !important;
  transition: color 0.3s ease, padding-left 0.3s ease !important;
  line-height: 2.2 !important;
}
.elementor-6010000 .pos-links a:hover {
  color: #ff5546 !important;
  padding-left: 5px !important;
}

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

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

/* Footer logo */
.elementor-6010000 .elementor-element-gft_logo img {
  max-width: 160px !important;
}

/* Footer copyright bar */
.elementor-6010000 .elementor-element-gft_footer2 {
  border-top: 1px solid #e8e8e8 !important;
}
.elementor-6010000 .elementor-element-gft_copyright p {
  font-size: 13px !important;
  color: #999999 !important;
}
.elementor-6010000 .elementor-element-gft_copyright a {
  color: #ff5546 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
.elementor-6010000 .elementor-element-gft_copyright a:hover {
  color: #d93e2d !important;
}

/* Footer responsive */
@media (max-width: 767px) {
  .elementor-6010000 .elementor-element.elementor-element-gft_footer1 .elementor-column {
    text-align: center !important;
    margin-bottom: 30px !important;
  }
  .elementor-6010000 h4.elementor-heading-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .elementor-6010000 .elementor-element-gft_logo img {
    margin: 0 auto !important;
  }
}

/* ============================================
   10. MOBILE — Header, Menu, Bottom Nav
   ============================================ */

/* --- 10.1 Mobile Header (CE section gft_mob_hdr) --- */
@media (min-width: 992px) {
  .elementor-element-gft_mob_hdr {
    display: none !important;
  }
}
@media (max-width: 991px) {
  /* Hide desktop header on mobile — menu is moved out via JS */
  .elementor-element-jcabizo {
    display: none !important;
  }
  /* Show mobile header — logo centered + cart right (no hamburger) */
  .elementor-element-gft_mob_hdr {
    display: block !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    padding: 8px 12px !important;
  }
  .elementor-element-gft_mob_hdr .elementor-row,
  .elementor-element-gft_mob_hdr .elementor-container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  /* Hide hamburger column — menu is in bottom nav */
  .elementor-element-gft_mob_c1 {
    display: none !important;
  }
  /* Mobile logo column — centered */
  .elementor-element-gft_mob_c2 {
    flex: 1 !important;
    text-align: center !important;
  }
  .elementor-element-gft_mob_c2 .site-logo img {
    max-width: 130px !important;
    max-height: 44px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  /* Mobile cart column */
  .elementor-element-gft_mob_c3 {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .elementor-element-gft_mob_c3 .blockcart > a {
    color: #ff5546 !important;
    font-size: 0 !important;
    padding: 0 !important;
  }
  .elementor-element-gft_mob_c3 .blockcart > a > i {
    font-size: 26px !important;
    color: #ff5546 !important;
  }
  .elementor-element-gft_mob_c3 .blockcart .cart-products-count {
    top: -2px !important;
    right: -6px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    background: #ff5546 !important;
    color: #fff !important;
    border-radius: 50% !important;
    line-height: 18px !important;
    text-align: center !important;
  }
  .elementor-element-gft_mob_c3 .blockcart .cart-products-total {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .elementor-element-gft_mob_c2 .site-logo img {
    max-width: 100px !important;
    max-height: 36px !important;
  }
}

/* --- 10.2 Mobile Side Menu (posmegamenu) --- */
@media (max-width: 991px) {
  /* Menu overlay */
  body.mobile-menu-open::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.5) !important;
    z-index: 1000 !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
  }
  body.mobile-menu-open {
    overflow: hidden !important;
  }

  /* The menu panel */
  #_desktop_megamenu {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    width: 300px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    transition: left 0.3s ease !important;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15) !important;
    padding: 0 !important;
  }
  body.mobile-menu-open #_desktop_megamenu,
  #_desktop_megamenu.open-mobile-menu {
    left: 0 !important;
  }

  /* Menu header with close button */
  #_desktop_megamenu .pos-menu-horizontal::before {
    content: 'Menu' !important;
    display: block !important;
    padding: 18px 20px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #222 !important;
    border-bottom: 2px solid #ff5546 !important;
    background: #fff !important;
  }

  /* Menu items styling */
  #_desktop_megamenu .pos-menu-horizontal .menu-content {
    padding: 0 !important;
    background: #ffffff !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item {
    display: block !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a {
    display: block !important;
    padding: 14px 55px 14px 20px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    text-transform: none !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    background: transparent !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a:hover,
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item.active > a {
    color: #ff5546 !important;
    background: #fff5f4 !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a span {
    font-size: 15px !important;
  }
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item > a i.icon-rt-arrow-down {
    display: none !important;
  }

  /* Menu items need relative for icon positioning */
  #_desktop_megamenu .pos-menu-horizontal .menu-content .menu-item {
    position: relative !important;
  }

  /* Mobile dropdown toggle icon — right end of row */
  #_desktop_megamenu .icon-drop-mobile {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 50px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 2 !important;
    border-left: 1px solid #f0f0f0 !important;
  }
  #_desktop_megamenu .icon-drop-mobile i {
    color: #ff5546 !important;
    font-size: 22px !important;
  }
  /* Show + by default, hide - */
  #_desktop_megamenu .icon-drop-mobile i.add {
    display: block !important;
  }
  #_desktop_megamenu .icon-drop-mobile i.remove {
    display: none !important;
  }
  /* When menu item is open: hide +, show - */
  #_desktop_megamenu .menu-item.open_menu > .icon-drop-mobile i.add,
  #_desktop_megamenu .pos-menu-col.open_menu > .icon-drop-mobile i.add,
  #_desktop_megamenu .open_menu > .icon-drop-mobile i.add {
    display: none !important;
  }
  #_desktop_megamenu .menu-item.open_menu > .icon-drop-mobile i.remove,
  #_desktop_megamenu .pos-menu-col.open_menu > .icon-drop-mobile i.remove,
  #_desktop_megamenu .open_menu > .icon-drop-mobile i.remove {
    display: block !important;
  }

  /* Submenu dropdown */
  #_desktop_megamenu .pos-sub-menu.menu-dropdown {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: #fafafa !important;
    display: none !important;
  }
  #_desktop_megamenu .menu-item.open_menu > .pos-sub-menu.menu-dropdown,
  #_desktop_megamenu .menu-item.open_menu > .ul-column.column_dropdown {
    display: block !important;
  }

  /* Submenu inner items */
  #_desktop_megamenu .pos-sub-menu .column_title,
  #_desktop_megamenu .pos-sub-menu .pos-menu-col a {
    display: block !important;
    padding: 12px 20px 12px 35px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    border-bottom: 1px solid #f5f5f5 !important;
    text-transform: none !important;
    background: #fafafa !important;
  }
  #_desktop_megamenu .pos-sub-menu .column_title:hover,
  #_desktop_megamenu .pos-sub-menu .pos-menu-col a:hover {
    color: #ff5546 !important;
    background: #fff0ee !important;
  }

  /* Category dropdown columns */
  #_desktop_megamenu .ul-column.column_dropdown {
    position: static !important;
    width: 100% !important;
    display: none !important;
    background: #fafafa !important;
  }
  #_desktop_megamenu .ul-column .pos-menu-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  #_desktop_megamenu .pos-sub-inner {
    padding: 0 !important;
  }
  #_desktop_megamenu .pos-menu-row {
    margin: 0 !important;
  }

  /* Close menu on overlay click */
  body.mobile-menu-open .elementor-element-gft_mob_hdr {
    z-index: 998 !important;
  }
}

/* --- 10.3 Bottom Navigation Bar (posquickmenu) --- */
.giftin-bottomnav {
  background: #ffffff !important;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08) !important;
  border-top: 1px solid #f0f0f0 !important;
}
.giftin-bottomnav .quickmenu-mobile-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  padding: 6px 0 !important;
  height: 60px !important;
}
.giftin-bottomnav .quickmenu-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  min-width: 56px !important;
  transition: color 0.2s ease !important;
  -webkit-tap-highlight-color: transparent !important;
}
.giftin-bottomnav .quickmenu-item .block-icon {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.giftin-bottomnav .quickmenu-item .block-icon i.material-icons {
  font-size: 24px !important;
  color: #777 !important;
  transition: color 0.2s ease !important;
}
.giftin-bottomnav .quickmenu-item:active .block-icon i.material-icons,
.giftin-bottomnav .quickmenu-item:hover .block-icon i.material-icons {
  color: #ff5546 !important;
}
.giftin-bottomnav .quickmenu-item .block-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #777 !important;
  margin-top: 2px !important;
  transition: color 0.2s ease !important;
}
.giftin-bottomnav .quickmenu-item:active .block-title,
.giftin-bottomnav .quickmenu-item:hover .block-title {
  color: #ff5546 !important;
}
/* Cart badge in bottom nav */
.giftin-bottomnav .qm-count {
  position: absolute !important;
  top: -6px !important;
  right: -10px !important;
  width: 16px !important;
  height: 16px !important;
  font-size: 9px !important;
  background: #ff5546 !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}
/* Hide SVG icons (we use material-icons instead) */
.giftin-bottomnav .quickmenu-item .block-icon img {
  display: none !important;
}
/* Hide custom content popup */
.giftin-bottomnav .quickmenu-item_content {
  display: none !important;
}

/* Ensure footer has space for bottom nav on mobile */
@media (max-width: 1024px) {
  .has-quickmenu #footer {
    padding-bottom: 65px !important;
  }
}

/* --- 10.4 General Mobile Responsive --- */
@media (max-width: 991px) {
  /* Homepage slideshow height */
  .pos-slideshow {
    max-height: 400px !important;
  }
  /* Product grids: better spacing */
  .product-miniature {
    margin-bottom: 15px !important;
  }
  /* Section titles */
  .pos-title-widget .pos-title {
    font-size: 20px !important;
  }
  .pos-title-widget .pos-subtitle {
    font-size: 13px !important;
  }
  /* Service icons section: stack on mobile */
  .elementor-element-twpvxcp .elementor-column {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 575px) {
  /* Smaller slideshow */
  .pos-slideshow {
    max-height: 250px !important;
  }
  .pos-title-widget .pos-title {
    font-size: 18px !important;
  }
}

/* =================================================================
   11. GIFTIN HERO CARDS CAROUSEL
   ================================================================= */

/* --- 11.1 Container --- */
.giftin-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #f5f5f5;
}

.giftin-hero__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* --- 11.2 Individual Slide --- */
.giftin-hero__slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  min-height: 550px;
  background: linear-gradient(135deg, var(--hero-from, #ffecd2), var(--hero-to, #fcb69f));
}

/* Decorative circles */
.giftin-hero__slide::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -100px;
  right: -50px;
  pointer-events: none;
}
.giftin-hero__slide::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  bottom: -40px;
  left: 10%;
  pointer-events: none;
}

/* --- 11.3 Content (left side) --- */
.giftin-hero__content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.giftin-hero__slide.is-active .giftin-hero__content {
  opacity: 1;
  transform: translateY(0);
}

.giftin-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.giftin-hero__title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a2e;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.giftin-hero__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  opacity: 0.8;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.giftin-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a2e;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26,26,46,0.3);
}
.giftin-hero__cta:hover {
  background: #ff5546;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,85,70,0.4);
  text-decoration: none;
}

/* --- 11.4 Visual (right side - product image) --- */
.giftin-hero__visual {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.giftin-hero__product-float {
  position: relative;
  animation: heroFloat 4s ease-in-out infinite;
}

.giftin-hero__product-img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.giftin-hero__slide.is-active .giftin-hero__product-img {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Hover tilt on product */
.giftin-hero__product-float:hover .giftin-hero__product-img {
  transform: scale(1.05) rotate(3deg);
}

/* Floating animation */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* --- 11.5 Navigation Arrows --- */
.giftin-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.giftin-hero__arrow:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.1);
}
.giftin-hero__arrow i {
  font-size: 28px;
  color: #1a1a2e;
}
.giftin-hero__arrow--prev { left: 20px; }
.giftin-hero__arrow--next { right: 20px; }

/* --- 11.6 Dots --- */
.giftin-hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.giftin-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.giftin-hero__dot.is-active {
  background: #fff;
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- 11.7 Progress Bar --- */
.giftin-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.2);
  z-index: 10;
}
.giftin-hero__progress-bar {
  height: 100%;
  background: rgba(255,255,255,0.8);
  width: 0%;
  transition: width 0.1s linear;
}

/* --- 11.8 Tablet (max 991px) --- */
@media (max-width: 991px) {
  .giftin-hero__slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px 50px;
    min-height: 520px;
  }
  .giftin-hero__content {
    max-width: 100%;
    order: 1;
  }
  .giftin-hero__visual {
    order: 0;
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 200px;
    margin-bottom: 16px;
  }
  .giftin-hero__product-img {
    max-width: 250px;
    max-height: 250px;
  }
  .giftin-hero__title {
    font-size: 32px;
  }
  .giftin-hero__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .giftin-hero__arrow {
    width: 40px;
    height: 40px;
  }
  .giftin-hero__arrow i {
    font-size: 24px;
  }
  .giftin-hero__arrow--prev { left: 10px; }
  .giftin-hero__arrow--next { right: 10px; }
  .giftin-hero {
    border-radius: 0 0 16px 16px;
  }
}

/* --- 11.8b Mobile (max 768px) --- */
@media (max-width: 768px) {
  .giftin-hero__product-img {
    max-width: 200px;
    max-height: 200px;
  }
  .giftin-hero__visual {
    min-height: 160px;
  }
}

/* --- 11.9 Mobile (max 575px) --- */
@media (max-width: 575px) {
  .giftin-hero__slide {
    padding: 28px 20px 45px;
    min-height: 440px;
  }
  .giftin-hero__visual {
    min-height: 160px;
  }
  .giftin-hero__product-img {
    max-width: 180px;
    max-height: 180px;
  }
  .giftin-hero__title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .giftin-hero__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .giftin-hero__badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 14px;
  }
  .giftin-hero__cta {
    font-size: 14px;
    padding: 12px 28px;
  }
  .giftin-hero__arrow {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 55px;
    transform: none;
  }
  .giftin-hero__arrow:hover {
    transform: scale(1.1);
  }
  .giftin-hero__arrow--prev { left: 16px; }
  .giftin-hero__arrow--next { right: 16px; }
  .giftin-hero__dots {
    bottom: 18px;
    gap: 8px;
  }
  .giftin-hero__dot {
    width: 8px;
    height: 8px;
  }
  .giftin-hero__dot.is-active {
    width: 26px;
  }
  .giftin-hero {
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  /* Decorative circles smaller on mobile */
  .giftin-hero__slide::before {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
  }
  .giftin-hero__slide::after {
    width: 100px;
    height: 100px;
  }
}

/* =================================================================
   END HERO CARDS CAROUSEL
   ================================================================= */

/* =================================================================
   12. GIFTIN HOMEPAGE SECTIONS (generic — reused by all sections)
   ================================================================= */

/* --- 12.1 Section container --- */
.giftin-sec {
  padding: 50px 0 40px;
}

/* --- 12.2 Header --- */
.giftin-sec__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}
.giftin-sec__title-wrap {
  display: flex;
  flex-direction: column;
}
.giftin-sec__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.giftin-sec__icon i {
  font-size: 22px;
  color: #fff;
}
.giftin-sec__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px 0;
  line-height: 1.2;
}
.giftin-sec__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #888;
  margin: 0;
}
.giftin-sec__viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-top: 8px;
}
.giftin-sec__viewall:hover {
  color: #fff !important;
  text-decoration: none;
}
.giftin-sec__viewall i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.giftin-sec__viewall:hover i {
  transform: translateX(4px);
}

/* --- 12.3 Filter Buttons --- */
.giftin-sec__filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.giftin-sec__filters::-webkit-scrollbar { display: none; }

.giftin-sec__filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.giftin-sec__filter i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.giftin-sec__filter:hover {
  border-color: var(--filter-accent, #ff5546);
  color: var(--filter-accent, #ff5546);
  background: #fff;
}
.giftin-sec__filter:hover i {
  transform: scale(1.15);
}
.giftin-sec__filter.is-active {
  background: var(--filter-accent, #ff5546);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.giftin-sec__filter.is-active:hover {
  color: #fff;
  opacity: 0.9;
}

/* Hover background for viewall */
.giftin-sec__viewall:hover {
  background: currentColor;
}
.giftin-sec__viewall:hover > * {
  color: #fff;
}

/* --- 12.4 Product Carousel --- */
.giftin-sec__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.giftin-sec__carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 200px;
}
.giftin-sec__carousel::-webkit-scrollbar { display: none; }

.giftin-sec__track {
  display: flex;
  gap: 20px;
  padding: 4px 0 10px;
  min-height: 200px;
}

/* Carousel arrows */
.giftin-sec__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 2;
}
.giftin-sec__arrow:hover {
  background: var(--arrow-accent, #ff5546);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.giftin-sec__arrow i {
  font-size: 26px;
  color: #333;
  transition: color 0.3s ease;
}
.giftin-sec__arrow:hover i {
  color: #fff;
}

/* Loader */
.giftin-sec__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
}
.giftin-sec__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #eee;
  border-top-color: #ff5546;
  border-radius: 50%;
  animation: giftinSpin 0.7s linear infinite;
}
@keyframes giftinSpin { to { transform: rotate(360deg); } }

/* Product card in carousel */
.giftin-sec__track .product-miniature {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  opacity: 0;
  animation: giftinFadeUp 0.4s ease forwards;
}
.giftin-sec__track .product-miniature:nth-child(1) { animation-delay: 0.05s; }
.giftin-sec__track .product-miniature:nth-child(2) { animation-delay: 0.1s; }
.giftin-sec__track .product-miniature:nth-child(3) { animation-delay: 0.15s; }
.giftin-sec__track .product-miniature:nth-child(4) { animation-delay: 0.2s; }
.giftin-sec__track .product-miniature:nth-child(5) { animation-delay: 0.25s; }
.giftin-sec__track .product-miniature:nth-child(6) { animation-delay: 0.3s; }
.giftin-sec__track .product-miniature:nth-child(7) { animation-delay: 0.35s; }
.giftin-sec__track .product-miniature:nth-child(8) { animation-delay: 0.4s; }

@keyframes giftinFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.giftin-sec__track .product-miniature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.giftin-sec__track .product-miniature .img_block {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.giftin-sec__track .product-miniature .img_block img {
  border-radius: 0;
  width: 100%;
  height: auto;
}

.giftin-no-products {
  width: 100%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #999;
  padding: 40px 20px;
}

/* --- 12.5 Tablet (max 991px) --- */
@media (max-width: 991px) {
  .giftin-sec { padding: 36px 0 30px; }
  .giftin-sec__track .product-miniature {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
  .giftin-sec__track { gap: 16px; }
  .giftin-sec__title { font-size: 26px; }
  .giftin-sec__filters { margin-bottom: 22px; }
  .giftin-sec__arrow { width: 38px; height: 38px; }
  .giftin-sec__arrow i { font-size: 22px; }
}

/* --- 12.6 Mobile (max 575px) --- */
@media (max-width: 575px) {
  .giftin-sec { padding: 28px 0 24px; }
  .giftin-sec__header { margin-bottom: 20px; }
  .giftin-sec__icon { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 8px; }
  .giftin-sec__icon i { font-size: 18px; }
  .giftin-sec__title { font-size: 22px; }
  .giftin-sec__subtitle { font-size: 13px; }
  .giftin-sec__viewall { font-size: 13px; padding: 8px 16px; }
  .giftin-sec__track .product-miniature {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .giftin-sec__track { gap: 12px; }
  .giftin-sec__filter { padding: 8px 16px; font-size: 12px; gap: 6px; }
  .giftin-sec__filter i { font-size: 16px; }
  .giftin-sec__filters { gap: 8px; margin-bottom: 18px; }
  .giftin-sec__track .product-miniature { border-radius: 12px; }
  .giftin-sec__track .product-miniature .img_block { border-radius: 12px 12px 0 0; }
  /* Hide arrows on mobile (swipe instead) */
  .giftin-sec__arrow { display: none; }
  .giftin-sec__carousel-wrap { gap: 0; }
}

/* =================================================================
   END HOMEPAGE SECTIONS
   ================================================================= */

/* =================================================================
   13. HIDE DEFAULT CE HOMEPAGE SECTIONS
   Keep: header (jcabizo, gft_mob_hdr), footer (gft_footer1, gft_footer2)
   Hide: all homepage body sections (slideshow, banners, products, etc.)
   Reversible: just remove/comment this block to restore them.
   ================================================================= */
body.page-index .elementor-element-wdnlmbp,  /* Slideshow */
body.page-index .elementor-element-sujxdya,  /* Heading */
body.page-index .elementor-element-mjqiqsr,  /* Banner */
body.page-index .elementor-element-twpvxcp,  /* Service icons / images */
body.page-index .elementor-element-ggtkdyz,  /* Best Sellers */
body.page-index .elementor-element-rjphkkq,  /* Categories */
body.page-index .elementor-element-jntrezn,  /* Hot Deals + New Arrivals */
body.page-index .elementor-element-ykvxmul,  /* Banners */
body.page-index .elementor-element-opxelkg,  /* Featured Products */
body.page-index .elementor-element-lshnaof,  /* Banner */
body.page-index .elementor-element-ysouzdk   /* Recently Added */
{
  display: none !important;
}

/* --- 10.5 Mobile Menu Close on Overlay Click (JS helper) --- */
/* Close button inside menu */
#_desktop_megamenu .giftin-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #ff5546;
  font-size: 24px;
}

/* ============================================================
   14. PRODUCT PAGE REDESIGN — Gift'in
   Theme: ecolife / product_layout1
   Structure: .product-layout1 > .col-md-6 (images) + .col-md-6 (info)
              then .col-md-12 (tabs)
   ============================================================ */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* --- 14.11 Social Sharing --- */
.product-layout1 .social-sharing li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #555;
  font-size: 16px;
  transition: all 0.2s ease;
  margin-right: 6px;
}
.product-layout1 .social-sharing li a:hover {
  background: #ff5546;
  color: #fff;
  transform: translateY(-2px);
}

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

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

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

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

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

/* =================================================================
   END PRODUCT PAGE REDESIGN
   ================================================================= */

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

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

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

