@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;
    -ms-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;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    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 {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

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

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

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

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

@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;
  -webkit-backface-visibility: hidden;
  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;
  -ms-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;
  -webkit-backface-visibility: hidden;
  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;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  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;
  -ms-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;
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999; }

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

@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;
  -ms-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;
  -webkit-backface-visibility: hidden;
  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;
  -ms-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); } }
@charset "UTF-8";

/***** Custom Theme Mixins *****/

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

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

#categoryMegaMenu .navbar-nav > .nav-item .nav-link {
  background-color: #ffffff;
  color: var(--primary);
  font-size: 1.125rem;
  padding: 29px 15px;
  text-transform: uppercase;
}

#categoryMegaMenu .dropdown-menu {
  background-color: #f5f5f5;
  min-width: 15rem;
  padding: 15px 0;
  border-radius: 0;
  margin-top: 0;
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link {
  color: #444444;
  text-transform: capitalize;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  font-size: 0.75rem;
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link img {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.5rem;
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link img.white {
  display: none;
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link img.dark {
  display: inline-block;
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link:hover {
  color: #fff;
  background-color: var(--primary);
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link:hover img.white {
  display: inline-block;
}

#categoryMegaMenu .dropdown-menu > .nav-item .nav-link:hover img.dark {
  display: none;
}

#categoryMegaMenu .dropdown-menu .dropdown {
  position: initial;
}

#categoryMegaMenu .dropdown-menu .dropdown .nav-link {
  padding: 0.5rem 1rem;
}

#categoryMegaMenu .dropdown-menu .dropdown .nav-link:after {
  content: "";
  font-family: FontAwesome;
  float: right;
  border: 0;
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu {
  background-color: #EBEBEB;
  position: absolute;
  left: calc(15rem - 3px);
  min-width: 30rem;
  top: -1px;
  visibility: hidden;
  opacity: 0;
  padding: 25px;
  min-height: 100%;
  border: 0;
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown,
#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown2 {
  list-style: none;
  position: relative !important;
  min-width: auto !important;
  left: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  visibility: visible;
  opacity: 1;
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown .nav-link,
#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown2 .nav-link {
  color: #444444;
  text-transform: capitalize;
  padding: 0 0 2px 0;
  background-color: #ebebeb;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown .nav-link:hover,
#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown2 .nav-link:hover {
  background-color: #ebebeb;
  color: #444444;
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown .nav-link:before,
#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown2 .nav-link:before {
  content: "";
  bottom: 2px;
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 1px;
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown .nav-link:after,
#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown2 .nav-link:after {
  content: "";
}

#categoryMegaMenu .dropdown-menu .dropdown .dropdown-menu .frame-dropdown2 {
  -moz-column-count: 2;
       column-count: 2;
}

#categoryMegaMenu .dropdown-menu .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  display: block;
}

#categoryMegaMenu h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#categoryMegaMenu h3 a {
  color: #333333;
}

#categoryMegaMenu .dropdown-submenu {
  padding: 0 0.5rem 0.5rem 0.5rem;
}

#categoryMegaMenu .dropdown-submenu a {
  font-weight: 400;
  display: block;
  padding: 0 0.5rem;
  color: #333333;
  font-size: 0.875rem;
}

#categoryMegaMenu .dropdown-submenu a:hover {
  color: var(--primary);
}

.navbar-category-movil .navbar-nav .nav-item {
  border-bottom: 1px solid #DEDEDE;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  color: #363436;
  font-weight: bold;
  padding: 10px 25px;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link img {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.5rem;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link img.white {
  display: none;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link img.dark {
  display: inline-block;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link:hover img.white {
  display: inline-block;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link:hover img.dark {
  display: none;
}

.navbar-category-movil .navbar-nav .nav-item:hover {
  background-color: var(--primary);
}

.navbar-category-movil .navbar-nav .nav-item:hover > .nav-link {
  color: #fff;
}

.navbar-category-movil .navbar-nav .nav-item .nav-link[aria-expanded=true] {
  background-color: var(--primary);
  color: #fff;
}

.navbar-category-movil .navbar-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 0;
}

.navbar-category-movil .navbar-nav .dropdown-menu .nav-item {
  border-bottom: 0;
  background-color: #EBEBEB !important;
}

.navbar-category-movil .navbar-nav .dropdown-menu .nav-item .nav-link {
  color: #363436;
}

.navbar-category-movil .navbar-nav .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primary);
}

.navbar-category-movil .navbar-nav .dropdown-menu h3 {
  display: none;
}

.navbar-category-movil .navbar-nav .dropdown-menu .frame-dropdown {
  list-style: none;
  padding-left: 0;
}

.navbar-category-movil .navbar-nav .dropdown-menu .frame-dropdown .dropdown-submenu {
  padding-left: 40px;
}

.navbar-category-movil .navbar-nav .dropdown-menu .frame-dropdown .dropdown-submenu a {
  font-weight: 400;
  display: block;
  padding: 0 0.5rem;
  color: #333333;
  font-size: 0.875rem;
}

.navbar-category-movil .navbar-nav .dropdown-menu .frame-dropdown .dropdown-submenu a:hover {
  color: var(--primary);
}

.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;
}

.lists-layout-1 .card a {
  height: calc(100vh *.72) !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.lists-layout-1 .card h3 {
  font-size: 2.375rem;
}

.lists-layout-1 .card:hover {
  box-shadow: 0px 0px 9px 0px #949393;
  z-index: 9;
}

@media (max-width: 767.98px) {
  .lists-layout-1 .card h3 {
    font-size: 1.125rem;
  }
}

.lists-layout-2 {
  padding-top: 45px;
  padding-bottom: 30px;
}

.lists-layout-2 h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 41px;
}

.lists-layout-2 h3 span {
  display: block;
  color: var(--primary);
  font-size: 18px;
  text-transform: uppercase;
}

.lists-layout-2 .category-list-2__item {
  margin-bottom: 22px;
}

.lists-layout-2 .category-list-2__item figure {
  position: relative;
  height: 395px;
  margin: 0;
  overflow: hidden;
}

.lists-layout-2 .category-list-2__item figure:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(104, 77, 52, 0.32);
  z-index: 1;
}

.lists-layout-2 .category-list-2__item figure img {
  transition: all 0.5s;
}

.lists-layout-2 .category-list-2__item figure figcaption {
  position: absolute;
  left: 27px;
  bottom: 31px;
  z-index: 2;
}

.lists-layout-2 .category-list-2__item figure figcaption h2 {
  margin-bottom: 20px;
}

.lists-layout-2 .category-list-2__item figure figcaption .btn-custom {
  font-size: 18px;
  margin-left: 15px;
}

.lists-layout-2 .category-list-2__item figure figcaption .btn-custom i {
  font-size: 20px;
}

.lists-layout-2 .category-list-2__item figure:hover img,
.lists-layout-2 .category-list-2__item figure:focus img {
  transform: scale(1.1);
}

.lists-layout-3 .first-category {
  padding-bottom: 40px;
  border-bottom: solid 1px #b4b4b4;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .lists-layout-3 .first-category {
    padding-bottom: 20px;
    border-bottom: solid 1px #b4b4b4;
    margin-bottom: 20px;
  }
}

.lists-layout-3 .first-category .items {
  height: 880px;
}

@media (max-width: 991.98px) {
  .lists-layout-3 .first-category .items {
    height: 400px;
  }
}

.lists-layout-3 .other-category .items {
  height: 400px;
}

.lists-layout-3 .other-category:first-child {
  padding-bottom: 40px;
  border-bottom: solid 1px #b4b4b4;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .lists-layout-3 .other-category:first-child {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.lists-layout-3 .items {
  position: relative;
}

