@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__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;
  }
}
.animate__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.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  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.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* 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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/images/vendor/owl.carousel/dist/owl.video.play.png?4a37f8008959c75f619bf0a3a4e2d7a2) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}@charset "UTF-8";
body.fancybox-active {
  overflow: hidden; }

body.fancybox-iosfix {
  position: fixed;
  left: 0;
  right: 0; }

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99992;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  transform: translateZ(0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility 0s linear .25s;
  box-sizing: border-box; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s, visibility 0s; }

.fancybox-infobar {
  top: 0;
  left: 0;
  font-size: 13px;
  padding: 0 10px;
  height: 44px;
  min-width: 44px;
  line-height: 44px;
  color: #ccc;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
  mix-blend-mode: exclusion; }

.fancybox-toolbar {
  top: 0;
  right: 0;
  margin: 0;
  padding: 0; }

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0); }

.fancybox-is-closing .fancybox-stage {
  overflow: visible; }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  backface-visibility: hidden;
  transition-property: transform, opacity; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: visible; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000; }

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide > title,
.fancybox-slide > style,
.fancybox-slide > meta,
.fancybox-slide > link,
.fancybox-slide > script,
.fancybox-slide > base {
  display: none; }

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition-property: transform, opacity; }

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-image-wrap {
  cursor: grab; }

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: grabbing; }

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 16px;
  line-height: 20px; }

/* Buttons */
.fancybox-button {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgba(30, 30, 30, 0.6);
  transition: color .3s ease;
  cursor: pointer;
  outline: none; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff; }

.fancybox-button[disabled] {
  color: #ccc;
  cursor: default;
  opacity: 0.6; }

.fancybox-button svg {
  display: block;
  position: relative;
  overflow: visible;
  shape-rendering: geometricPrecision; }

.fancybox-button svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3; }

.fancybox-button--share svg path {
  stroke-width: 1; }

.fancybox-button--play svg path:nth-child(2) {
  display: none; }

.fancybox-button--pause svg path:nth-child(1) {
  display: none; }

.fancybox-button--zoom svg path {
  fill: transparent; }

/* Navigation arrows */
.fancybox-navigation {
  display: none; }

.fancybox-show-nav .fancybox-navigation {
  display: block; }

.fancybox-navigation button {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  z-index: 99997;
  background: transparent;
  width: 60px;
  height: 100px;
  padding: 17px; }

.fancybox-navigation button:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 30, 0.6); }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0; }

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer; }

.fancybox-close-small:after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial,"Helvetica Neue",Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background-color: transparent;
  transition: background-color .25s;
  box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus {
  outline: none; }

.fancybox-close-small:focus:after {
  outline: 1px dotted #888; }

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee; }

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px; }

.fancybox-slide--image .fancybox-close-small:after,
.fancybox-slide--iframe .fancybox-close-small:after {
  font-size: 35px;
  color: #aaa; }

.fancybox-slide--image .fancybox-close-small:hover:after,
.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
  background: transparent; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none; }

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 2vw 0 2vw;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
  position: relative;
  /* Fix IE11 */ }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999; }

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1; }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  transform: rotate(-360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--next {
  transform: rotate(360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--current {
  transform: rotate(0deg);
  opacity: 1; }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Share */
.fancybox-share {
  padding: 30px;
  border-radius: 3px;
  background: #f4f4f4;
  max-width: 90%; }

.fancybox-share h1 {
  color: #222;
  margin: 0 0 20px 0;
  font-size: 33px;
  font-weight: 700;
  text-align: center; }

.fancybox-share p {
  margin: 0;
  padding: 0;
  text-align: center; }

.fancybox-share p:first-of-type {
  margin-right: -10px; }

.fancybox-share_button {
  display: inline-block;
  text-decoration: none;
  margin: 0 10px 10px 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
  background: #fff;
  white-space: nowrap;
  font-size: 16px;
  line-height: 23px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  min-width: 140px;
  color: #707070;
  transition: all .2s; }

.fancybox-share_button:focus,
.fancybox-share_button:hover {
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3); }

.fancybox-share_button svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom; }

.fancybox-share input {
  box-sizing: border-box;
  width: 100%;
  margin: 5px 0 0 0;
  padding: 10px 15px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #ebebeb;
  color: #5d5b5b;
  font-size: 14px;
  outline: none; }

/* Thumbs */
.fancybox-thumbs {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 212px;
  margin: 0;
  padding: 2px 2px 4px 2px;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  box-sizing: border-box;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-y: hidden;
  overflow-x: auto; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
  white-space: nowrap; }

.fancybox-thumbs-x > ul {
  overflow: hidden; }

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 2px;
  width: 100px;
  height: 75px;
  max-width: calc(50% - 4px);
  max-height: calc(100% - 8px);
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  box-sizing: border-box; }

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.fancybox-thumbs > ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px); } }
/***** Custom Theme Mixins *****/

/***** Mixins *****/

/***** Mixins *****/

.btn-primary {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: oscurecer(var(--primary), 30%) !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

.text-primary {
  color: var(--primary) !important;
}

a.text-primary,
a.text-primary:hover {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.btn-secondary {
  color: #ffffff;
  background-color: var(--secondary);
  border-color: var(--secondary);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--secondary) !important;
  border-color: oscurecer(var(--secondary), 30%) !important;
}

.btn-outline-secondary {
  color: var(--secondary) !important;
  border-color: var(--secondary);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-secondary:hover,
.btn-outline-secondary:active,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

a.text-secondary,
a.text-secondary:hover {
  color: var(--secondary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.btn-success {
  color: #ffffff;
  background-color: var(--success);
  border-color: var(--success);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--success) !important;
  border-color: oscurecer(var(--success), 30%) !important;
}

.btn-outline-success {
  color: var(--success) !important;
  border-color: var(--success);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-success:hover,
.btn-outline-success:active,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  background-color: var(--success);
  border-color: var(--success);
  color: #fff !important;
}

.text-success {
  color: var(--success) !important;
}

a.text-success,
a.text-success:hover {
  color: var(--success) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.btn-dark {
  color: #ffffff;
  background-color: var(--dark);
  border-color: var(--dark);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--dark) !important;
  border-color: oscurecer(var(--dark), 30%) !important;
}

.btn-outline-dark {
  color: var(--dark) !important;
  border-color: var(--dark);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-dark:hover,
.btn-outline-dark:active,
.btn-outline-dark:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #fff !important;
}

.text-dark {
  color: var(--dark) !important;
}

a.text-dark,
a.text-dark:hover {
  color: var(--dark) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.btn-info {
  color: #ffffff;
  background-color: var(--info);
  border-color: var(--info);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--info) !important;
  border-color: oscurecer(var(--info), 30%) !important;
}

.btn-outline-info {
  color: var(--info) !important;
  border-color: var(--info);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-info:hover,
.btn-outline-info:active,
.btn-outline-info:focus,
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  background-color: var(--info);
  border-color: var(--info);
  color: #fff !important;
}

.text-info {
  color: var(--info) !important;
}

a.text-info,
a.text-info:hover {
  color: var(--info) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

.btn-warning {
  color: #ffffff;
  background-color: var(--warning);
  border-color: var(--warning);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--warning) !important;
  border-color: oscurecer(var(--warning), 30%) !important;
}

.btn-outline-warning {
  color: var(--warning) !important;
  border-color: var(--warning);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-warning:hover,
.btn-outline-warning:active,
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  background-color: var(--warning);
  border-color: var(--warning);
  color: #fff !important;
}

.text-warning {
  color: var(--warning) !important;
}

a.text-warning,
a.text-warning:hover {
  color: var(--warning) !important;
}

.bg-warning {
  background-color: var(--warning) !important;
}

.btn-danger {
  color: #ffffff;
  background-color: var(--danger);
  border-color: var(--danger);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--danger) !important;
  border-color: oscurecer(var(--danger), 30%) !important;
}

.btn-outline-danger {
  color: var(--danger) !important;
  border-color: var(--danger);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-danger:hover,
.btn-outline-danger:active,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  background-color: var(--danger);
  border-color: var(--danger);
  color: #fff !important;
}

.text-danger {
  color: var(--danger) !important;
}

a.text-danger,
a.text-danger:hover {
  color: var(--danger) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.btn-light {
  color: #ffffff;
  background-color: var(--light);
  border-color: var(--light);
  /*&:hover, &:active, &:focus, &:visited,
  &:not(:disabled):not(.disabled):active,
  &:not(:disabled):not(.disabled).active,
  .show > &.dropdown-toggle {
    color: #ffffff;
    background-color: oscurecer($value,30%);
    border-color: oscurecer($value,30%);
  }*/
}

.btn-light:hover,
.btn-light:active,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--light) !important;
  border-color: oscurecer(var(--light), 30%) !important;
}

.btn-outline-light {
  color: var(--light) !important;
  border-color: var(--light);
  background-color: transparent;
  /*&:hover, &:active, &:focus, &:visited {
    background-color: $value;
    border-color: $value;
    color: #ffffff;
  }*/
}

.btn-outline-light:hover,
.btn-outline-light:active,
.btn-outline-light:focus,
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  background-color: var(--light);
  border-color: var(--light);
  color: #fff !important;
}

