/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/animate.css/animate.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/*!
* 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: 2;
  animation-iteration-count: 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: 3;
  animation-iteration-count: 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: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -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: 1.3s;
  animation-duration: 1.3s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 2s;
  animation-duration: 2s;
  -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;
}
/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/sass/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
/************** LOAD FONTS ******************/
@font-face {
  font-family: "Anton-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Anton-Regular.woff2) format("woff2"), url(fonts/Anton-Regular.woff) format("woff");
}
@font-face {
  font-family: "Gore-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Gore-Regular.woff2) format("woff2"), url(fonts/Gore-Regular.woff) format("woff");
}
@font-face {
  font-family: "OpenSans-Bold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/OpenSans-Bold.woff2) format("woff2"), url(fonts/OpenSans-Bold.woff) format("woff");
}
@font-face {
  font-family: "OpenSans-ExtraBold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/OpenSans-ExtraBold.woff2) format("woff2"), url(fonts/OpenSans-ExtraBold.woff) format("woff");
}
@font-face {
  font-family: "OpenSans-Light";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/OpenSans-Light.woff2) format("woff2"), url(fonts/OpenSans-Light.woff) format("woff");
}
@font-face {
  font-family: "OpenSans-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/OpenSans-Regular.woff2) format("woff2"), url(fonts/OpenSans-Regular.woff) format("woff");
}
.saffireMobileSize .header {
  padding: 0;
  font: inherit;
  color: inherit;
}
.saffireMobileSize .headerInnerContent {
  height: auto;
}

.generalmessage {
  box-sizing: border-box;
  white-space: normal;
  padding: 0 10px;
}

.saffireMobileSize .generalmessage {
  padding: 0 10px;
}

.loginstatus {
  float: none;
}

#weatherBugWidget {
  position: static;
  display: flex;
  align-items: center;
}
#weatherBugWidget img {
  flex-shrink: 0;
  margin: 0 5px;
}
#weatherBugWidget #weatherBugText,
#weatherBugWidget #weatherBugDescription {
  display: none;
}
#weatherBugWidget.weatherBugSet #weatherBugDescription {
  display: inline;
  color: inherit;
}

.ticket {
  padding: 0;
  height: auto;
}

.saffireMobileSize a.ticket,
.saffireMobileSize a.ticket:hover {
  position: static;
  display: inline-block;
  overflow: visible;
  white-space: normal;
  border: none;
  border-radius: 0;
  padding: 0;
}

.emailSignup {
  box-sizing: border-box;
}
.emailSignup > div {
  float: none;
}
.emailSignup .emailInputField input {
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}
.emailSignup .emailSubmitButton {
  box-sizing: border-box;
}

.header .emailSignup {
  position: relative;
  z-index: 1;
}

.saffireMobileSize .header .emailSignup {
  float: none;
  font-size: inherit;
}
.saffireMobileSize .header .emailSignup:hover {
  cursor: pointer;
}

body.modalBody .emailSignup .emailInputField input {
  border: 1px solid #000;
  padding: 2px 5px;
  margin: 5px 0;
}

.header .searchBox {
  position: relative;
  z-index: 1;
}

.searchBox:not(.clonedSearchBox) > div {
  float: none;
}
.searchBox:not(.clonedSearchBox) #searchBoxClicker {
  display: none;
}
.searchBox:not(.clonedSearchBox) .searchBoxInput input {
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}
.searchBox:not(.clonedSearchBox) .searchSubmitButton {
  box-sizing: border-box;
}

.saffireMobileSize .header .searchBox:not(.clonedSearchBox) {
  float: none;
  font-size: inherit;
}
.saffireMobileSize .header .searchBox:not(.clonedSearchBox) #searchBoxClicker {
  display: block;
}
.saffireMobileSize .header .searchBox:not(.clonedSearchBox):hover {
  cursor: pointer;
}

.saffireMobileSize .searchBox.clonedSearchBox {
  background: #222;
}
.saffireMobileSize .searchBox.clonedSearchBox:before {
  display: none;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxInput input.inputFieldTextbox.textbox {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 0 !important;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxSubmit a {
  border-color: #ddd;
  border-radius: 0 !important;
}
.saffireMobileSize .searchBox.clonedSearchBox .searchBoxSubmit:before {
  position: static;
}

.viewcart > span {
  position: relative;
  display: inline-block;
}

.saffireMobileSize .viewcart {
  float: none;
  width: auto;
  height: auto;
  font-family: inherit !important;
  font-size: inherit;
}
.saffireMobileSize .viewcart:before {
  display: none;
}
.saffireMobileSize .viewcart:hover .cartMenu {
  display: none !important;
}
.saffireMobileSize .viewcart .cartMenuLink {
  box-sizing: border-box;
}

.cartMenuRemoveButton {
  text-decoration: none;
}

.saffireLargeSize .nav .groups .group {
  float: none;
}
.saffireLargeSize .nav .groups .group > a {
  box-sizing: border-box;
}
.saffireLargeSize .nav .items {
  float: none;
}
.saffireLargeSize .nav .items .item a {
  box-sizing: border-box;
}
.saffireLargeSize .nav .subitems {
  float: none;
}

.saffireMobileSize .nav {
  display: none !important;
}

.standAloneDirections {
  color: inherit;
}

.loginstatus a,
.myAccountNavButton a {
  color: inherit;
}

.pressPageTabs .tab {
  font-size: 14px;
}

.left.pressDate {
  width: 120px;
}

/*************** MEMBERS SITE **********************/
.arrowdown {
  border-color: transparent transparent #000;
}

.arrowdown_on {
  border-color: transparent transparent #444;
}

.arrowup {
  border-color: #000 transparent transparent;
}

.arrowup_on {
  border-color: #444 transparent transparent;
}

#directoryFilterOptions > li:hover {
  background: #cbdfe2;
}

.directoryHeader {
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.eventList-container .eventCol1 .filter-group {
  line-height: 1.2;
}

.tiny,
.note {
  font-size: 12px;
}

input.textbox,
textarea.multi,
select.dropdown {
  font-size: 14px;
}

#eventFilterList li,
#eventDateList li a {
  padding: 0.5em 0.5em;
}

.featureLineup-buynow .button {
  font-size: 12px;
}

.featureLineup-social div {
  display: inline-flex;
  align-items: center;
}
.featureLineup-social div a {
  width: 26px;
  height: 26px;
  font-size: 22px;
}

.ui-dialog-title {
  display: none;
}

#dynamicModal {
  min-height: 250px !important;
}

.getUpdatesPageEmailModule .emailSignup .textbox {
  border: 2px solid #7e57c6;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.5);
  padding: 0.375em 0.75em;
  font-family: "OpenSans-Bold";
  background: #fff;
  font-size: 1.125em;
  margin: 1em 0 0.5em;
  min-width: 250px;
}
.getUpdatesPageEmailModule .emailSubmitButton {
  border-radius: 50px !important;
}

body {
  color: #0b0036;
  font: 16px/1.5 "OpenSans-Regular";
}

b,
strong {
  font-family: "OpenSans-ExtraBold";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Anton-Regular";
  font-weight: normal;
  line-height: 1.2;
  margin: 0.5em 0;
}

h1, h3, h4, h5, h6 {
  color: #7e57c6;
}

h2 {
  color: #fa4d09;
}