.lists-layout-3 .items .imagen {
  overflow: hidden;
}

.lists-layout-3 .items .imagen img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transform: scale(1);
  transition: all 500ms ease-in-out;
}

.lists-layout-3 .items:after {
  content: "";
  background-color: rgba(60, 60, 59, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lists-layout-3 .items:nth-of-type(2):before {
  content: "";
  border-bottom: 1px solid #b4b4b4;
  position: absolute;
  bottom: -40px;
  display: block;
  height: 100%;
  z-index: 99;
  width: 100%;
}

.lists-layout-3 .items .card-img-overlay {
  margin: 20px;
  padding: 20px;
  border: 1px solid #fff;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lists-layout-3 .items h3 {
  font-size: 3.75rem;
  font-weight: bold;
}

.lists-layout-3 .items .btn {
  font-size: 0.9375rem;
  border-radius: 0;
  color: #0A0808;
  background-color: rgba(255, 255, 255, 0.7);
}

.lists-layout-3 .items:hover img {
  transform: scale(1.1);
}

@media (max-width: 769px) {
  .lists-layout-3 .items h3 {
    font-size: 1.875rem;
  }

  .lists-layout-3 .items:nth-of-type(1):before,
  .lists-layout-3 .items:nth-of-type(2):before {
    border-bottom: 1px solid #b4b4b4;
    bottom: -20px;
  }
}

.whatsapp-layout-2 #dropdownMenuWhatsapp:before {
  display: none;
}

.whatsapp-layout-2 .number-whatsapp {
  text-align: center;
}

.whatsapp-layout-2 .number-whatsapp i {
  border-radius: 50%;
  padding: 5px;
  padding-left: 7px;
  padding-right: 7px;
  background-color: #06d755;
  font-size: 18px;
  color: #ffffff !important;
  margin-right: 7px;
}

.whatsapp-fixed {
  position: fixed;
  z-index: 1037;
}

#whatsappImageFixed {
  position: fixed;
  background: #06d755;
  width: 39px;
  height: 137px;
  color: #ffffff;
}

#whatsappImageFixed .content-whatsapp {
  position: relative;
}

#whatsappImageFixed .content-whatsapp .dropright,
#whatsappImageFixed .content-whatsapp .dropleft {
  padding: 0;
  position: relative;
  bottom: -37px;
}

#whatsappImageFixed .content-whatsapp .dropright #dropdownMenuWhatsapp,
#whatsappImageFixed .content-whatsapp .dropleft #dropdownMenuWhatsapp {
  padding: 7px;
}

#whatsappImageFixed .content-whatsapp .dropright #dropdownMenuWhatsapp:before,
#whatsappImageFixed .content-whatsapp .dropleft #dropdownMenuWhatsapp:before {
  display: none;
}

#whatsappImageFixed .content-whatsapp .dropright .dropdown-menu-whatsapp,
#whatsappImageFixed .content-whatsapp .dropleft .dropdown-menu-whatsapp {
  top: -10px !important;
}

#whatsappImageFixed #WhatsappimageText {
  transform: rotate(-90deg);
  margin-top: 43px;
  margin-left: -18px;
}

#whatsappImageFixed #WhatsappimageText a.whatsapp-layout-2 {
  position: relative;
  bottom: -43px;
  left: 7px;
}

#whatsappImageFixed .icon-whatsapp {
  color: #fff;
  font-size: 27px;
}

#whatsappIconFixed {
  right: 10px;
  top: 25%;
}

#whatsappIconFixed .dropdown-menu-whatsapp {
  top: 11px !important;
}

#whatsappIconFixed .content-background {
  color: white;
  background-color: #06d755;
  align-items: center;
  display: flex !important;
  font-size: 29px;
  width: 60px;
  height: 60px;
  display: block;
  box-shadow: 2px 2px 12px #aaa;
  border-radius: 48%;
}

#whatsappIconFixed .content-background a {
  margin: 0 auto;
}

#whatsappIconFixed .icon-whatsapp {
  color: #ffffff;
  font-size: 40px;
}

#whatsappIconChatFixed {
  position: fixed;
  bottom: 40px;
  left: 40px;
  visibility: hidden;
}

#whatsappIconChatFixed .pre-window {
  display: flex;
  align-items: center;
  z-index: 99999;
}

#whatsappIconChatFixed .pre-window .icon {
  width: 54px;
  height: 54px;
  background-color: #22ce5a;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
  cursor: pointer;
}

#whatsappIconChatFixed .pre-window .text {
  background-color: #F6F6F6;
  padding: 8px 20px;
  margin-left: 25px;
  border-radius: 10px;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  border: 2px solid #E9E9E9;
  position: relative;
}

#whatsappIconChatFixed .pre-window .text:before {
  position: absolute;
  content: "";
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 16px solid #E9E9E9;
}

#whatsappIconChatFixed .pre-window .text:after {
  position: absolute;
  content: "";
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid #f6f6f6;
}

#whatsappIconChatFixed .window {
  position: fixed;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  background: #fff;
  overflow: hidden;
  width: 350px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  bottom: 20px;
  display: block;
  border-radius: 20px;
}

#whatsappIconChatFixed .window .window-header {
  background-color: var(--primary);
  color: #fff;
  padding: 26px;
  position: relative;
}

#whatsappIconChatFixed .window .window-header .header-close {
  float: right;
  cursor: pointer;
  display: table;
}

#whatsappIconChatFixed .window .window-header .header-title {
  font-weight: normal;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#whatsappIconChatFixed .window .window-header .header-text {
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #EFEFEF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 25px;
}

#whatsappIconChatFixed .window .window-content {
  padding: 0;
  background-color: #F6F6F6;
  height: 297px;
  overflow-y: auto;
}

#whatsappIconChatFixed .window .window-content .content-list {
  font-size: 13px;
  padding: 21px 30px;
  overflow: hidden;
  border-bottom: 2px solid #E9E9E9;
  display: flex;
  background-color: #F6F6F6;
  cursor: pointer;
  align-items: center;
}

#whatsappIconChatFixed .window .window-content .content-list .list-image {
  position: relative;
  margin-right: 10px;
}

#whatsappIconChatFixed .window .window-content .content-list .list-image .icon {
  height: 55px;
  width: 55px;
  background-color: var(--primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 33px;
}

#whatsappIconChatFixed .window .window-content .content-list .list-info .title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.1em;
}

#whatsappIconChatFixed .window .window-content .content-list .list-info .subtitle {
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #444444;
  font-weight: 500;
  font-size: 15px;
}

@media screen and (max-width: 576px) {
  #whatsappIconChatFixed .window {
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  #whatsappIconChatFixed .window .chat-content {
    max-height: 90%;
    height: calc(100vh - 100px) !important;
  }
}

#whatsappIconChatFixed .scroll {
  overflow: auto;
  height: 100%;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
  margin-right: 3px;
}

#whatsappIconChatFixed .scroll::-webkit-scrollbar {
  -webkit-appearance: none;
}

#whatsappIconChatFixed .scroll::-webkit-scrollbar:vertical {
  width: 5px;
}

#whatsappIconChatFixed .scroll::-webkit-scrollbar-button:increment,
#whatsappIconChatFixed .scroll::-webkit-scrollbar-button {
  display: none;
}

#whatsappIconChatFixed .scroll::-webkit-scrollbar:horizontal {
  height: 10px;
}

#whatsappIconChatFixed .scroll::-webkit-scrollbar-thumb {
  background-color: #DBDBDB;
  border-radius: 0;
  border: 1px solid #DBDBDB;
}

