@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@700&family=Chivo:wght@400;600;700&display=swap");

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

/* Menu branco apenas na página inicial e antes do sticky */
#index #header .sticky-inner:not(.scroll-menu) .pos-menu-horizontal .menu-content > li > a,
#index #header .sticky-inner:not(.scroll-menu) .pos-menu-horizontal .menu-content > li > a span {
    color: #fff !important;
}

/* Lupa branca apenas antes do sticky */
#index #header .sticky-inner:not(.scroll-menu) .pos-search__toggle,
#index #header .sticky-inner:not(.scroll-menu) .pos-search__toggle i {
    color: #fff !important;
}

/* Carrinho branco apenas antes do sticky */
#index #header .sticky-inner:not(.scroll-menu) #_desktop_cart_block .blockcart > a,
#index #header .sticky-inner:not(.scroll-menu) #_desktop_cart_block .blockcart > a i,
#index #header .sticky-inner:not(.scroll-menu) #_desktop_cart_block .cart-products-total,
#index #header .sticky-inner:not(.scroll-menu) #_desktop_cart_block .cart-products-count {
    color: #fff !important;
}

/* Logótipo branco apenas antes do sticky */
#index #header .sticky-inner:not(.scroll-menu) #_desktop_logo .site-logo {
    display: inline-block;
    width: 220px;
    height: 80px;
    background: url('/img/cms/Grupo%20270.png') no-repeat left center;
    background-size: contain;
}

#index #header .sticky-inner:not(.scroll-menu) #_desktop_logo .site-logo img {
    visibility: hidden !important;
}

/* Quando o header fica sticky, volta ao logótipo original */
#index #header .sticky-inner.scroll-menu #_desktop_logo .site-logo {
    width: auto;
    height: auto;
    background: none !important;
}

#index #header .sticky-inner.scroll-menu #_desktop_logo .site-logo img {
    visibility: visible !important;
}
#header .sticky-inner.scroll-menu{
  padding:25px !important;
}

.page-title-wrapper.p_tilte_small .page-header h1, .page-title-wrapper.p_tilte_small .card-block h1{
  display: none !important;
}
.page-header h1, .breadcrumb {
   
    text-align: left;
}
.page-title-wrapper{
  background: none !important;

padding: 0 !important;
margin-top: 26px !important;
margin-bottom: 50px !important;
}

/* ==========================================================
   CASA TAIPINA — Grelha de produtos conforme Adobe XD
   ========================================================== */

/* Grelha de produtos */
#js-product-list .product_content.grid.row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

/* Neutralizar colunas Bootstrap */
#js-product-list .product_content.grid > .item-product {
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex: none;
}

/* Cartão */
#js-product-list .product_content.grid article.js-product-miniature {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 2px;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#js-product-list .product_content.grid article.js-product-miniature:hover {
  border-color: #dedede;
  box-shadow: 0 3px 12px rgb(0 0 0 / 5%);
}

/* Área da imagem */
#js-product-list .product_content.grid .img_block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 210px;
  min-height: 210px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-sizing: border-box;
}

/* Link da imagem */
#js-product-list .product_content.grid .product-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Imagem do produto */
#js-product-list .product_content.grid .product-thumbnail img {
  position: static;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 88%;
  max-height: 165px;
  margin: auto;
  object-fit: contain;
  opacity: 1;
  transform: none;
  transition: none;
}

/* Remover zoom e transformações do tema */
#js-product-list
  .product_content.grid
  article.js-product-miniature:hover
  .product-thumbnail
  img {
  opacity: 1;
  transform: none;
}

/* Etiquetas */
#js-product-list .product_content.grid .product-flag {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Novo / Esgotado / Por encomenda */
#js-product-list .product_content.grid .product-flag li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin: 0;
  padding: 0 7px;
  color: #fff;
  font-family: "Chivo", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  background: #555;
  border: 0;
  border-radius: 3px;
}

/* Etiqueta Novo */
#js-product-list .product_content.grid .product-flag li.new {
  background: #078ca3;
}

#js-product-list .product_content.grid .product-flag li span {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  background: transparent;
}

/* Área de informação */
#js-product-list .product_content.grid .product_desc {
  position: static !important;
  display: block;
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 13px 22px 17px;
  background: #fff;
  border: 0;
  box-sizing: border-box;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Conteúdo interior */
#js-product-list .product_content.grid .inner_desc {
  position: static !important;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Título */
#js-product-list .product_content.grid .product_desc h3 {
  min-height: 0;
  margin: 0 0 7px;
  padding: 0;
  line-height: 19px;
}

/* Nome do produto — Chivo Regular 16px no XD */
#js-product-list .product_content.grid .product_name,
#js-product-list .product_content.grid .product_name.one_line {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0;
  text-decoration: none;
  text-overflow: initial;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Hover do nome */
#js-product-list .product_content.grid .product_name:hover {
  color: #078ca3;
  text-decoration: none;
}

/* Bloco do preço */
#js-product-list .product_content.grid .product-price-and-shipping {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 19px;
}

/* Preço — Chivo Bold 16px no XD */
#js-product-list .product_content.grid .product-price-and-shipping .price {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #292929;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0;
}