.text-light {
  color: var(--light) !important;
}

a.text-light,
a.text-light:hover {
  color: var(--light) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.social-left,
.social-right {
  position: fixed;
  top: 50%;
  right: 0;
  left: auto;
}

.social-left {
  left: 0;
  right: auto;
}

#dropdownMenuWhatsapp:after {
  display: none;
}

.dropdown-whatsapp .dropdown-menu-whatsapp a {
  font-size: 14px !important;
  font-weight: normal !important;
  margin: 0 5px !important;
  color: var(--primary) !important;
}

.owl-style-1 .title-section {
  padding-left: 40px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  flex-direction: column;
  display: flex;
}

.owl-style-1 .title-section .title {
  font-size: 45px;
  color: var(--primary);
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 5px;
  order: 1;
}

.owl-style-1 .title-section .subtitle {
  font-size: 18px;
  color: #434040;
  position: relative;
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 2px;
  order: 0;
}

.owl-style-1 .title-section .subtitle:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 30px;
  background-color: var(--secondary);
  height: 2px;
}

@media (max-width: 767.98px) {
  .owl-style-1 .title-section {
    padding-left: 0;
  }

  .owl-style-1 .title-section .title {
    font-size: 30px;
  }

  .owl-style-1 .title-section .subtitle {
    font-size: 14px;
  }

  .owl-style-1 .title-section .subtitle:after {
    width: 0;
  }
}

.owl-style-1 .owl-nav {
  display: block !important;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -60px !important;
}

.owl-style-1 .owl-nav i {
  font-size: 28px;
  color: #bebebe;
}

@media (max-width: 767.98px) {
  .owl-style-1 .owl-nav {
    margin-top: -40px !important;
  }
}

.owl-style-1 .owl-nav [class*=owl-]:hover {
  background: transparent !important;
  color: var(--primary);
}

.owl-style-1 .card-item .image-link {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  display: block;
}

.owl-style-1 .card-item .image-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
}

.owl-style-1 .card-item .title {
  font-size: 25px;
  margin: 15px 0;
  color: var(--primary);
}

.owl-style-1 .card-item .summary {
  color: #555555;
  font-size: 16px;
  margin-bottom: 15px;
}

.owl-style-1 .card-item .view-more-button {
  font-size: 14px;
  color: var(--primary);
  padding: 0 20px 0 0;
  position: relative;
}

.owl-style-1 .card-item .view-more-button:hover {
  color: var(--secondary);
}

.owl-style-1 .card-item .view-more-button:focus {
  box-shadow: none !important;
}

.owl-style-1 .card-item .view-more-button:before {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  content: "\f0a9";
  color: var(--secondary);
  font-size: 14px;
}

.owl-style-2 .owl-stage {
  display: flex;
  align-items: center;
}

.owl-style-2 .card-item {
  border: 0;
  border-radius: 0;
}

.owl-style-2 .card-item .item-image .image-link {
  height: 0;
  margin: 6% 0;
  padding-bottom: 100%;
  position: relative;
  display: block;
  transition: transform 0.2s;
}

.owl-style-2 .card-item .item-image .image-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
}

.owl-style-2 .card-item .item-image .image-link:before {
  content: "";
  position: absolute;
  background-color: rgba(68, 68, 68, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.owl-style-2 .card-item .item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.owl-style-2 .card-item .item-content .title {
  font-size: 2.375rem;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}

.owl-style-2 .card-item:hover .item-image .image-link {
  margin: 0;
  padding-bottom: 110%;
}

.owl-style-2 .card-item:hover .item-image .image-link:before {
  content: none;
}

.owl-style-2 .card-item:hover .item-content .title {
  color: var(--primary);
}

.owl-style-3 .title-section {
  margin-bottom: 2rem;
  text-align: center;
}

.owl-style-3 .title-section .title {
  font-size: 45px;
  color: var(--dark);
  font-weight: 300;
  padding-bottom: 8px;
  margin-bottom: 15px;
  position: relative;
}

.owl-style-3 .title-section .title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  background-color: var(--dark);
  height: 2px;
}

.owl-style-3 .title-section .subtitle {
  font-size: 18px;
  color: var(--dark);
  position: relative;
  margin-bottom: 0;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .owl-style-3 .title-section .title {
    font-size: 30px;
  }

  .owl-style-3 .title-section .title:after {
    width: 0;
  }

  .owl-style-3 .title-section .subtitle {
    font-size: 14px;
  }
}

.owl-style-3 .card-item {
  box-shadow: 2px 2px 7px #ccc;
  margin: 5px 1px;
}

.owl-style-3 .card-item .image-link {
  height: 0;
  padding-bottom: 75%;
  position: relative;
  display: block;
}

.owl-style-3 .card-item .image-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
}

.owl-style-3 .card-item .title {
  font-size: 20px;
  color: var(--primary);
  margin: 10px 10px 20px 10px;
}

.owl-style-3 .card-item .summary {
  color: #555555;
  font-size: 16px;
  min-height: 115px;
  margin: 0 10px 10px 10px;
}

.owl-style-3 .card-item .item-view-more-button {
  text-align: right;
}

.owl-style-3 .card-item .item-view-more-button .view-more-button {
  font-size: 14px;
  color: var(--dark);
  margin: 10px;
  padding: 5px 30px 5px 20px;
  position: relative;
  border-radius: 50rem;
  border: 1px solid var(--dark);
}

.owl-style-3 .card-item .item-view-more-button .view-more-button:hover {
  background-color: var(--dark);
  color: #fff;
}

.owl-style-3 .card-item .item-view-more-button .view-more-button:focus {
  box-shadow: none !important;
}

.owl-style-3 .card-item .item-view-more-button .view-more-button:before {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  content: "\f061";
}

.owl-style-4 .card-item {
  transition: 0.2s;
}