#whatsappIconChatFixed .scroll::-webkit-scrollbar-track {
  border-radius: 0;
}

.filter-tree [class*=level-] {
  padding-right: 0;
}

.filter-tree .level-0 {
  padding: 0.5rem 1.25rem;
}

.filter-tree .list-group-item .icon-collapsable .angle:before {
  content: "";
}

.filter-tree .list-group-item .icon-collapsable[aria-expanded=true] .angle:before {
  content: "";
}

.filter-tree .list-group-item .item-icon {
  display: inline-block;
}

.filter-tree .list-group-item .link-desktop {
  position: relative;
  height: 30px;
}

.filter-tree .list-group-item .link-desktop .text-href {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px;
}

.filter-tree .list-group-item .link-desktop .icon-collapsable {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}

.filter-tree .list-group-item .link-movil {
  position: relative;
}

.filter-tree .list-group-item .link-movil .text-collapsable {
  display: block;
}

.filter-tree .list-group-item .link-movil .icon-href {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.filter-tree-style-ttys .item,
.filter-tree-style-ttys .item-icon {
  display: none !important;
}

.filter-tree-style-ttys .list-group-item {
  padding: 0 !important;
}

.filter-tree-style-ttys .list-group-item a {
  color: #333333;
}

.filter-tree-style-ttys .list-group-item a:hover {
  color: var(--primary) !important;
  font-weight: bold !important;
}

.filter-tree-style-ttys .list-group-item.level-0 {
  padding: 0;
  border: 0;
}

.filter-tree-style-ttys .list-group-item.level-0 > .link-desktop {
  padding-left: 38px;
}

.filter-tree-style-ttys .list-group-item.level-0 > .link-desktop .icon-collapsable {
  justify-content: flex-start;
  font-weight: bold;
  font-size: 20px;
}

.filter-tree-style-ttys .list-group-item.level-0 > .link-desktop .text-href {
  left: 35px !important;
}

.filter-tree-style-ttys .list-group-item.level-0 .link-movil .icon-href {
  right: 10px;
}

.filter-tree-style-ttys .list-group-item.level-0 .link-desktop,
.filter-tree-style-ttys .list-group-item.level-0 .link-movil {
  font-size: 1rem;
  background-color: #f0f0f0;
  font-weight: 400;
  border-radius: 0 20px 0 0;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 0;
  height: 56px;
}

.filter-tree-style-ttys .list-group-item.level-0 .link-desktop .text-href,
.filter-tree-style-ttys .list-group-item.level-0 .link-movil .text-href {
  left: 15px;
}

.filter-tree-style-ttys .list-group-item.level-0 .link-childless {
  font-size: 1rem;
  background-color: #f0f0f0;
  font-weight: 400;
  border-radius: 0 20px 0 0;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 0;
  height: 56px;
}

.filter-tree-style-ttys .list-group-item.level-0 .multi-collapse {
  margin-bottom: 0.5rem;
}

.filter-tree-style-ttys .list-group-item.level-1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.filter-tree-style-ttys .list-group-item.level-1 .link-movil .text-collapsable {
  padding: 0.7rem 1rem;
  height: 45px;
}

.filter-tree-style-ttys .list-group-item.level-1 .link-movil .text-collapsable:before {
  color: var(--primary);
  content: "•";
}

.filter-tree-style-ttys .list-group-item.level-1 .link-desktop,
.filter-tree-style-ttys .list-group-item.level-1 .link-movil {
  padding: 0;
  background-color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  padding-right: 1rem;
  height: 45px;
}

.filter-tree-style-ttys .list-group-item.level-1 .link-desktop .text-href .angle:before,
.filter-tree-style-ttys .list-group-item.level-1 .link-movil .text-href .angle:before {
  content: none;
}

.filter-tree-style-ttys .list-group-item.level-1 .link-desktop .text-href:before,
.filter-tree-style-ttys .list-group-item.level-1 .link-movil .text-href:before {
  color: var(--primary);
  content: "•";
}

.filter-tree-style-ttys .list-group-item.level-1 .link-childless {
  background-color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  height: 45px;
}

.filter-tree-style-ttys .list-group-item.level-1 .link-childless .angle:before {
  content: none;
}

.filter-tree-style-ttys .list-group-item.level-1 .link-childless:before {
  color: var(--primary);
  content: "•";
}

@media (max-width: 991.98px) {
  .filter-tree-style-ttys .list-group-item.level-1 .link-childless {
    padding-top: 0.7rem !important;
  }
}

.filter-tree-style-ttys .list-group-item.level-1:last-child {
  border-bottom: 0;
}

.filter-tree-style-ttys .list-group-item.level-2 {
  border-bottom: 0;
  padding-left: 15px !important;
}

.filter-tree-style-ttys .list-group-item.level-2 .link-childless:before {
  content: "-";
}

.filter-tree-style-alnat .item {
  display: none;
}

.filter-tree-style-alnat .list-group .list-group-item {
  background-color: transparent;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 {
  margin-bottom: 20px;
  padding: 0;
  border: 0;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-desktop {
  font-size: 22px;
  background-color: var(--secondary);
  border-radius: 100px;
  height: 66px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-desktop .icon-collapsable {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 66px;
  border-radius: 100px;
  padding-right: 15px;
  color: #fff;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-desktop .text-href {
  color: #fff;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-desktop .text-href img {
  background-color: var(--secondary);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  width: 66px;
  height: 66px;
  -o-object-fit: none;
     object-fit: none;
  position: absolute;
  top: -33px;
  left: 0;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-desktop .text-href .span-with-icon {
  left: 75px;
  position: absolute;
  top: -13px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-desktop .text-href .span-without-icon {
  left: 15px;
  position: absolute;
  top: -13px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil {
  display: block;
  position: relative;
  font-size: 22px;
  background-color: var(--secondary);
  border-radius: 100px;
  border-bottom: 0;
  height: 66px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil a {
  color: #fff;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil img {
  background-color: var(--secondary);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  width: 66px;
  height: 66px;
  -o-object-fit: none;
     object-fit: none;
  position: absolute;
  top: 0;
  left: 0;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .icon-collapsable {
  align-items: baseline;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .text-collapsable {
  position: absolute;
  left: 0;
  top: 0;
  height: 66px;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  width: 100%;
  border-radius: 100px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .text-collapsable .span-with-icon {
  padding-left: 75px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .text-collapsable .span-without-icon {
  padding-left: 15px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .text-href {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 225px;
  height: 66px;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .text-href .span-with-icon {
  padding-left: 75px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .text-href .span-without-icon {
  padding-left: 15px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-movil .icon-href {
  right: 15px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0.item-selected > .link-desktop,
.filter-tree-style-alnat .list-group > .list-group-item.level-0.item-selected > .link-childless {
  background-color: var(--primary);
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0.item-selected > .link-desktop img,
.filter-tree-style-alnat .list-group > .list-group-item.level-0.item-selected > .link-childless img {
  background-color: var(--primary);
  border-color: var(--primary);
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-childless {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 100px;
  font-size: 22px;
  padding: 20px 20px 20px 75px;
}

.filter-tree-style-alnat .list-group > .list-group-item.level-0 > .link-childless img {
  background-color: var(--secondary);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  width: 66px;
  height: 66px;
  -o-object-fit: none;
     object-fit: none;
  position: absolute;
  top: 0;
  left: 0;
}

.filter-tree-style-alnat .list-group .level-1 .link-desktop .text-href:before,
.filter-tree-style-alnat .list-group .level-1 .link-desktop .text-collapsable:before,
.filter-tree-style-alnat .list-group .level-1 .link-movil .text-href:before,
.filter-tree-style-alnat .list-group .level-1 .link-movil .text-collapsable:before {
  color: var(--primary);
  content: "•";
}

.filter-tree-style-alnat .list-group .level-1 .link-desktop a,
.filter-tree-style-alnat .list-group .level-1 .link-movil a {
  color: #333333;
  font-weight: 500;
}

.filter-tree-style-alnat .list-group .level-1 .link-desktop a:hover,
.filter-tree-style-alnat .list-group .level-1 .link-movil a:hover {
  color: var(--primary);
}

.filter-tree-style-alnat .list-group .level-1 .link-desktop .icon-href,
.filter-tree-style-alnat .list-group .level-1 .link-movil .icon-href {
  right: 10px;
}

.filter-tree-style-alnat .list-group .level-1 .link-childless {
  color: #333333;
  font-weight: 500;
}

.filter-tree-style-alnat .list-group .level-1 .link-childless:hover {
  color: var(--primary);
}

.filter-tree-style-alnat .list-group .level-2 {
  border: 0;
}

.filter-tree-style-alnat .list-group .level-2 .link-childless {
  height: 20px;
}

.filter-tree-style-alnat .list-group .level-2 .link-childless:before {
  content: "-";
}

.filter-tree-style-alnat .list-group .level-2 .link-desktop,
.filter-tree-style-alnat .list-group .level-2 .link-movil {
  height: 20px;
}

.filter-tree-style-alnat .list-group .level-2 .link-desktop .text-href:before,
.filter-tree-style-alnat .list-group .level-2 .link-desktop .text-collapsable:before,
.filter-tree-style-alnat .list-group .level-2 .link-movil .text-href:before,
.filter-tree-style-alnat .list-group .level-2 .link-movil .text-collapsable:before {
  content: "-";
}

.filter-tree-style-alnat .list-group .level-3 .link-childless:before {
  content: none;
}

.filter-tree-style-alnat .list-group .level-3 .link-desktop .text-href:before,
.filter-tree-style-alnat .list-group .level-3 .link-desktop .text-collapsable:before,
.filter-tree-style-alnat .list-group .level-3 .link-movil .text-href:before,
.filter-tree-style-alnat .list-group .level-3 .link-movil .text-collapsable:before {
  content: none;
}

.filter-checkbox .tagBoxs {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-right: 10px;
}

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

.filter-checkbox .tagBoxs label {
  padding: 0.3rem 1rem;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
  display: inline-block;
  cursor: pointer;
}

.filter-checkbox .tagBoxs span {
  color: #333;
  position: relative;
  z-index: 9;
  font-size: 0.9rem;
}

.filter-checkbox .tagBoxs label::before {
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #E5E5E5;
  pointer-events: none;
  content: "";
  background-color: #ffffff;
  position: absolute;
  border-radius: 4px;
}

.filter-checkbox .tagBoxs label::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: none;
}

.filter-checkbox .tagBoxs input[type=checkbox]:checked ~ label span {
  color: #ffffff;
}

.filter-checkbox .tagBoxs input[type=checkbox]:not(:disabled):active ~ label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.filter-checkbox .tagBoxs input[type=checkbox]:checked ~ label::before {
  background-color: var(--primary);
  border-color: var(--primary);
}

.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: "";
  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: #333333;
  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: #333333;
  height: 2px;
}

.owl-style-3 .title-section .subtitle {
  font-size: 18px;
  color: #333333;
  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: #333333;
  margin: 10px;
  padding: 5px 30px 5px 20px;
  position: relative;
  border-radius: 50rem;
  border: 1px solid #333333;
}

.owl-style-3 .card-item .item-view-more-button .view-more-button:hover {
  background-color: #333333;
  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: "";
}

.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: 1199.98px) {
  .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: #333333;
}

.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: #333333;
  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: "";
  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;
}

#multilanglayout1 .multilang {
  box-sizing: border-box;
  margin: 0;
  margin-top: 5px;
  min-width: 0;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  color: #000;
  font-size: 14px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 50%;
}

#multilanglayout1 .multilang .line {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  width: 1px;
  height: 13px;
  margin-left: 8px;
  margin-right: 8px;
  background-color: #000;
}

#multilanglayout2 .multilang .btn {
  margin-top: 10px;
  margin-left: 4px;
  margin: 2;
}

#multilanglayout2 .multilang .btn img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
}

#multilanglayout3 .multilang {
  width: 25%;
  max-width: 500px;
  margin: auto;
  padding: 40px 0;
}

#multilanglayout3 .multilang a {
  text-decoration: none;
}

#multilanglayout3 .multilang .selectbox {
  width: 50%;
  margin: auto;
  position: relative;
}

#multilanglayout3 .multilang .selectbox .select {
  background: transparent;
  width: 100%;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease all;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  z-index: 200;
  border: 2px solid transparent;
}

#multilanglayout3 .multilang .selectbox .select:active,
#multilanglayout3 .multilang .selectbox .select:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  border: 2px solid transparent;
}

#multilanglayout3 .multilang .selectbox .select.active:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #fff;
  border-right: 25px solid transparent;
  position: absolute;
  bottom: -40px;
  right: 60px;
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
}

#multilanglayout3 .multilang .selectbox .titulo {
  margin-bottom: 10px;
  color: grey;
  font-weight: 600;
  font-size: 15px;
}

#multilanglayout3 .multilang .selectbox .opciones {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  max-height: 400px;
  overflow: auto;
  z-index: 100;
  width: 100%;
  display: none;
}

#multilanglayout3 .multilang .selectbox .opciones.active {
  display: block;
  -webkit-animation: fadeIn 0.3s forwards;
          animation: fadeIn 0.3s forwards;
}

@-webkit-keyframes fadeIn {
  from {
    transform: translateY(-200px) scale(0.5);
  }

  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    transform: translateY(-200px) scale(0.5);
  }

  to {
    transform: translateY(0) scale(1);
  }
}

#multilanglayout3 .multilang .selectbox .contenido-opcion {
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.2s ease all;
}