/* Elementos que não aparecem no cartão do XD */
#js-product-list .product_content.grid .manufacturer,
#js-product-list .product_content.grid .hook-reviews,
#js-product-list .product_content.grid .comments_note,
#js-product-list .product_content.grid .star_content,
#js-product-list .product_content.grid .quick-view,
#js-product-list .product_content.grid .add-to-links,
#js-product-list .product_content.grid .availability,
#js-product-list .product_content.grid .product-desc,
#js-product-list .product_content.grid .variant-links {
  display: none !important;
}

/* Tablet horizontal */
@media (max-width: 1199px) {
  #js-product-list .product_content.grid.row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 991px) {
  #js-product-list .product_content.grid.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Telemóvel */
@media (max-width: 575px) {
  #js-product-list .product_content.grid.row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  #js-product-list .product_content.grid .img_block {
    height: 230px;
    min-height: 230px;
  }

  #js-product-list .product_content.grid .product-thumbnail img {
    max-height: 185px;
  }
}

/* ==========================================================
   CASA TAIPINA — AJUSTES FINAIS DE VALIDAÇÃO (HOME/CATEGORIA/PRODUTO)
   ========================================================== */

/* Categoria: aproxima a coluna lateral do bloco "Filtros" do Adobe XD. */
body#category #left-column .block-categories {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body#category #left-column .category-top-menu > li:first-child {
  margin: 0 0 25px;
}

body#category #left-column .category-top-menu > li:first-child > a {
  display: block;
  color: #078ca3;
  font-family: "Chivo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  text-transform: none !important;
}

body#category #left-column .category-sub-menu > li {
  position: relative;
  min-height: 25px;
  padding-left: 23px;
}

body#category #left-column .category-sub-menu > li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  box-sizing: border-box;
}

body#category #left-column .category-sub-menu > li > a {
  color: #8a8a8a;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: none;
}

body#category #left-column .category-sub-menu > li > a:hover {
  color: #078ca3;
}

body#category #left-column .category-sub-menu > li > .navbar-toggler {
  right: 0;
  color: #9a9a9a;
}

/* Produto em modo catálogo: mantém a ação principal prevista no XD. */
body#product .product-quantity.catalog-quote {
  display: block;
  margin-top: 28px;
}

body#product .product-quantity.catalog-quote .buy {
  width: 100%;
}

body#product .product-quantity.catalog-quote .buy-now {
  width: 100%;
  text-decoration: none;
}

/* Contactos: remove o conteúdo de demonstração e segue a linguagem visual do XD. */
body#contact .page-content.card.card-block {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body#contact .contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
  padding: 15px 0 70px;
}

body#contact .contact-page-kicker {
  display: block;
  margin-bottom: 13px;
  color: #078ca3;
  font-family: "Chivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
}

body#contact .contact-page-details h2 {
  max-width: 500px;
  margin: 0 0 22px;
  color: #3d3d3d;
  font-family: "Arimo", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
}

body#contact .contact-page-intro {
  max-width: 560px;
  margin: 0 0 35px;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

body#contact .contact-page-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#contact .contact-page-list li {
  min-width: 0;
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #ededed;
}

body#contact .contact-page-label {
  display: block;
  margin-bottom: 8px;
  color: #929292;
  font-family: "Chivo", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

body#contact .contact-page-list a,
body#contact .contact-page-list address {
  margin: 0;
  color: #3d3d3d;
  font-family: "Chivo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

body#contact .contact-page-list a:hover {
  color: #078ca3;
}

body#contact .contact-page-list small {
  display: block;
  margin-top: 4px;
  color: #9a9a9a;
  font-family: "Chivo", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
}

body#contact .contact-page-form .contact-form {
  margin: 0;
  padding: 38px 42px;
  background: #f7f6f2;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
}

body#contact .contact-page-form .contact-form h3 {
  margin: 0 0 28px;
  color: #3d3d3d;
  font-family: "Arimo", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-transform: none;
}

body#contact .contact-page-form .form-control,
body#contact .contact-page-form select.form-control {
  min-height: 46px;
  color: #565656;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 0;
  box-shadow: none;
}

body#contact .contact-page-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

body#contact .contact-page-form .bootstrap-filestyle,
body#contact .contact-page-form .bootstrap-filestyle .form-control,
body#contact .contact-page-form .bootstrap-filestyle .input-group-btn {
  height: 46px;
}

body#contact .contact-page-form .bootstrap-filestyle .input-group-btn > label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  margin: 0;
  padding: 0 18px;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid #078ca3;
}

body#contact .contact-page-form .bootstrap-filestyle .buttonText {
  line-height: 1.2;
}

body#contact .contact-page-form .form-control-comment {
  min-height: 46px;
  display: flex;
  align-items: center;
}

body#contact .contact-page-form .btn-primary {
  min-width: 150px;
  min-height: 44px;
  padding: 0 28px;
  color: #fff;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  background: #078ca3;
  border: 1px solid #078ca3;
  border-radius: 0;
  box-shadow: none;
}

body#contact .contact-page-form .btn-primary:hover {
  background: #056f82;
  border-color: #056f82;
}

body#contact .contact-page-map {
  margin: 0 0 80px;
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 5px;
}

body#contact .contact-page-map iframe {
  display: block;
  width: 100%;
}

/* IVA: indicação transversal nas grelhas, sliders e ficha de produto. */
.js-product-miniature .product-price-and-shipping .price::after,
.item-product .product-price-and-shipping .price::after {
  margin-left: 3px;
  color: inherit;
  font: inherit;
  content: "+ IVA";
}