h1 {
  font-size: 40px;
}
@media screen and (min-width: 450px) {
  h1 {
    font-size: calc(40px + 20 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 30px;
}
@media screen and (min-width: 450px) {
  h2 {
    font-size: calc(30px + 10 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 26px;
}
@media screen and (min-width: 450px) {
  h3 {
    font-size: calc(26px + 4 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-size: 22px;
}
@media screen and (min-width: 450px) {
  h4 {
    font-size: calc(22px + 4 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  h4 {
    font-size: 26px;
  }
}

h5 {
  font-size: 18px;
}
@media screen and (min-width: 450px) {
  h5 {
    font-size: calc(18px + 4 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  h5 {
    font-size: 22px;
  }
}

h6 {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  h6 {
    font-size: calc(16px + 2 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  h6 {
    font-size: 18px;
  }
}

a {
  color: #7e57c6;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.header a,
.footer a {
  text-decoration: none;
}

input.textbox,
select.dropdown,
textarea.multi {
  color: #0b0036;
  font: 16px/1.5 "OpenSans-Regular";
  padding: 2px 6px;
}

.fa {
  color: #0b0036;
}
.fa.fa-print {
  color: #fff;
}

.show-lightbox h2 {
  color: #fff;
}

.error {
  font: 14px/1.5 "OpenSans-ExtraBold";
  font-weight: normal;
  color: #fa4d09;
}

.small.bc {
  font: 12px/1 "OpenSans-Bold";
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

a.small.bc:hover {
  text-decoration: underline;
}

#MainContent_content_smp_breadcrumbs {
  padding: 1.5em 4.4% 0;
  text-align: right;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.saffireMobileSize #MainContent_content_smp_breadcrumbs {
  padding: 1.5em 8vw 0;
}
#MainContent_content_smp_breadcrumbs > span.bc svg {
  height: 1.125em;
  margin: 0 0.25em;
}
#MainContent_content_smp_breadcrumbs > span.bc svg path {
  fill: #7e57c6;
}
#MainContent_content_smp_breadcrumbs > span.bc:last-child {
  color: #fa4d09;
}

/***************** CONTAINERS **************************/
body {
  background: #fff;
}
body.homepage {
  background: #211564;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  padding-top: 0;
}
.generalMessageOn .wrapper {
  padding-top: 40px;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    padding-top: 65px;
  }
  .generalMessageOn .wrapper {
    padding-top: 105px;
  }
}
body:not(.homepage) .wrapper {
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage) .wrapper {
    padding-top: 70px;
  }
}
body:not(.homepage).generalMessageOn .wrapper {
  padding-top: 140px;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).generalMessageOn .wrapper {
    padding-top: 110px;
  }
}

body:not(.homepage) .content {
  box-sizing: border-box;
  position: relative;
  max-width: calc(1200px + 4em);
  margin: 0 auto 0px;
  padding: 2em;
  background: #fff;
}

body:not(.homepage).dynamic-page .content {
  max-width: 100%;
  padding: 0;
}
body:not(.homepage).dynamic-page #MainContent_content_smp_breadcrumbs {
  padding-left: 2em;
  display: block;
}
body:not(.homepage).dynamic-page .entityContainerColumn {
  padding: 0;
}
body:not(.homepage).dynamic-page .entityContainerRow {
  box-sizing: border-box;
  width: calc(1200px + 4em);
  max-width: 100%;
  margin: 0 auto;
  padding: 1em 2em;
}

.saffireMobileSize.homepage .content,
.saffireLargeSize.homepage .content {
  position: relative;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: none;
}

.tier-one {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.tier-one__content {
  box-sizing: border-box;
  position: absolute;
  top: 210px;
  left: 0;
  width: 100%;
  padding: 0 4.4%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .tier-one__content {
    position: static;
    background: #08002f;
    padding: 1.25em 0 1.5em;
    align-items: center;
  }
}
.tier-one__content .presented-by {
  display: none;
}
@media screen and (max-width: 1200px) {
  .tier-one__content .presented-by {
    display: block;
    width: 320px;
  }
}
.tier-one .custom-tix-btn {
  margin-top: 0.675em;
}
.tier-one .custom-tix-btn {
  font-size: 35px;
}
@media screen and (min-width: 1200px) {
  .tier-one .custom-tix-btn {
    font-size: calc(35px + 20 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  .tier-one .custom-tix-btn {
    font-size: 55px;
  }
}
@media screen and (max-width: 1200px) {
  .tier-one .custom-tix-btn {
    display: none;
  }
}

.section-tier-two {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 4.4%;
  background: url(images/tier-two-shape.svg) center/cover no-repeat;
  z-index: 2;
  margin-top: -15.5vw;
  height: 39.5vw;
}
@media screen and (max-width: 1200px) {
  .section-tier-two {
    justify-content: center;
    height: auto;
    padding: 0;
    margin-top: 0;
  }
}
.section-tier-two #ferris-wheel {
  width: 46vw;
  height: 38vw;
  position: relative;
  top: -1vw;
}
@media screen and (max-width: 1200px) {
  .section-tier-two #ferris-wheel {
    display: none;
  }
}

.section-tier-three {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: calc(50% - 1.25em) calc(50% - 1.25em);
  grid-gap: 2.5em;
  flex-wrap: wrap;
  background: #0b0036 url(images/t3-bg.jpg) center top/cover no-repeat;
  margin-top: -8vw;
  padding: 13vw 4.4%;
}
.section-tier-three .t3-tix-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding: 3vw 0 2vw;
  grid-column: 1/3;
}
@media screen and (max-width: 1200px) {
  .section-tier-three .t3-tix-btn-wrapper {
    order: 3;
    padding: 1.25em 0 5vw;
    background: #fff;
  }
}
.section-tier-three .custom-tix-btn {
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .section-tier-three {
    display: flex;
    padding: 9.5em 0 0;
    grid-gap: 0;
    margin-top: -6em;
    background: #0b0036;
  }
}

.section-tier-four {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44vw;
  background: #fa4d09;
  z-index: 2;
}
@media screen and (min-width: 1600px) {
  .section-tier-four {
    max-height: calc(800px + 0vw);
  }
}
@media screen and (max-width: 1200px) {
  .section-tier-four {
    height: auto;
    border-top: 5vw solid #fff;
    background: #fff;
  }
}
.section-tier-four:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  display: block;
  width: 100%;
  height: 3vw;
  background: #fa4d09;
  -webkit-clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 1200px) {
  .section-tier-four:before {
    display: none;
  }
}
body:not(.homepage) .section-tier-four:before {
  display: block;
  top: 1.5vw;
  height: 5vw;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage) .section-tier-four:before {
    height: 6vw;
  }
}
body:not(.homepage).saffireMobileSize .section-tier-four:before {
  height: 10vw;
}
body:not(.homepage) .section-tier-four {
  height: auto;
  background: none;
  top: 1px;
}

.section-tier-four-inner {
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(0deg, rgb(70, 0, 161) 0%, rgb(47, 0, 80) 100%);
  width: 100%;
  height: calc(100% + 4.25vw);
  -webkit-clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
          clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  margin-top: -4.25vw;
}
@media screen and (max-width: 1200px) {
  .section-tier-four-inner {
    display: none;
    -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 90%, 0% 100%);
            clip-path: polygon(0 8%, 100% 0%, 100% 90%, 0% 100%);
  }
}
body:not(.homepage) .section-tier-four-inner {
  display: none;
}
.section-tier-four-inner .t4-bg-d,
.section-tier-four-inner .t4-bg-m {
  width: 54%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
}
body:not(.homepage) .section-tier-four-inner .t4-bg-d,
body:not(.homepage) .section-tier-four-inner .t4-bg-m {
  display: none;
}
.section-tier-four-inner .t4-bg-d {
  display: none;
}
@media screen and (min-width: 1201px) {
  .section-tier-four-inner .t4-bg-d {
    display: block;
  }
}
.section-tier-four-inner .t4-bg-m {
  display: none !important;
}
@media screen and (min-width: 1201px) {
  .section-tier-four-inner .t4-bg-m {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .section-tier-four-inner .t4-bg-m {
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
  }
}

.section-tier-five {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.5));
  margin-bottom: -8vw;
  z-index: 1;
}
body:not(.homepage) .section-tier-five {
  display: none;
}
.section-tier-five .section-tier-five-inner {
  box-sizing: border-box;
  width: 100%;
  padding: 3.75% 0 8vw;
  -webkit-clip-path: polygon(100% 0, 100% 82%, 18% 98%, 0 88%, 0 0);
          clip-path: polygon(100% 0, 100% 82%, 18% 98%, 0 88%, 0 0);
  background-color: #fff;
}
@media screen and (min-width: 1600px) {
  .section-tier-five .section-tier-five-inner {
    padding-bottom: 6vw;
  }
}
@media screen and (min-width: 1201px) {
  .section-tier-five .section-tier-five-inner {
    padding-top: 3.75em;
  }
}
@media screen and (max-width: 700px) {
  .section-tier-five .section-tier-five-inner {
    padding-top: 5.75%;
  }
}
.section-tier-five .t5-static-sponsor {
  display: block;
  margin: 0 auto 3%;
  width: 550px;
  max-width: 83.2% !important;
}
@media screen and (min-width: 1201px) {
  .section-tier-five .t5-static-sponsor {
    margin-bottom: 3em;
  }
}

.subContainer {
  background: #eee;
  color: #0b0036;
}

.dateDisplayBar,
.dateDisplay {
  background: #7e57c6;
  color: #fff;
}
.dateDisplayBar a,
.dateDisplay a {
  color: #fff;
}

#google_translate_element { /* |%  Google translate position */
  top: 15px;
  right: 30px;
}

.mapLegend {
  padding: 10px;
}

.orderhistory {
  background: #7e57c6;
}

.orderhistory th {
  color: #fff;
  padding: 8px 3px;
}

.alternateRow {
  background: #eee;
}

.listingItem {
  background: #eee;
  border-bottom: 1px solid #d5d5d5;
}
.listingItem:hover {
  background: #f6f6f6;
}

.saffireMobileSize .afterContent {
  display: block;
}

.generalmessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #7e57c6;
  font-family: "OpenSans-Regular";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  transition: 0.2s;
  z-index: 1;
}
.generalmessage a {
  color: inherit;
  text-decoration: underline;
}

.saffireMobileSize .generalmessage {
  height: 40px;
  font-size: 14px;
  line-height: 1.2;
  transition: 0.2s;
}
@media screen and (max-width: 500px) {
  .saffireMobileSize .generalmessage {
    font-size: 12px;
  }
}

.saffireWindowScrolled .generalmessage {
  height: 0;
  font-size: 0;
  transition: 0.2s;
}

.header, .saffireMobileSize .header {
  position: fixed;
  top: 0;
  z-index: 9999999999;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.headerInnerContent {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: static !important;
}

body:not(.homepage).saffireLargeSize .header-main,
.saffireLargeSize.saffireWindowScrolled.homepage .header-main {
  height: 100px;
  background: #0b0036;
  padding: 0 4.4% 0 0;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).saffireLargeSize .header-main,
.saffireLargeSize.saffireWindowScrolled.homepage .header-main {
    background: #211564;
    height: 70px;
  }
}

.saffireLargeSize.homepage .header-main {
  background: transparent;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize.homepage .header-main {
    background: #211564;
  }
}

@media screen and (max-width: 1200px) {
  .header-main {
    background: #211564;
  }
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 4.4%;
}
@media screen and (max-width: 1200px) {
  .header-main {
    justify-content: flex-end;
    height: 70px;
    padding: 0 4.4%;
  }
}
.saffireMobileSize .header-main {
  padding: 0 8vw;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
}

.header-right {
  z-index: 2;
}
body:not(.homepage) .header-right .presented-by, .saffireWindowScrolled .header-right .presented-by {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header-right .presented-by {
    display: none;
  }
}

.header-left {
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .header-left {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.2s;
  }
  .generalMessageOn .header-left {
    top: 40px;
    transition: 0.2s;
  }
  .saffireWindowScrolled.generalMessageOn .header-left {
    top: 0px;
    transition: 0.2s;
  }
}
.header-left .presented-by {
  display: none;
}
.saffireWindowScrolled .header-left .presented-by {
  display: block;
}
body:not(.homepage) .header-left .presented-by {
  display: block;
}
@media screen and (max-width: 1200px) {
  .header-left .presented-by {
    display: none !important;
  }
}
.header-left:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: none;
  width: 696px;
  height: 137px;
  background: url(images/header-shapes.png) center/contain no-repeat;
  z-index: 999;
  transition: 0.2s;
  transition-property: top;
}
.generalMessageOn .header-left:before {
  top: 40px;
  transition: 0.2s;
  transition-property: top;
}
@media screen and (max-width: 1200px) {
  .generalMessageOn .header-left:before {
    top: 0px;
    transition: 0.2s;
    transition-property: top;
  }
}
.saffireWindowScrolled.generalMessageOn .header-left:before {
  top: 0px;
  transition: 0.2s;
  transition-property: top;
}
.saffireLargeSize.saffireWindowScrolled .header-left:before {
  display: block;
}
body:not(.homepage).saffireLargeSize .header-left:before {
  display: block;
}
@media screen and (max-width: 1200px) {
  .header-left:before {
    position: relative;
    display: block !important;
  }
}
@media screen and (max-width: 1200px) {
  .header-left:before {
    background-image: url(images/header-shape-mobile.png);
    filter: drop-shadow(2px -2px 6px rgba(0, 0, 0, 0.5));
    left: -1px;
    width: 153px;
    height: 77px;
  }
}

.header-bottom {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  background: transparent;
  padding: 35px 35px 15px;
}
.saffireWindowScrolled .header-bottom {
  display: none;
}
body:not(.homepage).saffireLargeSize .header-bottom {
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #08002f;
    padding: 35px 15px;
  }
}

.hidden-default-widgets {
  display: none !important;
}