#multilanglayout3 .multilang .selectbox .opciones .contenido-opcion {
  padding: 10px;
}

#multilanglayout3 .multilang .selectbox .contenido-opcion img {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  border-radius: 50px;
}

@media screen and (max-width: 800px) {
  #multilanglayout3 .multilang .selectbox .selectbox {
    width: 100%;
  }
}

.btn-primary {
  color: white;
  background-color: var(--primary);
  border-color: var(--primary);
}

.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: white;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.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 {
  color: white;
  background-color: var(--primary);
  border-color: var(--primary);
}

.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: #ffffff;
  /*&: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: #ffffff !important;
}

.text-secondary {
  color: var(--secondary) !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: #ffffff;
  /*&: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: #ffffff !important;
}

.text-dark {
  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: #ffffff;
  /*&: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: #ffffff !important;
}

.text-info {
  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: #ffffff;
  /*&: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: #ffffff !important;
}

.text-warning {
  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: #ffffff;
  /*&: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: #ffffff !important;
}

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

.opacity-light picture {
  position: relative;
  display: block !important;
  overflow: hidden;
}

.opacity-light picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.opacity-light.opacity-left picture:before {
  background: linear-gradient(270deg, transparent, rgba(245, 245, 245, 0.9));
}

.opacity-light.opacity-right picture:before {
  background: linear-gradient(270deg, rgba(245, 245, 245, 0.9), transparent);
}

.opacity-light.opacity-top picture:before {
  background: linear-gradient(180deg, rgba(245, 245, 245, 0.9), transparent);
}

.opacity-light.opacity-bottom picture:before {
  background: linear-gradient(180deg, transparent, rgba(245, 245, 245, 0.9));
}

.opacity-light.opacity-all picture:before {
  background: rgba(245, 245, 245, 0.9);
}

.opacity-dark picture {
  position: relative;
  display: block !important;
  overflow: hidden;
}

.opacity-dark picture:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

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

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

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

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

.opacity-dark.opacity-all picture:before {
  background: rgba(0, 0, 0, 0.47);
}

.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;
}

.button-base {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-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);
  /*&: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%);
  }*/
}