body#product .price-tax-suffix {
  margin-left: 3px;
  color: #078ca3;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

body#product .tax-shipping-delivery-label .legal-tax-note {
  display: inline-block;
  color: #ababab;
  font-family: "Chivo", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
}

/* Subcategorias antes dos produtos, como no catálogo anterior. */
body#category #subcategories {
  margin: 0 0 35px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body#category #subcategories .subcategory-heading {
  margin: 0 0 20px;
  color: #3d3d3d;
  font-family: "Arimo", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

body#category #subcategories .subcategories-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#category #subcategories .subcategories-list > li {
  position: relative;
  min-height: 64px;
  width: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 4px;
}

body#category #subcategories .subcategory-image {
  display: none;
}

body#category #subcategories .subcategory-image img {
  width: 100%;
  height: 121px;
  object-fit: contain;
}

body#category #subcategories h5 {
  margin: 0;
  padding: 21px 44px 20px 20px;
  border: 0;
}

body#category #subcategories .subcategory-name {
  color: #646464;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-decoration: none;
}

body#category #subcategories .subcategory-name:hover {
  color: #078ca3;
}

body#category #subcategories h5::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: #078ca3;
  font-size: 20px;
  line-height: 1;
  content: "›";
  transform: translateY(-52%);
}

body#index .casa-featured-fallback {
  margin: 12px 0 0;
}

body#index .casa-featured-fallback .btn {
  padding: 13px 22px;
  color: #fff;
  background: #078ca3;
  border: 0;
  border-radius: 4px;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* Carrinho: remove conteúdo provisório do módulo até ser configurado. */
body#cart .blockreassurance_product {
  display: none;
}

body#cart .cart-grid {
  align-items: flex-start;
}

body#cart .cart-grid-right .cart-summary {
  border: 1px solid #e7e7e7;
  box-shadow: none;
}

body#cart .checkout .btn-primary,
body#cart .cart-grid-body > .btn-primary {
  border-radius: 4px;
}

/* Início de sessão: cartão focado e consistente com a página de contactos. */
body#authentication #main {
  max-width: 760px;
  margin: 0 auto 80px;
}

body#authentication #content.page-content {
  padding: 44px 54px 34px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: none;
}

body#authentication .account-login-heading {
  margin-bottom: 34px;
  text-align: center;
}

body#authentication .account-login-heading > span {
  display: block;
  margin-bottom: 8px;
  color: #078ca3;
  font-family: "Chivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body#authentication .account-login-heading h1 {
  margin: 0 0 10px;
  color: #333;
  font-family: "Arimo", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

body#authentication .account-login-heading p {
  margin: 0;
  color: #777;
  font-size: 15px;
}

body#authentication .login-form .form-group {
  display: block;
  margin-bottom: 22px;
}

body#authentication .login-form .form-control-label,
body#authentication .login-form .form-group > div {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

body#authentication .login-form .form-control-label {
  margin-bottom: 8px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

body#authentication .login-form .form-control {
  min-height: 48px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}

body#authentication .login-form .input-group-btn .btn {
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: #263941;
}

body#authentication .forgot-password {
  margin: -4px 0 26px;
  text-align: right;
}

body#authentication .form-footer #submit-login {
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 4px;
}

body#authentication #content > hr {
  margin: 32px 0 24px;
  border-color: #ededed;
}

body#authentication .no-account {
  text-align: center;
}

body#authentication .no-account a {
  color: #078ca3;
  font-weight: 600;
}

/* Registo: formulário claro e consentimentos legais legíveis. */
body#registration #main {
  max-width: 900px;
  margin: 0 auto 80px;
}

body#registration #content.page-content {
  padding: 44px 54px 38px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: none;
}

body#registration .account-register-heading {
  margin-bottom: 28px;
  text-align: center;
}

body#registration .account-register-heading > span {
  display: block;
  margin-bottom: 8px;
  color: #078ca3;
  font-family: "Chivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body#registration .account-register-heading h1 {
  margin: 0 0 10px;
  color: #333;
  font-family: "Arimo", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

body#registration .account-register-heading p {
  margin: 0;
  color: #777;
  font-size: 15px;
}

body#registration .register-login-link {
  margin: 0 0 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ededed;
  text-align: center;
}

body#registration .register-login-link a {
  color: #078ca3;
  font-weight: 600;
}

body#registration #customer-form .form-group {
  display: block;
  margin-bottom: 20px;
}

body#registration #customer-form .form-control-label,
body#registration #customer-form .form-group > div {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

body#registration #customer-form .form-control-label {
  margin-bottom: 8px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

body#registration #customer-form .form-control,
body#registration #customer-form .input-group-btn .btn {
  min-height: 48px;
}

body#registration #customer-form .form-control {
  padding: 11px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}

body#registration #customer-form .input-group-btn .btn {
  padding: 0 18px;
  color: #fff;
  background: #263941;
}

body#registration #customer-form .custom-checkbox {
  display: block;
  padding: 16px 18px;
  background: #f8faf9;
  border: 1px solid #e3e8e5;
  border-radius: 4px;
}