.header-logo {
  position: relative;
  top: 0px;
  left: 1.5em;
  display: block;
  width: 146px;
  height: 83px;
  background: url(images/logo.png) center/contain no-repeat;
  image-rendering: -webkit-optimize-contrast;
  z-index: 999999;
}
.saffireLargeSize.homepage .header-logo {
  width: 260px;
  height: 150px;
  background: url(images/homepage-logo.png) center/contain no-repeat;
  transition: 0.2s;
}
.saffireLargeSize.saffireWindowScrolled.homepage .header-logo {
  width: 146px;
  height: 83px;
  background: url(images/logo.png) center/contain no-repeat;
  transition: 0.2s;
  left: 1.5em;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize .header-logo, .saffireMobileSize .header-logo {
    position: absolute;
    top: 5px;
    left: 1.5em;
    width: 96px !important;
    height: 56px !important;
    background: url(images/logo.png) center/contain no-repeat !important;
  }
}

.presented-by {
  position: relative;
  display: block;
  width: 400px;
  height: 31px;
  background: url(images/ford.png) center/contain no-repeat;
  image-rendering: -webkit-optimize-contrast;
}
.header-left .presented-by {
  background: url(images/ford-short.png) center/contain no-repeat;
  margin-left: 100px;
  width: 270px;
}
@media screen and (max-width: 1280px) {
  .header-left .presented-by {
    width: 225px;
  }
}
.header-right .presented-by {
  margin-right: 50px;
}
@media screen and (max-width: 1200px) {
  .presented-by {
    width: 400px;
    height: 40px;
  }
}
@media screen and (max-width: 800px) {
  .presented-by {
    width: 320px;
    height: 30px;
  }
}

.afterHeader {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3em 4.4%;
}
@media screen and (max-width: 1200px) {
  .afterHeader {
    padding: 1em 0;
  }
}
.afterHeader .presented-by {
  display: none;
  background: url(images/ford-blue.png) center/contain no-repeat;
  margin-bottom: 1em;
}
@media screen and (max-width: 1200px) {
  .afterHeader .presented-by {
    display: block;
    margin-bottom: 0;
  }
}