.owl-style-4 .card-item .title {
  margin-top: 30px;
  font-size: 22px;
  color: var(--primary);
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.owl-style-4 .card-item .item-summary {
  display: none;
}

.owl-style-4 .card-item .image-link {
  height: 370px;
  width: 370px !important;
  border-radius: 50%;
  border: 3px dotted var(--primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.owl-style-4 .card-item .image-link img {
  border-radius: 50%;
  height: 330px;
  width: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1200px) {
  .owl-style-4 .card-item .image-link {
    height: 350px;
    width: 350px !important;
  }

  .owl-style-4 .card-item .image-link img {
    height: 310px;
    width: 310px;
  }
}

@media (max-width: 991.98px) {
  .owl-style-4 .card-item .image-link {
    height: 300px;
    width: 300px !important;
  }

  .owl-style-4 .card-item .image-link img {
    height: 260px;
    width: 260px;
  }
}

@media (max-width: 767.98px) {
  .owl-style-4 .card-item .image-link {
    height: 250px;
    width: 250px !important;
  }

  .owl-style-4 .card-item .image-link img {
    height: 210px;
    width: 210px;
  }
}

.owl-style-4 .owl-nav {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 40%;
  transform: translateY(-50%);
  display: block;
}

@media screen and (max-width: 992px) {
  .owl-style-4 .owl-nav {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 20px;
  }
}

.owl-style-4 .owl-nav .owl-prev i,
.owl-style-4 .owl-nav .owl-next i {
  font-size: 40px;
  color: var(--primary);
}

.owl-style-4 .owl-nav .owl-prev:hover i,
.owl-style-4 .owl-nav .owl-next:hover i {
  color: var(--secondary);
}

.owl-style-4 .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
}

@media (min-width: 992px) {
  .owl-style-4 .owl-nav .owl-prev {
    left: -70px;
  }
}

@media screen and (max-width: 992px) {
  .owl-style-4 .owl-nav .owl-prev {
    position: relative;
    left: auto;
  }
}

.owl-style-4 .owl-nav .owl-prev:hover {
  background: transparent;
}

.owl-style-4 .owl-nav .owl-prev:focus {
  outline: none;
}

.owl-style-4 .owl-nav .owl-next {
  position: absolute;
  right: -50px;
}

@media (min-width: 992px) {
  .owl-style-4 .owl-nav .owl-next {
    right: -70px;
  }
}

@media screen and (max-width: 992px) {
  .owl-style-4 .owl-nav .owl-next {
    position: relative;
    right: auto;
  }
}

.owl-style-4 .owl-nav .owl-next:hover {
  background: transparent;
}

.owl-style-4 .owl-nav .owl-next:focus {
  outline: none;
}

.owl-style-5 .title-section {
  margin-bottom: 2rem;
  text-align: center;
}

.owl-style-5 .title-section .title {
  font-size: 60px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 1rem;
}

.owl-style-5 .title-section .title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: var(--secondary);
  height: 4px;
}

.owl-style-5 .title-section .subtitle {
  font-size: 18px;
  color: var(--dark);
}

.owl-style-5 .card-item .image-link {
  width: 300px !important;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-image: url("/themes/imaginatheme/img/circulo.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.owl-style-5 .card-item .image-link img {
  width: 255px;
  height: 255px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .owl-style-5 .card-item .image-link {
    width: 250px !important;
    height: 250px;
  }

  .owl-style-5 .card-item .image-link img {
    width: 205px;
    height: 205px;
  }
}

.owl-style-5 .card-item .title {
  font-size: 50px;
  margin: 20px 0;
  text-align: center;
  color: var(--primary);
}

.owl-style-5 .card-item .summary {
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.owl-style-5 .card-item .item-view-more-button {
  text-align: right;
}

.owl-style-5 .card-item .item-view-more-button .btn {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 0 20px;
}

.owl-style-5 .card-item .item-view-more-button .btn:hover {
  color: var(--primary);
}

.owl-style-5 .card-item .item-view-more-button .btn:focus {
  box-shadow: none !important;
}

.owl-style-5 .card-item .item-view-more-button .btn:before {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  content: "\f0a9";
  color: var(--primary);
  font-size: 18px;
}

.owl-style-6 {
  /***** Media Queries *****/
}

.owl-style-6 .col-right {
  padding-top: 40px;
  padding-bottom: 30px;
}

.owl-style-6 .title {
  line-height: 33px;
  margin-bottom: 37px;
}

.owl-style-6 .summary {
  text-align: justify;
}

.owl-style-6 .btn {
  margin-top: 33px;
}

.owl-style-6 .btn .fa {
  font-size: 26px;
}

.owl-style-6 .owl-nav {
  position: absolute;
  top: 33px;
  right: 15px;
  margin: 0;
}

.owl-style-6 .owl-nav .owl-prev {
  margin-right: 8px;
}

.owl-style-6 .owl-nav button:hover {
  background-color: transparent;
}

.owl-style-6 .owl-nav .fa {
  font-size: 24px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .owl-style-6 .row-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }

  .owl-style-6 .image-link img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .owl-style-6 {
    margin-bottom: 23px;
  }

  .owl-style-6 .col-left {
    padding-right: 0;
  }
}

.editLink #buttonEditLink {
  background: dodgerblue;
  z-index: 999;
}

.editLink #buttonEditLink span {
  max-width: 0;
  transition: max-width 1s;
  display: inline-flex;
  white-space: nowrap;
  overflow: hidden;
}

.editLink #buttonEditLink:hover span {
  max-width: 7rem;
}

.opacity-without-hover .opacity-light picture,
.opacity-without-hover .opacity-dark picture,
.opacity-without-hover .opacity-primary picture {
  position: relative;
  display: block !important;
  overflow: hidden;
}

.opacity-without-hover .opacity-light picture:before,
.opacity-without-hover .opacity-dark picture:before,
.opacity-without-hover .opacity-primary picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.opacity-without-hover .opacity-light.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, hsla(0, 0%, 96.1%, 0.9));
}

.opacity-without-hover .opacity-light.opacity-right picture:before {
  background: linear-gradient(270deg, hsla(0, 0%, 96.1%, 0.9), transparent);
}

.opacity-without-hover .opacity-light.opacity-top picture:before {
  background: linear-gradient(180deg, hsla(0, 0%, 96.1%, 0.9), transparent);
}

.opacity-without-hover .opacity-light.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, hsla(0, 0%, 96.1%, 0.9));
}

.opacity-without-hover .opacity-light.opacity-all picture:before {
  background: hsla(0, 0%, 96.1%, 0.9);
}

.opacity-without-hover .opacity-dark.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, #000);
}

.opacity-without-hover .opacity-dark.opacity-right picture:before {
  background: linear-gradient(270deg, #000, transparent);
}

.opacity-without-hover .opacity-dark.opacity-top picture:before {
  background: linear-gradient(180deg, #000, transparent);
}

.opacity-without-hover .opacity-dark.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, #000);
}

.opacity-without-hover .opacity-dark.opacity-all picture:before {
  background: hsla(0, 0%, 0%, 0.47);
}

.opacity-without-hover .opacity-primary.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, var(--primary));
}

.opacity-without-hover .opacity-primary.opacity-right picture:before {
  background: linear-gradient(270deg, var(--primary), transparent);
}

.opacity-without-hover .opacity-primary.opacity-top picture:before {
  background: linear-gradient(180deg, var(--primary), transparent);
}

.opacity-without-hover .opacity-primary.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, var(--primary));
}

.opacity-without-hover .opacity-secondary.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, var(--secondary));
}

.opacity-without-hover .opacity-secondary.opacity-right picture:before {
  background: linear-gradient(270deg, var(--secondary), transparent);
}

.opacity-without-hover .opacity-secondary.opacity-top picture:before {
  background: linear-gradient(180deg, var(--secondary), transparent);
}

.opacity-without-hover .opacity-secondary.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, var(--secondary));
}

.image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.image-overlay.align-self-start {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.image-overlay.align-self-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-overlay.align-self-end {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.opacity-with-hover:hover .opacity-light picture,
.opacity-with-hover:hover .opacity-dark picture,
.opacity-with-hover:hover .opacity-primary picture {
  position: relative;
  display: block !important;
  overflow: hidden;
}

.opacity-with-hover:hover .opacity-light picture:before,
.opacity-with-hover:hover .opacity-dark picture:before,
.opacity-with-hover:hover .opacity-primary picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.opacity-with-hover:hover .opacity-light.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, hsla(0, 0%, 96.1%, 0.9));
}

.opacity-with-hover:hover .opacity-light.opacity-right picture:before {
  background: linear-gradient(270deg, hsla(0, 0%, 96.1%, 0.9), transparent);
}

.opacity-with-hover:hover .opacity-light.opacity-top picture:before {
  background: linear-gradient(180deg, hsla(0, 0%, 96.1%, 0.9), transparent);
}

.opacity-with-hover:hover .opacity-light.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, hsla(0, 0%, 96.1%, 0.9));
}

.opacity-with-hover:hover .opacity-light.opacity-all picture:before {
  background: hsla(0, 0%, 96.1%, 0.9);
}

.opacity-with-hover:hover .opacity-dark.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, #000);
}

.opacity-with-hover:hover .opacity-dark.opacity-right picture:before {
  background: linear-gradient(270deg, #000, transparent);
}

.opacity-with-hover:hover .opacity-dark.opacity-top picture:before {
  background: linear-gradient(180deg, #000, transparent);
}

.opacity-with-hover:hover .opacity-dark.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, #000);
}

.opacity-with-hover:hover .opacity-dark.opacity-all picture:before {
  background: hsla(0, 0%, 0%, 0.47);
}

.opacity-with-hover:hover .opacity-primary.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, var(--primary));
}

.opacity-with-hover:hover .opacity-primary.opacity-right picture:before {
  background: linear-gradient(270deg, var(--primary), transparent);
}

.opacity-with-hover:hover .opacity-primary.opacity-top picture:before {
  background: linear-gradient(180deg, var(--primary), transparent);
}

.opacity-with-hover:hover .opacity-primary.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, var(--primary));
}

.opacity-with-hover:hover .opacity-secondary.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, var(--secondary));
}

.opacity-with-hover:hover .opacity-secondary.opacity-right picture:before {
  background: linear-gradient(270deg, var(--secondary), transparent);
}

.opacity-with-hover:hover .opacity-secondary.opacity-top picture:before {
  background: linear-gradient(180deg, var(--secondary), transparent);
}

.opacity-with-hover:hover .opacity-secondary.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, var(--secondary));
}

.button-base {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.button-base:hover {
  text-decoration: none;
}

.button-base:disabled,
.button-base.disabled,
fieldset:disabled .button-base {
  pointer-events: none;
  opacity: 0.65;
}

.button-primary {
  color: #ffffff;
  background-color: var(--primary);
  border-width: 1px;
  border-style: solid;
  border-color: var(--primary);
}

.button-primary:hover,
.button-primary:active,
.button-primary:focus,
.button-primary:not(:disabled):not(.disabled):active,
.button-primary:not(:disabled):not(.disabled).active,
.show > .button-primary.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: transparent !important;
}