body#registration #customer-form .custom-checkbox label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  color: #3d3d3d;
  cursor: pointer;
  line-height: 1.45;
  min-height: 20px;
  padding-left: 0 !important;
  position: relative;
}

body#registration #customer-form .custom-checkbox input {
  position: absolute;
  opacity: 0;
}

body#registration #customer-form .custom-checkbox label > span:not(.checkbox-label-content) {
  grid-column: 1;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: #fff;
  border: 1px solid #b8c0bc;
  border-radius: 2px;
  position: static !important;
}

body#registration #customer-form .checkbox-label-content {
  grid-column: 2;
  min-width: 0;
  font-size: 15px;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

body#registration #customer-form .checkbox-label-content em,
body#registration #customer-form .checkbox-label-content small {
  display: block;
  margin-top: 6px;
  color: #747474;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

body#registration #customer-form .form-footer {
  margin-top: 30px;
  text-align: right;
}

body#registration #customer-form .form-control-submit {
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 4px;
}

/* Encomenda: passos claros, formulário compacto e resumo sempre legível. */
body#checkout #wrapper {
  padding-top: 68px;
  padding-bottom: 80px;
  background: #fff;
}

body#checkout #content > .row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
  margin: 0;
}

body#checkout .cart-grid-body,
body#checkout .cart-grid-right {
  width: 100%;
  max-width: none;
  padding: 0;
}

body#checkout .checkout-step {
  margin: 0 0 16px;
  padding: 0;
  background: #fff;
  border: 1px solid #e5e8e6;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
}

body#checkout .checkout-step .step-title {
  display: flex;
  align-items: center;
  min-height: 72px;
  margin: 0;
  padding: 20px 26px;
  color: #333;
  font-family: "Arimo", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  border-bottom: 0;
}

body#checkout .checkout-step.-current .step-title {
  border-bottom: 1px solid #e7e9e8;
}

body#checkout .checkout-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  color: #fff;
  background: #078ca3;
  border-radius: 50%;
  font-size: 16px;
}

body#checkout .checkout-step .content {
  padding: 30px 34px 34px;
}

body#checkout .nav-inline {
  margin-bottom: 28px;
}

body#checkout .nav-inline .nav-link {
  color: #555;
  font-size: 16px;
}

body#checkout .nav-inline .nav-link.active {
  color: #078ca3;
  font-weight: 600;
}

body#checkout #customer-form .form-group {
  display: block;
  margin: 0 0 20px;
}

body#checkout #customer-form .form-control-label,
body#checkout #customer-form .form-group > div {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

body#checkout #customer-form .form-control-label {
  margin-bottom: 8px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

body#checkout #customer-form .form-control {
  min-height: 48px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid #d9dddb;
  border-radius: 3px;
}

body#checkout #customer-form .input-group-btn .btn {
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: #263941;
}

body#checkout #customer-form .form-informations {
  margin: 4px 0 14px;
  padding: 14px 16px;
  background: #f5f9f8;
  border-left: 3px solid #078ca3;
  line-height: 1.5;
}

body#checkout #customer-form .custom-checkbox {
  display: block;
  padding: 14px 16px;
  background: #f8faf9;
  border: 1px solid #e3e8e5;
  border-radius: 4px;
}

body#checkout #customer-form .custom-checkbox label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  color: #3d3d3d;
  cursor: pointer;
  line-height: 1.45;
  min-height: 20px;
  padding-left: 0 !important;
  position: relative;
}

body#checkout #customer-form .custom-checkbox input {
  position: absolute;
  opacity: 0;
}

body#checkout #customer-form .custom-checkbox label > span:not(.checkbox-label-content) {
  grid-column: 1;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: #fff;
  border: 1px solid #b8c0bc;
  border-radius: 2px;
  position: static !important;
}

body#checkout #customer-form .checkbox-label-content {
  grid-column: 2;
  min-width: 0;
  font-size: 15px;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

body#checkout #customer-form .checkbox-label-content em,
body#checkout #customer-form .checkbox-label-content small {
  display: block;
  margin-top: 5px;
  color: #747474;
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

body#checkout #customer-form .form-footer {
  margin-top: 28px;
  text-align: right;
}

body#checkout #customer-form .continue {
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 4px;
}

body#checkout .cart-grid-right {
  position: sticky;
  top: 24px;
}

body#checkout #js-checkout-summary {
  margin: 0;
  border: 1px solid #e5e8e6;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
}

body#checkout #js-checkout-summary .card-block,
body#checkout #js-checkout-summary .cart-summary-totals {
  padding-right: 22px;
  padding-left: 22px;
}

body#checkout #js-checkout-summary .cart-summary-line {
  min-height: 34px;
  font-size: 15px;
}

body#checkout #js-checkout-summary .cart-total {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e8e8e8;
}

body#checkout .blockreassurance_product {
  display: none !important;
}

@media (max-width: 991px) {
  body#checkout #content > .row {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  body#checkout .cart-grid-right {
    position: static;
  }
}

