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

/* =========================================================
   SEÇÃO ELETRÔNICOS PREMIUM - escopo exclusivo
   Usar junto com a classe: secao-eletronicos-premium
   Template: product_layout5_premium_v2.tpl
   ========================================================= */

.secao-eletronicos-premium {
  background: #000 !important;
  padding: 38px 42px 54px !important;
  overflow: hidden;
  position: relative;
}

.secao-eletronicos-premium::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin-bottom: 28px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,.65) 12%, rgba(212,175,55,.18) 55%, transparent 100%);
}

/* Título/tabs */
.secao-eletronicos-premium .tab-titles,
.secao-eletronicos-premium .nav-tabs,
.secao-eletronicos-premium .tabs,
.secao-eletronicos-premium .tab_cates {
  display: flex !important;
  align-items: center !important;
  gap: 26px !important;
  border: 0 !important;
  margin: 0 0 34px !important;
  padding: 0 !important;
  list-style: none !important;
}

.secao-eletronicos-premium .tab-titles li,
.secao-eletronicos-premium .nav-tabs li,
.secao-eletronicos-premium .tabs li,
.secao-eletronicos-premium .tab_cates li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.secao-eletronicos-premium .tab-titles li:first-child::after,
.secao-eletronicos-premium .nav-tabs li:first-child::after,
.secao-eletronicos-premium .tabs li:first-child::after,
.secao-eletronicos-premium .tab_cates li:first-child::after {
  content: "-";
  color: #d4af37;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 26px;
  margin-left: 26px;
  opacity: .95;
}

.secao-eletronicos-premium .tab-titles a,
.secao-eletronicos-premium .nav-tabs a,
.secao-eletronicos-premium .tabs a,
.secao-eletronicos-premium .tab_cates a {
  background: transparent !important;
  border: 0 !important;
  color: #d4af37 !important;
  font-family: "Oswald", Arial, sans-serif !important;
  font-size: 28px !important;
  line-height: 1.05 !important;
  font-weight: 500 !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
}