.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: darken(var(--primary), 30%) !important;
}

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

.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;
}

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

.button-secondary {
  color: #ffffff;
  background-color: var(--secondary);
  border-width: 1px;
  border-style: solid;
  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%);
  }*/
}

.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: darken(var(--secondary), 30%) !important;
}

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

.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;
}

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

.button-dark {
  color: #ffffff;
  background-color: var(--dark);
  border-width: 1px;
  border-style: solid;
  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%);
  }*/
}

.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: darken(var(--dark), 30%) !important;
}

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

.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;
}

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

.button-info {
  color: #ffffff;
  background-color: var(--info);
  border-width: 1px;
  border-style: solid;
  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%);
  }*/
}

.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: darken(var(--info), 30%) !important;
}

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

.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;
}

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

.button-warning {
  color: #ffffff;
  background-color: var(--warning);
  border-width: 1px;
  border-style: solid;
  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%);
  }*/
}

.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: darken(var(--warning), 30%) !important;
}

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

.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;
}

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

.button-danger {
  color: #ffffff;
  background-color: var(--danger);
  border-width: 1px;
  border-style: solid;
  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%);
  }*/
}

.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: darken(var(--danger), 30%) !important;
}

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

.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;
}

.text-danger {
  color: var(--danger) !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 {
  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;
}

#timelineLayout1 {
  position: relative;
  margin: 50px auto;
  padding: 40px 0;
  width: 1000px;
}

#timelineLayout1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: #c5c5c5;
}

#timelineLayout1 ul {
  margin: 0px;
  padding: 0px;
}

#timelineLayout1 ul li {
  list-style: none;
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

#timelineLayout1 ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
  top: -12px;
}

#timelineLayout1 ul li:nth-child(odd):before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #014898;
  top: 45%;
  right: -10px;
  outline: 5px solid white;
}

#timelineLayout1 ul li:nth-child(odd) .time {
  position: absolute;
  display: inline-block;
  top: 42%;
  right: -105px;
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #ffff;
  background: #014898;
  border-radius: 8px;
  padding: 8px 16px;
}

#timelineLayout1 ul li:nth-child(odd) .time:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -8px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #014898;
}

#timelineLayout1 ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

#timelineLayout1 ul li:nth-child(even):before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #014898;
  top: 45%;
  left: -10px;
  outline: 5px solid white;
}

#timelineLayout1 ul li:nth-child(even) .time {
  position: absolute;
  display: inline-block;
  top: 42%;
  left: -105px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #ffff;
  background: #014898;
  border-radius: 8px;
  padding: 8px 16px;
}

#timelineLayout1 ul li:nth-child(even) .time:before {
  content: "";
  position: absolute;
  top: 10px;
  right: -8px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #014898;
}

#timelineLayout1 ul li h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: normal;
  color: #000;
}

#timelineLayout1 ul li p {
  margin: 0 0 10px 0;
  font-weight: normal;
  color: #000;
  padding: 0px;
}

#timelineLayout1 ul li .time h4 {
  margin: 0px;
  padding: 0;
  font-size: 14px;
}

#timelineLayout1 .content {
  padding-bottom: 20px;
}

#timelineLayout1 .content img {
  margin: auto;
  display: block;
  width: 150px;
  position: relative;
}

@media (max-width: 1000px) {
  #timelineLayout1 {
    width: 100%;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  #timelineLayout1 {
    width: 100%;
  }

  #timelineLayout1:before {
    left: 20px;
  }

  #timelineLayout1 ul li:nth-child(odd),
  #timelineLayout1 ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-bottom: 50px;
  }

  #timelineLayout1 ul li:nth-child(odd):before,
  #timelineLayout1 ul li:nth-child(even):before {
    top: -18px !important;
    left: 10px !important;
  }

  #timelineLayout1 ul li:nth-child(odd) .time,
  #timelineLayout1 ul li:nth-child(even) .time {
    top: -25px !important;
    left: 50px !important;
    right: inherit !important;
  }

  #timelineLayout1 ul li:nth-child(odd) .time:before,
  #timelineLayout1 ul li:nth-child(even) .time:before {
    left: -10px !important;
  }

  #timelineLayout1 ul li:nth-child(even) .time:before {
    border-left: 0px solid #014898;
    border-right: 10px solid #014898;
    right: auto;
  }
}

#timelineLayout2 {
  width: 100%;
  padding: 100px 50px;
  position: relative;
  background-color: #F8F8F8;
  height: 800px;
  overflow-y: scroll;
}

#timelineLayout2:before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(33% + 15px);
  bottom: 0px;
  width: 4px;
  background: #26227E;
}

#timelineLayout2:after {
  content: "";
  display: table;
  clear: both;
}

#timelineLayout2 .entry {
  clear: both;
  text-align: left;
  position: relative;
}

#timelineLayout2 .entry .content-timeline .title {
  margin-bottom: 1em;
  float: left;
  width: 33%;
  padding-right: 30px;
  text-align: right;
  position: relative;
  height: 124px;
  color: #183669;
}

#timelineLayout2 .entry .content-timeline .title:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 8px solid #A52485;
  background-color: #A52485;
  border-radius: 100%;
  top: 40%;
  right: -8px;
  z-index: 99;
}

#timelineLayout2 .entry .content-timeline .title i {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  top: 30%;
  right: -20px;
  background: #fff;
  border: 2px solid #A52485;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: #000;
  z-index: 99;
  Transition: all 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  opacity: 1 !important;
  background-repeat: no-repeat !important;
  background-size: 75% !important;
  background-position: center !important;
}

#timelineLayout2 .entry .content-timeline .title h3 {
  margin-bottom: 0;
  font-size: 120%;
  opacity: 0;
  visibility: hidden;
  Transition: all 500ms ease-out;
}

#timelineLayout2 .entry .content-timeline .title p {
  Transition: all 500ms ease-out;
  margin: 0px;
  margin-top: 10px;
  font-size: 100%;
  opacity: 0;
  visibility: hidden;
}

#timelineLayout2 .entry .content-timeline:hover .title i,
#timelineLayout2 .entry .content-timeline:hover .title h3,
#timelineLayout2 .entry .content-timeline:hover .title p {
  opacity: 1;
  visibility: visible;
}

#timelineLayout2 .entry .content-timeline:hover .body hr {
  background: #A52485;
  height: 5px;
  opacity: 1;
  visibility: visible;
}

#timelineLayout2 .entry .content-timeline:hover .body h2,
#timelineLayout2 .entry .content-timeline:hover .body li {
  color: #183669;
}

#timelineLayout2 .entry .content-timeline:hover .body ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

#timelineLayout2 .entry .content-timeline .body {
  margin: 0 0 1em;
  float: right;
  width: 66%;
  padding-left: 30px;
}

#timelineLayout2 .entry .content-timeline .body hr {
  Transition: all 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  background: #A52485;
  height: 5px;
}

#timelineLayout2 .entry .content-timeline .body h2 {
  font-size: 18px;
  top: -25px;
  margin-bottom: 0.5em;
  line-height: 1.4em;
  height: 50px;
}

#timelineLayout2 .entry .content-timeline .body h2:first-child {
  margin-top: 0;
  font-weight: 400;
}