@media (max-width: 575px) {
  body#checkout #wrapper {
    padding-top: 34px;
    padding-bottom: 50px;
  }

  body#checkout .checkout-step .step-title {
    min-height: 64px;
    padding: 16px 18px;
    font-size: 18px;
  }

  body#checkout .checkout-step .step-number {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 14px;
  }

  body#checkout .checkout-step .content {
    padding: 24px 18px 26px;
  }

  body#checkout #customer-form .custom-checkbox {
    padding: 13px;
  }

  body#checkout #customer-form .continue {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body#authentication #main {
    margin-bottom: 50px;
  }

  body#authentication #content.page-content {
    padding: 34px 22px 28px;
  }

  body#authentication .account-login-heading h1 {
    font-size: 28px;
  }

  body#registration #main {
    margin-bottom: 50px;
  }

  body#registration #content.page-content {
    padding: 34px 22px 28px;
  }

  body#registration .account-register-heading h1 {
    font-size: 28px;
  }

  body#registration #customer-form .custom-checkbox {
    padding: 14px;
  }

  body#registration #customer-form .form-control-submit {
    width: 100%;
  }
}

body#category #subcategories .cat_desc {
  display: none;
}

/* Livro de Reclamações, independente do conteúdo gerido no footer builder. */
.footer-complaints-book {
  padding: 18px 0 22px;
  background: #08788b;
}

.footer-complaints-book a {
  display: inline-block;
  overflow: hidden;
  border-radius: 3px;
}

.footer-complaints-book img {
  display: block;
  width: 270px;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

.one-page-anchor {
  scroll-margin-top: 120px;
}

/* Evita que conteúdos longos provoquem scroll horizontal nos três ecrãs. */
body#index main,
body#category main,
body#product main {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 767px) {
  body#category #left-column {
    margin-bottom: 28px;
  }

  body#category #left-column .block-categories {
    padding: 20px;
    border: 1px solid #ededed;
  }

  body#product h1.namne_details {
    margin-top: 0;
  }

  body#contact .contact-page-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-bottom: 45px;
  }

  body#contact .contact-page-details h2 {
    font-size: 29px;
    line-height: 36px;
  }

  body#contact .contact-page-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  body#contact .contact-page-form .contact-form {
    padding: 28px 20px;
  }

  body#contact .contact-page-map {
    margin-bottom: 50px;
  }

  body#contact .contact-page-map iframe {
    height: 320px;
  }

  body#category #subcategories .subcategories-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-complaints-book {
    text-align: center;
  }

  .footer-complaints-book img {
    width: 230px;
  }
}

@media (max-width: 399px) {
  body#category #subcategories .subcategories-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================
   CASA TAIPINA — PRODUTOS EM DESTAQUE NA HOMEPAGE
   ========================================================== */

body#index .elementor-widget-pos_products .pos-product-widget {
  margin-right: -4px;
  margin-left: -4px;
}

body#index
  .elementor-widget-pos_products
  .slick-slider-block
  > .slick-list {
  padding: 0;
}

body#index
  .elementor-widget-pos_products
  .slick-slider-block
  > .slick-list
  > .slick-track {
  display: flex;
  align-items: stretch;
}

body#index
  .elementor-widget-pos_products
  .slick-slider-block
  > .slick-list
  > .slick-track
  > .slick-slide {
  height: auto;
  padding-right: 4px;
  padding-left: 4px;
}

body#index
  .elementor-widget-pos_products
  .slick-slide1,
body#index
  .elementor-widget-pos_products
  .slick-slide-inner1 {
  height: 100%;
}

/* Cartão XD: 270 × 300 */
body#index
  .elementor-widget-pos_products
  article.product-miniature {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 270px;
  max-width: 100%;
  height: 300px;
  min-height: 300px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  box-shadow: none;
}

/* Área da imagem XD: 202 × 202 */
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .img_block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 202px;
  min-height: 202px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 202px;
  margin: 0 auto;
  padding: 0;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-thumbnail
  img {
  position: static;
  display: block;
  width: 202px !important;
  height: 202px !important;
  max-width: 202px;
  max-height: 202px;
  margin: 0;
  object-fit: contain;
  opacity: 1;
  transform: none;
  transition: none;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature:hover
  .product-thumbnail
  img {
  opacity: 1;
  transform: none;
}

/* Etiqueta Novo */
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-flag {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-flag
  li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin: 0;
  padding: 0 7px;
  color: #fff;
  font-family: "Chivo", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
  background: #555;
  border-radius: 3px;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-flag
  li.new {
  background: #0286a5;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-flag
  span {
  color: inherit;
  font: inherit;
  background: transparent;
}

/* Informação: começa 16px abaixo da imagem */
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product_desc {
  position: static !important;
  display: block;
  flex: 1;
  width: 100%;
  height: 98px;
  margin: 0;
  padding: 16px 23px 20px;
  background: #fff;
  border: 0;
  box-sizing: border-box;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .inner_desc {
  position: static !important;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product_desc
  h3 {
  margin: 0;
  padding: 0;
  line-height: 19px;
}

/* Nome XD: X +24 / Chivo Regular 16/19 */
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product_name,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product_name.one_line {
  display: -webkit-box;
  width: 100%;
  min-height: 38px;
  max-height: 38px;
  margin: 0 0 5px;
  padding: 0;
  overflow: hidden;
  color: #646464;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0;
  text-decoration: none;
  text-overflow: initial;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product_name:hover {
  color: #0286a5;
}

/* Preço XD: Chivo Bold 16/19 */
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-price-and-shipping {
  margin: 0;
  padding: 0;
  line-height: 19px;
}

body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-price-and-shipping
  .price {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #3d3d3d;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0;
}

/* Elementos ausentes no cartão do XD */
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .manufacturer,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .hook-reviews,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .comments_note,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .quick-view,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .add-to-links,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .availability,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .product-desc,
body#index
  .elementor-widget-pos_products
  article.product-miniature
  .variant-links {
  display: none !important;
}

@media (max-width: 991px) {
  body#index
    .elementor-widget-pos_products
    article.product-miniature {
    height: 300px;
    min-height: 300px;
  }
}

/* ==========================================================
   CASA TAIPINA — PÁGINA DE PRODUTO (ADOBE XD)
   ========================================================== */

body#product {
  color: #707070;
  font-family: "Chivo", sans-serif;
}

body#product #wrapper > .container,
body#product .page-title-wrapper > .container {
  width: 100%;
  max-width: 1440px;
  padding-right: 20px;
  padding-left: 20px;
}

/* Breadcrumb */
body#product .page-title-wrapper {
  margin: 0;
  padding: 28px 0 40px;
  background: #fff;
}

body#product .page-header {
  display: none;
}

body#product .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

body#product .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#product .breadcrumb li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #a0a0a0;
  font-family: "Chivo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

body#product .breadcrumb li:not(:last-child)::after {
  margin: 0 7px;
  color: #b8b8b8;
  content: "/";
}

body#product .breadcrumb a,
body#product .breadcrumb span {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

body#product .breadcrumb a:hover {
  color: #078ca3;
}