.saffireLargeSize .ticket, .saffireMobileSize a.ticket {
  box-sizing: border-box;
  position: relative !important;
  display: flex;
  align-items: center;
  background: #fa4d09;
  color: #fff;
  font-family: "Anton-Regular";
  text-transform: uppercase;
  border-radius: 25px !important;
  box-shadow: 0px 0px 20px 0px rgba(250, 77, 9, 0.85);
  overflow: hidden !important;
  transition: 0.2s;
}
.saffireLargeSize .ticket:hover, .saffireMobileSize a.ticket:hover {
  background: #ecbb33;
  color: #0b0036;
  box-shadow: 0px 0px 20px 0px rgba(236, 187, 51, 0.85);
  transition: 0.2s;
}
.saffireLargeSize .ticket:before, .saffireMobileSize a.ticket:before {
  position: absolute;
  top: -0.25em;
  right: 0.5em;
  content: "";
  width: 1.563em;
  height: 3.125em;
  background: url(images/ticket.png) center/contain no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.saffireLargeSize .ticket {
  font-size: 16px;
  width: auto;
  height: 1.818em;
  font-size: 1.375em;
  padding: 0 2.5em 0 1em;
  margin: 0;
  margin-left: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize .ticket {
    height: 2em;
    font-size: 1em;
    padding: 0 2.5em 0 1em;
  }
}

.saffireLargeSize.homepage .header-main .ticket {
  display: none;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize.homepage .header-main .ticket {
    display: flex;
  }
}

.saffireLargeSize.saffireWindowScrolled.homepage .ticket {
  display: flex;
  margin-left: 1.5rem;
}

.saffireLargeSize.homepage .tier-one__content .ticket {
  width: 400px;
  height: 95px;
  font-size: 53px;
  border-radius: 50px !important;
  padding: 0 50px;
  margin: 40px 0 0;
  text-decoration: none;
}
.saffireLargeSize.homepage .tier-one__content .ticket:before {
  top: 6px;
  right: 24px;
  height: 115px;
  width: 80px;
}

body:not(.homepage).saffireLargeSize .tier-one__content .ticket {
  display: none;
}

@media screen and (max-width: 1200px) {
  .tier-one__content .ticket {
    display: none;
  }
}

.saffireMobileSize a.ticket,
.saffireMobileSize a.ticket:hover {
  top: auto !important;
  display: flex !important;
  width: auto;
  height: 2em;
  font-size: 1em;
  padding: 0 2.5em 0 1em;
  margin: 0;
}

.header .searchBox:not(.clonedSearchBox) {
  position: relative;
  display: flex;
  align-items: center;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input {
  height: 40px;
  width: 170px;
  padding: 0 83px 0 25px;
  font-size: 22px;
  font-family: "Anton-Regular";
  text-transform: uppercase;
  color: #fff;
  background: #7e57c6;
  border: 0;
  border-radius: 25px !important;
  box-shadow: 0px 0px 20px 0px rgba(126, 87, 198, 0.85);
  text-overflow: ellipsis;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input::placeholder {
  opacity: 1;
  color: #fff;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input:focus {
  outline: none;
  width: 250px;
  border: 3px solid #7e57c6;
  background: transparent;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input:focus::placeholder {
  opacity: 0.75;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton {
  position: absolute;
  top: 0;
  right: 15px;
  display: block;
  padding: 0;
  height: 40px;
  width: 44px;
  background: url(images/search.png) transparent center/contain no-repeat;
  border-radius: 0 !important;
  font-size: 0;
  background-size: cover;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox):focus-within .searchSubmitButton {
  width: 28px;
  background-size: contain;
  transition: 0.2s;
}

.saffireLargeSize.homepage .searchBox {
  display: none;
}

.saffireLargeSize.saffireWindowScrolled.homepage .searchBox {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .saffireLargeSize.saffireWindowScrolled.homepage .searchBox {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .header .searchBox:not(.clonedSearchBox) {
    display: none;
  }
}

.header-menu {
  display: flex;
  align-items: center;
  font: 35px/1 "Anton-Regular";
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .header-menu {
    margin-left: 1rem;
  }
}
body:not(.homepage) .header-menu, .saffireWindowScrolled .header-menu {
  margin-left: 50px;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage) .header-menu, .saffireWindowScrolled .header-menu {
    margin-left: 1rem;
    font-size: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu {
    font-size: 0;
  }
}
.header-menu:after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 3.125rem;
  background: url(images/menu.png) center/contain no-repeat;
  margin-left: 20px;
}
@media screen and (max-width: 1200px) {
  .saffireWindowScrolled .header-menu:after {
    width: 1.75rem;
    height: 35px;
    margin-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header-menu:after {
    width: 1.75rem;
    height: 35px;
    margin-left: 0;
  }
}
.header-menu:hover:after {
  filter: brightness(0) invert(1);
}

/*********************** FOOTER **************************/
.footer { /* set the height of the footer */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
.footer > .socialNetworks {
  display: none !important;
}
.footer .footer-left,
.footer .footer-right {
  box-sizing: border-box;
  flex: 1 1 50%;
}
@media screen and (max-width: 1200px) {
  .footer .footer-left,
.footer .footer-right {
    flex: 1 1 100%;
  }
}
.footer .emailSignup {
  display: none !important;
}
.footer .footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14vw 2.2% 1em;
  background: linear-gradient(0deg, rgb(50, 0, 89) 0%, rgb(75, 0, 176) 100%);
}
@media screen and (max-width: 1200px) {
  .footer .footer-left {
    padding-bottom: 15vw;
    padding-top: 16vw;
    margin-bottom: -10vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0% 100%);
    text-align: center;
  }
}
@media screen and (min-width: 1201px) {
  body:not(.homepage) .footer .footer-left {
    padding: 10vw 2.2% 1em;
  }
}
.footer .ft-email-signup {
  font-size: 1.313em;
  max-width: 31.25em;
  width: 100%;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 1200px) {
  .footer .ft-email-signup {
    margin-bottom: 1em;
  }
}
.footer .ft-email-signup span {
  display: block;
}
.footer .ft-email-signup span:last-of-type {
  font-size: 10px;
}
@media screen and (min-width: 450px) {
  .footer .ft-email-signup span:last-of-type {
    font-size: calc(10px + 11 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .footer .ft-email-signup span:last-of-type {
    font-size: 21px;
  }
}
.footer .ft-email-signup__field {
  display: flex;
  background: linear-gradient(45deg, rgb(250, 77, 9) 0%, rgb(250, 77, 9) 16%, rgb(211, 9, 251) 36%, rgb(8, 238, 163) 53%, rgb(8, 238, 163) 100%);
  border-radius: 500px;
  padding: 0.125em;
  margin: 1em 0;
}
.footer .ft-email-signup__field {
  font-size: 10px;
}
@media screen and (min-width: 450px) {
  .footer .ft-email-signup__field {
    font-size: calc(10px + 11 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .footer .ft-email-signup__field {
    font-size: 21px;
  }
}
@media screen and (max-width: 1200px) {
  .footer .ft-email-signup__field {
    margin: 2em auto;
    max-width: 32em;
  }
}
.footer .ft-email-signup__input {
  background: #32005c url(images/envelope-regular.svg) 1.5em center/1.5em no-repeat;
  color: #fff;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  border: none;
  padding: 1em 3em 1em 4em;
  width: 100%;
  font-size: inherit;
}
.footer .ft-email-signup__input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
.footer .ft-email-signup__input::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.footer .ft-email-signup__submit {
  display: flex;
  align-items: center;
  line-height: 1;
  border-radius: 500px;
  color: #32005c;
  background-color: #08eea3;
  font-family: "Anton-Regular", sans-serif;
  text-transform: uppercase;
  padding: 0 1em;
  margin-left: -1em;
  transition: 0.2s;
}
.footer .ft-email-signup__submit {
  font-size: 17px;
}
@media screen and (min-width: 450px) {
  .footer .ft-email-signup__submit {
    font-size: calc(17px + 19 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .footer .ft-email-signup__submit {
    font-size: 36px;
  }
}
.footer .ft-email-signup__submit:hover, .footer .ft-email-signup__submit:focus {
  cursor: pointer;
  background-color: #7e57c6;
  color: #fff;
  transition: 0.2s;
}
.footer .ft-connect {
  font-size: 1.313em;
  max-width: 31.25em;
  width: 100%;
}
.footer .ft-connect .ft-heading {
  margin-bottom: 0.875em;
}
.footer .ft-connect__social {
  display: flex;
  align-items: center;
  line-height: 1;
  font-family: "Anton-Regular", sans-serif;
  color: #fa4d09;
}
.footer .ft-connect__social {
  font-size: 18px;
}
@media screen and (min-width: 450px) {
  .footer .ft-connect__social {
    font-size: calc(18px + 27 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .footer .ft-connect__social {
    font-size: 45px;
  }
}
@media screen and (max-width: 1200px) {
  .footer .ft-connect__social {
    justify-content: center;
  }
}
.footer .ft-connect .socialNetworks a {
  margin: 0.25em 0.25em 0.25em 0;
}
.footer .ft-heading {
  display: block;
  font-family: "Anton-Regular", sans-serif;
  line-height: 1;
  color: #08eea3;
  text-transform: uppercase;
}
.footer .ft-heading {
  font-size: 24px;
}
@media screen and (min-width: 450px) {
  .footer .ft-heading {
    font-size: calc(24px + 21 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .footer .ft-heading {
    font-size: 45px;
  }
}
.footer .footer-right {
  padding: 10.5vw 2.2% 1em;
  background: #140432 url(images/footer-coaster.png) bottom right/98% no-repeat;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .footer .footer-right {
    padding-top: 15vw;
  }
}
@media screen and (min-width: 1201px) {
  body:not(.homepage) .footer .footer-right {
    padding: 6.5vw 2.2% 1em;
  }
}
.footer .footer-right__heading {
  position: static;
  display: block;
  width: 100%;
  font: 400 5.25em/1.1 "Anton-Regular";
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  transform: skew(0deg, -4.5deg);
}
.footer .footer-right__heading {
  font-size: 38px;
}
@media screen and (min-width: 450px) {
  .footer .footer-right__heading {
    font-size: calc(38px + 46 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .footer .footer-right__heading {
    font-size: 84px;
  }
}
@media screen and (max-width: 1200px) {
  .footer .footer-right__heading {
    transform: skew(0deg, -6deg);
  }
}
.footer .footer-right__heading span {
  display: inline-block;
  background: #fff;
  color: #fa4d09;
  padding: 0 0.125em;
}
.footer .footer-right__logo {
  display: block;
}
.footer .footer-right__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-right img {
  display: block;
  width: 50%;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 1200px) {
  .footer .footer-right img {
    margin-bottom: 2em;
  }
}
.footer .footer-right .custom-tix-btn {
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.footer .footer-right__address {
  color: #c2d501;
  font-size: 1.125em;
}
.footer .copyright-wrapper,
.footer .powered-by-saffire {
  color: #c2d501;
  font-size: 0.75em;
}
@media screen and (max-width: 1200px) {
  .footer .copyright-wrapper,
.footer .powered-by-saffire {
    font-size: 0.6em;
  }
}
.footer .copyright-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 3.333em auto;
}
@media screen and (max-width: 1200px) {
  .footer .copyright-wrapper {
    margin: 1.333em auto;
    flex-direction: column;
  }
}
.footer .terms-link {
  margin-left: 0.5em;
}
@media screen and (max-width: 1200px) {
  .footer .terms-link {
    margin: 1em auto;
  }
  .footer .terms-link span {
    display: none;
  }
}
.footer .terms-link a {
  color: inherit;
}
.footer .footer-navigation {
  margin: 0;
}
.footer .powered-by-saffire a {
  display: inline-block;
}
.footer .powered-by-saffire svg path {
  fill: #c2d501;
}

.mobile-menu-container {
  background-color: #fff;
}
.mobile-menu-container .mobile-menu-header {
  background-color: #fff;
}
.mobile-menu-container .close-mobile-menu:before, .mobile-menu-container .close-mobile-menu:after {
  background-color: #333;
}
.mobile-menu-container .mobile-menu-subheader,
.mobile-menu-container .mobile-menu-subheader-btn {
  background-color: #ccc;
}
.mobile-menu-container .mobile-menu-subheader a, .mobile-menu-container .mobile-menu-subheader i,
.mobile-menu-container .mobile-menu-subheader-btn a,
.mobile-menu-container .mobile-menu-subheader-btn i {
  color: #333;
}
.mobile-menu-container .mobile-menu-login-showlinks .mobile-menu-login .mobile-menu-subheader-btn,
.mobile-menu-container .mobile-menu-subheader-btn:active {
  background-color: #b3b3b3;
}
.mobile-menu-container .mobile-menu-login-links a {
  font-family: "OpenSans-Regular";
}
.mobile-menu-container .cart-counter {
  font-family: "OpenSans-Regular";
}
.mobile-menu-container .search-container input[type=text] {
  font-family: "OpenSans-Regular";
  -webkit-appearance: none;
  border-radius: 0px;
  height: 50px;
}
.mobile-menu-container .search-container .fa-search {
  color: #0b0036;
}
.mobile-menu-container .mobile-menu-ticket-btn {
  background-color: #ddd;
  font-family: "OpenSans-Regular";
  color: #333;
  border-color: #fff;
}
.mobile-menu-container .mobile-menu-footer-links a {
  font-family: "OpenSans-Regular";
  color: #333;
}

#mobile-nav ul {
  background-color: #fff;
}
#mobile-nav li {
  margin: 0;
}
#mobile-nav li.m-group, #mobile-nav li.m-item, #mobile-nav li.m-subitem {
  border-bottom: 1px solid #fff;
}
#mobile-nav a {
  background-color: #ddd;
  font-family: "OpenSans-Regular";
  color: #333;
}
#mobile-nav a:hover {
  background-color: #c4c4c4;
}
#mobile-nav .has-subitems span {
  background-color: #ccc;
  color: #333;
}
#mobile-nav .has-subitems span:hover {
  background-color: #b3b3b3;
}

/************************* MODAL CONTENT ********************/
.ui-dialog {
  background: #fff;
  box-shadow: 0 0 10px -5px #444;
}

.modal {
  background: #fff;
  padding-top: 15px;
  border: 10px solid #fff;
}

.modalBody { /* |%  set modal background color if not white */
  background: #fff;
  padding: 14px;
}
.modalBody .showorksModalTitle { /* |%  set font-family */
  font-size: 32px;
  line-height: 36px;
}
.modalBody .showorksBreadcrumbs { /* |%  set font-family */
  font-size: 20px;
  color: #7e57c6;
  line-height: 22px;
}
.modalBody .showorksTableGrid th { /* |%  set font-family */
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding-bottom: 7px;
  padding-top: 7px;
}
.modalBody .showorksTableGrid td {
  color: #0b0036;
}
.modalBody .showorksTableGrid tr.odd {
  background: #fff;
  color: black;
}
.modalBody .showorksTableGrid tr.even {
  background: #e6e6e6;
  color: black;
}

.modalPageBackground {
  background-color: black;
  opacity: 0.5;
}

.modalContent #google_translate_element {
  top: 1px;
  right: 0;
}
.modalContent h1 {
  font-size: 24px;
  line-height: 1.2em;
}

.modalClose {
  top: 1px;
  background: none;
}
.modalClose .modalCloseButton {
  min-width: 40px;
}
.modalClose .modalCloseButton img {
  display: none;
}
.modalClose .modalCloseButton:before {
  content: "X";
  font-family: sans-serif;
}

.getUpdatesPageEmailModule .emailSignup.modalOnly {
  max-width: 280px;
  margin: 0 auto;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .inputFieldTextbox {
  box-sizing: border-box;
  border-radius: 0 !important;
  border: 1px solid #333;
  padding: 5px 10px;
  color: #333;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .emailSubmitButton {
  border-radius: 0 !important;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .button {
  box-sizing: border-box;
}

.saffireMobileSize.modalBody a[onclick*="Unsubscribe.ascx"] {
  margin-top: -25px;
}

.nav-menu-panel {
  display: none;
  box-sizing: border-box;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  background: rgba(126, 87, 198, 0.75);
  padding: 2%;
  overflow: auto;
  opacity: 0;
  animation-name: menuFadeIn;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
@keyframes menuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.nav-menu-panel.menu-open {
  display: block;
}
.nav-menu-panel__content {
  box-sizing: border-box;
  position: relative;
  width: 1550px;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  background: #0b0036;
  padding: 6rem 7rem;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__content {
    padding: 5rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__content {
    padding: 3.5rem 1.75rem 1.75rem;
  }
}
.nav-menu-panel__content:before {
  content: "";
  position: absolute;
  top: calc(0% - 0.125rem);
  left: calc(0% - 0.125rem);
  display: block;
  width: calc(100% + 0.25rem);
  height: calc(100% + 0.25rem);
  background: linear-gradient(45deg, rgb(250, 77, 9) 0%, rgb(250, 77, 9) 16%, rgb(211, 9, 251) 36%, rgb(8, 238, 163) 53%, rgb(8, 238, 163) 100%);
  z-index: -1;
  box-shadow: 0 0.25rem 1rem 0.25rem rgba(0, 0, 0, 0.5);
}
.nav-menu-panel__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  z-index: 1;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  background: url(images/close-icon.png) center/contain no-repeat;
}
.nav-menu-panel__close:hover {
  cursor: pointer;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__close {
    top: 1rem;
    right: 1.75rem;
    width: 2rem;
    height: 2rem;
  }
}
.nav-menu-panel .custom-tix-btn {
  margin: 0 auto 1em;
  font-size: 3em;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel .custom-tix-btn {
    font-size: 2em;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel .custom-tix-btn {
    font-size: 1.35em;
    padding-right: 2em;
  }
}
.nav-menu-panel .nav-menu-panel__inner__button {
  font-size: 3em;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel .nav-menu-panel__inner__button {
    font-size: 2em;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel .nav-menu-panel__inner__button {
    font-size: 1.35em;
  }
}
.nav-menu-panel .nav-menu-panel__inner__button.button--megapass {
  position: relative;
  background: #7e57c6;
  color: #7e57c6 !important;
  border-radius: 500px;
  line-height: 1;
  display: flex;
  margin: 0 auto;
  width: 7.675em;
  padding: 0.375em 2.175em 0.35em 1em;
  box-sizing: border-box;
  overflow: hidden;
}
.nav-menu-panel .nav-menu-panel__inner__button.button--megapass:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg) scale(1);
  width: 70%;
  height: 137%;
  background: url(images/mega-ride-pass.png) center/cover no-repeat;
  transition: 0.2s;
  transition-property: transform;
}
.nav-menu-panel .nav-menu-panel__inner__button.button--megapass:hover {
  background: #643baf;
  color: #643baf !important;
}
.nav-menu-panel .nav-menu-panel__inner__button.button--megapass:hover:after {
  transform: translate(-50%, -50%) rotate(-5deg) scale(0.9);
  transition: 0.2s;
  transition-property: transform;
}
.nav-menu-panel .socialNetworks {
  display: flex;
  justify-content: center;
  margin-top: 6em;
  flex-wrap: wrap;
}
.nav-menu-panel .socialNetworks a {
  margin: 0.5em 1em;
}
.nav-menu-panel .socialNetworks a:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel .socialNetworks {
    margin-top: 3em;
  }
  .nav-menu-panel .socialNetworks a {
    margin: 0.5em 0.5em;
    max-width: 3em;
    max-height: 3em;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel .socialNetworks {
    margin: 0;
  }
  .nav-menu-panel .socialNetworks a {
    margin: 0.25em 0 0.25em 0.5em;
  }
}
.nav-menu-panel__inner, .nav-menu-panel__bottom {
  display: flex;
  align-items: center;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__inner, .nav-menu-panel__bottom {
    flex-wrap: wrap;
  }
}
.nav-menu-panel__bottom {
  flex-wrap: wrap;
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__bottom {
    margin-top: 2em;
  }
}
.nav-menu-panel__bottom__links {
  display: flex;
  justify-content: center;
  flex: 1 1 100%;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__bottom__links {
    justify-content: flex-start;
    flex-direction: column;
  }
}
.nav-menu-panel__bottom__links a {
  font: 700 1.75rem/1 "OpenSans-Regular", sans-serif;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  padding: 0 0.75em;
  margin: 1em 0em;
  border-right: 2px solid #7e57c6;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__bottom__links a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__bottom__links a {
    font-size: 1rem;
    padding: 0.5em 0;
    margin: 0;
    border-right: none;
    border-bottom: 1px solid #7e57c6;
  }
}
.nav-menu-panel__bottom__links a:last-child {
  border: none;
}
.nav-menu-panel__bottom__links a:hover {
  text-decoration: underline;
}
.nav-menu-panel__translate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "OpenSans-Bold";
  font-size: 1.5em;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__translate {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__translate {
    font-size: 0.75rem;
  }
}
.nav-menu-panel #google_translate_element {
  position: static;
  margin-left: 1em;
  margin-bottom: 0;
}
.nav-menu-panel #google_translate_element img {
  display: none;
}
.nav-menu-panel #google_translate_element .goog-te-gadget {
  font-size: inherit;
  color: #fff;
  font-family: inherit;
}
.nav-menu-panel #google_translate_element .goog-te-gadget-simple {
  border: none;
  font-size: inherit;
  padding: 0;
  background-color: transparent;
}
.nav-menu-panel #google_translate_element a {
  display: flex;
  align-items: center;
  font-size: inherit !important;
  background-color: #7e57c6;
  padding: 0.25em 1em 0.35em;
  min-width: 200px;
  font-family: "OpenSans-Bold" !important;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel #google_translate_element a {
    min-width: 100px;
  }
}
.nav-menu-panel #google_translate_element a span {
  color: #fff;
  font-family: inherit;
}
.nav-menu-panel #google_translate_element a span:last-child {
  font-size: 0;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  background: url(images/angle-down-solid.svg) center right/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__inner-right {
    display: flex;
    align-items: center;
    margin: 2em 0 0;
    width: 100%;
    justify-content: space-between;
  }
}
.nav-menu-panel .nav-menu-panel__nav, .nav-menu-panel__inner-right {
  flex: 1 1 50%;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel .nav-menu-panel__nav, .nav-menu-panel__inner-right {
    flex: 1 1 100%;
  }
}

.nav-menu-panel__nav {
  position: relative;
  border-right: 1px solid #7e57c6;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav {
    border-right: none;
  }
}
.nav-menu-panel__nav ul,
.nav-menu-panel__nav li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.nav-menu-panel__nav a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav a {
    width: 100%;
    max-width: calc(80% - 30px);
  }
}
.nav-menu-panel__nav .nav-items-1__item {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item {
    padding-right: 0;
  }
}
.nav-menu-panel__nav .nav-items-1__item:after {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  width: 0;
  height: 0;
  border-top: 1.25em solid transparent;
  border-bottom: 1.25em solid transparent;
  border-right: 1.75em solid #fa4d09;
}
.nav-menu-panel__nav .nav-items-1__item:hover {
  cursor: pointer;
}
.nav-menu-panel__nav .nav-items-1__item.expanded .nav-items-2 {
  display: block;
}
.nav-menu-panel__nav .nav-items-1__item.expanded::after {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item.expanded::after {
    display: none;
  }
}
.nav-menu-panel__nav .nav-items-1__item.expanded > div a, .nav-menu-panel__nav .nav-items-1__item.expanded > div span:first-child {
  color: #fa4d09;
}
.nav-menu-panel__nav .nav-items-1__item.expanded > div span:first-child {
  color: #fa4d09;
}
.nav-menu-panel__nav .nav-items-1__item.expanded > div span:last-child {
  transform: rotateX(180deg);
}
.nav-menu-panel__nav .nav-items-1__item > div a, .nav-menu-panel__nav .nav-items-1__item > div span:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  line-height: 1.2;
  font-family: "Anton-Regular", sans-serif;
  color: #fff;
  font-size: 4rem;
  text-transform: uppercase;
  padding: 0.15em 0;
}
.nav-menu-panel__nav .nav-items-1__item > div a:hover, .nav-menu-panel__nav .nav-items-1__item > div a:focus, .nav-menu-panel__nav .nav-items-1__item > div span:first-child:hover, .nav-menu-panel__nav .nav-items-1__item > div span:first-child:focus {
  cursor: pointer;
  color: #fa4d09;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__nav .nav-items-1__item > div a, .nav-menu-panel__nav .nav-items-1__item > div span:first-child {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item > div a, .nav-menu-panel__nav .nav-items-1__item > div span:first-child {
    font-size: 1.675rem;
  }
}
.nav-menu-panel__nav .nav-items-1__item > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item > div {
    border-bottom: 1px solid #7e57c6;
  }
}
.nav-menu-panel__nav .nav-items-1__item > div span {
  display: none;
}
.nav-menu-panel__nav .nav-items-1__item[data-has-subitems=true] > div span:last-child {
  display: none;
  width: 1.75em;
  height: 1.75em;
  padding-left: 2em;
  background: url(images/angle-down-solid.svg) center right/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item[data-has-subitems=true] > div span:last-child {
    display: inline-flex;
    flex: 0 0 auto;
    width: 100%;
    max-width: 35%;
    padding: 0px;
  }
}
.nav-menu-panel__nav .nav-items-1__item > div a:before, .nav-menu-panel__nav .nav-items-1__item > div span:first-child:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5em;
  flex-shrink: 0;
  position: relative;
  top: 0.1em;
}
.nav-menu-panel__nav .nav-items-1__item:nth-child(1) > div a:before, .nav-menu-panel__nav .nav-items-1__item:nth-child(1) > div span:first-child:before {
  background-image: url(images/guitar-solid.svg);
}
.nav-menu-panel__nav .nav-items-1__item:nth-child(2) > div a:before, .nav-menu-panel__nav .nav-items-1__item:nth-child(2) > div span:first-child:before {
  background-image: url(images/award-solid.svg);
}
.nav-menu-panel__nav .nav-items-1__item:nth-child(3) > div a:before, .nav-menu-panel__nav .nav-items-1__item:nth-child(3) > div span:first-child:before {
  background-image: url(images/circle-info-solid.svg);
}
.nav-menu-panel__nav .nav-items-1__item:nth-child(4) > div a:before, .nav-menu-panel__nav .nav-items-1__item:nth-child(4) > div span:first-child:before {
  background-image: url(images/location-dot-solid.svg);
}
.nav-menu-panel__nav .nav-items-1__item:nth-child(5) > div a:before, .nav-menu-panel__nav .nav-items-1__item:nth-child(5) > div span:first-child:before {
  background-image: url(images/comment-solid.svg);
}
.nav-menu-panel__nav .nav-items-1__item:last-child > div {
  border: none;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2 {
  display: none;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  left: 100%;
  top: 0;
  padding: 1.5em 2.5em;
  background: #fa4d09;
  opacity: 0;
  animation-name: menuSlideIn;
  animation-fill-mode: both;
  animation-duration: 0.4s;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2 {
    opacity: 1;
    animation: none;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2 {
    position: static;
    background: #7e57c6;
    padding: 0;
  }
}
@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:last-child {
  border: none;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item[data-has-subsubitems=true] > div span:last-child {
  display: inline-block;
  width: 1.7em;
  height: 1.75em;
  padding-left: 2em;
  padding-right: 1em;
  background: url(images/angle-down-solid.svg) right center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item[data-has-subsubitems=true] > div span:last-child {
    display: inline-block;
    background-position: calc(100% - 1em) center;
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item.expanded {
  border-bottom: none;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item.expanded .nav-items-3 {
  display: block;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item.expanded > div span:last-child {
  transform: rotateX(180deg);
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div {
    border-bottom: 1px solid #7e57c6;
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div span {
  display: none;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div a, .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div span:first-child {
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-family: "OpenSans-ExtraBold", sans-serif;
  color: #fff;
  font-size: 2em;
  padding: 0.35em 0;
  text-transform: none;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div a, .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div span:first-child {
    font-size: 1em;
    padding: 0.75em 0;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div a, .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item > div span:first-child {
    font-size: 1em;
    padding: 0.75em 1em;
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:hover {
  cursor: pointer;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:hover > div a, .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:hover > div span:first-child {
  color: #211564;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:hover > div a, .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:hover > div span:first-child {
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-2__item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-3 {
  display: none;
  position: static;
  background: #e54405;
  box-shadow: inset 0 3em 0.5em -3em rgba(0, 0, 0, 0.5);
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-3 {
    background-color: #211564;
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-3 .nav-items-3__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-3 .nav-items-3__item:last-child {
  border: none;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-3 .nav-items-3__item:hover {
  cursor: pointer;
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-3 .nav-items-3__item:hover > a {
  color: #211564;
}
@media screen and (max-width: 768px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-3 .nav-items-3__item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
.nav-menu-panel__nav .nav-items-1__item .nav-items-3 a {
  box-sizing: border-box;
  display: block;
  font-family: "OpenSans-Bold", sans-serif;
  color: #fff;
  padding: 0.75em 1.5em;
  font-size: 1.5em;
}
@media screen and (max-width: 1200px), screen and (max-height: 900px) {
  .nav-menu-panel__nav .nav-items-1__item .nav-items-3 a {
    padding: 0.75em 2em;
    font-size: 1em;
    color: #fff !important;
  }
}

.nav-menu-panel .nav-menu-panel__nav ul.nav-items-1 li.nav-items-1__item:first-child .nav-items-2 li.nav-items-2__item:first-child {
  display: block;
}

.nav-menu-panel__nav .nav-items-1__item.expanded .nav-items-2 li.nav-items-2__item:first-child {
  display: none;
}

/************* BUTTON STYLES *********************/
.button {
  padding: 5px 25px;
  font-size: 20px;
}

.button,
.buttonSmall {
  box-sizing: border-box;
  line-height: 1.75em;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Anton-Regular";
  color: #fff !important;
  background: #fa4d09;
  transition: 0.3s;
}

a.buttonSmall.button,
.buttonSmall {
  padding: 5px 15px;
  font-size: 12px;
}

.button:hover,
.buttonSmall:hover {
  background: #ecbb33;
  color: #0b0036 !important;
  transition: 0.3s;
}

a.updateButton.buttonSmall,
a.removeButton.buttonSmall,
a.cartMenuRemoveButton.button.buttonSmall {
  font-size: 12px;
}

.searchMapButton {
  font-size: 15px;
  padding: 2px 20px;
  border-radius: 0 25px 25px 0 !important;
}

.custom-tix-btn {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  width: 7.675em;
  background: #fa4d09;
  color: #fff;
  font-family: "Anton-Regular";
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.375em 2.175em 0.35em 1em;
  box-shadow: 0px 0px 15px 0px rgba(250, 77, 9, 0.85);
  overflow: hidden;
  text-decoration: none !important;
  line-height: 1;
  transition: 0.2s;
  transition-property: background, color, box-shadow;
}
.custom-tix-btn {
  font-size: 35px;
}
@media screen and (min-width: 450px) {
  .custom-tix-btn {
    font-size: calc(35px + 20 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  .custom-tix-btn {
    font-size: 55px;
  }
}
.custom-tix-btn:hover {
  background: #ecbb33;
  color: #0b0036;
  box-shadow: 0px 0px 20px 0px rgba(236, 187, 51, 0.85);
  transition: 0.2s;
}
.custom-tix-btn:before {
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-36%);
  content: "";
  width: 1.364em;
  height: 2.364em;
  background: url(images/ticket.png) center/contain no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

#siteInfoBannerWidget {
  box-sizing: border-box;
  position: static;
  display: flex !important;
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: "Anton-Regular";
  font-size: 57px;
  color: #fff;
  text-align: right;
  line-height: 1;
  z-index: 2;
  min-width: auto;
  flex-direction: column;
  justify-content: center;
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget {
  flex-direction: row;
  align-items: center;
}
#siteInfoBannerWidget #eventDates {
  font-family: "Anton-Regular";
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
#siteInfoBannerWidget #eventDates {
  font-size: 58px;
}
@media screen and (min-width: 1200px) {
  #siteInfoBannerWidget #eventDates {
    font-size: calc(58px + 24 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  #siteInfoBannerWidget #eventDates {
    font-size: 82px;
  }
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates {
  display: flex;
  align-items: center;
  color: #b8b8b8;
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates {
  font-size: 38px;
}
@media screen and (min-width: 1200px) {
  body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates {
    font-size: calc(38px + 19 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates {
    font-size: 57px;
  }
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates:after {
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  background: #b8b8b8;
  margin: 0 15px;
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates:after {
  font-size: 58px;
}
@media screen and (min-width: 1200px) {
  body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates:after {
    font-size: calc(58px + 24 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventDates:after {
    font-size: 82px;
  }
}
body:not(.homepage) #siteInfoBannerWidget #eventDates:after {
  content: "";
  display: block;
  width: 2px;
  height: 0.5em;
  background: #b8b8b8;
  margin: 0 0 0 0.75rem;
}
body:not(.homepage) #siteInfoBannerWidget #eventDates:after {
  font-size: 58px;
}
@media screen and (min-width: 1200px) {
  body:not(.homepage) #siteInfoBannerWidget #eventDates:after {
    font-size: calc(58px + 24 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  body:not(.homepage) #siteInfoBannerWidget #eventDates:after {
    font-size: 82px;
  }
}
body:not(.homepage).siteInfoBannerWidgetEventHappening #siteInfoBannerWidget #eventDates:after {
  display: none !important;
}
body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget #eventDates {
  display: none !important;
}
#siteInfoBannerWidget #eventName {
  font-size: 0;
  margin-top: 20px;
  text-transform: uppercase;
}
#siteInfoBannerWidget #eventName:before {
  content: "BEGINS IN ";
  transition: 0.2s;
  opacity: 0;
}
#siteInfoBannerWidget #eventName:before {
  font-size: 38px;
}
@media screen and (min-width: 1200px) {
  #siteInfoBannerWidget #eventName:before {
    font-size: calc(38px + 19 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  #siteInfoBannerWidget #eventName:before {
    font-size: 57px;
  }
}
body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget #eventName:before {
  display: none !important;
}
body.pageIsLoaded #siteInfoBannerWidget #eventName:before {
  opacity: 1;
  transition: 0.2s;
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget #eventName {
  color: #b8b8b8;
  margin: 0;
}
#siteInfoBannerWidget .countdownDays {
  display: inline-block;
  font-family: "Anton-Regular";
  font-weight: 400;
  color: #fa4d09;
}
#siteInfoBannerWidget .countdownDays {
  font-size: 38px;
}
@media screen and (min-width: 1200px) {
  #siteInfoBannerWidget .countdownDays {
    font-size: calc(38px + 19 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  #siteInfoBannerWidget .countdownDays {
    font-size: 57px;
  }
}
body:not(.homepage).saffireLargeSize #siteInfoBannerWidget .countdownDays {
  color: #b8b8b8;
}

@media screen and (max-width: 1200px) {
  .siteInfoBannerOn #siteInfoBannerWidget {
    left: auto;
    flex-direction: row;
    align-items: center;
    right: auto !important;
    padding: 0;
    background: transparent;
    color: #fff;
    width: 100%;
    margin-top: 16px;
  }
  .siteInfoBannerOn #siteInfoBannerWidget #eventName {
    font-size: 0;
    margin: 0 0 0 10px;
    color: inherit;
    text-align: left;
  }
  .siteInfoBannerOn #siteInfoBannerWidget #eventName:before {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 450px) {
  .siteInfoBannerOn #siteInfoBannerWidget #eventName:before {
    font-size: calc(16px + 12 * ((100vw - 450px) / 750));
  }
}
@media screen and (max-width: 1200px) and (min-width: 1200px) {
  .siteInfoBannerOn #siteInfoBannerWidget #eventName:before {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .siteInfoBannerOn #siteInfoBannerWidget #eventDates {
    display: flex;
    align-items: center;
    color: inherit;
  }
  .siteInfoBannerOn #siteInfoBannerWidget #eventDates {
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 450px) {
  .siteInfoBannerOn #siteInfoBannerWidget #eventDates {
    font-size: calc(22px + 26 * ((100vw - 450px) / 750));
  }
}
@media screen and (max-width: 1200px) and (min-width: 1200px) {
  .siteInfoBannerOn #siteInfoBannerWidget #eventDates {
    font-size: 48px;
  }
}
@media screen and (max-width: 1200px) {
  .siteInfoBannerOn #siteInfoBannerWidget .countdownDays {
    color: #fa4d09;
  }
  .siteInfoBannerOn #siteInfoBannerWidget .countdownDays {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 450px) {
  .siteInfoBannerOn #siteInfoBannerWidget .countdownDays {
    font-size: calc(16px + 12 * ((100vw - 450px) / 750));
  }
}
@media screen and (max-width: 1200px) and (min-width: 1200px) {
  .siteInfoBannerOn #siteInfoBannerWidget .countdownDays {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).siteInfoBannerOn #siteInfoBannerWidget #eventName,
body:not(.homepage).siteInfoBannerOn #siteInfoBannerWidget #eventDates,
body:not(.homepage).siteInfoBannerOn #siteInfoBannerWidget .countdownDays {
    color: #b8b8b8;
  }
}
body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
  font-family: "Anton-Regular";
  color: #fff;
}
body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
  font-size: 22px;
}
@media screen and (min-width: 450px) {
  body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
    font-size: calc(22px + 26 * ((100vw - 450px) / 750));
  }
}
@media screen and (min-width: 1200px) {
  body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
    font-size: 48px;
  }
}
body.siteInfoBannerWidgetDateIsPast.siteInfoBannerWidgetNoThankYouMessage #siteInfoBannerWidget {
  display: none !important;
}

#swiperWidget {
  position: relative;
  width: 44.25vw;
}
@media screen and (max-width: 1200px) {
  #swiperWidget {
    width: 100%;
    max-width: 700px;
  }
}
#swiperWidget .swiper-container {
  overflow: visible;
}
#swiperWidget .swiper-slide {
  position: relative;
  background-color: #211564;
}
#swiperWidget .swiper-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  #swiperWidget .swiper-nav {
    display: none;
  }
}
#swiperWidget .swiper-button-prev,
#swiperWidget .swiper-button-next {
  box-sizing: border-box;
  position: static;
  display: flex;
  align-items: center;
  width: 125px;
  height: 30px;
  color: #b08bf5;
  padding: 0 10px;
}
#swiperWidget .swiper-button-prev:before,
#swiperWidget .swiper-button-next:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
#swiperWidget .swiper-button-prev {
  background: linear-gradient(90deg, rgb(74, 0, 176) 0%, rgba(0, 0, 0, 0) 100%);
}
#swiperWidget .swiper-button-prev:before {
  background-image: url(images/arrow-left.png);
  background-position: left center;
}
#swiperWidget .swiper-button-next {
  justify-content: flex-end;
  text-transform: uppercase;
  background: linear-gradient(-90deg, rgb(74, 0, 176) 0%, rgba(0, 0, 0, 0) 100%);
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 1.063em;
}
#swiperWidget .swiper-button-next:before {
  background-image: url(images/arrow-right.png);
  background-position: right center;
  order: 2;
  margin-left: 0.5em;
}
#swiperWidget .swiper-image-container {
  display: block;
  height: 31.5vw;
  width: 100%;
  aspect-ratio: 7/5;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1200px) {
  #swiperWidget .swiper-image-container {
    height: 71.5vw;
    max-height: 500px;
  }
}
#swiperWidget .swiper-content-container {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #7e57c6;
  z-index: 2;
}
#swiperWidget .swiper-content-container {
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  #swiperWidget .swiper-content-container {
    font-size: calc(12px + 4 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  #swiperWidget .swiper-content-container {
    font-size: 16px;
  }
}
#swiperWidget .swiper-content-container {
  font-size: 8.5px;
}
@media screen and (min-width: 450px) {
  #swiperWidget .swiper-content-container {
    font-size: calc(8.5px + 3.5 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #swiperWidget .swiper-content-container {
    font-size: 12px;
  }
}
#swiperWidget .swiper-content-container h2 {
  display: inline-block;
  padding: 0.475em 0.526em;
  width: auto;
  margin: 0;
  font: 3.5em/1 "Anton-Regular";
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  #swiperWidget .swiper-content-container h2 {
    font-size: 2.75em;
    padding: 0.75em 0.526em;
  }
}
@media screen and (max-width: 700px) {
  #swiperWidget .swiper-content-container h2 {
    font-size: 2.5em;
    padding: 0.75em 8vw 0.75em 8vw;
  }
}
#swiperWidget .swiper-content-container .swiper-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0 0.5em;
  background: #fa4d09;
  font: 3em/1 "Anton-Regular";
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.buyVipButton {
  background-color: #fa4d09;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font: 3em/1 "Anton-Regular";
  width: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .buyVipButton {
    width: 4rem;
  }
}