.button-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-primary:hover,
.button-outline-primary:active,
.button-outline-primary:focus,
.button-outline-primary:not(:disabled):not(.disabled):active,
.button-outline-primary:not(:disabled):not(.disabled).active,
.show > .button-outline-primary.dropdown-toggle {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff !important;
}

.button-secondary {
  color: #ffffff;
  background-color: var(--secondary);
  border-width: 1px;
  border-style: solid;
  border-color: var(--secondary);
}

.button-secondary:hover,
.button-secondary:active,
.button-secondary:focus,
.button-secondary:not(:disabled):not(.disabled):active,
.button-secondary:not(:disabled):not(.disabled).active,
.show > .button-secondary.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--secondary) !important;
  border-color: transparent !important;
}

.button-outline-secondary {
  color: var(--secondary) !important;
  border-color: var(--secondary);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-secondary:hover,
.button-outline-secondary:active,
.button-outline-secondary:focus,
.button-outline-secondary:not(:disabled):not(.disabled):active,
.button-outline-secondary:not(:disabled):not(.disabled).active,
.show > .button-outline-secondary.dropdown-toggle {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #ffffff !important;
}

.button-success {
  color: #ffffff;
  background-color: var(--success);
  border-width: 1px;
  border-style: solid;
  border-color: var(--success);
}

.button-success:hover,
.button-success:active,
.button-success:focus,
.button-success:not(:disabled):not(.disabled):active,
.button-success:not(:disabled):not(.disabled).active,
.show > .button-success.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--success) !important;
  border-color: transparent !important;
}

.button-outline-success {
  color: var(--success) !important;
  border-color: var(--success);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-success:hover,
.button-outline-success:active,
.button-outline-success:focus,
.button-outline-success:not(:disabled):not(.disabled):active,
.button-outline-success:not(:disabled):not(.disabled).active,
.show > .button-outline-success.dropdown-toggle {
  background-color: var(--success);
  border-color: var(--success);
  color: #ffffff !important;
}

.button-dark {
  color: #ffffff;
  background-color: var(--dark);
  border-width: 1px;
  border-style: solid;
  border-color: var(--dark);
}

.button-dark:hover,
.button-dark:active,
.button-dark:focus,
.button-dark:not(:disabled):not(.disabled):active,
.button-dark:not(:disabled):not(.disabled).active,
.show > .button-dark.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--dark) !important;
  border-color: transparent !important;
}

.button-outline-dark {
  color: var(--dark) !important;
  border-color: var(--dark);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-dark:hover,
.button-outline-dark:active,
.button-outline-dark:focus,
.button-outline-dark:not(:disabled):not(.disabled):active,
.button-outline-dark:not(:disabled):not(.disabled).active,
.show > .button-outline-dark.dropdown-toggle {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #ffffff !important;
}

.button-info {
  color: #ffffff;
  background-color: var(--info);
  border-width: 1px;
  border-style: solid;
  border-color: var(--info);
}

.button-info:hover,
.button-info:active,
.button-info:focus,
.button-info:not(:disabled):not(.disabled):active,
.button-info:not(:disabled):not(.disabled).active,
.show > .button-info.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--info) !important;
  border-color: transparent !important;
}

.button-outline-info {
  color: var(--info) !important;
  border-color: var(--info);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-info:hover,
.button-outline-info:active,
.button-outline-info:focus,
.button-outline-info:not(:disabled):not(.disabled):active,
.button-outline-info:not(:disabled):not(.disabled).active,
.show > .button-outline-info.dropdown-toggle {
  background-color: var(--info);
  border-color: var(--info);
  color: #ffffff !important;
}

.button-warning {
  color: #ffffff;
  background-color: var(--warning);
  border-width: 1px;
  border-style: solid;
  border-color: var(--warning);
}

.button-warning:hover,
.button-warning:active,
.button-warning:focus,
.button-warning:not(:disabled):not(.disabled):active,
.button-warning:not(:disabled):not(.disabled).active,
.show > .button-warning.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--warning) !important;
  border-color: transparent !important;
}

.button-outline-warning {
  color: var(--warning) !important;
  border-color: var(--warning);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-warning:hover,
.button-outline-warning:active,
.button-outline-warning:focus,
.button-outline-warning:not(:disabled):not(.disabled):active,
.button-outline-warning:not(:disabled):not(.disabled).active,
.show > .button-outline-warning.dropdown-toggle {
  background-color: var(--warning);
  border-color: var(--warning);
  color: #ffffff !important;
}

.button-danger {
  color: #ffffff;
  background-color: var(--danger);
  border-width: 1px;
  border-style: solid;
  border-color: var(--danger);
}

.button-danger:hover,
.button-danger:active,
.button-danger:focus,
.button-danger:not(:disabled):not(.disabled):active,
.button-danger:not(:disabled):not(.disabled).active,
.show > .button-danger.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--danger) !important;
  border-color: transparent !important;
}