/* Carrossel */
.secao-eletronicos-premium .slick-list,
.secao-eletronicos-premium .owl-stage-outer {
  margin: 0 -10px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.secao-eletronicos-premium .slick-slide,
.secao-eletronicos-premium .owl-item {
  padding: 0 10px !important;
  box-sizing: border-box !important;
}

/* Card premium */
.secao-eletronicos-premium .product-premium-card-v2 {
  background: #f8f8f8 !important;
  border-radius: 14px !important;
  padding: 14px 14px 16px !important;
  min-height: 418px !important;
  height: 100% !important;
  overflow: hidden !important;
  box-shadow: 0 18px 36px rgba(0,0,0,.38) !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  position: relative !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.secao-eletronicos-premium .product-premium-card-v2:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 24px 46px rgba(212,175,55,.20) !important;
}

.secao-eletronicos-premium .product-premium-media-v2 {
  position: relative !important;
  background: #fff !important;
  border-radius: 12px !important;
  min-height: 190px !important;
  height: 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 17px !important;
  overflow: hidden !important;
}

.secao-eletronicos-premium .product-premium-thumb-v2,
.secao-eletronicos-premium .product-premium-thumb-v2.thumbnail,
.secao-eletronicos-premium .product-premium-thumb-v2.product-thumbnail {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.secao-eletronicos-premium .product-premium-thumb-v2 img {
  max-width: 92% !important;
  max-height: 176px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transform: none !important;
  transition: transform .25s ease !important;
}

.secao-eletronicos-premium .product-premium-card-v2:hover .product-premium-thumb-v2 img {
  transform: scale(1.045) !important;
}

/* Remove textos feios dos hooks: wishlist/compare/quick view */
.secao-eletronicos-premium .product-premium-icons-v2 {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 8 !important;
  display: flex !important;
  gap: 7px !important;
}

.secao-eletronicos-premium .product-premium-icons-v2 a,
.secao-eletronicos-premium .product-premium-icons-v2 button,
.secao-eletronicos-premium .product-premium-icons-v2 .btn,
.secao-eletronicos-premium .product-premium-icons-v2 .addToWishlist,
.secao-eletronicos-premium .product-premium-icons-v2 .wishlist_button,
.secao-eletronicos-premium .product-premium-icons-v2 .compare-button {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #222 !important;
  border: 0 !important;
  font-size: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.12) !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.secao-eletronicos-premium .product-premium-icons-v2 a span,
.secao-eletronicos-premium .product-premium-icons-v2 button span {
  font-size: 0 !important;
  line-height: 0 !important;
}

.secao-eletronicos-premium .product-premium-icons-v2 a::before,
.secao-eletronicos-premium .product-premium-icons-v2 button::before {
  font-size: 17px !important;
  line-height: 1 !important;
  color: #333 !important;
}

.secao-eletronicos-premium .product-premium-wishlist-v2 a::before,
.secao-eletronicos-premium .product-premium-wishlist-v2 button::before {
  content: "♡" !important;
  font-family: Arial, sans-serif !important;
  font-weight: 400 !important;
}

.secao-eletronicos-premium .product-premium-compare-v2::before {
  content: "↔" !important;
  font-family: Arial, sans-serif !important;
}

.secao-eletronicos-premium .product-premium-icons-v2 a:hover,
.secao-eletronicos-premium .product-premium-icons-v2 button:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

/* Flags */
.secao-eletronicos-premium .product-premium-flags-v2 {
  position: absolute !important;
  top: 11px !important;
  left: 11px !important;
  z-index: 9 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.secao-eletronicos-premium .product-premium-flags-v2 li {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.secao-eletronicos-premium .product-premium-flags-v2 li span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  background: #8f6be8 !important;
  color: #fff !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .45px !important;
  text-transform: uppercase !important;
}

.secao-eletronicos-premium .product-premium-flags-v2 li.discount span,
.secao-eletronicos-premium .product-premium-flags-v2 li.on-sale span {
  background: #ef4444 !important;
}

.secao-eletronicos-premium .product-premium-body-v2 {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

.secao-eletronicos-premium .product-premium-brand-v2 {
  min-height: 18px !important;
  margin: 0 0 7px !important;
  color: #777 !important;
}

.secao-eletronicos-premium .product-premium-brand-v2 a {
  color: #777 !important;
  font-family: Arial, sans-serif !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  letter-spacing: 1.4px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.secao-eletronicos-premium .product-premium-name-v2 {
  margin: 0 0 12px !important;
  padding: 0 !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.secao-eletronicos-premium .product-premium-name-v2 a,
.secao-eletronicos-premium .product-premium-name-v2 .product_name {
  color: #111 !important;
  font-family: "Oswald", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.32 !important;
  font-weight: 600 !important;
  letter-spacing: .1px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.secao-eletronicos-premium .product-premium-price-v2 {
  margin: 0 0 11px !important;
  min-height: 52px !important;
}

.secao-eletronicos-premium .product-premium-price-v2 .regular-price {
  display: block !important;
  color: #777 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  text-decoration: line-through !important;
  margin: 0 0 6px !important;
}

.secao-eletronicos-premium .product-premium-price-v2 .price {
  display: block !important;
  color: #b98b00 !important;
  font-family: "Oswald", Arial, sans-serif !important;
  font-size: 27px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: .4px !important;
}

.secao-eletronicos-premium .product-premium-stock-v2 {
  min-height: 16px !important;
  margin: 0 0 12px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.secao-eletronicos-premium .product-premium-stock-v2 .in-stock {
  color: #2e7d32 !important;
}

.secao-eletronicos-premium .product-premium-stock-v2 .out-of-stock {
  color: #9b1c1c !important;
}

.secao-eletronicos-premium .product-premium-cart-v2 {
  margin-top: auto !important;
}

.secao-eletronicos-premium .product-premium-cart-v2 .ajax_add_to_cart_button,
.secao-eletronicos-premium .product-premium-cart-v2 .add-to-cart,
.secao-eletronicos-premium .product-premium-cart-v2 button,
.secao-eletronicos-premium .product-premium-cart-v2 .btn,
.secao-eletronicos-premium .product-premium-cart-v2 a {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 8px !important;
  border: 1px solid #d4af37 !important;
  background: transparent !important;
  color: #a87c00 !important;
  font-family: Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all .22s ease !important;
}

.secao-eletronicos-premium .product-premium-cart-v2 .ajax_add_to_cart_button:hover,
.secao-eletronicos-premium .product-premium-cart-v2 .add-to-cart:hover,
.secao-eletronicos-premium .product-premium-cart-v2 button:hover,
.secao-eletronicos-premium .product-premium-cart-v2 .btn:hover,
.secao-eletronicos-premium .product-premium-cart-v2 a:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

/* Setas e dots */
.secao-eletronicos-premium .slick-arrow {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(212,175,55,.85) !important;
  background: transparent !important;
  color: #d4af37 !important;
  z-index: 20 !important;
  font-size: 0 !important;
}

.secao-eletronicos-premium .slick-arrow::before {
  color: #d4af37 !important;
  opacity: 1 !important;
  font-size: 18px !important;
}

.secao-eletronicos-premium .slick-arrow:hover {
  background: #d4af37 !important;
}

.secao-eletronicos-premium .slick-arrow:hover::before {
  color: #000 !important;
}

.secao-eletronicos-premium .slick-dots {
  margin-top: 28px !important;
  bottom: auto !important;
  position: relative !important;
}

.secao-eletronicos-premium .slick-dots li button::before {
  color: rgba(212,175,55,.45) !important;
  opacity: 1 !important;
  font-size: 12px !important;
}

.secao-eletronicos-premium .slick-dots li.slick-active button::before {
  color: #d4af37 !important;
}

@media (max-width: 1024px) {
  .secao-eletronicos-premium {
    padding: 30px 22px 42px !important;
  }

  .secao-eletronicos-premium .tab-titles a,
  .secao-eletronicos-premium .nav-tabs a,
  .secao-eletronicos-premium .tabs a,
  .secao-eletronicos-premium .tab_cates a {
    font-size: 23px !important;
  }
}

@media (max-width: 767px) {
  .secao-eletronicos-premium {
    padding: 24px 14px 34px !important;
  }

  .secao-eletronicos-premium .tab-titles,
  .secao-eletronicos-premium .nav-tabs,
  .secao-eletronicos-premium .tabs,
  .secao-eletronicos-premium .tab_cates {
    gap: 14px !important;
    margin-bottom: 24px !important;
  }

  .secao-eletronicos-premium .tab-titles a,
  .secao-eletronicos-premium .nav-tabs a,
  .secao-eletronicos-premium .tabs a,
  .secao-eletronicos-premium .tab_cates a {
    font-size: 19px !important;
  }

  .secao-eletronicos-premium .tab-titles li:first-child::after,
  .secao-eletronicos-premium .nav-tabs li:first-child::after,
  .secao-eletronicos-premium .tabs li:first-child::after,
  .secao-eletronicos-premium .tab_cates li:first-child::after {
    font-size: 19px !important;
    margin-left: 14px !important;
  }

  .secao-eletronicos-premium .product-premium-card-v2 {
    min-height: auto !important;
  }
}

/* =====================================================
   PRODUCT LAYOUT 5 PREMIUM
   Escopo seguro: só afeta o product_layout5.tpl
   ===================================================== */

.style_product5.product-premium-card {
  background: #f8f8f8 !important;
  border-radius: 16px !important;
  padding: 16px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  position: relative !important;
  text-align: center !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.style_product5.product-premium-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 46px rgba(212, 175, 55, 0.22) !important;
}

/* Área da imagem */
.style_product5.product-premium-card .product-premium-image-wrap {
  background: #ffffff !important;
  border-radius: 12px !important;
  min-height: 195px !important;
  margin-bottom: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.style_product5.product-premium-card .product-premium-thumbnail {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.style_product5.product-premium-card .product-premium-thumbnail img,
.style_product5.product-premium-card img {
  max-height: 185px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  transition: transform 0.25s ease !important;
}

.style_product5.product-premium-card:hover img {
  transform: scale(1.04) !important;
}

/* Remove textos crus de wishlist / compare */
.style_product5.product-premium-card .product-premium-actions-top,
.style_product5.product-premium-card .add-to-links,
.style_product5.product-premium-card .functional-buttons {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 10 !important;
  display: flex !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.style_product5.product-premium-card .product-premium-actions-top a,
.style_product5.product-premium-card .add-to-links a,
.style_product5.product-premium-card .functional-buttons a {
  width: 31px !important;
  height: 31px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14) !important;
}

.style_product5.product-premium-card .product-premium-actions-top a span,
.style_product5.product-premium-card .add-to-links a span,
.style_product5.product-premium-card .functional-buttons a span {
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Ícones fake caso o módulo só entregue texto */
.style_product5.product-premium-card .wishlist a::before,
.style_product5.product-premium-card .functional-buttons a::before {
  content: "♡" !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

.style_product5.product-premium-card .compare-button::before {
  content: "⇄" !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

/* Quick view escondido para não aparecer texto solto */
.style_product5.product-premium-card .quick_view,
.style_product5.product-premium-card .product-premium-quick-view {
  display: none !important;
}

/* Tags */
.style_product5.product-premium-card .product-premium-flags,
.style_product5.product-premium-card .product-flag {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 11 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.style_product5.product-premium-card .product-premium-flags li,
.style_product5.product-premium-card .product-flag li {
  margin: 0 !important;
  padding: 0 !important;
}

.style_product5.product-premium-card .product-premium-flags span,
.style_product5.product-premium-card .product-flag span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 23px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: #d4af37 !important;
  color: #000000 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
}

/* Conteúdo */
.style_product5.product-premium-card .product-premium-content,
.style_product5.product-premium-card .product_desc {
  text-align: center !important;
  background: transparent !important;
}

/* Marca */
.style_product5.product-premium-card .product-premium-brand,
.style_product5.product-premium-card .manufacturer {
  margin-bottom: 7px !important;
  min-height: 18px !important;
}

.style_product5.product-premium-card .product-premium-brand a,
.style_product5.product-premium-card .manufacturer a {
  color: #777777 !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* Nome */
.style_product5.product-premium-card .product-premium-title,
.style_product5.product-premium-card h3 {
  margin: 0 0 10px !important;
  min-height: 44px !important;
}

.style_product5.product-premium-card .product-premium-title a,
.style_product5.product-premium-card h3 a,
.style_product5.product-premium-card .product_name {
  font-family: "Oswald", sans-serif !important;
  color: #111111 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: block !important;
}

.style_product5.product-premium-card .product-premium-title a:hover,
.style_product5.product-premium-card h3 a:hover {
  color: #b98b00 !important;
}

/* Reviews */
.style_product5.product-premium-card .product-premium-reviews,
.style_product5.product-premium-card .hook-reviews {
  min-height: 18px !important;
  margin-bottom: 8px !important;
}

/* Preço */
.style_product5.product-premium-card .product-premium-price-box,
.style_product5.product-premium-card .product-price-and-shipping {
  margin: 10px 0 14px !important;
  text-align: center !important;
}

.style_product5.product-premium-card .regular-price {
  display: block !important;
  color: #777777 !important;
  font-size: 13px !important;
  text-decoration: line-through !important;
  margin-bottom: 5px !important;
}

.style_product5.product-premium-card .price {
  display: block !important;
  font-family: "Oswald", sans-serif !important;
  color: #b98b00 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
}

/* Estoque */
.style_product5.product-premium-card .product-premium-availability,
.style_product5.product-premium-card .availability {
  min-height: 18px !important;
  margin-bottom: 12px !important;
  font-size: 12px !important;
  color: #2e7d32 !important;
}

/* Esconde descrição no card */
.style_product5.product-premium-card .product-desc,
.style_product5.product-premium-card .product-premium-description {
  display: none !important;
}

/* Botão */
.style_product5.product-premium-card .product-premium-cart,
.style_product5.product-premium-card .cart {
  margin-top: auto !important;
}

.style_product5.product-premium-card .product-premium-cart .ajax_add_to_cart_button,
.style_product5.product-premium-card .product-premium-cart .button,
.style_product5.product-premium-card .product-premium-cart .btn,
.style_product5.product-premium-card .cart .ajax_add_to_cart_button,
.style_product5.product-premium-card .cart .button,
.style_product5.product-premium-card .cart .btn,
.style_product5.product-premium-card button,
.style_product5.product-premium-card .btn {
  width: 100% !important;
  min-height: 44px !important;
  border-radius: 9px !important;
  border: 1px solid #d4af37 !important;
  background: transparent !important;
  color: #a87c00 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  text-transform: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
}

.style_product5.product-premium-card .product-premium-cart .ajax_add_to_cart_button:hover,
.style_product5.product-premium-card .product-premium-cart .button:hover,
.style_product5.product-premium-card .product-premium-cart .btn:hover,
.style_product5.product-premium-card .cart .ajax_add_to_cart_button:hover,
.style_product5.product-premium-card .cart .button:hover,
.style_product5.product-premium-card .cart .btn:hover,
.style_product5.product-premium-card button:hover,
.style_product5.product-premium-card .btn:hover {
  background: #d4af37 !important;
  color: #000000 !important;
}

/* Título das tabs do widget */
.pos_tab_products .tab-titles li a,
.elementor-widget-pos_tab_products .tab-titles li a {
  color: #d4af37 !important;
  font-family: "Oswald", sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

/* Dots do carrossel */
.pos_tab_products .slick-dots li button,
.elementor-widget-pos_tab_products .slick-dots li button {
  background: rgba(212, 175, 55, 0.35) !important;
}

.pos_tab_products .slick-dots li.slick-active button,
.elementor-widget-pos_tab_products .slick-dots li.slick-active button {
  background: #d4af37 !important;
}
/* FIX: Layout 5 Premium V2 - seletor correto */

.style_product5.product-premium-card-v2 {
  background: #f8f8f8 !important;
  border-radius: 16px !important;
  padding: 16px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  position: relative !important;
  text-align: center !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35) !important;
}

.style_product5.product-premium-card-v2 .product-premium-media {
  background: #ffffff !important;
  border-radius: 12px !important;
  min-height: 195px !important;
  margin-bottom: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.style_product5.product-premium-card-v2 .product-thumbnail,
.style_product5.product-premium-card-v2 .thumbnail {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.style_product5.product-premium-card-v2 img {
  max-height: 185px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

.style_product5.product-premium-card-v2 .product-premium-body {
  text-align: center !important;
  background: transparent !important;
}

.style_product5.product-premium-card-v2 .product-premium-brand,
.style_product5.product-premium-card-v2 .manufacturer {
  margin-bottom: 7px !important;
  min-height: 18px !important;
}

.style_product5.product-premium-card-v2 .product-premium-brand a,
.style_product5.product-premium-card-v2 .manufacturer a {
  color: #777777 !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.style_product5.product-premium-card-v2 .product-premium-name,
.style_product5.product-premium-card-v2 h3 {
  margin: 0 0 10px !important;
  min-height: 44px !important;
}

.style_product5.product-premium-card-v2 .product-premium-name a,
.style_product5.product-premium-card-v2 h3 a,
.style_product5.product-premium-card-v2 .product_name {
  font-family: "Oswald", sans-serif !important;
  color: #111111 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: block !important;
}

.style_product5.product-premium-card-v2 .product-premium-price,
.style_product5.product-premium-card-v2 .product-price-and-shipping {
  margin: 10px 0 14px !important;
  text-align: center !important;
}

.style_product5.product-premium-card-v2 .regular-price {
  display: block !important;
  color: #777777 !important;
  font-size: 13px !important;
  text-decoration: line-through !important;
  margin-bottom: 5px !important;
}

.style_product5.product-premium-card-v2 .price {
  display: block !important;
  font-family: "Oswald", sans-serif !important;
  color: #b98b00 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
}

.style_product5.product-premium-card-v2 .product-premium-stock {
  min-height: 18px !important;
  margin-bottom: 12px !important;
  font-size: 12px !important;
  color: #2e7d32 !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart {
  margin-top: 12px !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a,
.style_product5.product-premium-card-v2 .product-premium-cart button,
.style_product5.product-premium-card-v2 .product-premium-cart .btn,
.style_product5.product-premium-card-v2 .product-premium-cart .button,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button {
  width: 100% !important;
  min-height: 44px !important;
  border-radius: 9px !important;
  border: 1px solid #d4af37 !important;
  background: transparent !important;
  color: #a87c00 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  text-transform: none !important;
  box-shadow: none !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a:hover,
.style_product5.product-premium-card-v2 .product-premium-cart button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .btn:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button:hover {
  background: #d4af37 !important;
  color: #000000 !important;
}

/* Esconde textos crus dos hooks */
.style_product5.product-premium-card-v2 .product-premium-tools,
.style_product5.product-premium-card-v2 .product-premium-tools *,
.style_product5.product-premium-card-v2 .wishlist,
.style_product5.product-premium-card-v2 .compare,
.style_product5.product-premium-card-v2 .quick-view {
  font-size: 0 !important;
  line-height: 0 !important;
}

.style_product5.product-premium-card-v2 .product-premium-tools {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 10 !important;
  display: flex !important;
  gap: 7px !important;
}

.style_product5.product-premium-card-v2 .product-premium-tools a {
  width: 31px !important;
  height: 31px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14) !important;
}

.style_product5.product-premium-card-v2 .wishlist a::before {
  content: "♡" !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

.style_product5.product-premium-card-v2 .compare-button::before {
  content: "⇄" !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.style_product5.product-premium-card-v2 .quick_view,
.style_product5.product-premium-card-v2 .product-premium-quick-view {
  display: none !important;
}

/* Flags */
.style_product5.product-premium-card-v2 .product-premium-flags {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 11 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.style_product5.product-premium-card-v2 .product-premium-flags span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 23px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: #d4af37 !important;
  color: #000000 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
}

/* Tabs */
.elementor-widget-pos_tab_products .tab-titles li a {
  color: #d4af37 !important;
  font-family: "Oswald", sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}
/* =====================================================
   AJUSTE FINAL - PRODUCT LAYOUT 5 PREMIUM
   Cole no final do custom.css
   ===================================================== */

/* Esconde textos soltos do hook wishlist/compare */
.style_product5.product-premium-card-v2 .product-premium-tools,
.style_product5.product-premium-card-v2 .product-premium-tools li,
.style_product5.product-premium-card-v2 .product-premium-tools span,
.style_product5.product-premium-card-v2 .product-premium-tools a,
.style_product5.product-premium-card-v2 .wishlist,
.style_product5.product-premium-card-v2 .wishlist *,
.style_product5.product-premium-card-v2 .compare,
.style_product5.product-premium-card-v2 .compare * {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

/* Posiciona os ícones no canto superior direito */
.style_product5.product-premium-card-v2 .product-premium-tools {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 20 !important;
  display: flex !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Bolinhas dos ícones */
.style_product5.product-premium-card-v2 .product-premium-tools a,
.style_product5.product-premium-card-v2 .wishlist a,
.style_product5.product-premium-card-v2 .compare a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #111111 !important;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16) !important;
  overflow: hidden !important;
}

/* Ícone coração */
.style_product5.product-premium-card-v2 .wishlist a::before,
.style_product5.product-premium-card-v2 .product-premium-tools a:first-child::before {
  content: "♡" !important;
  color: #222222 !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

/* Ícone compare */
.style_product5.product-premium-card-v2 .compare a::before,
.style_product5.product-premium-card-v2 .compare-button::before {
  content: "⇄" !important;
  color: #222222 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

/* Quick view não deve aparecer no card premium */
.style_product5.product-premium-card-v2 .quick-view,
.style_product5.product-premium-card-v2 .quick_view,
.style_product5.product-premium-card-v2 .product-premium-quick-view {
  display: none !important;
}

/* Tag Novo / Oferta mais visível */
.style_product5.product-premium-card-v2 .product-premium-flags,
.style_product5.product-premium-card-v2 .product-flag {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 25 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.style_product5.product-premium-card-v2 .product-premium-flags li,
.style_product5.product-premium-card-v2 .product-flag li {
  margin: 0 !important;
  padding: 0 !important;
}

.style_product5.product-premium-card-v2 .product-premium-flags span,
.style_product5.product-premium-card-v2 .product-flag span,
.style_product5.product-premium-card-v2 .product-flag li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 24px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  background: #d4af37 !important;
  color: #000000 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.45px !important;
  text-transform: uppercase !important;
}

/* Card com melhor respiro */
.style_product5.product-premium-card-v2 {
  padding: 18px 16px 20px !important;
  min-height: 458px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Imagem mais parecida com o mockup */
.style_product5.product-premium-card-v2 .product-premium-media {
  min-height: 205px !important;
  margin-bottom: 20px !important;
}

.style_product5.product-premium-card-v2 img {
  max-height: 188px !important;
}

/* Marca */
.style_product5.product-premium-card-v2 .product-premium-brand,
.style_product5.product-premium-card-v2 .manufacturer {
  margin-bottom: 8px !important;
}

.style_product5.product-premium-card-v2 .product-premium-brand a,
.style_product5.product-premium-card-v2 .manufacturer a {
  color: #777777 !important;
  font-size: 12px !important;
}

/* Nome do produto */
.style_product5.product-premium-card-v2 .product-premium-name,
.style_product5.product-premium-card-v2 h3 {
  min-height: 46px !important;
  margin-bottom: 12px !important;
}

.style_product5.product-premium-card-v2 .product-premium-name a,
.style_product5.product-premium-card-v2 h3 a,
.style_product5.product-premium-card-v2 .product_name {
  color: #101010 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

/* Preço mais destacado */
.style_product5.product-premium-card-v2 .product-premium-price,
.style_product5.product-premium-card-v2 .product-price-and-shipping {
  margin: 8px 0 8px !important;
}

.style_product5.product-premium-card-v2 .price {
  color: #b98b00 !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

/* Estoque menos apagado */
.style_product5.product-premium-card-v2 .product-premium-stock,
.style_product5.product-premium-card-v2 .availability {
  color: #2e7d32 !important;
  opacity: 1 !important;
  font-size: 12px !important;
  margin-bottom: 14px !important;
}

/* Botão premium largo */
.style_product5.product-premium-card-v2 .product-premium-cart {
  margin-top: auto !important;
  width: 100% !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart form,
.style_product5.product-premium-card-v2 .product-premium-cart .button-container,
.style_product5.product-premium-card-v2 .product-premium-cart .cart,
.style_product5.product-premium-card-v2 .product-premium-cart div {
  width: 100% !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a,
.style_product5.product-premium-card-v2 .product-premium-cart button,
.style_product5.product-premium-card-v2 .product-premium-cart .btn,
.style_product5.product-premium-card-v2 .product-premium-cart .button,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button,
.style_product5.product-premium-card-v2 button.add-to-cart,
.style_product5.product-premium-card-v2 .cart button,
.style_product5.product-premium-card-v2 .cart a,
.style_product5.product-premium-card-v2 input[type="submit"] {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 9px !important;
  border: 1px solid #d4af37 !important;
  background: transparent !important;
  color: #a87c00 !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a:hover,
.style_product5.product-premium-card-v2 .product-premium-cart button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .btn:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button:hover,
.style_product5.product-premium-card-v2 button.add-to-cart:hover,
.style_product5.product-premium-card-v2 .cart button:hover,
.style_product5.product-premium-card-v2 .cart a:hover,
.style_product5.product-premium-card-v2 input[type="submit"]:hover {
  background: #d4af37 !important;
  color: #000000 !important;
}

/* Troca visualmente o texto do botão para "Ver produto" quando possível */
.style_product5.product-premium-card-v2 .product-premium-cart a span,
.style_product5.product-premium-card-v2 .product-premium-cart button span {
  font-size: 0 !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a span::after,
.style_product5.product-premium-card-v2 .product-premium-cart button span::after {
  content: "Ver produto" !important;
  font-size: 14px !important;
}

/* Espaçamento entre cards no slick */
.slick-slide .style_product5.product-premium-card-v2 {
  margin: 0 10px !important;
}

/* =====================================================
   REFINO FINAL - PRODUCT LAYOUT 5 PREMIUM V2
   ===================================================== */

/* Card mais próximo do mockup */
.style_product5.product-premium-card-v2 {
  min-height: 488px !important;
  padding: 18px 16px 22px !important;
  border-radius: 16px !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Área branca da imagem */
.style_product5.product-premium-card-v2 .product-premium-media {
  min-height: 220px !important;
  margin-bottom: 18px !important;
  padding: 14px !important;
}

/* Imagem */
.style_product5.product-premium-card-v2 img {
  max-height: 202px !important;
}

/* Remove visualmente textos de wishlist/compare */
.style_product5.product-premium-card-v2 .product-premium-tools {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 40 !important;
  display: flex !important;
  gap: 8px !important;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}

.style_product5.product-premium-card-v2 .product-premium-tools,
.style_product5.product-premium-card-v2 .product-premium-tools *,
.style_product5.product-premium-card-v2 .wishlist,
.style_product5.product-premium-card-v2 .wishlist *,
.style_product5.product-premium-card-v2 .compare,
.style_product5.product-premium-card-v2 .compare *,
.style_product5.product-premium-card-v2 .quick-view,
.style_product5.product-premium-card-v2 .quick-view * {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
}

/* Bolinhas dos ícones */
.style_product5.product-premium-card-v2 .product-premium-tools a,
.style_product5.product-premium-card-v2 .wishlist a,
.style_product5.product-premium-card-v2 .compare a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16) !important;
  text-indent: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Coração */
.style_product5.product-premium-card-v2 .wishlist a::before,
.style_product5.product-premium-card-v2 .product-premium-tools a:first-child::before {
  content: "♡" !important;
  color: #333333 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}

/* Compare */
.style_product5.product-premium-card-v2 .compare a::before,
.style_product5.product-premium-card-v2 .compare-button::before {
  content: "⇄" !important;
  color: #333333 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}

/* Esconde quick view */
.style_product5.product-premium-card-v2 .quick-view,
.style_product5.product-premium-card-v2 .quick_view,
.style_product5.product-premium-card-v2 .product-premium-quick-view {
  display: none !important;
}

/* Tag Novo visível */
.style_product5.product-premium-card-v2 .product-premium-flags,
.style_product5.product-premium-card-v2 .product-flag {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 45 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.style_product5.product-premium-card-v2 .product-premium-flags li,
.style_product5.product-premium-card-v2 .product-flag li,
.style_product5.product-premium-card-v2 .product-premium-flags span,
.style_product5.product-premium-card-v2 .product-flag span {
  background: #8e6df6 !important;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 24px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.45px !important;
  text-transform: uppercase !important;
  text-indent: 0 !important;
}

/* Corpo do produto */
.style_product5.product-premium-card-v2 .product-premium-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  text-align: center !important;
}

/* Marca */
.style_product5.product-premium-card-v2 .product-premium-brand,
.style_product5.product-premium-card-v2 .manufacturer {
  margin-bottom: 8px !important;
}

.style_product5.product-premium-card-v2 .product-premium-brand a,
.style_product5.product-premium-card-v2 .manufacturer a {
  color: #777777 !important;
  font-size: 12px !important;
  letter-spacing: 1.2px !important;
}

/* Nome */
.style_product5.product-premium-card-v2 .product-premium-name,
.style_product5.product-premium-card-v2 h3 {
  min-height: 48px !important;
  margin: 0 0 12px !important;
}

.style_product5.product-premium-card-v2 .product-premium-name a,
.style_product5.product-premium-card-v2 h3 a,
.style_product5.product-premium-card-v2 .product_name {
  color: #111111 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

/* Preço */
.style_product5.product-premium-card-v2 .product-premium-price,
.style_product5.product-premium-card-v2 .product-price-and-shipping {
  margin: 4px 0 6px !important;
}

.style_product5.product-premium-card-v2 .price {
  color: #b98b00 !important;
  font-size: 28px !important;
  font-weight: 600 !important;
}

/* Estoque agora legível */
.style_product5.product-premium-card-v2 .product-premium-stock,
.style_product5.product-premium-card-v2 .availability,
.style_product5.product-premium-card-v2 .availability *,
.style_product5.product-premium-card-v2 .availability-list,
.style_product5.product-premium-card-v2 .availability-list * {
  color: #2e7d32 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  text-indent: 0 !important;
}

.style_product5.product-premium-card-v2 .product-premium-stock,
.style_product5.product-premium-card-v2 .availability {
  min-height: 18px !important;
  margin-bottom: 14px !important;
}

/* Botão ocupa toda largura */
.style_product5.product-premium-card-v2 .product-premium-cart {
  margin-top: auto !important;
  width: 100% !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart > *,
.style_product5.product-premium-card-v2 .product-premium-cart form,
.style_product5.product-premium-card-v2 .product-premium-cart div {
  width: 100% !important;
}

/* Botão premium */
.style_product5.product-premium-card-v2 .product-premium-cart a,
.style_product5.product-premium-card-v2 .product-premium-cart button,
.style_product5.product-premium-card-v2 .product-premium-cart .btn,
.style_product5.product-premium-card-v2 .product-premium-cart .button,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button,
.style_product5.product-premium-card-v2 .product-premium-cart input[type="submit"] {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 9px !important;
  border: 1px solid #d4af37 !important;
  background: transparent !important;
  color: #a87c00 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-align: center !important;
  box-shadow: none !important;
}

/* Força texto "Ver produto" */
.style_product5.product-premium-card-v2 .product-premium-cart a::after,
.style_product5.product-premium-card-v2 .product-premium-cart button::after,
.style_product5.product-premium-card-v2 .product-premium-cart .btn::after,
.style_product5.product-premium-card-v2 .product-premium-cart .button::after,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button::after,
.style_product5.product-premium-card-v2 .product-premium-cart input[type="submit"]::after {
  content: "Ver produto" !important;
  font-size: 14px !important;
  color: #a87c00 !important;
}

/* Hover botão */
.style_product5.product-premium-card-v2 .product-premium-cart a:hover,
.style_product5.product-premium-card-v2 .product-premium-cart button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .btn:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart input[type="submit"]:hover {
  background: #d4af37 !important;
  color: #000000 !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart button:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart .btn:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart .button:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart input[type="submit"]:hover::after {
  color: #000000 !important;
}

/* Remove textos antigos dos hooks e usa ícones limpos */
.style_product5.product-premium-card-v2 .clean-tools {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 50 !important;
  display: flex !important;
  gap: 8px !important;
}

.style_product5.product-premium-card-v2 .clean-tools a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #333333 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16) !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.style_product5.product-premium-card-v2 .clean-tools a span {
  font-size: 19px !important;
  line-height: 1 !important;
  color: #333333 !important;
}

/* deixa a tag Novo visível */
.style_product5.product-premium-card-v2 .product-premium-flags span,
.style_product5.product-premium-card-v2 .product-flag span,
.style_product5.product-premium-card-v2 .product-flag li {
  background: #8e6df6 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* botão com texto do mockup */
.style_product5.product-premium-card-v2 .product-premium-cart a,
.style_product5.product-premium-card-v2 .product-premium-cart button,
.style_product5.product-premium-card-v2 .product-premium-cart .btn,
.style_product5.product-premium-card-v2 .product-premium-cart .button,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button {
  font-size: 0 !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart a::after,
.style_product5.product-premium-card-v2 .product-premium-cart button::after,
.style_product5.product-premium-card-v2 .product-premium-cart .btn::after,
.style_product5.product-premium-card-v2 .product-premium-cart .button::after,
.style_product5.product-premium-card-v2 .product-premium-cart .ajax_add_to_cart_button::after {
  content: "Ver produto" !important;
  font-size: 14px !important;
  color: #a87c00 !important;
}

/* =====================================================
   PRODUCT LAYOUT 5 PREMIUM V2 - CSS DEFINITIVO
   Escopo: somente product_layout5.tpl
   ===================================================== */

.style_product5.product-premium-card-v2 {
  background: #f8f8f8 !important;
  border-radius: 16px !important;
  padding: 18px 16px 22px !important;
  min-height: 488px !important;
  overflow: hidden !important;
  position: relative !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.style_product5.product-premium-card-v2:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 46px rgba(212, 175, 55, 0.22) !important;
}

/* Área da imagem */
.style_product5.product-premium-card-v2 .product-premium-media-v2 {
  background: #ffffff !important;
  border-radius: 12px !important;
  min-height: 220px !important;
  margin-bottom: 18px !important;
  padding: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.style_product5.product-premium-card-v2 .product-premium-thumb-v2 {
  width: 100% !important;
  height: 100% !important;
  min-height: 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.style_product5.product-premium-card-v2 .product-premium-thumb-v2 img,
.style_product5.product-premium-card-v2 img {
  max-height: 202px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  transition: transform 0.25s ease !important;
}

.style_product5.product-premium-card-v2:hover img {
  transform: scale(1.04) !important;
}

/* Flags: Novo / Oferta */
.style_product5.product-premium-card-v2 .product-premium-flags-v2 {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 45 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.style_product5.product-premium-card-v2 .product-premium-flags-v2 li,
.style_product5.product-premium-card-v2 .product-premium-flags-v2 span {
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 24px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  background: #8e6df6 !important;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.45px !important;
  text-transform: uppercase !important;
}

/* Ícones topo direito */
.style_product5.product-premium-card-v2 .product-premium-icons-v2 {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 50 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Esconde textos crus do hook */
.style_product5.product-premium-card-v2 .product-premium-icons-v2,
.style_product5.product-premium-card-v2 .product-premium-icons-v2 *,
.style_product5.product-premium-card-v2 .product-premium-wishlist-v2,
.style_product5.product-premium-card-v2 .product-premium-wishlist-v2 *,
.style_product5.product-premium-card-v2 .product-premium-compare-v2,
.style_product5.product-premium-card-v2 .product-premium-compare-v2 * {
  font-size: 0 !important;
  line-height: 0 !important;
}

.style_product5.product-premium-card-v2 .product-premium-icons-v2 a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #333333 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  overflow: hidden !important;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16) !important;
}

/* Coração */
.style_product5.product-premium-card-v2 .product-premium-wishlist-v2 a::before {
  content: "♡" !important;
  color: #333333 !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

/* Compare */
.style_product5.product-premium-card-v2 .product-premium-compare-v2::before {
  content: "⇄" !important;
  color: #333333 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

/* Corpo */
.style_product5.product-premium-card-v2 .product-premium-body-v2 {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  text-align: center !important;
}

/* Marca */
.style_product5.product-premium-card-v2 .product-premium-brand-v2 {
  margin-bottom: 8px !important;
  min-height: 18px !important;
}

.style_product5.product-premium-card-v2 .product-premium-brand-v2 a {
  color: #777777 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* Nome */
.style_product5.product-premium-card-v2 .product-premium-name-v2 {
  min-height: 48px !important;
  margin: 0 0 12px !important;
}

.style_product5.product-premium-card-v2 .product-premium-name-v2 a,
.style_product5.product-premium-card-v2 .product_name {
  font-family: "Oswald", sans-serif !important;
  color: #111111 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: block !important;
}

.style_product5.product-premium-card-v2 .product-premium-name-v2 a:hover {
  color: #b98b00 !important;
}

/* Preço */
.style_product5.product-premium-card-v2 .product-premium-price-v2 {
  margin: 4px 0 6px !important;
  text-align: center !important;
}

.style_product5.product-premium-card-v2 .product-premium-price-v2 .regular-price {
  display: block !important;
  color: #777777 !important;
  font-size: 13px !important;
  text-decoration: line-through !important;
  margin-bottom: 5px !important;
}

.style_product5.product-premium-card-v2 .product-premium-price-v2 .price {
  display: block !important;
  font-family: "Oswald", sans-serif !important;
  color: #b98b00 !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
}

/* Estoque */
.style_product5.product-premium-card-v2 .product-premium-stock-v2,
.style_product5.product-premium-card-v2 .product-premium-stock-v2 * {
  color: #2e7d32 !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.style_product5.product-premium-card-v2 .product-premium-stock-v2 {
  min-height: 18px !important;
  margin-bottom: 14px !important;
}

/* Botão */
.style_product5.product-premium-card-v2 .product-premium-cart-v2 {
  margin-top: auto !important;
  width: 100% !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart-v2 > *,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 form,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 div {
  width: 100% !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart-v2 a,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 button,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .btn,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .button,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .ajax_add_to_cart_button,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 input[type="submit"] {
  width: 100% !important;
  min-height: 46px !important;
  border-radius: 9px !important;
  border: 1px solid #d4af37 !important;
  background: transparent !important;
  color: #a87c00 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-align: center !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

/* Força texto Ver produto */
.style_product5.product-premium-card-v2 .product-premium-cart-v2 a::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 button::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .btn::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .button::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .ajax_add_to_cart_button::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 input[type="submit"]::after {
  content: "Ver produto" !important;
  font-size: 14px !important;
  color: #a87c00 !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart-v2 a:hover,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .btn:hover,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .ajax_add_to_cart_button:hover,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 input[type="submit"]:hover {
  background: #d4af37 !important;
  color: #000000 !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart-v2 a:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 button:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .btn:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .button:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .ajax_add_to_cart_button:hover::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 input[type="submit"]:hover::after {
  color: #000000 !important;
}

/* Espaçamento entre slides */
.slick-slide .style_product5.product-premium-card-v2 {
  margin: 0 10px !important;
}

/* =====================================================
   COMPACTAR PRODUCT LAYOUT 5 PREMIUM V2
   Deixa mais próximo do tamanho antigo
   ===================================================== */

/* Card mais baixo e menos espaçado */
.style_product5.product-premium-card-v2 {
  min-height: 390px !important;
  padding: 14px 12px 16px !important;
  border-radius: 12px !important;
}

/* Reduz área da imagem */
.style_product5.product-premium-card-v2 .product-premium-media-v2 {
  min-height: 170px !important;
  margin-bottom: 12px !important;
  padding: 10px !important;
  border-radius: 10px !important;
}

/* Imagem menor */
.style_product5.product-premium-card-v2 .product-premium-thumb-v2 {
  min-height: 150px !important;
}

.style_product5.product-premium-card-v2 .product-premium-thumb-v2 img,
.style_product5.product-premium-card-v2 img {
  max-height: 158px !important;
}

/* Tag menor */
.style_product5.product-premium-card-v2 .product-premium-flags-v2 {
  top: 10px !important;
  left: 10px !important;
}

.style_product5.product-premium-card-v2 .product-premium-flags-v2 li,
.style_product5.product-premium-card-v2 .product-premium-flags-v2 span {
  min-height: 21px !important;
  padding: 0 11px !important;
  font-size: 9px !important;
}

/* Ícones menores */
.style_product5.product-premium-card-v2 .product-premium-icons-v2 {
  top: 10px !important;
  right: 10px !important;
  gap: 6px !important;
}

.style_product5.product-premium-card-v2 .product-premium-icons-v2 a {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
}

/* Marca mais compacta */
.style_product5.product-premium-card-v2 .product-premium-brand-v2 {
  margin-bottom: 5px !important;
  min-height: 15px !important;
}

.style_product5.product-premium-card-v2 .product-premium-brand-v2 a {
  font-size: 11px !important;
}

/* Nome mais compacto */
.style_product5.product-premium-card-v2 .product-premium-name-v2 {
  min-height: 40px !important;
  margin: 0 0 8px !important;
}

.style_product5.product-premium-card-v2 .product-premium-name-v2 a,
.style_product5.product-premium-card-v2 .product_name {
  font-size: 13.5px !important;
  line-height: 1.28 !important;
}

/* Preço menor, mas ainda destacado */
.style_product5.product-premium-card-v2 .product-premium-price-v2 {
  margin: 2px 0 4px !important;
}

.style_product5.product-premium-card-v2 .product-premium-price-v2 .price {
  font-size: 23px !important;
}

/* Estoque mais próximo do preço */
.style_product5.product-premium-card-v2 .product-premium-stock-v2 {
  min-height: 15px !important;
  margin-bottom: 10px !important;
	display:none;
}

.style_product5.product-premium-card-v2 .product-premium-stock-v2,
.style_product5.product-premium-card-v2 .product-premium-stock-v2 * {
  font-size: 11px !important;
}

/* Botão mais baixo */
.style_product5.product-premium-card-v2 .product-premium-cart-v2 a,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 button,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .btn,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .button,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .ajax_add_to_cart_button,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 input[type="submit"] {
  min-height: 40px !important;
  border-radius: 7px !important;
}

.style_product5.product-premium-card-v2 .product-premium-cart-v2 a::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 button::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .btn::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .button::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 .ajax_add_to_cart_button::after,
.style_product5.product-premium-card-v2 .product-premium-cart-v2 input[type="submit"]::after {
  font-size: 13px !important;
}

/* Menos espaço entre os cards */
.slick-slide .style_product5.product-premium-card-v2 {
  margin: 0 6px !important;
}

/* Caso o slick esteja criando espaço lateral grande */
.elementor-widget-pos_tab_products .slick-slide,
.pos_tab_products .slick-slide {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