#cardWidgetSEOText {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText {
    flex: 1 1 100%;
    order: 2;
    background: #fff;
    padding: 1.5em 0 0;
    margin-top: 13vw;
  }
  #cardWidgetSEOText:before {
    content: "";
    position: absolute;
    bottom: calc(100% - 2px);
    left: 0;
    display: block;
    width: 100%;
    height: 8vw;
    background: #fff;
    -webkit-clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 90%, 100% 100%, 0% 100%);
  }
}
#cardWidgetSEOText .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .card-widget-item {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .card-widget-item {
    max-width: 100%;
  }
}
#cardWidgetSEOText .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#cardWidgetSEOText .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .card-content {
    max-width: 700px;
    padding: 0 8vw;
  }
}
#cardWidgetSEOText .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 400 5.25em/1.1 "Anton-Regular";
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
#cardWidgetSEOText .card-widget-title {
  font-size: 38px;
}
@media screen and (min-width: 450px) {
  #cardWidgetSEOText .card-widget-title {
    font-size: calc(38px + 46 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetSEOText .card-widget-title {
    font-size: 84px;
  }
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .card-widget-title {
    color: #7e57c6;
  }
}
#cardWidgetSEOText .card-widget-title span {
  display: inline-block;
  background: #fff;
  color: #fa4d09;
  padding: 0 0.125em;
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .card-widget-title span {
    color: #fff;
    background: #fa4d09;
  }
}
#cardWidgetSEOText .card-widget-description {
  display: block;
  font: 400 1.125em/1.6 "OpenSans-Regular";
  color: #fff;
  text-align: justify;
  margin-bottom: 2em;
}
#cardWidgetSEOText .card-widget-description {
  font-size: 14px;
}
@media screen and (min-width: 450px) {
  #cardWidgetSEOText .card-widget-description {
    font-size: calc(14px + 4 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetSEOText .card-widget-description {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .card-widget-description {
    color: #000;
  }
}
#cardWidgetSEOText .buttonwrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .buttonwrap {
    justify-content: center;
  }
}
#cardWidgetSEOText .moreButton {
  display: block;
  font: 400 1.688em/1 "Anton-Regular";
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  padding: 0.275em 1.375em;
  border: 0.185em solid #7e57c6;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.2s;
  transition-property: background, color;
}
@media screen and (max-width: 1200px) {
  #cardWidgetSEOText .moreButton {
    color: #fa4d09;
    width: 7.675em;
    box-sizing: border-box;
    padding: 0.275em 0.275em;
    border: 0.1em solid #7e57c6;
  }
  #cardWidgetSEOText .moreButton {
    font-size: 35px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 450px) {
  #cardWidgetSEOText .moreButton {
    font-size: calc(35px + 20 * ((100vw - 450px) / 1150));
  }
}
@media screen and (max-width: 1200px) and (min-width: 1600px) {
  #cardWidgetSEOText .moreButton {
    font-size: 55px;
  }
}
#cardWidgetSEOText .moreButton:hover, #cardWidgetSEOText .moreButton:focus {
  background: #7e57c6;
  color: #fff;
  transition: 0.2s;
}