.button-outline-danger {
  color: var(--danger) !important;
  border-color: var(--danger);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-danger:hover,
.button-outline-danger:active,
.button-outline-danger:focus,
.button-outline-danger:not(:disabled):not(.disabled):active,
.button-outline-danger:not(:disabled):not(.disabled).active,
.show > .button-outline-danger.dropdown-toggle {
  background-color: var(--danger);
  border-color: var(--danger);
  color: #ffffff !important;
}

.button-light {
  color: #ffffff;
  background-color: var(--light);
  border-width: 1px;
  border-style: solid;
  border-color: var(--light);
}

.button-light:hover,
.button-light:active,
.button-light:focus,
.button-light:not(:disabled):not(.disabled):active,
.button-light:not(:disabled):not(.disabled).active,
.show > .button-light.dropdown-toggle {
  color: #ffffff !important;
  background-color: var(--light) !important;
  border-color: transparent !important;
}

.button-outline-light {
  color: var(--light) !important;
  border-color: var(--light);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-light:hover,
.button-outline-light:active,
.button-outline-light:focus,
.button-outline-light:not(:disabled):not(.disabled):active,
.button-outline-light:not(:disabled):not(.disabled).active,
.show > .button-outline-light.dropdown-toggle {
  background-color: var(--light);
  border-color: var(--light);
  color: #ffffff !important;
}

/* Sin padding de los lados */

.button-link {
  padding: 0;
}

/* pequeno */

.button-small {
  padding: 6px 15px;
}

/* normal */

.button-normal {
  padding: 10px 20px;
}

/* mediano */

.button-big {
  padding: 15px 30px;
}

/* Cuadrado*/

.button-square {
  padding: 10px;
}

/* Espaciado x */

.button-padding-x {
  padding: 0 6px;
}

/* Linea lateral, botones juntos */

.button-line-side {
  color: var(--dark);
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 1px solid;
  background-color: transparent !important;
}

.button-line-side:hover {
  background-color: transparent !important;
  color: var(--dark) !important;
}

.button-line-side + .button-line-side,
.button-line-side + style + .button-line-side {
  border-right: 0;
  margin-left: -4px;
}

/* lateral dentro de wrapper */

.wrapper .nextBtn.button-line-side {
  border-right: 0;
  border-left: 1px solid;
}

.button-icon {
  padding: 0 !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}

.button-icon.button-normal {
  width: 35px;
  height: 35px;
}

.button-icon.button-small {
  width: 28px;
  height: 28px;
}

.button-icon.button-big {
  width: 50px;
  height: 50px;
}

.button-base span,
.button-base i {
  pointer-events: none;
}

.button-white {
  color: #444;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
}

.button-white:hover,
.button-white:active,
.button-white:focus,
.button-white:not(:disabled):not(.disabled):active,
.button-white:not(:disabled):not(.disabled).active,
.show > .button-white.dropdown-toggle {
  color: #444;
  background-color: var(--light);
  border-color: var(--light);
}

.button-outline-white {
  color: #ffffff;
  border-color: #ffffff;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}

.button-outline-white:hover,
.button-outline-white:active,
.button-outline-white:focus,
.button-outline-white:not(:disabled):not(.disabled):active,
.button-outline-white:not(:disabled):not(.disabled).active,
.show > .button-outline-white.dropdown-toggle {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #444;
}

.product-layout .bg-img {
  height: unset !important;
  position: relative;
  padding: unset !important;
}

.product-layout .bg-img img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-layout .bg-img-1-1 {
  padding-bottom: 100% !important;
}

.product-layout .bg-img-4-3 {
  padding-bottom: 133.3333333333% !important;
}

.btn-circle,
.product-layout-1 .buttons.rounded a,
.product-layout-1 .buttons.rounded button {
  border-radius: 50rem;
  /*height: 28px;*/
  display: inline-table;
  align-items: center;
  text-align: center;
  /*padding: 3px 6px;*/
}

.btn-circle i,
.product-layout-1 .buttons.rounded a i,
.product-layout-1 .buttons.rounded button i {
  font-size: 0.7rem;
}

.no-padding {
  padding: 0 !important;
  margin: 0 !important;
}

.product-layout {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.product-layout .add-to-cart-with-quantity .quantity-selector {
  width: -moz-max-content;
  width: max-content;
  margin: 2px 0;
}

@media (max-width: 575.98px) {
  .product-layout .add-to-cart-with-quantity .quantity-selector {
    margin: 2px auto;
  }
}

.product-layout .add-to-cart-with-quantity .quantity-selector button,
.product-layout .add-to-cart-with-quantity .quantity-selector textarea {
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  padding: 0px 10px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  flex: unset;
}

.product-layout .add-to-cart-with-quantity .quantity-selector button i,
.product-layout .add-to-cart-with-quantity .quantity-selector textarea i {
  font-size: 12px;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .quantity-field {
  height: 30px;
  width: 45px;
  flex: unset;
  border-color: #eee;
  text-align: center;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .quantity-field::-webkit-outer-spin-button,
.product-layout .add-to-cart-with-quantity .quantity-selector .quantity-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product-layout .add-to-cart-with-quantity .quantity-selector button[type=button] {
  -webkit-appearance: button;
  cursor: pointer;
  background-color: transparent;
}

.product-layout .add-to-cart-with-quantity .quantity-selector button[type=button]:hover {
  background: var(--primary);
  color: #fff;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .input-group {
  clear: both;
  margin: 15px 0;
  position: relative;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .input-group button {
  background-color: #eeeeee;
  min-width: 38px;
  width: auto;
  transition: all 300ms ease;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .input-group .button-minus,
.product-layout .add-to-cart-with-quantity .quantity-selector .input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  width: 38px;
  position: relative;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .input-group .quantity-field {
  position: relative;
  height: 38px;
  left: -6px;
  text-align: center;
  width: 62px;
  display: inline-block;
  font-size: 13px;
  margin: 0 0 5px;
  resize: vertical;
}

.product-layout .add-to-cart-with-quantity .quantity-selector .button-plus {
  left: -13px;
}

.product-layout .add-to-cart-with-quantity .quantity-selector input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

.product-layout .add-to-cart-with-quantity .add-to-cart-button {
  margin: 2px 0;
}

@media (max-width: 576px) {
  .product-layout .add-to-cart-with-quantity .add-to-cart-button {
    margin: 2px auto;
  }
}

.product-layout .add-to-cart-with-quantity a {
  /*border-radius: 0px;*/
}

.product-layout .add-to-cart-with-quantity.rounded {
  align-items: center;
  justify-content: space-between;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  margin: 0;
  padding: 0;
  /*.add-to-cart-button {

    a {
      border-radius: 26px;
      border: 1px solid #5251511f;

      i {
        //color: var(--primary) !important;
        color: #fff !important;
        margin-right: 5px;
      }

      &:hover {
        //background: var(--primary);
        //color: #fff;
        box-shadow: 0 3px 11px 0px var(--primary);

        i {
          color: #fff !important;
        }
      }
    }
  }*/
}

.product-layout .add-to-cart-with-quantity.rounded .number-input {
  width: -moz-max-content;
  width: max-content;
}

.product-layout .add-to-cart-with-quantity.rounded .number-input .button-minus,
.product-layout .add-to-cart-with-quantity.rounded .number-input .button-plus {
  font-size: 15px;
  color: var(--primary);
  border: 1px solid rgba(82, 81, 81, 0.1215686275);
  background: transparent;
}

.product-layout .add-to-cart-with-quantity.rounded .number-input .button-minus:hover,
.product-layout .add-to-cart-with-quantity.rounded .number-input .button-plus:hover {
  background: var(--primary);
  color: #fff;
}

.product-layout .add-to-cart-with-quantity.rounded .number-input .button-minus {
  border-radius: 26px 0 0 26px;
}

.product-layout .add-to-cart-with-quantity.rounded .number-input .button-plus {
  border-radius: 0 26px 26px 0;
}

.product-layout .add-to-cart-with-quantity.rounded .number-input .quantity-field {
  width: 45px;
  text-align: center;
  height: 30px;
}

@media (max-width: 1120px) {
  .product-layout .add-to-cart-with-quantity.rounded {
    justify-content: center;
  }
}

.product-layout .bg-img {
  height: 300px;
  padding: 15px;
  position: relative;
  width: 100%;
  /***** Media Queries *****/
}

.product-layout .bg-img .desc {
  position: absolute;
  top: 0;
  right: 10px;
  -webkit-clip-path: polygon(50% 100%, 100% 70%, 100% 0, 0 0, 0 70%);
          clip-path: polygon(50% 100%, 100% 70%, 100% 0, 0 0, 0 70%);
  background-color: #F4D200;
  font-size: 0.58875rem;
  color: #000;
  padding: 3px 8px 12px 8px;
}

.product-layout .bg-img .desc span {
  font-weight: bold;
  font-size: 0.813rem;
}

.product-layout .bg-img figure {
  margin-bottom: 0px;
}

.product-layout .bg-img figure picture img {
  width: 100%;
  max-height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .product-layout .bg-img {
    height: 170px;
  }
}

.product-layout .infor .summary {
  margin-top: 0.5rem;
}

.product-layout .infor .col-price del {
  font-size: 0.7rem;
}

.product-layout .title {
  color: #333333;
  line-height: 1.3;
  display: block;
  overflow: hidden;
}

.product-layout .category {
  color: #808080;
}

.product-layout .price {
  font-size: 0.813rem;
  color: #333333;
}

.product-layout .buttons a {
  cursor: pointer;
}

.product-layout .icon {
  color: #929292;
  font-size: 1.375rem;
}

.product-layout .iconquote {
  color: #929292;
  font-size: 1.375rem;
}

.product-layout .cart {
  font-size: 0.625rem;
  display: none;
}

.product-layout .cart-no {
  font-size: 0.625rem;
  display: block;
}

.product-layout:hover .cart {
  display: block;
}

.product-layout:hover .price,
.product-layout:hover .icon {
  color: var(--primary);
}

.product-layout-1 .bg-img .buttons.top-left-in-photo,
.product-layout-1 .bg-img .buttons.top-center-in-photo,
.product-layout-1 .bg-img .buttons.top-right-in-photo,
.product-layout-1 .bg-img .buttons.bottom-left-in-photo,
.product-layout-1 .bg-img .buttons.bottom-center-in-photo,
.product-layout-1 .bg-img .buttons.bottom-right-in-photo,
.product-layout-1 .bg-img .buttons.abc-wtc-in-photo,
.product-layout-1 .bg-img .buttons.bottom-left-inline-in-photo,
.product-layout-1 .bg-img .buttons.bottom-right-inline-in-photo,
.product-layout-1 .bg-img .buttons.abf-wtc-in-photo {
  position: absolute;
}

.product-layout-1 .bg-img .buttons.top-left-in-photo,
.product-layout-1 .bg-img .buttons.top-right-in-photo,
.product-layout-1 .bg-img .buttons.bottom-left-in-photo,
.product-layout-1 .bg-img .buttons.bottom-right-in-photo {
  width: 32px;
}

.product-layout-1 .bg-img .buttons.top-left-in-photo {
  top: 5px;
  left: 5px;
  width: 110px;
}

.product-layout-1 .bg-img .buttons.top-left-in-photo a.add-cart,
.product-layout-1 .bg-img .buttons.top-left-in-photo a.contact,
.product-layout-1 .bg-img .buttons.top-left-in-photo button.add-cart,
.product-layout-1 .bg-img .buttons.top-left-in-photo button.contact {
  margin-bottom: 5px;
}

.product-layout-1 .bg-img .buttons.top-right-in-photo {
  top: 5px;
  right: 5px;
  text-align: right;
  width: 110px;
}

.product-layout-1 .bg-img .buttons.top-right-in-photo a.add-cart,
.product-layout-1 .bg-img .buttons.top-right-in-photo a.contact,
.product-layout-1 .bg-img .buttons.top-right-in-photo button.add-cart,
.product-layout-1 .bg-img .buttons.top-right-in-photo button.contact {
  margin-bottom: 5px;
}

.product-layout-1 .bg-img .buttons.bottom-left-in-photo {
  bottom: 5px;
  left: 5px;
  width: 110px;
}

.product-layout-1 .bg-img .buttons.bottom-left-in-photo a.add-cart,
.product-layout-1 .bg-img .buttons.bottom-left-in-photo a.contact,
.product-layout-1 .bg-img .buttons.bottom-left-in-photo button.add-cart,
.product-layout-1 .bg-img .buttons.bottom-left-in-photo button.contact {
  margin-bottom: 5px;
}

.product-layout-1 .bg-img .buttons.bottom-right-in-photo {
  bottom: 5px;
  right: 5px;
  text-align: right;
  width: 110px;
}

.product-layout-1 .bg-img .buttons.bottom-right-in-photo a.add-cart,
.product-layout-1 .bg-img .buttons.bottom-right-in-photo a.contact,
.product-layout-1 .bg-img .buttons.bottom-right-in-photo button.add-cart,
.product-layout-1 .bg-img .buttons.bottom-right-in-photo button.contact {
  margin-bottom: 5px;
}

.product-layout-1 .bg-img .buttons.top-center-in-photo {
  top: 5px;
  width: 100%;
  text-align: center;
}

.product-layout-1 .bg-img .buttons.bottom-center-in-photo {
  bottom: 5px;
  width: 100%;
  text-align: center;
}

.product-layout-1 .bg-img .buttons.bottom-left-inline-in-photo {
  bottom: 5px;
  width: 100%;
  padding-left: 5px;
  text-align: left;
}

.product-layout-1 .bg-img .buttons.bottom-right-inline-in-photo {
  bottom: 5px;
  width: 100%;
  padding-right: 5px;
  text-align: right;
}

.product-layout-1 .bg-img .buttons.abf-wtc-in-photo {
  bottom: 0;
  background: var(--primary);
  width: 100%;
  text-align: center;
  padding: 5px;
  border-radius: 0px !important;
}

.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.borders .add-cart {
  border-right: 0px;
}

.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.rounded a,
.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.rounded button,
.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.square a,
.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.square button {
  color: white;
  border-color: transparent;
}

.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.outline a,
.product-layout-1 .bg-img .buttons.abf-wtc-in-photo.outline button {
  color: white;
  border-color: white;
}

.product-layout-1 .bg-img .buttons.abf-wtc-in-photo .btn-primary {
  background-color: unset;
  border-color: unset;
  color: white;
}

.product-layout-1 .bg-img .buttons.without-add-cart-text:not(.top-center-in-photo, .bottom-center-in-photo, .bottom-right-inline-in-photo, .bottom-left-inline-in-photo, .abf-wtc-in-photo) {
  width: 30px;
}

.product-layout-1 .bg-img .buttons.borders a,
.product-layout-1 .bg-img .buttons.borders button {
  border-right: 1px solid #404040;
}

.product-layout-1 .bg-img .buttons.show-on-mouse-hover {
  display: none;
}

.product-layout-1:hover .bg-img .buttons.show-on-mouse-hover {
  display: block;
}

.product-layout-1 .buttons.borders a,
.product-layout-1 .buttons.borders button {
  /*padding: 0px 8px;*/
  background-color: unset;
  border-color: unset;
  color: #404040;
  border: 0px;
  border-radius: 0px;
  border-left: 1px solid #404040;
  cursor: pointer;
}

.product-layout-1 .buttons.borders a:hover,
.product-layout-1 .buttons.borders a:visited,
.product-layout-1 .buttons.borders a:focus,
.product-layout-1 .buttons.borders button:hover,
.product-layout-1 .buttons.borders button:visited,
.product-layout-1 .buttons.borders button:focus {
  color: var(--dark) !important;
  background-color: unset !important;
  border-color: unset !important;
}

.product-layout-1 .buttons.borders .add-cart {
  padding-right: 6px;
}

.product-layout-1 .buttons.borders a:last-child,
.product-layout-1 .buttons.borders style + a,
.product-layout-1 .buttons.borders style + button,
.product-layout-1 .buttons.borders button:last-child {
  border-right: 1px solid #404040;
}

.product-layout-1 .buttons.without-borders a,
.product-layout-1 .buttons.without-borders button {
  padding: 0px 8px;
  background-color: unset;
  border-color: unset;
  color: #404040;
  border-radius: 0px;
  border: 0;
  cursor: pointer;
}

.product-layout-1 .buttons.without-borders a:hover,
.product-layout-1 .buttons.without-borders a:visited,
.product-layout-1 .buttons.without-borders a:focus,
.product-layout-1 .buttons.without-borders button:hover,
.product-layout-1 .buttons.without-borders button:visited,
.product-layout-1 .buttons.without-borders button:focus {
  color: var(--dark) !important;
  background-color: unset !important;
  border-color: unset !important;
}

.product-layout-1 .buttons.rounded.with-add-cart-text .add-cart,
.product-layout-1 .buttons.rounded.with-add-cart-text .contact {
  /*padding: 3px 10px;*/
}

.product-layout-1 .buttons.rounded.with-add-cart-text .add-cart i,
.product-layout-1 .buttons.rounded.with-add-cart-text .contact i {
  margin-right: 4px;
}

.product-layout-1 .buttons.rounded.without-add-cart-text a.add-cart,
.product-layout-1 .buttons.rounded.without-add-cart-text button.add-cart {
  width: 28px;
}

.product-layout-1 .buttons.rounded a.wishlist,
.product-layout-1 .buttons.rounded button.wishlist {
  width: 28px;
}

.product-layout-1 .buttons.square a,
.product-layout-1 .buttons.square button {
  /*padding: 0.375rem 0.45rem;
  line-height: 1.2;*/
  border-radius: 0px;
}

.product-layout-1 .buttons.after-content-center {
  text-align: center;
}

.product-layout-1.with-discount.is-new .buttons.left {
  top: 60px;
}

.product-layout-1.with-discount .buttons.in-photo-right {
  top: 60px;
}

.product-layout-1.sold-out .buttons.left {
  top: 60px;
}

.product-layout-1 .add-to-cart-with-quantity .buttons.borders {
  padding: 7px 0px;
}

.product-layout-1 .add-to-cart-with-quantity .buttons.borders .wishlist {
  margin-left: 0px;
}

.product-layout-1.is-new .bg-img .buttons.top-left-in-photo,
.product-layout-1.is-new .bg-img .buttons.top-right-in-photo,
.product-layout-1.with-discount .bg-img .buttons.top-left-in-photo,
.product-layout-1.with-discount .bg-img .buttons.top-right-in-photo {
  top: 60px;
}

.product-layout-1.ribbon-discount-position-top-left.without-discount.is-new:not(.sold-out) .bg-img .buttons.top-left-in-photo {
  top: 5px;
}

.product-layout-1.ribbon-discount-position-top-left.with-discount:not(.is-new) .bg-img .buttons.top-right-in-photo {
  top: 5px;
}

.product-layout-1.ribbon-discount-position-top-right.without-discount.is-new .bg-img .buttons.top-right-in-photo {
  top: 5px;
}

.product-layout-1.ribbon-discount-position-top-right.with-discount:not(.is-new, .sold-out) .bg-img .buttons.top-left-in-photo {
  top: 5px;
}

.productRibbon {
  /*Discount Ribbon*/
  /*Sold out Ribbon*/
  /*New product Ribbon*/
}

.productRibbon .ribbonContent {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 3;
}

.productRibbon .ribbonContent .asideRibbon {
  position: relative;
  cursor: pointer;
  line-height: 1.1;
}

.productRibbon .ribbonDiscount {
  top: 5px;
  right: 0;
}

.productRibbon .ribbonDiscount .asideRibbon {
  padding: 8px 10px 8px 8px;
  background-color: var(--warning);
}

.productRibbon .ribbonDiscount .asideRibbon .ribbonLabel {
  font-size: 10px;
}

.productRibbon .ribbonDiscount .asideRibbon::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  border-style: solid;
  border-width: 22px 22px 22px 0;
  border-color: transparent var(--warning);
  left: -22px;
}

.productRibbon .ribbonSoldOut {
  transform: rotate(-45deg);
  background-color: var(--danger);
  top: 12px;
  left: -40px;
  text-align: center;
  color: white;
  width: 130px;
  padding: 6px 0;
  font-size: 12px;
}

.productRibbon .ribbonNewProduct {
  top: -8px;
  left: -50px;
  transform: rotate(-45deg);
  background-color: var(--primary);
  text-align: center;
  color: white;
  width: 130px;
  padding: 25px 0 6px 0;
  font-size: 12px;
}

.productRibbon.circle .ribbonDiscount {
  top: 5px;
  right: 5px;
}

.productRibbon.circle .ribbonDiscount .asideRibbon {
  border-radius: 50%;
  font-size: 15px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  position: relative;
  padding: 0 !important;
  background-color: var(--warning);
  box-shadow: 0 5px 18px -5px #ddd;
}

.productRibbon.circle .ribbonDiscount .asideRibbon:after {
  display: none;
}

.productRibbon.circle .ribbonDiscount .asideRibbon b {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38px;
  line-height: 38px;
  text-align: center;
}

.productRibbon.circle .ribbonDiscount .asideRibbon .ribbonLabel {
  display: none;
}

.productRibbon.circle.top-left {
  /*New product Ribbon*/
}

.productRibbon.circle.top-left .ribbonDiscount {
  top: 5px;
  left: 5px;
}

.productRibbon.circle.top-left .ribbonNewProduct {
  left: unset;
  right: -50px;
  transform: rotate(45deg);
}

.productRibbon.flag.top-left,
.productRibbon.square.top-left {
  /*New product Ribbon*/
}

.productRibbon.flag.top-left .ribbonDiscount,
.productRibbon.square.top-left .ribbonDiscount {
  top: 5px;
  left: 0px;
}

.productRibbon.flag.top-left .ribbonDiscount .asideRibbon,
.productRibbon.square.top-left .ribbonDiscount .asideRibbon {
  padding: 8px 6px 8px 10px;
}

.productRibbon.flag.top-left .ribbonDiscount .asideRibbon::after,
.productRibbon.square.top-left .ribbonDiscount .asideRibbon::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  border-style: solid;
  border-color: transparent var(--warning);
  left: unset;
  right: -22px;
  border-width: 22px 0 22px 22px;
}

.productRibbon.flag.top-left .ribbonNewProduct,
.productRibbon.square.top-left .ribbonNewProduct {
  left: unset;
  right: -50px;
  transform: rotate(45deg);
}

.productRibbon.square .ribbonDiscount .asideRibbon::after {
  display: none;
}

#recursiveListOptionsComponent .radio-square {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-right: 15px;
  margin-bottom: 20px;
}

#recursiveListOptionsComponent .radio-square input[type=radio],
#recursiveListOptionsComponent .radio-square input[type=checkbox] {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: initial;
  cursor: default;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#recursiveListOptionsComponent .radio-square label {
  padding: 0.3rem 1rem;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  display: inline-block;
  cursor: pointer;
}

#recursiveListOptionsComponent .radio-square label span {
  color: #8e8e8e;
  position: relative;
  z-index: -1;
  font-size: 14px;
}

#recursiveListOptionsComponent .radio-square label:before {
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #e2e2e2;
  pointer-events: none;
  content: "";
  background-color: #fff;
  position: absolute;
  z-index: -1;
  border-radius: 0.25rem;
}

#recursiveListOptionsComponent .radio-square label:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: none;
}

#recursiveListOptionsComponent .radio-square input[type=radio]:checked ~ label span,
#recursiveListOptionsComponent .radio-square input[type=checkbox]:checked ~ label span {
  color: #fff;
}