#timelineLayout2 .entry .content-timeline .body ul {
  display: none;
  color: #000;
  padding-left: 0;
  list-style-type: none;
  opacity: 0;
  visibility: hidden;
  Transition: all 500ms ease-out;
}

#timelineLayout2 .entry .content-timeline .body ul li:before {
  margin-right: 0.5em;
}

@media (max-width: 767.98px) {
  #timelineLayout2 {
    padding: 50px 5px;
  }

  #timelineLayout2:before {
    left: calc(1% + 15px);
  }

  #timelineLayout2 .entry .content-timeline .title {
    height: 45px !important;
    width: 97% !important;
    padding-right: 0px !important;
    padding-left: 47px;
  }

  #timelineLayout2 .entry .content-timeline .title:before {
    left: 8px;
  }

  #timelineLayout2 .entry .content-timeline .title i {
    left: -1px;
    right: unset;
    opacity: 1;
    visibility: visible;
  }

  #timelineLayout2 .entry .content-timeline .title h3,
  #timelineLayout2 .entry .content-timeline .title p {
    opacity: 1;
    visibility: visible;
    text-align: left;
  }

  #timelineLayout2 .entry .content-timeline .body {
    width: 96% !important;
  }

  #timelineLayout2 .entry .content-timeline .body hr:first-child {
    opacity: 1;
    visibility: visible;
  }

  #timelineLayout2 .entry .content-timeline .body h2 {
    height: 49px;
  }
}

#timelineLayout2::-webkit-scrollbar {
  -webkit-appearance: none;
}

#timelineLayout2::-webkit-scrollbar:vertical {
  width: 13px;
}

#timelineLayout2::-webkit-scrollbar-button:increment,
#timelineLayout2::-webkit-scrollbar-button {
  display: none;
}

#timelineLayout2::-webkit-scrollbar:horizontal {
  height: 10px;
}

#timelineLayout2::-webkit-scrollbar-thumb {
  background-color: #E1E1E1;
  border-radius: 20px;
  border: 2px solid #f1f2f3;
}

#timelineLayout2::-webkit-scrollbar-track {
  border-radius: 10px;
}

#indexProfile .overlay.active {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 900;
  transition: opacity 0.3s ease-out;
}

#indexProfile .profile-section-title {
  margin-top: 22px;
}

#indexProfile label[for=extraFieldmainImage] {
  display: none;
}

#indexProfile #imgProfile {
  text-align: center;
}

#indexProfile #imgProfile img {
  height: 250px;
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767.98px) {
  #indexProfile .profile-content {
    padding-left: 45px;
  }

  #indexProfile #breadcrumbSection {
    margin-left: 40px;
  }
}