#cardWidgetImageCards {
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 48.5% 48.5%;
  grid-gap: 3%;
  align-items: flex-start;
  max-width: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  #cardWidgetImageCards {
    flex: 1 1 100%;
    order: 1;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  #cardWidgetImageCards {
    box-sizing: initial;
    padding: 0 8vw;
  }
}
#cardWidgetImageCards .card-widget-item {
  box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0;
  text-decoration: none;
}
#cardWidgetImageCards .card-widget-item:hover .image-container, #cardWidgetImageCards .card-widget-item:focus .image-container {
  box-shadow: 0px 0.75em 1.25em rgba(0, 0, 0, 0.85);
  transition: 0.2s;
}
#cardWidgetImageCards .card-widget-item:hover .image-container:before, #cardWidgetImageCards .card-widget-item:focus .image-container:before {
  height: 100%;
  background: rgba(250, 77, 9, 0.25);
}
#cardWidgetImageCards .card-widget-item:hover .card-widget-title, #cardWidgetImageCards .card-widget-item:focus .card-widget-title {
  color: #fa4d09;
  transition: 0.2s;
}
#cardWidgetImageCards .image-container {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0px 0.5em 1em rgba(0, 0, 0, 0.75);
  transition: 0.2s;
}
#cardWidgetImageCards .image-container:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(250, 77, 9, 0);
  transition: 0.2s;
}
#cardWidgetImageCards .image-container img {
  display: block;
  width: 100%;
  aspect-ratio: 69/76;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  background: #7e57c6;
}
#cardWidgetImageCards .card-content {
  display: flex;
  width: 100%;
}
#cardWidgetImageCards .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 400 2em/1 "Anton-Regular";
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1em;
  transition: 0.2s;
  transition-property: color;
}
#cardWidgetImageCards .card-widget-title {
  font-size: 17px;
}
@media screen and (min-width: 450px) {
  #cardWidgetImageCards .card-widget-title {
    font-size: calc(17px + 15 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetImageCards .card-widget-title {
    font-size: 32px;
  }
}
#cardWidgetImageCards .card-widget-description {
  display: none;
}
#cardWidgetImageCards .buttonwrap {
  display: none;
}