#recursiveListOptionsComponent .radio-square input[type=radio]:not(:disabled):active ~ label::before,
#recursiveListOptionsComponent .radio-square input[type=checkbox]:not(:disabled):active ~ label::before {
  background-color: var(--light);
  border-color: var(--light);
}

#recursiveListOptionsComponent .radio-square input[type=radio]:checked ~ label::before,
#recursiveListOptionsComponent .radio-square input[type=checkbox]:checked ~ label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

#recursiveListOptionsComponent .content-option {
  padding: 10px 0px;
}

#recursiveListOptionsComponent .title-option {
  text-transform: capitalize;
  font-size: 14px;
  text-align: left;
}

#recursiveListOptionsComponent .box-color {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 5px 15px 5px 0;
}

#recursiveListOptionsComponent .box-color-active:before {
  display: inline-block;
  content: "";
  height: 40px;
  width: 40px;
  border: 2px solid #3a8051;
  border-radius: 50%;
  margin-left: -5px;
  margin-top: -5px;
}

#recursiveListOptionsComponent .box-image {
  height: 50px;
  width: 50px;
  display: inline-block;
  cursor: pointer;
  margin: 5px 15px 5px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#recursiveListOptionsComponent .box-image-active:before {
  display: inline-block;
  content: "";
  height: 60px;
  width: 60px;
  border: 2px solid #3a8051;
  margin-left: -5px;
  margin-top: -5px;
}