/* Estrutura */
body#product #main .product-container.product-layout1 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin: 0;
}

body#product
  #main
  .product-container.product-layout1
  > .col-md-6 {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  flex: none;
}

body#product
  #main
  .product-container.product-layout1
  > .col-md-12 {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-top: 70px;
  padding: 0;
  flex: none;
}

/* Galeria */
body#product .page-content#content {
  margin: 0;
  padding: 0;
}

body#product .images-container.default {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  width: 100%;
}

body#product .product-cover-container {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin: 0;
}

body#product .product-cover .cover-item,
body#product .product-cover .easyzoom,
body#product .product-cover .easyzoom > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
}

body#product .product-cover img {
  position: static;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  margin: auto;
  object-fit: contain;
  transform: none;
}

body#product .product-cover-container > .product-flag {
  display: none !important;
}

body#product .product-images {
  grid-column: 1;
  grid-row: 1;
  width: 120px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#product .product-images .slick-list {
  width: 120px;
  overflow: visible;
}

body#product .product-images .slick-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 120px !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

body#product .product-images .slick-track::before,
body#product .product-images .slick-track::after {
  display: none !important;
  content: none !important;
}

body#product .product-images .slick-slide,
body#product .product-images .slick-slide > div {
  width: 120px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#product .product-images .image-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 120px !important;
  height: 120px;
  padding: 0 5px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 5px;
  cursor: pointer;
}

body#product .product-images .slick-slide.is-active .image-item,
body#product .product-images .image-item:has(.thumb.selected) {
  border-color: #707070;
}

body#product .product-images .thumb {
  display: block;
  width: 100px !important;
  height: 100px !important;
  max-width: 100px;
  max-height: 100px;
  margin: auto;
  object-fit: contain;
  border: 0;
}

body#product .product-images .slick-arrow,
body#product .product-cover .slick-arrow {
  display: none !important;
}

/* Informação */
body#product h1.namne_details {
  margin: 0 0 7px;
  padding: 0;
  color: #404040;
  font-family: "Chivo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

body#product #product_comments_block_extra {
  display: none !important;
}

body#product .product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
}

body#product .product-prices .product-price {
  margin: 0;
  padding: 0;
}

body#product .product-prices .current-price-value {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #078ca3;
  font-family: "Chivo", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

body#product .tax-shipping-delivery-label {
  margin: 0;
  padding: 0;
  color: #ababab;
  font-family: "Chivo", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
}

body#product .product-information {
  margin: 0;
  padding: 0;
}

body#product .product-information .product-description {
  margin: 35px 0 0;
  padding: 0;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

body#product .product-information .product-description p {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

/* Metadados superiores */
body#product .product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 76px;
  margin-top: 11px;
  padding: 0 0 15px;
  border-bottom: 1px solid #ededed;
  box-sizing: border-box;
}

body#product .product-model,
body#product .product-category {
  display: block;
  margin: 0;
  color: #969696;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

body#product .product-model b,
body#product .product-category b {
  color: inherit;
  font: inherit;
  font-weight: 400;
}

body#product .product-category {
  margin-top: 15px;
}

/* Variantes */
body#product .product-actions {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

body#product .product-variants {
  margin: 22px 0 20px;
}

body#product .product-variants:not(:has(*)),
body#product .product-discounts:not(:has(*)) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body#product .product-variants .product-variants-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
}

body#product .product-variants .control-label,
body#product .product-variants-item > span {
  min-width: 74px;
  margin: 0;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

body#product .product-variants ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#product .product-variants li,
body#product .product-variants label {
  margin: 0;
  padding: 0;
}

body#product .product-variants label {
  cursor: pointer;
}

body#product .product-variants input[type="radio"],
body#product .product-variants input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body#product .product-variants .radio-label,
body#product .product-variants .input-color,
body#product .product-variants label > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 36px;
  margin: 0;
  padding: 0 12px;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0;
  box-shadow: none;
}