#cardWidgetMegaRidePass {
  box-sizing: border-box;
  position: absolute;
  top: -6.25vw;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2.5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 4.4% 5vw;
  z-index: 1;
}
.homepage #cardWidgetMegaRidePass {
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  #cardWidgetMegaRidePass {
    position: relative;
    padding: 0 8.4% 8.4%;
    top: -13.5vw;
    top: 0;
  }
  #cardWidgetMegaRidePass:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fa4d09;
    width: 100%;
    height: 5vw;
    -webkit-clip-path: polygon(100% 0%, -5% 100%, 100% 100%);
            clip-path: polygon(100% 0%, -5% 100%, 100% 100%);
  }
  body:not(.homepage) #cardWidgetMegaRidePass:after {
    display: none;
  }
}
#cardWidgetMegaRidePass .m-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(0 5vw, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 5vw, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}
@media screen and (min-width: 1201px) {
  #cardWidgetMegaRidePass .m-bg {
    display: none;
  }
}
#cardWidgetMegaRidePass .card-widget-item {
  box-sizing: border-box;
  grid-column: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.homepage #cardWidgetMegaRidePass .card-widget-item {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  #cardWidgetMegaRidePass .card-widget-item {
    grid-column: 1/3;
  }
}
#cardWidgetMegaRidePass .card-widget-item:not(:first-child) {
  display: none !important;
}
#cardWidgetMegaRidePass .image-container {
  box-sizing: border-box;
  position: relative;
  top: -2.5vw;
  display: block;
}
#cardWidgetMegaRidePass .image-container img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  #cardWidgetMegaRidePass .image-container img {
    max-width: 500px;
    margin: 0 auto;
  }
}
#cardWidgetMegaRidePass .card-content {
  position: relative;
  top: -2.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
}
#cardWidgetMegaRidePass .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 400 3.125em/1.2 "Gore-Regular";
  color: #fff;
  margin-top: 0.5em;
  order: 1;
}
#cardWidgetMegaRidePass .card-widget-title {
  font-size: 22px;
}
@media screen and (min-width: 450px) {
  #cardWidgetMegaRidePass .card-widget-title {
    font-size: calc(22px + 23 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetMegaRidePass .card-widget-title {
    font-size: 45px;
  }
}
#cardWidgetMegaRidePass .card-widget-title span {
  display: block;
  font: 400 0.56em/1.2 "OpenSans-Regular";
  margin-top: 0.75em;
}
#cardWidgetMegaRidePass .card-widget-title span {
  font-size: 13px;
}
@media screen and (min-width: 450px) {
  #cardWidgetMegaRidePass .card-widget-title span {
    font-size: calc(13px + 15 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetMegaRidePass .card-widget-title span {
    font-size: 28px;
  }
}
#cardWidgetMegaRidePass .card-widget-description {
  display: block;
  font: 400 1.313em/1.2 "OpenSans-Regular";
  color: #fff;
  order: 3;
}
#cardWidgetMegaRidePass .card-widget-description {
  font-size: 18px;
}
@media screen and (min-width: 450px) {
  #cardWidgetMegaRidePass .card-widget-description {
    font-size: calc(18px + 3 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetMegaRidePass .card-widget-description {
    font-size: 21px;
  }
}
#cardWidgetMegaRidePass .card-widget-description a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: "OpenSans-Bold";
}
#cardWidgetMegaRidePass .card-widget-description a:hover {
  text-decoration: underline;
}
#cardWidgetMegaRidePass .card-widget-description em, #cardWidgetMegaRidePass .card-widget-description p, #cardWidgetMegaRidePass .card-widget-description span {
  display: block;
  margin-top: 1.75em;
}
#cardWidgetMegaRidePass .card-widget-description em, #cardWidgetMegaRidePass .card-widget-description p, #cardWidgetMegaRidePass .card-widget-description span {
  font-size: 10px;
}
@media screen and (min-width: 450px) {
  #cardWidgetMegaRidePass .card-widget-description em, #cardWidgetMegaRidePass .card-widget-description p, #cardWidgetMegaRidePass .card-widget-description span {
    font-size: calc(10px + 11 * ((100vw - 450px) / 1150));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetMegaRidePass .card-widget-description em, #cardWidgetMegaRidePass .card-widget-description p, #cardWidgetMegaRidePass .card-widget-description span {
    font-size: 21px;
  }
}
#cardWidgetMegaRidePass .buttonwrap {
  order: 2;
}
#cardWidgetMegaRidePass .buttonwrap a {
  display: block;
  font: 400 3.938em/1 "Gore-Regular";
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0.714em auto;
  text-align: center;
  background: #fa4d09;
  color: #fff;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.125em 1.875em 0.15em 1.875em;
  box-shadow: 0px 0px 15px 0px rgba(250, 77, 9, 0.85);
  overflow: hidden;
  text-decoration: none;
  transition: 0.2s;
  transition-property: background, color, box-shadow;
}
#cardWidgetMegaRidePass .buttonwrap a {
  font-size: 33px;
}
@media screen and (min-width: 1200px) {
  #cardWidgetMegaRidePass .buttonwrap a {
    font-size: calc(33px + 30 * ((100vw - 1200px) / 400));
  }
}
@media screen and (min-width: 1600px) {
  #cardWidgetMegaRidePass .buttonwrap a {
    font-size: 63px;
  }
}
#cardWidgetMegaRidePass .buttonwrap a:hover {
  background: #ecbb33;
  color: #0b0036;
  box-shadow: 0px 0px 20px 0px rgba(236, 187, 51, 0.85);
  transition: 0.2s;
}