/***    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: "";
  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: #183669;
  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;
}

#searchLayout1 .cover-img,
#searchLayout2 .cover-img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 70px;
}

#searchLayout1 .search-logo,
#searchLayout2 .search-logo {
  max-height: 100px;
  min-height: 100px;
  width: auto !important;
}

@media (max-width: 991.98px) {
  #searchLayout1 .search-logo,
  #searchLayout2 .search-logo {
    min-height: 40px;
  }
}

.searchLayout3 .modal-dialog {
  max-width: 100%;
  margin: 0;
}

.searchLayout3 .btn {
  color: #444444;
  font-size: 22px;
  padding: 0 15px;
  border-radius: 0 !important;
}

.searchLayout3 .btn:focus {
  box-shadow: none;
}

.searchLayout3 .form-control {
  border-width: 0 0 2px 0;
  color: #444444;
  background-color: transparent;
  border-radius: 0;
}

.searchLayout3 .form-control:focus {
  color: #444444;
  background-color: transparent;
  border-color: #444444;
  outline: 0;
  box-shadow: none;
}

.searchLayout3 .form-control::-moz-placeholder {
  color: #555555;
}

.searchLayout3 .form-control:-ms-input-placeholder {
  color: #555555;
}

.searchLayout3 .form-control::placeholder {
  color: #555555;
}

.searchLayout4 .btn {
  color: #444444;
  font-size: 22px;
  padding: 0 15px 0 0;
  border-radius: 0 !important;
}

.searchLayout4 .btn:focus {
  box-shadow: none;
}

.searchLayout4 .form-control {
  border-width: 0 0 2px 0;
  color: #444444;
  background-color: transparent;
  border-radius: 0;
}

.searchLayout4 .form-control:focus {
  color: #444444;
  background-color: transparent;
  border-color: #444444;
  outline: 0;
  box-shadow: none;
}

.searchLayout5 .form-control {
  border-width: 0 0 2px 0;
  color: #ffffff;
  background-color: transparent;
  border-radius: 0;
}

.searchLayout5 .form-control:focus {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
  outline: 0;
  box-shadow: none;
}

.searchLayout5 .form-control::-moz-placeholder {
  color: #ffffff;
}

.searchLayout5 .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.searchLayout5 .form-control::placeholder {
  color: #ffffff;
}

.searchLayout5 .btn {
  color: #ffffff;
  font-size: 22px;
  padding: 0 15px;
  border-radius: 0 !important;
}

.searchLayout5 .btn:focus {
  box-shadow: none;
}

#pageIsearch .page-header {
  font-size: 2rem;
  color: #183669;
}

#pageIsearch .card {
  max-width: 290px !important;
  margin-top: 10px;
  margin-bottom: 5px;
}

#pageIsearch .card img {
  height: 200px;
}

#pageIsearch .card .item-title a {
  text-decoration: none;
}

#pageIsearch .card .item-title a h3 {
  margin-top: 5px;
  font-size: 21px;
}

#pageIsearch .card .item-summary a {
  text-decoration: none;
}

#pageIsearch .card .item-summary a .summary {
  line-height: 1.4;
}

#pageIsearch .card .item-view-more-button a {
  color: #183669;
  font-size: 15px;
  font-weight: 400;
}

#pageIsearch .card .item-view-more-button a:after {
  margin-left: 8px;
  color: #183669;
  font: normal normal normal 14px/1 FontAwesome;
  content: "";
}

#galleryWithHorizontalThumbs .primary-gallery {
  overflow: hidden;
  margin-bottom: 15px;
}

#galleryWithHorizontalThumbs .primary-gallery .carousel-item {
  height: unset !important;
  position: relative;
  padding: unset !important;
}

#galleryWithHorizontalThumbs .primary-gallery .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

#galleryWithHorizontalThumbs .primary-gallery .carousel-item.aspect-ratio-1-1 {
  padding-bottom: calc(100%) !important;
}

#galleryWithHorizontalThumbs .primary-gallery .carousel-item.aspect-ratio-4-3 {
  padding-bottom: calc(100%*4/3) !important;
}

#galleryWithHorizontalThumbs .thumbs-gallery .item {
  position: relative;
  height: unset !important;
  padding: unset !important;
}

#galleryWithHorizontalThumbs .thumbs-gallery .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

#galleryWithHorizontalThumbs .thumbs-gallery .item.aspect-ratio-1-1 {
  padding-bottom: calc(100%) !important;
}

#galleryWithHorizontalThumbs .thumbs-gallery .item.aspect-ratio-4-3 {
  padding-bottom: calc(100%*4/3) !important;
}

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

.slider-component {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .slider-component {
    height: calc(100vw * (.3)) !important;
  }
}

.slider-component .image-link {
  display: inline-block;
  height: 100%;
}

.slider-component .slider-img__fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.slider-component .slider-img__cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-component .slider-img__contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.slider-component .carousel-caption {
  padding-top: 15%;
}

.slider-component .carousel-caption .title1,
.slider-component .carousel-caption .custom-html {
  text-shadow: 3px 2px 3px #6c757d;
}

.slider-component .carousel-control-prev,
.slider-component .carousel-control-next {
  opacity: 1;
  z-index: 99;
  width: 40px;
  display: block;
  top: 50%;
  position: absolute;
  right: auto;
  left: 0;
  height: 40px;
  margin-top: -20px;
  font-size: 4em;
  color: #fff;
  line-height: 0.5;
}

.slider-component .carousel-control-prev i,
.slider-component .carousel-control-next i {
  line-height: 0.5;
}

.slider-component .carousel-control-prev.carousel-control-next,
.slider-component .carousel-control-next.carousel-control-next {
  right: 0 !important;
  left: auto !important;
}

.slider-component .carousel-control-prev:hover,
.slider-component .carousel-control-next:hover {
  color: var(--primary);
}

.slider-component.owl-with-dots .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.slider-component.owl-with-dots.carousel-indicators-position-left .owl-dots,
.slider-component.owl-with-dots.carousel-indicators-position-right .owl-dots {
  margin: 15px !important;
}

.slider-component.owl-with-dots.carousel-indicators-position-right .owl-dots {
  left: auto;
}

.slider-component.owl-with-dots.carousel-indicators-position-left .owl-dots {
  right: auto;
}

.slider-component .carousel-indicators.carousel-indicators-position-left,
.slider-component .carousel-indicators.carousel-indicators-position-right {
  margin: 15px !important;
}

.slider-component .carousel-indicators.carousel-indicators-position-right {
  left: auto;
}

.slider-component .carousel-indicators.carousel-indicators-position-left {
  left: auto;
}

.slider-component.carousel-indicators-style-square li,
.slider-component.carousel-indicators-style-square .owl-dots .owl-dot span,
.slider-component .carousel-indicators-style-square li,
.slider-component .carousel-indicators-style-square .owl-dots .owl-dot span,
.slider-component.carousel-indicators-style-circle li,
.slider-component.carousel-indicators-style-circle .owl-dots .owl-dot span,
.slider-component .carousel-indicators-style-circle li,
.slider-component .carousel-indicators-style-circle .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin: 5px;
  border: 2px solid var(--primary);
  background-color: var(--primary);
  position: relative;
  background-clip: border-box;
  opacity: 1;
  flex: 0 1 auto;
}

.slider-component.carousel-indicators-style-square .owl-dots .owl-dot span,
.slider-component .carousel-indicators-style-square .owl-dots .owl-dot span,
.slider-component.carousel-indicators-style-circle .owl-dots .owl-dot span,
.slider-component .carousel-indicators-style-circle .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
}

.slider-component.carousel-indicators-style-square li.active,
.slider-component.carousel-indicators-style-square .owl-dots .owl-dot.active span,
.slider-component .carousel-indicators-style-square li.active,
.slider-component .carousel-indicators-style-square .owl-dots .owl-dot.active span,
.slider-component.carousel-indicators-style-circle li.active,
.slider-component.carousel-indicators-style-circle .owl-dots .owl-dot.active span,
.slider-component .carousel-indicators-style-circle li.active,
.slider-component .carousel-indicators-style-circle .owl-dots .owl-dot.active span {
  border: 2px solid #fff;
  background-color: transparent;
}

.slider-component.carousel-indicators-style-square li.active:after,
.slider-component.carousel-indicators-style-square .owl-dots .owl-dot.active span:after,
.slider-component .carousel-indicators-style-square li.active:after,
.slider-component .carousel-indicators-style-square .owl-dots .owl-dot.active span:after,
.slider-component.carousel-indicators-style-circle li.active:after,
.slider-component.carousel-indicators-style-circle .owl-dots .owl-dot.active span:after,
.slider-component .carousel-indicators-style-circle li.active:after,
.slider-component .carousel-indicators-style-circle .owl-dots .owl-dot.active span:after {
  height: 7px;
  width: 7px !important;
  background-color: #fff;
  border-radius: 50%;
  bottom: 2px !important;
  left: 2px !important;
  content: "";
  position: absolute;
}

.slider-component.carousel-indicators-style-square li,
.slider-component.carousel-indicators-style-square .owl-dots .owl-dot span,
.slider-component .carousel-indicators-style-square li,
.slider-component .carousel-indicators-style-square .owl-dots .owl-dot span {
  border-radius: 0;
}

.slider-component.carousel-indicators-style-square li.active:after,
.slider-component.carousel-indicators-style-square .owl-dots .owl-dot.active span:after,
.slider-component .carousel-indicators-style-square li.active:after,
.slider-component .carousel-indicators-style-square .owl-dots .owl-dot.active span:after {
  border-radius: 0;
}

.slider-component.carousel-indicators-style-line li,
.slider-component.carousel-indicators-style-line .owl-dots .owl-dot span,
.slider-component .carousel-indicators-style-line li,
.slider-component .carousel-indicators-style-line .owl-dots .owl-dot span {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 0;
}

.slider-component.carousel-indicators-style-line li.active,
.slider-component.carousel-indicators-style-line .owl-dots .owl-dot.active span,
.slider-component .carousel-indicators-style-line li.active,
.slider-component .carousel-indicators-style-line .owl-dots .owl-dot.active span {
  opacity: 1;
}

.slider-component.owl-slider-layout-1 .owl-stage-outer,
.slider-component.owl-slider-layout-1 .owl-stage,
.slider-component.owl-slider-layout-1 .owl-item {
  height: 100% !important;
}

.slider-component.owl-slider-layout-1 .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: left;
  margin-top: -20px;
}

.slider-component.owl-slider-layout-1 .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 4em;
  padding: 0 5px;
  line-height: 0.5;
}

.slider-component.owl-slider-layout-1 .owl-nav [class*=owl-] i {
  line-height: 0.5;
}

.slider-component.owl-slider-layout-1 .owl-nav [class*=owl-]:hover {
  color: var(--primary);
  background-color: transparent;
}

.slider-component.owl-slider-layout-1 .owl-nav .owl-next {
  float: right;
}

.bootstrap-slider-layout-2 {
  position: relative;
  background-image: linear-gradient(to right, #183669 0%, #A0F0EC 100%);
  padding-top: 46px;
  overflow: hidden;
  /***** Media Queries *****/
}

.bootstrap-slider-layout-2 .carousel-inner {
  z-index: 10;
}

.bootstrap-slider-layout-2 .carousel-item__wrapper {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
  margin-bottom: 15px;
}

.bootstrap-slider-layout-2 .carousel-item__image {
  position: relative;
  max-width: 463px;
  height: 0;
  padding-bottom: 100%;
  margin: 0 auto;
}

.bootstrap-slider-layout-2 .carousel-item__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.bootstrap-slider-layout-2 .carousel-indicators {
  bottom: 110px;
  margin: 0;
}

.bootstrap-slider-layout-2 .carousel-indicators li {
  position: relative;
  width: 13px;
  height: 13px;
  background-color: transparent;
  text-indent: initial;
  opacity: 1;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 50%;
}