body#product .product-variants input:checked + .radio-label,
body#product .product-variants input:checked + .input-color,
body#product .product-variants input:checked + span {
  color: #078ca3;
  border-color: #078ca3;
}

/* Compra */
body#product .product-add-to-cart {
  margin: 8px 0 0;
  padding: 0;
}

body#product
  .product-actions:has(.product-variants:not(:has(*)))
  .product-add-to-cart {
  margin-top: 85px;
}

body#product .product-add-to-cart > .control-label {
  display: none;
}

body#product .product-quantity {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 50px;
  column-gap: 12px;
  row-gap: 8px;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

body#product .product-quantity .qty,
body#product .bootstrap-touchspin {
  width: 110px;
  height: 46px;
  margin: 0;
}

body#product .bootstrap-touchspin {
  position: relative;
  display: block;
  padding: 0 34px;
  background: #fff;
  border: 1px solid #dedede;
  box-sizing: border-box;
}

body#product .bootstrap-touchspin #quantity_wanted {
  display: block !important;
  width: 40px;
  height: 44px;
  margin: 0;
  padding: 0;
  color: #404040;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  appearance: textfield;
}

body#product
  .bootstrap-touchspin
  #quantity_wanted::-webkit-inner-spin-button,
body#product
  .bootstrap-touchspin
  #quantity_wanted::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

body#product .bootstrap-touchspin .input-group-btn-vertical {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  pointer-events: none;
}

body#product .bootstrap-touchspin .btn-touchspin {
  position: absolute;
  top: 0;
  width: 34px;
  height: 44px;
  margin: 0;
  padding: 0;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 0;
  line-height: 44px;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
}

body#product .bootstrap-touchspin .bootstrap-touchspin-down {
  left: 0;
  border-right: 1px solid #ededed;
}

body#product .bootstrap-touchspin .bootstrap-touchspin-up {
  right: 0;
  border-left: 1px solid #ededed;
}

body#product .bootstrap-touchspin .bootstrap-touchspin-down::before {
  font-size: 16px;
  content: "−";
}

body#product .bootstrap-touchspin .bootstrap-touchspin-up::before {
  font-size: 16px;
  content: "+";
}

body#product .bootstrap-touchspin .material-icons {
  display: none;
}

body#product .product-quantity .add {
  min-width: 0;
  margin: 0;
}

body#product .product-quantity .add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-family: "Chivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  text-transform: none;
  background: #3f3f3f;
  border: 1px solid #3f3f3f;
  border-radius: 0;
  box-shadow: none;
}

body#product .product-quantity .add-to-cart:hover {
  color: #fff;
  background: #078ca3;
  border-color: #078ca3;
}

body#product .product-quantity .add-to-cart .shopping-cart {
  display: none;
}

body#product .product-quantity .cart_button {
  width: 50px;
  height: 46px;
  margin: 0;
}

body#product #wishlist_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 46px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #707070;
  font-size: 0;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0;
}

body#product #wishlist_button:hover {
  color: #078ca3;
  border-color: #078ca3;
}

body#product #wishlist_button i {
  margin: 0;
  color: inherit;
  font-size: 20px;
  line-height: 1;
}

body#product .product-quantity .buy {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

body#product .product-quantity .buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
  text-transform: none;
  background: #078ca3;
  border: 1px solid #078ca3;
  border-radius: 0;
  box-shadow: none;
}

body#product .product-quantity .buy-now:hover {
  color: #fff;
  background: #056f82;
  border-color: #056f82;
}

body#product .product-quantity .buy-now i {
  display: none;
}

body#product #product-availability,
body#product .product-minimal-quantity,
body#product .product-additional-info,
body#product .social-sharing,
body#product .blockreassurance_product {
  display: none !important;
}

/* Pagamento */
body#product .payment-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 135px;
  margin: 29px 0 0;
  padding: 20px;
  text-align: center;
  background: #f7f6f2;
  border-radius: 5px;
  box-sizing: border-box;
}

body#product .payment-detail img {
  display: block;
  width: auto;
  height: auto;
  max-width: 242px;
  max-height: 51px;
  margin: 0 auto 12px;
  object-fit: contain;
}

body#product .payment-detail p {
  margin: 0;
  color: #8a8a8a;
  font-family: "Chivo", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* Detalhes do produto e reviews */
body#product .tabs {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

body#product .tabs .nav-tabs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
  margin: 0;
  padding: 0;
  border: 0;
}

body#product .tabs .nav-item {
  margin: 0;
  padding: 0;
}

body#product .tabs .nav-link {
  display: block;
  margin: 0;
  padding: 0 0 7px;
  color: #3d3d3d;
  font-family: "Arimo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

body#product .tabs .nav-link.active,
body#product .tabs .nav-link:hover {
  color: #0286a5;
  background: transparent;
  border-bottom-color: #0286a5;
}

body#product .tabs .tab-content {
  display: block;
  width: 100%;
  margin: 0;
  padding: 46px 88px;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  background: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  box-sizing: border-box;
}

body#product .tabs .tab-content > .tab-pane {
  display: none;
}

body#product .tabs .tab-content > .tab-pane.active,
body#product .tabs .tab-content > .tab-pane.in.active {
  display: block;
}

body#product #product-details .product-reference,
body#product #product-details .product-quantities {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 11px;
  color: #707070;
  font-family: "Chivo", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-transform: none;
}