#orderDetails h1 {
  font-size: 28px !important;
}

.loading .capa {
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9;
}

.cursor-pointer {
  cursor: pointer;
}

.owl-carousel .card-product .bg-img figure {
  margin-bottom: 0px;
}

.owl-carousel .card-product .bg-img figure picture img {
  max-height: 230px;
}

/* =========== PRELOADER ============ */

#content_preloader {
  position: absolute;
  z-index: 999999999;
  background-color: white;
  height: 100%;
  width: 100%;
}

#preloader {
  width: 70px;
  height: 70px;
  border: 10px solid #C8C8C8;
  border-top: 10px solid var(--primary);
  border-radius: 50%;
  animation-name: girar;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  left: 50%;
  margin-left: -42.5px;
  /* 50% del ancho de la div en px */
  top: 30%;
}

#content_index_commerce .store-header .store-card {
  background-color: var(--primary);
  color: #fff;
  border-radius: 15px 0 0 15px;
}

@media (max-width: 991.98px) {
  #content_index_commerce .store-header .store-card {
    text-align: center;
    border-radius: 15px 15px 0 0;
  }
}

#content_index_commerce .store-header .store-card .card-body {
  padding: 2rem;
}

#content_index_commerce .store-header .store-card .store-logo img {
  height: 130px;
  width: 130px;
  border: 3px solid #fff;
  border-radius: 50%;
}

#content_index_commerce .store-header .store-card .store-raiting {
  font-size: 15px;
}

#content_index_commerce .store-header .store-card .store-name {
  font-size: 20px;
  line-height: 20px;
  position: relative;
  margin-bottom: 15px;
}

#content_index_commerce .store-header .store-card .store-name:before {
  content: "";
  height: 1px;
  width: 50px;
  background-color: #B3D3E9;
  left: 0;
  bottom: -10px;
  position: absolute;
}

#content_index_commerce .store-header .store-card .store-followers {
  color: #B3D3E9;
  font-size: 16px;
  margin-bottom: 15px;
}

#content_index_commerce .store-header .store-card .btn-store {
  font-size: 15px;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  padding: 5px 20px;
}

#content_index_commerce .store-header .store-card .store-social {
  font-size: 16px;
}

#content_index_commerce .store-header .store-card .store-social a {
  margin-right: 20px;
  color: #fff;
  position: relative;
}

#content_index_commerce .store-header .store-card .store-social a i {
  font-size: 15px;
}

#content_index_commerce .store-header .store-card .store-social a:hover {
  color: #B3D3E9;
}

#content_index_commerce .store-header .store-card .store-social a:not(:last-child):before {
  content: "";
  height: 80%;
  width: 1px;
  background-color: #B3D3E9;
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
}

#content_index_commerce .store-header .store-card .store-social .btn-group {
  vertical-align: initial;
}

#content_index_commerce .store-header .store-card .store-social .btn-group .number-whatsapp a {
  color: var(--primary);
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0;
}

#content_index_commerce .store-header .store-slider {
  overflow: hidden;
}

#content_index_commerce .store-header .store-slider .slider-component,
#content_index_commerce .store-header .store-slider .owl-item img {
  height: 290px !important;
  border-radius: 0 15px 15px 0;
}

@media (max-width: 991.98px) {
  #content_index_commerce .store-header .store-slider .slider-component,
  #content_index_commerce .store-header .store-slider .owl-item img {
    border-radius: 0 0 15px 15px;
  }
}

#content_index_commerce .store-header .store-slider .carousel-caption {
  display: none !important;
}

#content_index_commerce .store-header .store-slider .owl-dots .owl-dot span {
  height: 10px;
  width: 10px;
  border-radius: 50%;
}

#content_index_commerce .store-header .store-slider .owl-nav .owl-prev,
#content_index_commerce .store-header .store-slider .owl-nav .owl-next {
  font-size: 20px;
  position: relative;
  color: var(--primary);
  width: 25px;
  height: 50px;
  margin: 0;
}

#content_index_commerce .store-header .store-slider .owl-nav .owl-prev i,
#content_index_commerce .store-header .store-slider .owl-nav .owl-next i {
  position: relative;
}

#content_index_commerce .store-header .store-slider .owl-nav .owl-prev:before,
#content_index_commerce .store-header .store-slider .owl-nav .owl-next:before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 0;
  top: 0;
  border-radius: 0 15px 0 15px;
  transform: rotate(45deg);
}