.bootstrap-slider-layout-2 .carousel-indicators li:before {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.bootstrap-slider-layout-2 .carousel-indicators li:after {
  display: none;
}

.bootstrap-slider-layout-2 .carousel-indicators li.active:before {
  background-color: #fff;
}

.bootstrap-slider-layout-2 .carousel-indicators li:not(:last-child) {
  margin: 0 4px 0 0;
}

@media (min-width: 992px) {
  .bootstrap-slider-layout-2 .carousel-indicators {
    top: 50%;
    transform: translateY(-50%);
    left: 32px;
    right: initial;
    bottom: initial;
    flex-direction: column;
  }

  .bootstrap-slider-layout-2 .carousel-indicators li:not(:last-child) {
    margin: 0 0 4px;
  }
}

@media (max-width: 1199.98px) {
  .bootstrap-slider-layout-2 .carousel-inner {
    padding-bottom: 70px;
  }
}

@media (max-width: 767.98px) {
  .bootstrap-slider-layout-2 {
    padding-top: 20px;
  }

  .bootstrap-slider-layout-2 .carousel-indicators {
    bottom: 130px;
  }

  .bootstrap-slider-layout-2 .carousel-inner {
    padding-bottom: 150px;
  }

  .bootstrap-slider-layout-2 .carousel-item__caption {
    font-size: 24px;
  }
}

.bootstrap-slider-layout-3 .carousel .icon {
  top: 20px;
  left: 20px;
  z-index: 9;
}

.bootstrap-slider-layout-3 .carousel .title {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
}

.bootstrap-slider-layout-3 .carousel .title b,
.bootstrap-slider-layout-3 .carousel .title strong {
  font-weight: bold;
}

.bootstrap-slider-layout-3 .carousel .custom-html {
  margin-bottom: 15px;
  color: #fff;
}

.bootstrap-slider-layout-3 .carousel .custom-html p,
.bootstrap-slider-layout-3 .carousel .custom-html h1,
.bootstrap-slider-layout-3 .carousel .custom-html h2,
.bootstrap-slider-layout-3 .carousel .custom-html h3,
.bootstrap-slider-layout-3 .carousel .custom-html h4,
.bootstrap-slider-layout-3 .carousel .custom-html h5,
.bootstrap-slider-layout-3 .carousel .custom-html h6 {
  font-size: 23px;
  margin-bottom: 0;
}

.bootstrap-slider-layout-3 .carousel .btn {
  font-size: 20px;
  padding: 7px 30px;
  border-radius: 50rem !important;
  background-color: #A0F0EC;
  border-color: #A0F0EC;
  color: #fff;
  font-weight: 600;
}

.bootstrap-slider-layout-3 .carousel .carousel-control-prev,
.bootstrap-slider-layout-3 .carousel .carousel-control-next {
  z-index: 99;
  top: auto;
  bottom: 10px;
  width: auto;
  opacity: 1;
}

.bootstrap-slider-layout-3 .carousel .carousel-control-prev i,
.bootstrap-slider-layout-3 .carousel .carousel-control-next i {
  font-size: 25px;
  color: #fff;
}

.bootstrap-slider-layout-3 .carousel .carousel-control-prev {
  left: 48%;
}

.bootstrap-slider-layout-3 .carousel .carousel-control-next {
  right: 48%;
}

.bootstrap-slider-layout-3 .carousel .carousel-item .carousel-caption {
  right: 0;
  bottom: 2%;
  left: 0;
}

.bootstrap-slider-layout-3 .carousel .carousel-item .carousel-caption .image-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--primary);
  background: linear-gradient(to right, #962b33 1%, #d32e34 100%);
}

.bootstrap-slider-layout-3 .carousel .carousel-item .carousel-caption .image-circle img {
  width: 380px;
  height: 380px;
  margin-left: 10px;
  border-radius: 50%;
  margin-top: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.bootstrap-slider-layout-3 .carousel .img-fondo {
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991.98px) {
  .bootstrap-slider-layout-3 .carousel .img-fondo {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .bootstrap-slider-layout-3 .carousel .carousel-control {
    display: none;
  }

  .bootstrap-slider-layout-3 .carousel .title {
    font-size: 30px;
  }

  .bootstrap-slider-layout-3 .carousel .custom-html p,
  .bootstrap-slider-layout-3 .carousel .custom-html h1,
  .bootstrap-slider-layout-3 .carousel .custom-html h2,
  .bootstrap-slider-layout-3 .carousel .custom-html h3,
  .bootstrap-slider-layout-3 .carousel .custom-html h4,
  .bootstrap-slider-layout-3 .carousel .custom-html h5,
  .bootstrap-slider-layout-3 .carousel .custom-html h6 {
    font-size: 16px;
  }

  .bootstrap-slider-layout-3 .carousel .carousel-item .carousel-caption {
    right: 2%;
    left: 2%;
  }
}

/*OWL*/

.owl-slider-layout-2 .cover-image {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 400px;
}

.owl-slider-layout-2 .cover-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1199.98px) {
  .owl-slider-layout-2 .cover-img {
    position: relative;
  }
}

.owl-slider-layout-3 .bg-image {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.owl-slider-layout-3 .bg-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
}

footer {
  padding-top: 15px;
}

footer .footer-top {
  padding: 5px 5px 20px 5px;
}

footer .footer-top .title-email,
footer .footer-top .title-addres,
footer .footer-top .title-phone {
  color: #fff !important;
  font-size: 16px !important;
}

@media (max-width: 991.98px) {
  footer .footer-top .title-email,
  footer .footer-top .title-addres,
  footer .footer-top .title-phone {
    padding-top: 5px;
  }
}

footer .footer-top .contact {
  font-size: 16px !important;
  padding: 15px;
}

@media (max-width: 991.98px) {
  footer .footer-top .contact {
    padding-top: 15px;
  }
}

footer .footer-top .contact a {
  color: #fff;
}

footer .footer-top .contact i {
  color: #fff;
}

@media (max-width: 991.98px) {
  footer .footer-top img {
    button: 15px;
    position: relative;
    -o-object-fit: contain;
       object-fit: contain;
    position: relative;
  }
}

@media (max-width: 767.98px) {
  footer .footer-top img {
    left: 0px;
  }
}

@media (max-width: 575.98px) {
  footer .footer-top img {
    width: 60% !important;
    left: 50px;
  }
}

footer .footer-top .contact-email {
  right: 20px;
}

@media (max-width: 991.98px) {
  footer .footer-top .contact-email {
    right: 0px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  footer .footer-top .contact-email {
    position: relative;
    right: 100px;
    top: 45px;
  }
}

footer .footer-top .contact-phone {
  right: -20px;
}

@media (max-width: 991.98px) {
  footer .footer-top .contact-phone {
    right: 0px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  footer .footer-top .contact-phone {
    right: 145px;
    top: 45px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  footer .footer-top .contact-addres {
    position: relative;
    right: 0px;
    top: 15px;
  }
}

footer .title-phone::before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
}

footer .title-email::before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
}

footer .title-addres::before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
}

.menu-footer {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #ffffff45;
  color: #fff;
}

.menu-footer .navbar-nav .nav-link {
  padding-left: 2rem !important;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

@media (min-width: 1200px) {
  .menu-footer .navbar-nav .nav-link {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

.menu-footer .navbar-nav .nav-link:hover {
  color: #183669;
}

.menu-footer .nav-link {
  color: #fff;
}

@media (min-width: 1200px) {
  .footer-buttom .copy {
    padding-left: 150px;
  }
}

@media (max-width: 991.98px) {
  .footer-buttom .copy {
    padding: 0px;
  }
}

.social-footer a {
  margin: 0 0px;
  color: #fff;
}

.social-footer a i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  font-size: 16px;
  border: 1px solid #fff;
}

.social-footer .fa-whatsapp {
  display: none;
}

.imagina a svg {
  height: 100%;
}

.imagina a svg g .imaginalogo {
  fill: #fff;
}

.imagina a svg:hover g .imaginalogo {
  fill: #fff;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "FontAwesome";
  src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.toast-title {
  font-weight: bold;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #ffffff;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/

button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

#toast-container * {
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container > div:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Responsive Design*/

@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }

  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }

  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