body#product #product-details .label {
  margin-right: 4px;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
}

body#product #product-details .label::before {
  content: none;
}

/* Desktop XD: artboard 1920px */
@media (min-width: 1200px) {
  body#product #main .product-container.product-layout1 {
    grid-template-columns: 740px 612px;
    column-gap: 48px;
    row-gap: 0;
    margin-top: 13px;
    margin-left: 7.5px;
  }

  body#product .images-container.default {
    grid-template-columns: 120px 600px;
    width: 735px;
    margin-left: -2.5px;
  }

  body#product .product-cover-container,
  body#product .product-cover,
  body#product .product-cover .slick-list,
  body#product .product-cover .slick-slide,
  body#product .product-cover .slick-slide > div,
  body#product .product-cover .cover-item,
  body#product .product-cover .easyzoom,
  body#product .product-cover .easyzoom > a {
    width: 600px;
    min-width: 600px;
    height: 600px;
    min-height: 600px;
    margin: 0;
    padding: 0;
  }

  body#product .product-cover .slick-slide {
    width: 600px !important;
  }

  body#product .product-cover img {
    width: 600px !important;
    height: 600px !important;
    max-width: 600px;
    max-height: 600px;
    margin: 0;
    border-radius: 5px;
  }

  body#product
    .product-container.product-layout1
    > .col-md-6:nth-child(2),
  body#product h1.namne_details,
  body#product .product-prices,
  body#product .product-information,
  body#product .product-actions,
  body#product .product-quantity {
    width: 612px;
    min-width: 612px;
    max-width: 612px;
  }

  body#product .payment-detail {
    width: 617px;
    margin-left: -5px;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  body#product #wrapper > .container,
  body#product .page-title-wrapper > .container {
    max-width: 1140px;
  }

  body#product #main .product-container.product-layout1 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }

  body#product .images-container.default {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 24px;
  }

  body#product .product-images,
  body#product .product-images .slick-list,
  body#product .product-images .slick-track,
  body#product .product-images .slick-slide,
  body#product .product-images .slick-slide > div {
    width: 100px !important;
  }

  body#product .product-images .image-item {
    width: 100px !important;
    height: 100px;
  }

  body#product .product-images .thumb {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px;
    max-height: 84px;
  }
}

/* Tablet vertical */
@media (max-width: 991px) {
  body#product #main .product-container.product-layout1 {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 42px;
  }

  body#product
    #main
    .product-container.product-layout1
    > .col-md-12 {
    grid-column: 1;
    margin-top: 30px;
  }

  body#product .product-cover,
  body#product .product-cover .slick-list,
  body#product .product-cover .slick-slide,
  body#product .product-cover .slick-slide > div,
  body#product .product-cover .cover-item,
  body#product .product-cover .easyzoom,
  body#product .product-cover .easyzoom > a {
    min-height: 460px;
  }

  body#product .product-cover img {
    max-height: 460px;
  }

  body#product .tabs .nav-tabs {
    gap: 32px;
  }

  body#product .tabs .tab-content {
    min-height: 280px;
    padding: 36px 40px;
  }
}

/* Telemóvel */
@media (max-width: 575px) {
  body#product .page-title-wrapper {
    padding: 20px 0 28px;
  }

  body#product .images-container.default {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  body#product .product-cover-container {
    order: 1;
    width: 100%;
  }

  body#product .product-images {
    order: 2;
    width: 100% !important;
  }

  body#product .product-images .slick-list {
    width: 100% !important;
    overflow: hidden;
  }

  body#product .product-images .slick-track {
    flex-direction: row;
    gap: 10px;
    width: max-content !important;
  }

  body#product .product-images .slick-slide,
  body#product .product-images .slick-slide > div {
    width: 82px !important;
  }

  body#product .product-images .image-item {
    width: 82px !important;
    height: 82px;
  }

  body#product .product-images .thumb {
    width: 68px !important;
    height: 68px !important;
    max-width: 68px;
    max-height: 68px;
  }

  body#product .product-cover,
  body#product .product-cover .slick-list,
  body#product .product-cover .slick-slide,
  body#product .product-cover .slick-slide > div,
  body#product .product-cover .cover-item,
  body#product .product-cover .easyzoom,
  body#product .product-cover .easyzoom > a {
    min-height: 350px;
  }

  body#product .product-cover img {
    max-height: 350px;
  }

  body#product .product-information .product-description {
    margin-top: 24px;
  }

  body#product .product-meta {
    width: 100%;
  }

  body#product .product-quantity {
    grid-template-columns: 96px minmax(0, 1fr) 48px;
    gap: 8px;
  }

  body#product .product-quantity .qty,
  body#product .bootstrap-touchspin {
    width: 96px;
  }

  body#product .product-quantity .cart_button,
  body#product #wishlist_button {
    width: 48px;
  }

  body#product .payment-detail {
    min-height: 120px;
    margin-top: 22px;
  }

  body#product .tabs .nav-tabs {
    flex-wrap: wrap;
    gap: 18px;
  }

  body#product .tabs .nav-link {
    font-size: 14px;
    line-height: 17px;
  }

  body#product .tabs .tab-content {
    min-height: 220px;
    padding: 28px 24px;
  }
}
div#subcategories {
    display: none;
}