#content_index_commerce .store-header .store-slider .owl-nav .owl-prev:before {
  left: -25px;
}

#content_index_commerce .store-header .store-slider .owl-nav .owl-next:before {
  right: -25px;
}

#content_index_commerce #storeTab .nav-tabs .nav-link {
  font-size: 18px;
  border: 0;
  border-radius: 0;
  color: #525266;
  padding: 0.5rem 1.5rem;
}

#content_index_commerce #storeTab .nav-tabs .nav-link.active,
#content_index_commerce #storeTab .nav-tabs .nav-item.show .nav-link {
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
}

#content_index_commerce #storeTab .tab-pane {
  padding: 25px 0;
}

.icommerce_openpay_index .card-header {
  background-color: #e51f04;
  color: white;
}

.icommerce_openpay_index .card-body {
  background-color: #e9e9e9;
}

.icommerce_openpay_index .card-body .logo img,
.icommerce_openpay_index .card-body .shield img {
  width: auto !important;
}

.icommerce_openpay_index .logo,
.icommerce_openpay_index .shield {
  font-size: 12px;
}

.icommerce_openpay_index .btn-pay {
  background-color: #e51f04;
  border-color: #e51f04;
}

#priceListContent table {
  font-size: 0.75rem;
}

@media screen {
  #priceListContent .img-print {
    height: 0 !important;
  }
}

#idocsCategoryList1 .head {
  margin-right: 0px;
  margin-left: 0px;
}

#idocsCategoryList1 .head .title-description,
#idocsCategoryList1 .head .size,
#idocsCategoryList1 .head .downloaded,
#idocsCategoryList1 .head .download {
  padding: 15px;
}

#idocsCategoryList1 .head .size,
#idocsCategoryList1 .head .downloaded,
#idocsCategoryList1 .head .download {
  text-align: center;
}

#idocsCategoryList1 .document {
  margin-right: 15px;
  margin-left: 15px;
}

#idocsCategoryList1 .document .item {
  width: 100%;
}

#idocsDocumentItemLayout1 .item {
  border: 1px solid #eee;
}

@media (max-width: 991.98px) {
  #idocsDocumentItemLayout1 .item {
    margin-bottom: 10px;
  }
}

#idocsDocumentItemLayout1 .category-title {
  font-size: 10px;
}

#idocsDocumentItemLayout1 .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
}

#idocsDocumentItemLayout1 .description {
  font-size: 10px;
}

#idocsDocumentItemLayout1 .download .download-link {
  font-size: 33px;
}

#idocsDocumentItemLayout1 .title-description,
#idocsDocumentItemLayout1 .size,
#idocsDocumentItemLayout1 .downloaded,
#idocsDocumentItemLayout1 .download {
  padding: 15px;
}

#idocsDocumentItemLayout1 .title-description,
#idocsDocumentItemLayout1 .size,
#idocsDocumentItemLayout1 .downloaded {
  border-right: 1px solid #eee;
}

#idocsDocumentItemLayout1 .size,
#idocsDocumentItemLayout1 .downloaded,
#idocsDocumentItemLayout1 .download {
  text-align: center;
}

#privateDocumentsAll .head {
  border: 1px solid #eee;
}

#privateDocumentsAll .head .title-description,
#privateDocumentsAll .head .size,
#privateDocumentsAll .head .downloaded,
#privateDocumentsAll .head .download {
  padding: 15px;
}

#privateDocumentsAll .head .title-description,
#privateDocumentsAll .head .size,
#privateDocumentsAll .head .downloaded {
  border-right: 1px solid #eee;
}

#privateDocumentsAll .head .size,
#privateDocumentsAll .head .downloaded,
#privateDocumentsAll .head .download {
  text-align: center;
}

#privateDocumentsAll .document-list {
  width: 100%;
  margin-right: 15px;
  margin-left: 15px;
}

#publicDocumentsAll .no-items {
  display: none;
}

/***    left menu ****/

/***********************  TOP Bar ********************/

.sidebar-profile {
  position: absolute;
  top: 0;
  height: 100%;
  width: 250px;
  z-index: 999;
  overflow-y: auto;
  background-color: #f5f5f5;
  transition: all 0.5s ease-in-out;
}

.bg-default {
  background-color: #e4e4e4;
}

.sidebar-profile .my-account li a:hover {
  background: none !important;
}

.sidebar-profile ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.sidebar-profile li a,
.sidebar-profile li a.collapsed.active {
  display: block;
  padding: 8px 12px;
  color: #000;
  border-left: 0px solid #dedede;
  text-decoration: none;
}

.sidebar-profile li a.active {
  border-left: 5px solid #dedede;
  transition: all 0.5s ease-in-out;
}

.sidebar-profile li a:hover {
  background-color: #bbb !important;
}

.sidebar-profile li a i {
  padding-right: 5px;
}

.sidebar-profile ul li .sub-menu li a {
  position: relative;
}

.sidebar-profile ul li .sub-menu li a:before {
  font-family: FontAwesome;
  content: "\f105";
  display: inline-block;
  padding-left: 0px;
  padding-right: 10px;
  vertical-align: middle;
}

.sidebar-profile ul li .sub-menu li a:hover:after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 5px;
  background-color: var(--primary);
  height: 100%;
}

.sidebar-profile ul li.nav-item {
  width: 100%;
}

.sidebar-profile .sub-menu li {
  width: 100%;
}

.sidebar-profile .list-sidebar li {
  width: 100%;
}

.sidebar-profile ul li .sub-menu li a:hover {
  background-color: #bbb;
  padding-left: 20px;
  transition: all 0.5s ease-in-out;
}

.sub-menu {
  border-left: 5px solid #dedede;
}

.sidebar-profile li a .nav-label,
.sidebar-profile li a .nav-label + span {
  transition: all 0.5s ease-in-out;
}

.sidebar-profile.fliph li a .nav-label,
.sidebar-profile.fliph li a .nav-label + span {
  display: none;
  transition: all 0.5s ease-in-out;
}

.sidebar-profile.fliph {
  width: 42px;
  transition: all 0.5s ease-in-out;
}

.sidebar-profile.fliph li {
  position: relative;
}

.sidebar-profile.fliph .sub-menu {
  position: absolute;
  left: 39px;
  top: 0;
  background-color: #bbb;
  width: 150px;
  z-index: 100;
}

.user-panel {
  clear: left;
  display: block;
  float: left;
}

.user-panel > .image > img {
  width: 100%;
  max-width: 45px;
  height: auto;
}

.user-panel > .info,
.user-panel > .info > a {
  color: #fff;
}

.user-panel > .info > p {
  font-weight: 600;
  margin-bottom: 9px;
}

.user-panel {
  clear: left;
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 15px;
  padding: 25px 15px;
  border-bottom: 1px solid;
}

.user-panel > .info {
  padding: 5px 5px 5px 15px;
  line-height: 1;
  position: absolute;
  left: 55px;
}

.fliph .user-panel {
  display: none;
}

@media screen and (max-width: 576px) {
  .single-media-video {
    width: 100%;
  }
}

.wishlist {
  position: relative;
}

.wishlist .quantity {
  width: 15px;
  height: 15px;
  position: absolute;
  border-radius: 50%;
  right: -4px;
  top: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: bold;
  background: #e4e0e2;
}

footer {
  background-color: #1F1B44;
}

footer .line-footer:before {
  content: " ";
  background: #646464;
  height: 100%;
  width: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  footer .line-footer {
    border-right: 0;
  }
}

footer .footer-top {
  color: #D2D2D2;
}

footer .footer-top a {
  font-size: 14px;
  color: #D2D2D2;
  word-break: break-all;
}

footer .footer-top .content-logo img {
  height: 67px;
  max-width: 246px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .footer-top #socialComponent {
  margin-top: 26px;
}

footer .footer-top #socialComponent a {
  border-radius: 50px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  border: 1px solid #D2D2D2;
  color: #D2D2D2;
  font-size: 13px;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
}

footer .footer-top .title-footer {
  padding-left: 15px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: bold;
}

footer .footer-top #infoContactComponent .container {
  width: 100%;
  max-width: 100%;
}

footer .footer-top #infoContactComponent .info {
  margin-bottom: 8px;
}

footer .footer-top .content-menu a {
  padding: 0 0 14px 0;
  display: block;
}

footer .footer-top #menuFooter .nav {
  flex-direction: column !important;
}

footer .footer-top #menuFooter .nav a {
  padding: 0 0 18px 0;
}

footer .footer-bottom .copyright {
  margin-bottom: 0 !important;
  font-size: 13px;
  color: #D2D2D2;
}