body:not(.homepage) #cardWidgetMegaRidePass {
  top: 0;
  padding: 7vw 4.4% 2vw;
  -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
  background: radial-gradient(circle, rgb(70, 0, 161) 0%, rgb(47, 0, 80) 100%);
  position: static;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage) #cardWidgetMegaRidePass {
    padding: 7vw 4.4% 4vw;
  }
}
body:not(.homepage) #cardWidgetMegaRidePass .card-widget-item {
  grid-column: 1/3;
  display: flex;
  align-items: center;
  grid-gap: 5%;
}
body:not(.homepage) #cardWidgetMegaRidePass .image-container,
body:not(.homepage) #cardWidgetMegaRidePass .card-content {
  top: 0;
  width: 100%;
}
body:not(.homepage) #cardWidgetMegaRidePass .image-container {
  padding: 2% 0;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage) #cardWidgetMegaRidePass .image-container {
    width: 33%;
  }
}
@media screen and (max-width: 1200px) {
  body:not(.homepage) #cardWidgetMegaRidePass .card-content {
    width: 64%;
  }
}
body:not(.homepage) #cardWidgetMegaRidePass .card-widget-description em {
  margin-top: 0.75em;
  font-size: 0.75em;
}
body:not(.homepage) #cardWidgetMegaRidePass .buttonwrap a {
  margin: 0.5em auto 0.25em;
}

body:not(.homepage).saffireMobileSize #cardWidgetMegaRidePass {
  grid-template-columns: 1fr;
  -webkit-clip-path: polygon(0 10vw, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 10vw, 100% 0%, 100% 100%, 0% 100%);
  padding: calc(10vw + 1em) 4.4% 2em;
}
body:not(.homepage).saffireMobileSize #cardWidgetMegaRidePass .card-widget-item {
  grid-column: 1;
  flex-direction: column;
}
body:not(.homepage).saffireMobileSize #cardWidgetMegaRidePass .image-container,
body:not(.homepage).saffireMobileSize #cardWidgetMegaRidePass .card-content {
  width: 100%;
}
body:not(.homepage).saffireMobileSize #cardWidgetMegaRidePass .image-container {
  max-width: 400px;
}

/* Set the container ID*/
/* Size the container*/
/* Size the images*/
/* Format titles*/
/* Format arrows*/
#sponsorWidgetContainer {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
#sponsorWidgetContainer .sponsorWidgetContainer .sponsor-controls-container:focus-within {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsorCarouselImageContainer {
  animation-play-state: paused;
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsor-playpause-btn:before {
  content: "Resume";
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsor-playpause-btn:after {
  content: "\f04b";
  padding-left: 2px;
}
#sponsorWidgetContainer .sponsorWidgetContainer:hover .sponsor-controls-container {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorCarouselImageContainer {
  margin: 3px 0;
}
#sponsorWidgetContainer .sponsorCarouselImage img {
  height: 13vw;
  max-height: 180px;
  min-width: 100px;
  min-height: 50px;
  max-width: 300px;
  object-fit: contain;
  object-position: center;
}
.saffireMobileSize #sponsorWidgetContainer .sponsorCarouselImage img {
  max-width: 200px;
}
#sponsorWidgetContainer #sponsorsTitleContainer {
  width: 100%;
  text-align: center;
  top: 0;
}
#sponsorWidgetContainer #sponsorsTitleContainer .homepageh1 {
  display: none;
}
#sponsorWidgetContainer #sponsorArrowRight,
#sponsorWidgetContainer #sponsorArrowLeft {
  display: none;
}
#sponsorWidgetContainer .sponsor-controls-container {
  box-sizing: border-box;
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 30px;
  background: #fff;
  box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0 0 10px;
  border: none;
  background: #fff;
  color: #111;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn:before {
  content: "Pause";
  display: inline-block;
  width: 50px;
  font-size: 14px;
  line-height: 1;
  color: #111;
  text-align: center;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn:after {
  content: "\f04c";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding-left: 1px;
  width: 30px;
  height: 100%;
  font-family: "FontAwesome";
  font-size: 15px;
  color: #111;
}

#sponsorWidgetContainer .sponsorWidgetContainer:not(.animate) .sponsor-controls-container {
  display: none;
}

.socialNetworks {
  z-index: 1;
  position: static;
  right: -80px;
  transition: 0.2s;
  margin-right: 0.25em;
}
.socialNetworks img {
  display: block;
  max-width: 95px;
  max-height: 95px;
  object-fit: contain;
  object-position: center;
}
.socialNetworks > span, .socialNetworks > a {
  display: inline-flex;
  width: 95px;
  height: 95px;
  position: relative;
  transition: 0.2s;
  margin-right: 0.25em;
}
.socialNetworks > a:hover {
  z-index: 2;
  transition: 0.2s;
}

@media screen and (max-width: 1200px) {
  .socialNetworks {
    border-top: none;
    border-bottom: none;
  }
  .socialNetworks img {
    max-width: 65px;
    max-height: 65px;
  }
  .socialNetworks > a {
    max-width: 2em;
    max-height: 2em;
    transition: 0.2s;
  }
  .socialNetworks > a:hover {
    left: 0;
    bottom: 6px;
    z-index: 2;
    transition: 0.2s;
  }
}
.pageIsLoaded .socialNetworks {
  right: 0;
}
@media screen and (max-width: 1200px) {
  .pageIsLoaded .socialNetworks {
    bottom: 0;
  }
}

.lightbox-showing .socialNetworks {
  display: none;
}

.galleryViewName {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.printEvent {
  display: flex !important;
  align-items: center;
}
.printEvent .print {
  order: 2;
}
.printEvent .fa-print {
  order: 1;
}

.faqQuestion {
  box-sizing: border-box;
  width: 100%;
  max-width: 100% !important;
  background: #eee;
  padding: 15px 20px 15px 0;
  color: #0b0036;
}
@media screen and (max-width: 600px) {
  .faqQuestion {
    padding-left: 20px;
  }
}
.faqQuestion:hover:before {
  background: #7e57c6;
  transition: 0.3s;
}
.faqQuestion:before {
  content: "\f067" !important;
  font-size: 15px;
  color: #fff;
  background: #fa4d09;
  padding: 20px 24px;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .faqQuestion:before {
    color: #fa4d09;
    background: transparent;
    padding: 0 20px 0 0;
  }
}

.faqAnswer {
  background: #fff;
  padding: 20px;
  margin-left: 60px;
  color: #0b0036;
}

.faqSection {
  width: 100%;
  max-width: 1200px;
}
.faqSection .bold {
  font-weight: normal;
}

.FAQModule hr {
  display: none;
}

.featureLineupContainer .subContainer {
  position: relative;
  box-shadow: none;
  background: #eee;
}

.featureLineupContainer .featureLineup-buttons.subContainer {
  background: #fff;
}

.featureLineup-title {
  box-sizing: border-box;
  top: auto;
  bottom: 36px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  font: 16px/1 "OpenSans-ExtraBold";
  color: #fff;
  background: rgba(11, 0, 54, 0.8);
  width: 283px;
  padding: 10px;
  opacity: 1;
  transition: 0.3s;
}

.featureLineupContainer:hover .featureLineup-text {
  padding-bottom: 40px;
}

.featureLineupContainer .featureLineup-buttons.subContainer {
  position: relative;
  top: 10px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  width: 100%;
  height: auto;
}

.featureLineup-more {
  position: relative;
  top: 0;
  right: auto;
  opacity: 1;
}

.featureLineup-social a {
  font-family: "FontAwesome" !important;
  color: #b8b8b8;
}

.featureLineup-text {
  background: rgba(11, 0, 54, 0.8);
}

.featureLineupContainer:hover .featureLineup-title {
  opacity: 0;
  transition: 0.3s;
}

#pnl_googleTranslate {
  display: none;
}

#homepage-video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: calc(600px + 15.5vw);
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  #homepage-video {
    display: none;
  }
}

#uc_masterPageWidgets #siteInfoBannerWidget, #uc_masterPageWidgets > #mainNavigation {
  display: none;
}

body:not(.homepage).dynamic-page .entityContainerRow.ps--centered-title, body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image, body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block {
  width: 100%;
  padding: 0 0;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--centered-title h2:not(.moduleTitle), body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image h2:not(.moduleTitle), body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading h2:not(.moduleTitle) {
  display: none;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--centered-title h1 {
  text-align: center;
  padding: 0 5%;
  display: block;
  margin: 0.5em auto;
  max-width: 1200px;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image .ImageModule {
  margin: 0;
  padding-bottom: 3em;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image .ImageModule h3 {
  display: none;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image .imageModule-single a,
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image .imageModule-single img {
  width: 100%;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-image .imageModule-single {
  box-shadow: 0 4em 3em -4em rgba(0, 0, 0, 0.75);
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading h2 {
  text-align: center;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading .TextMediaModule .previewArea {
  font-size: 1.575em;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading .TextMediaModule .previewArea {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 768px) {
  body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading .TextMediaModule .previewArea {
    font-size: 1.25em;
  }
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading .moduleItemContainer {
  padding: 2em 0;
  margin: 3em auto 1em;
  border-top: 2px solid #7e57c6;
  border-bottom: 2px solid #7e57c6;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).dynamic-page .entityContainerRow.ps--subheading .moduleItemContainer {
    padding: 1em 0;
    margin: 2em auto 1em;
  }
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block h2.moduleTitle,
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block h2.sectionHeading {
  display: none;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .media-container {
  display: none !important;
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .entityContainerColumn {
  box-sizing: border-box;
  width: calc(1200px + 4em);
  max-width: 100%;
  margin: 0 auto;
  padding: 4em 2em;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .entityContainerColumn {
    padding: 2em 2em;
  }
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea {
  font-size: 1.575em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea {
    font-size: 1.375em;
  }
}
@media screen and (max-width: 768px) {
  body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea {
    font-size: 1.25em;
  }
}
body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea h1, body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea h2, body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea h3, body:not(.homepage).dynamic-page .entityContainerRow.ps--full-block .TextMediaModule .previewArea h4 {
  text-align: center;
  color: #fff;
}

#formModuleContainer,
.modulePageInlineForm {
  font-size: 1.125em;
}
#formModuleContainer label.label,
.modulePageInlineForm label.label {
  color: #7e57c6;
  font-family: "open_sanssemibold";
}
#formModuleContainer label.label.bold,
.modulePageInlineForm label.label.bold {
  font-family: "OpenSans-ExtraBold";
}
#formModuleContainer input.textbox, #formModuleContainer select.dropdown, #formModuleContainer textarea.multi,
.modulePageInlineForm input.textbox,
.modulePageInlineForm select.dropdown,
.modulePageInlineForm textarea.multi {
  border: 2px solid #7e57c6;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.5);
  padding: 0.375em 0.75em;
  font-family: "OpenSans-Bold";
}
#formModuleContainer .textboxwrapper,
#formModuleContainer .formDropdown,
.modulePageInlineForm .textboxwrapper,
.modulePageInlineForm .formDropdown {
  padding-bottom: 0.5em;
}

/*# sourceMappingURL=theme.css.map*/