@charset "UTF-8";
/************** LOAD FONTS ******************/
@font-face {
  font-family: "OpenSans-Bold-webfont";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/OpenSans-Bold-webfont.woff2") format("woff2"), url("fonts/OpenSans-Bold-webfont.woff") format("woff");
}
@font-face {
  font-family: "Gotham-Black";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/Gotham-Black.woff2") format("woff2"), url("fonts/Gotham-Black.woff") format("woff");
}
@font-face {
  font-family: "Gotham-Bold";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/Gotham-Bold.woff2") format("woff2"), url("fonts/Gotham-Bold.woff") format("woff");
}
@font-face {
  font-family: "Gotham-Medium";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/Gotham-Medium.woff2") format("woff2"), url("fonts/Gotham-Medium.woff") format("woff");
}
@font-face {
  font-family: "Gotham-Book-Regular";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/Gotham-Book-Regular.woff2") format("woff2"), url("fonts/Gotham-Book-Regular.woff") format("woff");
}
@font-face {
  font-family: "MontserratMedium";
  font-style: normal;
  font-weight: normal;
  src: url("fonts/MontserratMedium.woff2") format("woff2"), url("fonts/MontserratMedium.woff") format("woff");
}
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.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);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: 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);
  }
}
.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);
  }
}
.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);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: 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);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: 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);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: 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);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) 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;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-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);
  }
}
.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);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .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;
  }
}
.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;
  font-family: "open_sansregular", Verdana, Arial !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: inline-flex;
  display: none !important;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  float: none;
  height: 50px;
  width: 50px;
  color: #333;
  font-size: inherit;
}
.saffireMobileSize .nav:before {
  position: static;
  line-height: 1;
}
.saffireMobileSize .nav .mobileNavLink {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.saffireMobileSize .nav .groups {
  display: none;
}

.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;
}

body {
  color: #000;
  font: 17px/1.5 "Gotham-Book-Regular", Arial, Verdana, sans-serif;
}

b,
strong {
  font-family: "Gotham-Bold";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gotham-Black", Arial, Verdana, sans-serif;
  font-weight: normal;
  color: #4f79bc;
  line-height: 1.2;
  margin: 0 0 0.67em 0;
}

h1 {
  font-size: 29px;
}
@media screen and (min-width: 375px) {
  h1 {
    font-size: calc(29px + 9 * (100vw - 375px) / 1305);
  }
}
@media screen and (min-width: 1680px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  font-size: 26px;
}
@media screen and (min-width: 375px) {
  h2 {
    font-size: calc(26px + 4 * (100vw - 375px) / 1305);
  }
}
@media screen and (min-width: 1680px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  h3 {
    font-size: calc(18px + 2 * (100vw - 375px) / 1305);
  }
}
@media screen and (min-width: 1680px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  h4 {
    font-size: calc(18px + 0 * (100vw - 375px) / 1305);
  }
}
@media screen and (min-width: 1680px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 17px;
}
@media screen and (min-width: 375px) {
  h5 {
    font-size: calc(17px + 0 * (100vw - 375px) / 1305);
  }
}
@media screen and (min-width: 1680px) {
  h5 {
    font-size: 17px;
  }
}

h6 {
  font-size: 16px;
}
@media screen and (min-width: 375px) {
  h6 {
    font-size: calc(16px + 0 * (100vw - 375px) / 1305);
  }
}
@media screen and (min-width: 1680px) {
  h6 {
    font-size: 16px;
  }
}

.subContainer {
  font-size: 14px;
}
.subContainer h1 {
  font-size: 28px;
}
.subContainer h2 {
  font-size: 24px;
}
.subContainer h3 {
  font-size: 20px;
}
.subContainer h4 {
  font-size: 18px;
}
.subContainer h5 {
  font-size: 16px;
}
.subContainer h6 {
  font-size: 14px;
}

a {
  color: #4f79bc;
  text-decoration: underline;
  font-family: "Gotham-Bold";
}

.header a,
.footer a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.subpage-fair h1,
.subpage-fair h2,
.subpage-fair h3,
.subpage-fair h4,
.subpage-fair h5,
.subpage-fair h6 {
  color: #D50028;
}
.subpage-fair a {
  color: #D50028;
}

/***************** CONTAINERS **************************/
body {
  background: url("") #fff no-repeat fixed;
  background-size: cover;
}

.wrapper {
  box-sizing: border-box;
  width: 100%;
  padding-top: 60px;
}
@media screen and (max-width: 960px) {
  .wrapper {
    padding-top: 70px;
  }
}
.generalMessageOn .wrapper {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  .generalMessageOn .wrapper {
    padding-top: 110px;
  }
}

@media screen and (min-width: 961px) {
  body:not(.homepage):not(.fallcreek-homepage):not(.statefair-homepage) .wrapper {
    padding-top: 133px;
  }
}

@media screen and (min-width: 961px) {
  body.generalMessageOn:not(.homepage):not(.statefair-homepage) .wrapper {
    padding-top: 148px;
  }
}

body:not(.homepage) .content {
  position: relative;
  max-width: calc(1320px - 20px - 20px);
  margin: 20px auto 60px;
  padding: 20px 20px 20px 20px;
  background: #fff;
}

.saffireMobileSize.homepage .content,
.saffireLargeSize.homepage .content {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: none;
}

.subContainer {
  background: #e6e6e6;
  color: #000;
}
.subContainer a,
.subContainer h1, .subContainer h2, .subContainer h3 {
  color: #000;
}
.subContainer .error {
  color: #000;
}

.dateDisplayBar,
.dateDisplay {
  background: #4f79bc;
  color: #fff;
}
.dateDisplayBar a,
.dateDisplay a {
  color: #fff;
}

#google_translate_element { /* |%  Google translate position */
  top: 15px;
  right: 30px;
}

.orderhistory {
  background: #4f79bc;
}

.orderhistory th {
  color: #fff;
  padding: 8px 3px;
}

.alternateRow {
  background: #e6e6e6;
}

.listingItem {
  background: #e6e6e6;
  border-bottom: 1px solid #cdcdcd;
}
.listingItem:hover {
  background: #eeeeee;
}

.section-tier-two {
  background-image: url("images/tier-two-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-attachment: fixed;
  padding: 100px 20px;
  border-top: 10px solid #fff;
}
@media screen and (max-width: 800px) {
  .section-tier-two {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 640px) {
  .section-tier-two {
    padding: 20px 20px 50px;
  }
}

body.statefair-homepage .section-tier-two {
  background-image: url("images/tier-two-bg-fair.jpg");
}

.subpage-fair .dateDisplayBar,
.subpage-fair .dateDisplay,
.subpage-fair .orderhistory {
  background: #b6002c;
}

.saffireMobileSize.subpage-fair .dateDisplayBar {
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 10px;
}

.section-tier-twoo .container {
  max-width: 1324px;
  margin: 0px auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.standardMode.subpage-fair .section-tier-twoo .container {
  display: none;
}
.eventsMode.subpage-fair .section-tier-twoo .container {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .section-tier-twoo .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }
}

.section-tier-twoo {
  background: url(images/fairmodebg.jpg) center/cover no-repeat;
  margin-top: 10px;
  padding-top: 98px;
}
@media screen and (max-width: 1024px) {
  .section-tier-twoo {
    padding: 0 0 50px;
    background: none;
  }
}
.saffireMobileSize.standardMode.subpage-fair .section-tier-twoo {
  padding: 20px 0 0;
}

.hotbutton-container {
  width: 100%;
  max-width: 338px;
  margin: 0 15px;
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .hotbutton-container {
    max-width: 278px;
  }
}

#hotButtonsTitle {
  margin: 12px 0 7px;
}
.saffireMobileSize #hotButtonsTitle {
  margin: 9px 0px 7px;
}
#hotButtonsTitle .card-content {
  text-align: center;
}
#hotButtonsTitle .card-widget-title {
  position: static;
  width: 100%;
  font: 14px Gotham-Black;
  color: rgb(228, 0, 43);
  padding: 0px 0px 19px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.statefair-homepage-content {
  padding-top: 62px;
}

.section-tier-three {
  padding-top: 21px;
}
.subpage-fair .section-tier-three {
  padding-top: 2px;
}

.afterContent .section-tier-twoo {
  display: none;
}

.saffireLargeSize form[action="/events"] .eventCol2 {
  width: 100%;
}
.saffireLargeSize form[action="/events"] .content {
  box-sizing: border-box;
  padding: 20px 60px;
}
@media screen and (max-width: 1280px) {
  .saffireLargeSize form[action="/events"] .content {
    padding: 20px 30px;
  }
}
.saffireLargeSize form[action="/events"] .itemButtonContainer {
  bottom: auto !important;
  top: 10px;
}
.saffireLargeSize form[action="/events"] .expandedViewEventNameDescriptionText {
  line-height: 1.7;
  margin: 0;
  font-family: "Gotham-Book-Regular";
  font-size: 14px;
  color: #666666;
}
.saffireLargeSize form[action="/events"] .buyNowButton {
  font-size: 14px !important;
  font-family: "Gotham-Bold";
  padding: 7px 19px;
  position: relative;
  overflow: hidden;
  background: #b6002b;
}
.saffireLargeSize form[action="/events"] .buyNowButton:before {
  width: 17px;
  content: "";
  height: 15px;
  display: block;
  border-radius: 50%;
  background: #fcfcfc;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.saffireLargeSize form[action="/events"] .dateDisplayBar, .saffireLargeSize form[action="/events"] .dateDisplay {
  background: #D50028;
}
.saffireLargeSize form[action="/events"] .horizontal-filter .eventCol1 {
  padding-left: 0;
  margin-top: 20px;
}
.saffireLargeSize form[action="/events"] .horizontal-filter #tbx_eventSearch {
  max-width: 95px;
}
.saffireLargeSize form[action="/events"] .filter-group input[type=text],
.saffireLargeSize form[action="/events"] .filter-group .filter-control {
  height: 35px;
  padding: 0 15px;
}
.saffireLargeSize form[action="/events"] .filter-group .input-icon {
  top: 6px;
}
.saffireLargeSize form[action="/events"] .filter-group #currentEventFilter.filter-control,
.saffireLargeSize form[action="/events"] .filter-group #selectedDate.filter-control {
  padding: 0px 40px 0px 15px;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem {
  margin-bottom: 30px;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox {
  width: 110px;
  height: 150px;
  margin-right: 0;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventMonth {
  font-size: 16px;
  order: 2;
  padding: 5px 0;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventDayNumber {
  font-size: 50px;
  font-family: "Gotham-Black";
  order: 3;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventDayOfWeek {
  order: 1;
  font-size: 16px;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventMonth {
  font-size: 26px;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventNameDescription {
  width: calc(100% - 300px);
  height: 140px;
  margin: 0 0 0 28px;
  padding-right: 155px;
}
.saffireLargeSize form[action="/events"] .expandedView .galleryItem .expandedViewEventName {
  font-size: 16px;
}

.saffireMobileSize form[action="/events"] .expandedViewEventNameDescriptionText {
  height: 128px;
  padding-bottom: 36px;
}
.saffireMobileSize form[action="/events"] .itemButtonContainer {
  bottom: 20px !important;
}
.saffireMobileSize form[action="/events"] .buyNowButton {
  font-size: 10px !important;
  background: #b6002b;
  position: relative;
  overflow: hidden;
  background: #b6002b;
}
.saffireMobileSize form[action="/events"] .buyNowButton:before {
  width: 15px;
  content: "";
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #fcfcfc;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.saffireMobileSize form[action="/events"] .expandedViewEventDateBox .todayText {
  font-size: 8px !important;
}

form[action="/events"] h1 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
form[action="/events"] .filter-group input[type=text],
form[action="/events"] .filter-group .filter-control {
  background: transparent;
  border-radius: 0;
}
form[action="/events"] .filter-group:nth-child(5) {
  display: none;
}
form[action="/events"] .viewText {
  font-size: 12px;
}
form[action="/events"] .viewMode {
  background-color: transparent;
  border-radius: 0;
}
form[action="/events"] .fa {
  color: #666666;
}
form[action="/events"] span.right.fa.fa-print {
  color: #fff;
}
form[action="/events"] .expandedView .galleryItem {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #aeaeae;
  padding: 0;
  height: 152px;
  background: #fcfcfc;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox {
  margin-right: 0;
  height: 150px;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventMonth,
form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventDayNumber,
form[action="/events"] .expandedView .galleryItem .expandedViewEventDateBox .eventDayOfWeek {
  font-weight: 400;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventImage img {
  width: 150px;
  height: 150px;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventNameDescription {
  width: calc(100% - 120px);
  height: 150px;
  padding-top: 10px;
  margin: 0 0 0 15px;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventNameDescription a {
  color: #666666;
  font-family: Gotham-Black;
  font-size: 26px;
}
.saffireMobileSize form[action="/events"] .expandedView .galleryItem .expandedViewEventNameDescription a {
  font-size: 13px;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventNameDescription .moreInfoButton {
  color: #D50028;
  font-size: 14px;
  position: static !important;
  width: 100%;
  font-family: "MontserratMedium";
  font-weight: 500;
}
.saffireMobileSize form[action="/events"] .expandedView .galleryItem .expandedViewEventNameDescription .moreInfoButton {
  font-size: 10px;
}
form[action="/events"] .expandedView .galleryItem .expandedViewEventName {
  font-size: 12px;
}

.scheduleDescriptionContent,
.scheduleDescriptionContentCol2 * {
  color: #000 !important;
}
.scheduleDescriptionContent a,
.scheduleDescriptionContentCol2 * a {
  color: #fff !important;
}
.scheduleDescriptionContent a.button,
.scheduleDescriptionContentCol2 * a.button {
  color: #fff !important;
}

.subpage-fair.saffireMobileSize #calendarMobileToggle {
  display: block;
  margin-bottom: 36px;
  font-size: 12px;
  background: none;
  color: #666666 !important;
  border: 1px solid #d1d1d1;
  margin: 0 auto;
  max-width: 149px;
  margin: 4px auto 38px;
}

body.checkoutPage.subpage-fair .content {
  color: #333;
}
body.checkoutPage.subpage-fair .content h1, body.checkoutPage.subpage-fair .content h2, body.checkoutPage.subpage-fair .content h3 {
  color: #e4002b;
}

.saffireMobileSize.subpage-fair .site-map {
  display: block;
}
.saffireMobileSize.subpage-fair .footer-wrapper .copyright-wrapper {
  max-height: 100%;
}
.saffireMobileSize.subpage-fair ul.bottom.footerItems1 {
  display: none;
}
.saffireMobileSize.subpage-fair .site-map ul {
  flex-direction: column;
  display: flex;
  max-width: 300px;
  margin: 31px auto 0;
}
.saffireMobileSize.subpage-fair .site-map ul li {
  line-height: 1.5;
}
.saffireMobileSize.subpage-fair .site-map ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  line-height: 1.5;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Gotham-Black";
}

.site-map {
  display: none;
}

.saffireMobileSize.top-image.isResponsive .mobileTagCategoryContainer,
.saffireMobileSize.isResponsive.top-image #calendarMobileSearchSelected {
  display: none !important;
}

.saffireMobileSize.isResponsive.top-image .expandedView .galleryItem {
  margin: 8px auto;
  height: 140px;
}

.saffireMobileSize.isResponsive.top-image .expandedView .galleryItem .expandedViewEventDateBox {
  height: 138px;
}

.Event-calendar-page-container {
  display: none;
}

.top-image.subpage-fair.saffireMobileSize .expandedView .galleryItem .expandedViewEventDateBox {
  margin-right: 0px;
  height: 138px;
}
.top-image.subpage-fair.saffireMobileSize .expandedViewEventDateBox {
  margin: 0;
  text-align: center;
  width: 55px;
}
.top-image.subpage-fair.saffireMobileSize .expandedViewEventNameDescriptionText {
  font-size: 10px;
}
.top-image.subpage-fair.saffireMobileSize span.eventMonth {
  font-size: 8px !important;
}
.top-image.subpage-fair.saffireMobileSize span.eventDayNumber {
  font-size: 13px;
}
.top-image.subpage-fair.saffireMobileSize span.eventDayNumber {
  font-size: 25px;
}

body:not(.homepage).top-image .content {
  padding: 0 20px;
}

#eventScheduleContent.top-image .dayContainer {
  margin: 8px 0;
}

.top-image.saffireMobileSize.subpage-fair .Event-calendar-page-container {
  display: none;
}

.eventsMode.subpage-fair .section-tier-three {
  padding-top: 0;
}

.eventListingPage #EventpageMenuDropdown {
  display: flex;
}

.saffireLargeSize.eventsMode.subpage-fair .section-tier-twoo {
  padding-top: 63px;
  padding-bottom: 29px;
}

#calendar .card-content {
  padding-bottom: 30px;
}

.scheduleDescriptionContent .scheduleDescriptionContent a, .scheduleDescriptionContent .scheduleDescriptionContentCol2 a {
  color: #000 !important;
}

.saffireLargeSize.standardMode.subpage-fair #SeoWidgetFairRedMode {
  margin: 0 auto;
  padding: 0 0 78px;
}

@media screen and (max-width: 1024px) {
  .eventsMode.subpage-fair .section-tier-twoo {
    padding-top: 20px !important;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .eventsMode.subpage-fair #SeoWidgeteventMode {
    padding: 0px;
    margin: 0 24px 0.1px;
    width: 89%;
  }
}
#EventpageMenuDropdown a.card-widget-item:hover span.card-widget-title:after {
  width: 76%;
  height: 3px;
  background: rgb(241, 190, 72);
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  margin: 0px auto;
}

#EventpageMenuDropdown a.card-widget-item.active span.card-widget-title:after {
  display: none;
}

@media screen and (min-width: 961px) {
  .saffireLargeSize.eventsMode.subpage-fair.statefair-homepage #videoRedVimeo {
    margin-bottom: -62px;
  }
}

#calendar .card-widget-item .calendar_box .days li.today a:hover {
  background: #e4002b;
  color: #fff;
}

#calendar .card-widget-item .calendar_box .days li.past {
  color: #c4c4c4;
}

.fallcreek-homepage .header-bottom-wrapper {
  background: transparent;
}
.fallcreek-homepage .section-tier-one-fall .homepageSwiperSlider {
  display: block;
}
.fallcreek-homepage .section-tier-two-fall {
  background-image: url("images/tier-two-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-attachment: fixed;
  padding: 100px 20px;
  border-top: 10px solid #fff;
}
@media screen and (max-width: 800px) {
  .fallcreek-homepage .section-tier-two-fall {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 640px) {
  .fallcreek-homepage .section-tier-two-fall {
    padding: 20px 20px 50px;
  }
}

.generalmessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #4f79bc;
  font-family: "Gotham-Book-Regular", Arial, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  opacity: 1;
  overflow: hidden;
  transition: 0.3s;
}
.generalmessage a {
  color: inherit;
  text-decoration: underline;
}
.saffireWindowScrolled .generalmessage {
  height: 0;
  color: #3c5e95;
  pointer-events: none;
}

.subpage-fair .generalmessage {
  background: #e4002b;
}

.saffireMobileSize .generalmessage {
  height: 40px;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 500px) {
  .saffireMobileSize .generalmessage {
    font-size: 12px;
  }
}

.saffireMobileSize.generalMessageOn .header {
  transition: 0.2s;
}

.saffireMobileSize.saffireWindowScrolled.generalMessageOn .header {
  top: -40px;
  transition: 0.2s;
}

.header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: linear-gradient(180deg, rgb(0, 0, 0) 10%, rgba(34, 34, 34, 0) 100%);
  z-index: 1000005;
}
.saffireWindowScrolled .header {
  box-shadow: 0px 4px 12px -3px rgba(0, 0, 0, 0.72);
}

.headerInnerContent {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.header-top-wrapper {
  background: #fff;
  width: 100%;
}

.header-top-inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 19px 20px 19px;
}
.subpage-fair .header-top-inner {
  padding: 8px 20px 13px;
}
@media screen and (max-width: 960px) {
  .header-top-inner {
    padding: 10px 5px 10px 20px;
  }
}

.header-bottom-wrapper {
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(79, 121, 188, 0);
  transition: 0.2s;
}
.subpage-fair .header-bottom-wrapper {
  height: 45px;
  background: #e4002b;
}
body:not(.homepage):not(.subpage-fair):not(.subpage-fallcreek) .header-bottom-wrapper, .saffireWindowScrolled .header-bottom-wrapper {
  height: 48px;
  background: rgb(79, 121, 188);
  transition: 0.2s;
}
@media screen and (max-width: 960px) {
  .header-bottom-wrapper {
    display: none;
  }
}

.header-top-right {
  display: flex;
  align-items: center;
}

.header-bottom-inner {
  box-sizing: border-box;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  transition: 0.2s;
}
body:not(.homepage):not(.subpage-fair):not(.subpage-fallcreek) .header-bottom-inner, .saffireWindowScrolled .header-bottom-inner {
  padding: 0 26px;
  transition: 0.2s;
}
@media screen and (max-width: 990px) {
  body:not(.homepage):not(.subpage-fair):not(.subpage-fallcreek) .header-bottom-inner, .saffireWindowScrolled .header-bottom-inner {
    padding: 0 12px;
  }
}

.header-mobile-content {
  display: none;
}
@media screen and (max-width: 960px) {
  .header-mobile-content {
    display: block;
  }
}

.saffireMobileSize .header {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  background: #777;
}
.saffireMobileSize .headerInnerContent {
  height: auto;
}
.saffireMobileSize .header-bottom-wrapper {
  display: none;
}
.saffireMobileSize .header-mobile-content {
  display: block;
}

#siteInfoBannerWidget,
.standAloneDirections {
  transition: 0.5s;
}

.header.search-open #siteInfoBannerWidget,
.header.search-open .standAloneDirections {
  opacity: 0;
}

body:not(.subpage-fair):not(.subpage-fallcreek) .state-fair-links .items {
  display: none !important;
}

.header-logo {
  display: block;
  width: 205px;
  height: 47px;
  flex-shrink: 0;
  background: url("images/Fairgrounds_Logo.svg") center/contain no-repeat;
}

.standAloneDirections {
  display: inline-block;
  font-size: 0;
  width: 42px;
  height: 34px;
  margin: 0 20px;
}
.standAloneDirections:hover svg .cls-1 {
  fill: #3c5e95;
}
.standAloneDirections:hover svg .cls-2,
.standAloneDirections:hover svg .cls-3,
.standAloneDirections:hover svg .cls-4 {
  stroke: #3c5e95;
}
@media screen and (max-width: 960px) {
  .standAloneDirections {
    margin: 0 10px;
  }
}

.saffireMobileSize a.ticket,
.saffireMobileSize a.ticket:hover,
.ticket {
  box-sizing: border-box;
  background: #4f79bc;
  color: #fff;
  text-transform: uppercase;
  font-family: "Gotham-Black";
  height: 40px;
  width: 130px;
  padding: 0 12px;
  font-size: 15px;
  margin-left: 25px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.saffireMobileSize a.ticket:before,
.saffireMobileSize a.ticket:hover:before,
.ticket:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 15px;
  margin-right: 12px;
  background-image: url("images/Ticket_Icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.saffireMobileSize a.ticket:hover,
.saffireMobileSize a.ticket:hover:hover,
.ticket:hover {
  background: #3c5e95;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .header-top-wrapper a.ticket {
    display: none;
  }
}

.saffireMobileSize .m-ticket-wrapper,
.m-ticket-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4f79bc;
}
.saffireMobileSize .m-ticket-wrapper .ticket,
.m-ticket-wrapper .ticket {
  background: #fff !important;
  color: #4f79bc !important;
  margin: 15px 0 !important;
}
.saffireMobileSize .m-ticket-wrapper .ticket:before,
.m-ticket-wrapper .ticket:before {
  background-image: url("images/Ticket_Icon-m.svg") !important;
}

.custom-search {
  display: inline-flex;
}
@media screen and (max-width: 960px) {
  .custom-search {
    display: none;
  }
}
.custom-search .custom-search_input {
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid #4f79bc;
  width: 0;
  padding: 0;
  transition: 0.2s;
  font-size: 18px;
  color: #333;
  font-family: "Gotham-Book-Regular";
}
.custom-search .custom-search_input:focus {
  outline: none;
}
.custom-search .custom-search_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  padding: 0;
  background: #fff;
  transition: 0.2s;
}
.custom-search .custom-search_submit:before {
  content: "\f002";
  display: block;
  font-size: 22px;
  font-family: "FontAwesome";
  line-height: 1;
  color: #4f79bc;
  transition: 0.2s;
}
.custom-search .custom-search_submit:hover {
  cursor: pointer;
}

.search-open .custom-search .custom-search_input {
  width: 300px;
  padding: 0 1em;
  transition: 0.2s;
  transition-delay: 0.3s;
}
.search-open .custom-search .custom-search_submit {
  background: #4f79bc;
  transition: 0.2s;
}
.search-open .custom-search .custom-search_submit:before {
  color: #fff;
  transition: 0.2s;
}
.search-open .custom-search .custom-search_submit:hover, .search-open .custom-search .custom-search_submit:focus {
  background: #3c5e95;
}

.subpage-fair .search-open .custom-search .custom-search_submit {
  background: #e4002b;
}
.subpage-fair .search-open .custom-search .custom-search_input {
  border-color: #e4002b;
}
.subpage-fair .custom-search_submit:before {
  color: #e4002b;
}

.header .searchBox:not(.clonedSearchBox) {
  display: none !important;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .header .searchBox:not(.clonedSearchBox) {
    display: none !important;
  }
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input {
  height: 30px;
  width: 170px;
  padding: 0 5px;
  font-size: 14px;
  font-family: "Gotham-Book-Regular", Arial, Verdana, sans-serif;
  border-radius: 0 !important;
  width: 0;
  padding: 0;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input:focus {
  width: 170px;
  padding: 0 5px;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: #fff;
  border-radius: 0 !important;
  font-size: 14px;
  font-family: "Gotham-Book-Regular", Arial, Verdana, sans-serif;
  width: 40px;
  padding: 0;
  font-size: 0;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton:before {
  content: "\f002";
  display: block;
  font-size: 22px;
  font-family: "FontAwesome";
  line-height: 1;
  color: #4f79bc;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton:hover {
  background: #fff;
}
.header .searchBox:not(.clonedSearchBox):hover .searchSubmitButton:before {
  color: #3c5e95;
}

@media screen and (max-width: 960px) {
  .saffireMobileSize .header .searchBox:not(.clonedSearchBox),
  .header .searchBox:not(.clonedSearchBox) {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .saffireMobileSize .header .searchBox:not(.clonedSearchBox):before,
  .header .searchBox:not(.clonedSearchBox):before {
    content: "\f002";
    position: static;
    line-height: 1;
    font-size: 22px;
    color: #4f79bc;
  }
}

.saffireLargeSize .viewcart {
  display: inline-flex;
  color: inherit;
  margin-left: 10px;
}
.saffireLargeSize .viewcart .cartMenuLink {
  display: inline-block;
}
.subpage-fair .saffireLargeSize .viewcart .cartMenuLink {
  color: #e4002b;
}
.subpage-fair .saffireLargeSize .viewcart .cartMenuLink:hover {
  color: #94011c;
}
.subpage-fair .saffireLargeSize .viewcart .cartMenuLink:hover::before {
  color: #94011c;
}
.saffireLargeSize .viewcart .cartMenuLink:before {
  content: "\f07a";
  position: relative;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 26px;
  line-height: 1;
}
.subpage-fair .saffireLargeSize .viewcart .cartMenuLink:before {
  color: #e4002b;
}
.subpage-fair .saffireLargeSize .viewcart .cartMenuLink:before:hover {
  color: #94011c;
}
.subpage-fair .saffireLargeSize .viewcart:hover {
  color: #94011c;
}
.subpage-fair .saffireLargeSize .viewcart:hover::before {
  color: #94011c;
}

.saffireMobileSize .viewcart {
  display: inline-flex;
  display: none;
}
.saffireMobileSize .viewcart .cartMenuLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #eee;
}
.saffireMobileSize .viewcart .cartMenuLink:before {
  content: "\f07a";
  position: relative;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 26px;
  line-height: 1;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  vertical-align: top;
}
.mobile-nav-toggle:before {
  content: "\f0c9";
  position: relative;
  top: 2px;
  font-family: "FontAwesome";
  font-size: 28px;
  line-height: 1;
  color: #4f79bc;
}
.mobile-nav-toggle:hover {
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }
}

body.subpage-fair .header-logo {
  background: url("images/Fair_Logo.svg") center/contain no-repeat;
}
body.subpage-fair .mobile-nav-toggle:before {
  color: #e4002b;
}
body.subpage-fair .standAloneDirections svg .cls-1 {
  fill: #e4002b;
}
body.subpage-fair .standAloneDirections svg .cls-2,
body.subpage-fair .standAloneDirections svg .cls-3,
body.subpage-fair .standAloneDirections svg .cls-4 {
  stroke: #e4002b;
}
body.subpage-fair .standAloneDirections:hover svg .cls-1 {
  fill: #94011c;
}
body.subpage-fair .standAloneDirections:hover svg .cls-2,
body.subpage-fair .standAloneDirections:hover svg .cls-3,
body.subpage-fair .standAloneDirections:hover svg .cls-4 {
  stroke: #94011c;
}
body.subpage-fair .header .searchBox:not(.clonedSearchBox) .searchSubmitButton:before {
  color: #e4002b;
}
body.subpage-fair .header .searchBox:not(.clonedSearchBox):hover .searchSubmitButton:before {
  color: #94011c;
}
body.subpage-fair .ticket {
  background: #e4002b;
}
body.subpage-fair .ticket:before {
  background-image: url("images/Ticket_Icon-Fair.svg");
}
body.subpage-fair .ticket:hover {
  background: #94011c;
}
body.subpage-fair .m-ticket-wrapper {
  background: #e4002b;
}
body.subpage-fair .m-ticket-wrapper .ticket {
  background: #fff !important;
  color: #e4002b !important;
}
body.subpage-fair .m-ticket-wrapper .ticket:before {
  background-image: url("images/Ticket_Icon-Fair-m.svg") !important;
}
body.subpage-fair:not(.subpage-fair) .header-bottom-wrapper {
  background: #D50028;
}
body.subpage-fair.saffireWindowScrolled .header-bottom-wrapper {
  background: #D50028;
}
body.subpage-fair .header-mobile-content .siteInfoBanner #eventDates {
  color: #e4002b;
}
body.subpage-fair .header-mobile-content .siteInfoBanner #eventName,
body.subpage-fair .header-mobile-content .siteInfoBanner .countdownDays {
  color: #000;
}

body.saffireLargeSize.subpage-fair #mainNavigation .multi-columns,
body.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) #mainNavigation .multi-columns {
  justify-content: flex-start !important;
  flex-direction: row !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 750px;
}
body.saffireLargeSize.subpage-fair #mainNavigation .multi-columns .column,
body.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) #mainNavigation .multi-columns .column {
  padding: 0;
  list-style: none;
  flex: 1;
  margin: 10px 0px;
  max-width: 250px;
}
body.saffireLargeSize.subpage-fair #mainNavigation .multi-columns .column > .item > a,
body.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) #mainNavigation .multi-columns .column > .item > a {
  padding-left: 18px !important;
  padding-right: 7px !important;
  font-size: 16px !important;
}
body.saffireLargeSize.subpage-fair #mainNavigation .multi-columns .column:not(:first-child),
body.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) #mainNavigation .multi-columns .column:not(:first-child) {
  border-left: 1px solid #e6e6e6;
}

.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .group {
  display: inline-block;
  flex-shrink: 0;
  position: static;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .group:last-child .items,
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .group:nth-last-child(2) .items {
  left: auto !important;
  right: 0 !important;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .group:last-child .subitems,
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .group:nth-last-child(2) .subitems {
  left: auto !important;
  right: 100% !important;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .group > a {
  display: inline-block;
  padding: 14px 12px 13px;
  background: none;
  font-family: "Gotham-Black", Arial, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .group:hover > .items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  right: auto !important;
  left: 50% !important;
  transform: translate(-50%);
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .group:hover {
  background: #fff;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .group:hover > a {
  color: #000;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items {
  top: 100%;
  left: 0;
  z-index: -1;
  padding: 10px 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.72) 0px 4px 12px -8px;
  justify-content: center;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items .item a {
  line-height: 1;
  font-size: 14px;
  padding: 7px 15px;
  color: #000;
  font-family: "Gotham-Book-Regular";
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items .item a:hover {
  background: #e6e6e6;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items .subitems,
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items .item:hover > .subitems {
  display: flex;
  flex-direction: column;
  position: static;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items .subitems a {
  line-height: 1;
  padding-left: 25px;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items > .item > a {
  font-size: 16px;
  padding-left: 10px !important;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items > .item {
  margin: 10px 0;
  flex: 1 1 0;
  min-width: 15%;
  max-width: 250px;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .items > .item:not(:first-child) {
  border-left: 1px solid #e6e6e6;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .item {
  width: auto;
  line-height: 1.4;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .subitems {
  position: static;
  left: 100%;
  padding: 0;
  background: #fff;
}

body.saffireLargeSize.subpage-fair .nav .item a {
  display: inline-block;
  padding: 14px 12px 13px;
  line-height: 1;
  background: none;
  font-family: "Gotham-Black", Arial, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
body.saffireLargeSize.subpage-fair .nav .item {
  width: auto;
  position: static;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item:hover > .subitems {
  display: flex;
  flex-wrap: wrap;
  top: 100%;
  right: auto !important;
  left: 50% !important;
  transform: translate(-50%);
  min-height: 200px;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item:hover {
  background: #fff;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item:hover > a {
  color: #000;
}
body.saffireLargeSize.subpage-fair .nav .groups {
  margin: 0;
}
body.saffireLargeSize.subpage-fair .nav .groups .group {
  width: 100%;
  height: 100%;
}
body.saffireLargeSize.subpage-fair .nav .groups .group:not(.state-fair-links) {
  display: none;
}
body.saffireLargeSize.subpage-fair .nav .groups .group > .showingNav {
  display: none;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links .items {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  position: static;
  padding: 0;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links .items a {
  padding: 18px 12px 17px;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links .items > .navClonedItem {
  display: none;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems {
  top: 100%;
  left: 0;
  z-index: -1;
  padding: 0;
  background: #fff;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.72) 0px 4px 12px -8px;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems .item a {
  display: block;
  font-size: 14px;
  padding: 7px 15px;
  color: #000;
  font-family: "Gotham-Book-Regular";
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems .item a:hover {
  background: #e6e6e6;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems .subitems,
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems .item:hover > .subitems {
  display: flex;
  flex-direction: column;
  position: static;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems .subitems a {
  line-height: 1;
  padding-left: 25px;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems > .item > a {
  font-size: 16px;
  padding-left: 10px !important;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems > .item {
  margin: 10px 0;
  flex: 1 1 0;
  min-width: 15%;
  max-width: 250px;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .item > .subitems > .item:not(:first-child) {
  border-left: 1px solid #e6e6e6;
}

.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .normal-dropdown {
  position: relative;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .normal-dropdown .items {
  transform: translateX(0);
  left: 0 !important;
  flex-direction: column;
  width: 250px !important;
}
.saffireLargeSize:not(.subpage-fair):not(.subpage-fallcreek) .nav .groups .normal-dropdown .item {
  margin: 0 !important;
  border-left: none;
}

body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown,
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:hover {
  position: relative;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown .subitems,
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:hover .subitems {
  transform: translateX(0) !important;
  left: 0 !important;
  flex-direction: column !important;
  width: 250px !important;
  min-height: 0;
  padding: 10px 0;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:last-child .subitems, body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:nth-last-child(2) .subitems,
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:hover:last-child .subitems,
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:hover:nth-last-child(2) .subitems {
  left: auto !important;
  right: 0 !important;
}
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown .item,
body.saffireLargeSize.subpage-fair .nav .state-fair-links > .items > .normal-dropdown:hover .item {
  margin: 0 !important;
  line-height: 1.4;
}

body.saffireLargeSize.subpage-fallcreek .nav .item a {
  display: inline-block;
  padding: 14px 12px 13px;
  line-height: 1;
  background: none;
  font-family: "Gotham-Black", Arial, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
body.saffireLargeSize.subpage-fallcreek .nav .item {
  width: auto;
  position: static;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item:hover > .subitems {
  display: flex;
  flex-direction: column;
  left: auto !important;
  min-height: 200px;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item:hover {
  background: #fff;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item:hover > a {
  color: #000;
}
body.saffireLargeSize.subpage-fallcreek .nav .groups {
  margin: 0;
}
body.saffireLargeSize.subpage-fallcreek .nav .groups .group {
  width: 100%;
  height: 100%;
}
body.saffireLargeSize.subpage-fallcreek .nav .groups .group:not(.fall-creek-links) {
  display: none;
}
body.saffireLargeSize.subpage-fallcreek .nav .groups .group > .showingNav {
  display: none;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links .items {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  position: static;
  padding: 0;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links .items a {
  padding: 18px 12px 17px;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links .items > .navClonedItem {
  display: none;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems {
  top: 100%;
  left: 0;
  z-index: -1;
  padding: 0;
  background: #fff;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.72) 0px 4px 12px -8px;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems .item a {
  display: block;
  font-size: 14px;
  padding: 7px 15px;
  color: #000;
  font-family: "Gotham-Book-Regular";
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems .item a:hover {
  background: #e6e6e6;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems .subitems,
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems .item:hover > .subitems {
  display: flex;
  flex-direction: column;
  position: static;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems .subitems a {
  line-height: 1;
  padding-left: 25px;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems > .item > a {
  font-size: 16px;
  padding-left: 10px !important;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems > .item {
  margin: 10px 0;
  flex: 1 1 0;
  min-width: 15%;
  max-width: 250px;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .item > .subitems > .item:not(:first-child) {
  border-left: 1px solid #e6e6e6;
}

body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown,
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:hover {
  position: relative;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown .subitems,
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:hover .subitems {
  transform: translateX(0) !important;
  left: 0 !important;
  flex-direction: column !important;
  width: 250px !important;
  min-height: 0;
  padding: 10px 0;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:last-child .subitems, body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:nth-last-child(2) .subitems,
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:hover:last-child .subitems,
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:hover:nth-last-child(2) .subitems {
  left: auto !important;
  right: 0 !important;
}
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown .item,
body.saffireLargeSize.subpage-fallcreek .nav .fall-creek-links > .items > .normal-dropdown:hover .item {
  margin: 0 !important;
  line-height: 1.4;
}

/*********************** FOOTER **************************/
.footer {
  padding: 79px 0 0;
  overflow: hidden;
  background: #fff;
}

.footer-wrapper { /* set the height of the footer */
  box-sizing: border-box;
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  padding: 180px 15px 50px;
  background: url("images/footer-background.png") no-repeat #fff center;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-family: "Gotham-Black";
  font-size: 12px;
}
.footer-wrapper a {
  color: #fff;
  text-decoration: none;
}
.footer-wrapper a:hover {
  text-decoration: underline;
}
.footer-wrapper ul.footerItems1 {
  margin: 11px auto 5px;
  text-transform: uppercase;
}
.footer-wrapper ul.footerItems1 li {
  margin-left: 15px;
  display: inline-block;
}
.footer-wrapper .footerSignIn {
  text-transform: uppercase;
}
.footer-wrapper ul.footerItems2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
  font-size: 12px;
  font-family: "Gotham-Book-Regular";
}
.footer-wrapper ul.footerItems2 li {
  white-space: pre-wrap;
  max-width: 100%;
  line-height: 2;
}
.footer-wrapper .saffire-img {
  display: inline-block;
  width: 56px;
  height: 36px;
  background: url("images/saffire-logo.png") no-repeat center;
}
.footer-wrapper .powered-by {
  display: flex;
  align-items: flex-end;
  margin-left: 9px;
  max-height: 3em;
}
.browser-ie .footer-wrapper .powered-by {
  max-height: none;
}
.footer-wrapper .footer-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 45px;
}
.footer-wrapper .footer-tagline .large-text {
  font-size: 76px;
  line-height: 0.85;
}
.footer-wrapper .footer-logo {
  display: block;
  position: absolute;
  top: -133px;
  left: 50%;
  z-index: 2;
  width: 374px;
  height: 277px;
  margin: 0 auto;
  transform: translateX(-50%);
  background: #fff;
  background-size: initial;
  border-radius: 50%;
}
.footer-wrapper .footer-logo:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% + 25px);
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  height: 138px;
  width: 239px;
  background: url("images/footer-logo-fg.svg") no-repeat center;
  background-size: contain;
}
.footer-wrapper .footer-contact {
  font-size: 18px;
  text-transform: uppercase;
}
.footer-wrapper .footer-contact > * {
  font-family: "Gotham-Black";
}
.footer-wrapper .address {
  padding: 0 19px;
}
.footer-wrapper .footer-buttons {
  display: flex;
  justify-content: center;
  margin: 33px 7px 25px 0;
}

.saffireMobileSize .footer-wrapper {
  padding-bottom: 38px;
}
.saffireMobileSize .footer-wrapper a:hover {
  text-decoration: none;
}
.saffireMobileSize .footer-wrapper .footer-logo {
  width: 297px;
  top: -143px;
}
.saffireMobileSize .footer-wrapper .footer-logo:after {
  top: 193px;
  width: 173px;
  height: 100px;
  background-size: contain;
}
.saffireMobileSize .footer-wrapper .footer-tagline {
  font-size: 28px;
}
.saffireMobileSize .footer-wrapper .footer-tagline .large-text {
  font-size: 47px;
  line-height: 0.95;
}
.saffireMobileSize .footer-wrapper .footer-buttons {
  flex-direction: column;
  margin: 10px 0 18px;
}
.saffireMobileSize .footer-wrapper .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
}
.saffireMobileSize .footer-wrapper ul.footerItems1 {
  max-width: 300px;
  margin: 13px auto 10px;
}
.saffireMobileSize .footer-wrapper ul.footerItems1 li {
  margin: 0;
  display: inline;
}
.saffireMobileSize .footer-wrapper ul.footerItems1 a.button {
  padding: 0;
  background: none;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
.saffireMobileSize .footer-wrapper .footerSignIn {
  max-width: 300px;
  margin: auto;
}
.saffireMobileSize .footer-wrapper ul.footerItems2 {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.saffireMobileSize .footer-wrapper .copyright-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 2px 0 0;
  max-height: 4em;
}

.saffireMobileSize .footer {
  padding: 17px 0 0;
}

.saffireMobileSize.isResponsive .footer .separator,
.saffireLargeSize.isResponsive .footer .separator {
  display: none;
}

.subpage-fair .footer-wrapper {
  background-image: url("images/footer-background-sf.png");
}
.subpage-fair .footer-wrapper .footer-logo:after {
  background-image: url("images/footer-logo-sf.svg");
}

.subpage-fair .footer {
  padding-top: 63px;
}
.subpage-fair.saffireMobileSize .footer {
  padding-top: 25px;
}
.subpage-fair.saffireMobileSize .footer-wrapper {
  background-position: right;
}

.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: #5e78b8;
}
.mobile-menu-container .mobile-menu-subheader,
.mobile-menu-container .mobile-menu-subheader-btn {
  background-color: #5e78b8;
}
.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: #fff;
}
.mobile-menu-container .mobile-menu-login-showlinks .mobile-menu-login .mobile-menu-subheader-btn,
.mobile-menu-container .mobile-menu-subheader-btn:active {
  background-color: #5b75b6;
}
.mobile-menu-container .mobile-menu-login-links a {
  font-family: "Gotham-Bold";
}
.mobile-menu-container .cart-counter {
  font-family: "Gotham-Bold";
}
.mobile-menu-container .search-container input {
  font-family: "Gotham-Bold";
}
.mobile-menu-container .search-container .search-submit-btn {
  color: #5e78b8;
}
.mobile-menu-container .search-container input[type=text]::placeholder {
  color: #5e78b8;
}
.mobile-menu-container .mobile-menu-ticket-btn {
  display: none !important;
  background-color: #fff;
  font-family: "Gotham-Bold";
  color: #5e78b8;
  border-color: #5e78b8;
  border-top: solid 1px;
  font-size: 15px;
}
.mobile-menu-container .mobile-menu-footer-links {
  padding-top: 10px;
}
.mobile-menu-container .mobile-menu-footer-links a {
  font-family: "Gotham-Bold";
  color: #5e78b8;
}

#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: #5e78b8;
  font-family: "Gotham-Black";
  color: #fff;
  font-size: 13px;
}
#mobile-nav a:hover {
  background-color: #455f9e;
}
#mobile-nav .has-subitems span {
  background-color: #7e93c6;
  color: #fff;
  max-width: 44px;
}
#mobile-nav .has-subitems span:hover {
  background-color: #5b75b6;
}
#mobile-nav li.state-fair-links > .next-level-btn {
  display: none;
}

.subpage-fair .mobile-menu-container .state-fair-links > ul > .prev-level-btn {
  display: none;
}
.subpage-fair .mobile-menu-container .close-mobile-menu:before, .subpage-fair .mobile-menu-container .close-mobile-menu:after {
  background-color: #94011c;
}
.subpage-fair .mobile-menu-container .mobile-menu-subheader,
.subpage-fair .mobile-menu-container .mobile-menu-subheader-btn {
  background-color: #94011c;
}
.subpage-fair .mobile-menu-container .mobile-menu-login-showlinks .mobile-menu-login .mobile-menu-subheader-btn,
.subpage-fair .mobile-menu-container .mobile-menu-subheader-btn:active {
  background-color: #9e102a;
}
.subpage-fair .mobile-menu-container .search-container .search-submit-btn {
  color: #94011c;
}
.subpage-fair .mobile-menu-container .search-container input[type=text]::placeholder {
  color: #94011c;
}
.subpage-fair .mobile-menu-container .mobile-menu-ticket-btn {
  color: #94011c;
  border-color: #94011c;
}
.subpage-fair .mobile-menu-container .mobile-menu-footer-links a {
  color: #94011c;
}

.subpage-fair #mobile-nav a {
  background-color: #94011c;
}
.subpage-fair #mobile-nav a:hover {
  background-color: #610112;
}
.subpage-fair #mobile-nav .has-subitems span {
  background-color: #cc1536;
}
.subpage-fair #mobile-nav .has-subitems span:hover {
  background-color: #9e102a;
}

/************************* 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: #4f79bc;
  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: #000;
}
.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;
}

/************* BUTTON STYLES *********************/
.button {
  padding: 4px 19px;
  font-size: 16px;
}

.button,
.buttonSmall {
  box-sizing: border-box;
  line-height: 1.75em;
  text-transform: none;
  border-radius: 0;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: normal !important;
  font-family: "Gotham-Black";
  color: #fff !important;
  background: #4f79bc;
}

a.buttonSmall.button,
.buttonSmall {
  padding: 4px 12px;
  font-size: 12px;
}

.button:hover,
.buttonSmall:hover {
  background: #3c5e95;
}

a.updateButton.buttonSmall,
a.removeButton.buttonSmall,
a.cartMenuRemoveButton.button.buttonSmall {
  font-size: 0.875em;
}

.cartMenu .cartMenuCheckoutButton {
  font-size: 14px;
  padding: 4px 15px !important;
}

.searchMapButton {
  font-size: 12px;
  line-height: 1.5;
  vertical-align: bottom;
}

a.ticket {
  min-width: 130px;
  color: #fff;
  transition: 0.3s;
}

.subpage-fair .button,
.subpage-fair .buttonSmall {
  background: #e4002b;
}
.subpage-fair .button:hover,
.subpage-fair .buttonSmall:hover {
  background: #94011c;
}

/* PAGINATION*/
/* LEFT-RIGHT ARROWS*/
/* You shouldn't need to change the items below for the most part*/
/* used for placing pagination - necessary when giving a specific left value - must be set in Spark (default is 5)*/
/* this allows for vertical centering of images - disable if opting for img elements*/
/*/////////////////////////////////////////////////////////////////////*/
/* MIXINS AND ETC. FOR SLIDER*/
/*/////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////*/
/* ADVANCED SLIDESHOW - General Settings*/
/*/////////////////////////////////////////////////////////////////////*/
body:not(.statefair-homepage).saffireLargeSize .homepageSwiperSlider,
body:not(.statefair-homepage).saffireMobileSize .homepageSwiperSlider {
  display: none;
}

body.browser-ie .sliderTextDescription {
  margin-top: 1em;
}

/*/////////////////////////////////////////////////////////////////////*/
/* ADVANCED SLIDESHOW - saffireLargeSize Settings*/
/*/////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////*/
/* ADVANCED SLIDESHOW - saffireMobileSize Settings*/
/*/////////////////////////////////////////////////////////////////////*/
.saffireLargeSize .statefair-homepage-content .slideshowSwiperButtonPrev {
  display: block !important;
}

#cardWidgetSlider,
#cardWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
}
#cardWidgetSlider .card-widget-item,
#cardWidget .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#cardWidgetSlider .card-widget-item:not(:first-child),
#cardWidget .card-widget-item:not(:first-child) {
  display: none;
}
#cardWidgetSlider .image-container,
#cardWidget .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#cardWidgetSlider .card-content,
#cardWidget .card-content {
  text-align: left;
  width: 100%;
  height: 100%;
}
#cardWidgetSlider .card-widget-title,
#cardWidget .card-widget-title {
  display: none;
}
#cardWidgetSlider h1,
#cardWidget h1 {
  position: static;
  display: block;
  width: 100%;
  max-width: 960px;
  font-size: 50px;
  font-family: "Gotham-Black";
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #cardWidgetSlider h1,
  #cardWidget h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1024px) {
  #cardWidgetSlider h1,
  #cardWidget h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 800px) {
  #cardWidgetSlider h1,
  #cardWidget h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  #cardWidgetSlider h1,
  #cardWidget h1 {
    font-size: 26px;
  }
}
#cardWidgetSlider h1:after,
#cardWidget h1:after {
  content: "";
  width: 172px;
  height: 5px;
  background: #f1be48;
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  #cardWidgetSlider h1:after,
  #cardWidget h1:after {
    width: 125px;
  }
}
#cardWidgetSlider .card-widget-description,
#cardWidget .card-widget-description {
  font-size: 18px;
  font-family: "Gotham-Book-Regular";
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #cardWidgetSlider .card-widget-description,
  #cardWidget .card-widget-description {
    font-size: 15px;
  }
}
#cardWidgetSlider .buttonwrap,
#cardWidget .buttonwrap {
  display: none;
}

#cardWidget2,
#cardWidget2StateFair {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px;
}
@media screen and (min-width: 640px) {
  #cardWidget2,
  #cardWidget2StateFair {
    padding: 7px;
  }
}
#cardWidget2 .card-widget-item,
#cardWidget2StateFair .card-widget-item {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 3px solid #fff;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  #cardWidget2 .card-widget-item,
  #cardWidget2StateFair .card-widget-item {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  #cardWidget2 .card-widget-item,
  #cardWidget2StateFair .card-widget-item {
    width: 33.33%;
  }
}
@media screen and (min-width: 1280px) {
  #cardWidget2 .card-widget-item,
  #cardWidget2StateFair .card-widget-item {
    width: 25%;
  }
}
#cardWidget2 .card-widget-item:hover img,
#cardWidget2StateFair .card-widget-item:hover img {
  filter: blur(5px);
  width: 110%;
  height: 110%;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:hover h2,
#cardWidget2StateFair .card-widget-item:hover h2 {
  opacity: 0;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:hover .text-content,
#cardWidget2StateFair .card-widget-item:hover .text-content {
  opacity: 1;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:hover .card-content,
#cardWidget2StateFair .card-widget-item:hover .card-content {
  top: -100%;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:focus-within img,
#cardWidget2StateFair .card-widget-item:focus-within img {
  filter: blur(5px);
  width: 110%;
  height: 110%;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:focus-within h2,
#cardWidget2StateFair .card-widget-item:focus-within h2 {
  opacity: 0;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:focus-within .text-content,
#cardWidget2StateFair .card-widget-item:focus-within .text-content {
  opacity: 1;
  transition: 0.3s;
}
#cardWidget2 .card-widget-item:focus-within .card-content,
#cardWidget2StateFair .card-widget-item:focus-within .card-content {
  top: -100%;
  transition: 0.3s;
}
#cardWidget2 .image-container,
#cardWidget2StateFair .image-container {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 59vw;
}
@media screen and (min-width: 640px) {
  #cardWidget2 .image-container,
  #cardWidget2StateFair .image-container {
    height: 31vw;
  }
}
@media screen and (min-width: 960px) {
  #cardWidget2 .image-container,
  #cardWidget2StateFair .image-container {
    height: 20.75vw;
  }
}
@media screen and (min-width: 1280px) {
  #cardWidget2 .image-container,
  #cardWidget2StateFair .image-container {
    height: 16vw;
  }
}
#cardWidget2 .image-container img,
#cardWidget2StateFair .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
#cardWidget2 .card-content,
#cardWidget2StateFair .card-content {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  width: 100%;
  height: 200%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
#cardWidget2 h2,
#cardWidget2StateFair h2 {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
  margin: 0;
  font-size: 28px;
  font-family: "Gotham-Black";
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  transition: 0.3s;
  opacity: 1;
}
#cardWidget2 .text-content,
#cardWidget2StateFair .text-content {
  box-sizing: border-box;
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  height: 50%;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
}
#cardWidget2 .card-widget-title,
#cardWidget2StateFair .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font-size: 28px;
  font-family: "Gotham-Black";
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}
#cardWidget2 .card-widget-description,
#cardWidget2StateFair .card-widget-description {
  display: block;
  max-width: 75%;
  font-size: 16px;
  font-family: "Gotham-Medium";
  color: #fff;
  margin: 0.25em 0 0.75em;
}
@media screen and (max-width: 1515px) {
  #cardWidget2 .card-widget-description,
  #cardWidget2StateFair .card-widget-description {
    max-width: 95%;
  }
}
#cardWidget2 .buttonwrap a,
#cardWidget2StateFair .buttonwrap a {
  display: inline-block;
  padding: 5px 20px;
  text-decoration: none;
  background: #4f79bc;
  font-size: 14px;
  font-family: "Gotham-Black";
  color: #fff;
  transition: 0.3s;
}
#cardWidget2 .buttonwrap a:hover, #cardWidget2 .buttonwrap a:focus,
#cardWidget2StateFair .buttonwrap a:hover,
#cardWidget2StateFair .buttonwrap a:focus {
  background: #3c5e95;
}
#cardWidget2 .buttonwrap .buyNowButton,
#cardWidget2StateFair .buttonwrap .buyNowButton {
  margin-right: 5px;
}

body.subpage-fair #cardWidget2StateFair .moreButton,
body.subpage-fair #cardWidget2StateFair .buyNowButton {
  background: #e4002b;
}
body.subpage-fair #cardWidget2StateFair .moreButton:hover,
body.subpage-fair #cardWidget2StateFair .buyNowButton:hover {
  background: #94011c;
}

body.browser-ie #cardWidget2StateFair .card-widget-item,
body.browser-ie #cardWidget2 .card-widget-item {
  position: relative;
}
body.browser-ie #cardWidget2StateFair .card-widget-item:after,
body.browser-ie #cardWidget2 .card-widget-item:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
}
body.browser-ie #cardWidget2StateFair .card-widget-item:hover:after,
body.browser-ie #cardWidget2 .card-widget-item:hover:after {
  opacity: 1;
}
body.browser-ie #cardWidget2StateFair .card-widget-item:hover img,
body.browser-ie #cardWidget2 .card-widget-item:hover img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}
body.browser-ie #cardWidget2StateFair .card-content,
body.browser-ie #cardWidget2 .card-content {
  z-index: 2;
}

#googleMap {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  height: 433px;
  max-width: 100%;
  margin: 80px auto 0;
  padding: 0;
}
#googleMap .card-widget-item {
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
#googleMap .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
#googleMap .card-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 105px;
  background: #fff;
  box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.65);
  text-align: left;
}
#googleMap .card-content:after {
  content: "";
  display: block;
  display: block;
  position: absolute;
  width: 27px;
  height: 27px;
  background: #fff;
  bottom: -14px;
  transform: rotate(45deg) skew(20deg, 20deg);
  box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.65);
  z-index: -1;
}
#googleMap .card-widget-title {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 7px 90px 9px 10px;
  font: 15px "Gotham-Bold";
  text-transform: uppercase;
  color: #fff;
  background: #3464b2;
}
#googleMap .card-widget-title:after {
  content: "";
  display: block;
  height: 22px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translatey(-50%);
  background: url("images/location-pin.svg");
}
.browser-ie #googleMap .card-widget-title {
  max-height: none;
}
#googleMap .card-widget-description {
  font: 14px "Gotham-Bold";
  color: #000;
  padding: 10px;
  background: #fff;
}
#googleMap .map-content {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#googleMap .buttonwrap {
  position: relative;
  min-width: 60px;
  margin-left: 35px;
  background: #f1be48;
  transition: 0.3s;
}
#googleMap .buttonwrap a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  font-family: "Gotham-Black";
  text-decoration: none;
  color: #000;
}
#googleMap .buttonwrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  height: 101%;
  width: 100%;
  background: #f1be48;
  transform: skew(-30deg, 0deg);
  transition: 0.3s;
}
#googleMap .buttonwrap:hover, #googleMap .buttonwrap:hover:after {
  background: #c29a3c;
}
@media screen and (max-width: 385px) {
  #googleMap {
    height: 332px;
  }
  #googleMap .card-content {
    top: 140px;
    max-width: 95%;
  }
  #googleMap .card-widget-title {
    padding-right: 65px;
  }
}

.saffireMobileSize #googleMap {
  margin-top: 17px;
}

#cardWidgetTwoFall {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
}
#cardWidgetTwoFall .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#cardWidgetTwoFall .card-widget-item:not(:first-child) {
  display: none;
}
#cardWidgetTwoFall .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#cardWidgetTwoFall .card-content {
  text-align: left;
  width: 100%;
  height: 100%;
}
#cardWidgetTwoFall .card-widget-title {
  display: none;
}
#cardWidgetTwoFall h1 {
  position: static;
  display: block;
  width: 100%;
  max-width: 960px;
  font-size: 50px;
  font-family: "Gotham-Black";
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #cardWidgetTwoFall h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1024px) {
  #cardWidgetTwoFall h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 800px) {
  #cardWidgetTwoFall h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  #cardWidgetTwoFall h1 {
    font-size: 26px;
  }
}
#cardWidgetTwoFall h1:after {
  content: "";
  width: 172px;
  height: 5px;
  background: #f1be48;
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  #cardWidgetTwoFall h1:after {
    width: 125px;
  }
}
#cardWidgetTwoFall .card-widget-description {
  font-size: 18px;
  font-family: "Gotham-Book-Regular";
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #cardWidgetTwoFall .card-widget-description {
    font-size: 15px;
  }
}
#cardWidgetTwoFall .buttonwrap {
  display: none;
}

#cardWidgetThreeFall {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px;
}
@media screen and (min-width: 640px) {
  #cardWidgetThreeFall {
    padding: 7px;
  }
}
#cardWidgetThreeFall .card-widget-item {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 3px solid #fff;
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  #cardWidgetThreeFall .card-widget-item {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  #cardWidgetThreeFall .card-widget-item {
    width: 33.33%;
  }
}
@media screen and (min-width: 1280px) {
  #cardWidgetThreeFall .card-widget-item {
    width: 25%;
  }
}
#cardWidgetThreeFall .card-widget-item:hover img {
  filter: blur(5px);
  width: 110%;
  height: 110%;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:hover h2 {
  opacity: 0;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:hover .text-content {
  opacity: 1;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:hover .card-content {
  top: -100%;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:focus-within img {
  filter: blur(5px);
  width: 110%;
  height: 110%;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:focus-within h2 {
  opacity: 0;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:focus-within .text-content {
  opacity: 1;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-item:focus-within .card-content {
  top: -100%;
  transition: 0.3s;
}
#cardWidgetThreeFall .image-container {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 59vw;
}
@media screen and (min-width: 640px) {
  #cardWidgetThreeFall .image-container {
    height: 31vw;
  }
}
@media screen and (min-width: 960px) {
  #cardWidgetThreeFall .image-container {
    height: 20.75vw;
  }
}
@media screen and (min-width: 1280px) {
  #cardWidgetThreeFall .image-container {
    height: 16vw;
  }
}
#cardWidgetThreeFall .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-content {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  width: 100%;
  height: 200%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
#cardWidgetThreeFall h2 {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
  margin: 0;
  font-size: 28px;
  font-family: "Gotham-Black";
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  transition: 0.3s;
  opacity: 1;
}
#cardWidgetThreeFall .text-content {
  box-sizing: border-box;
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  height: 50%;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
}
#cardWidgetThreeFall .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font-size: 28px;
  font-family: "Gotham-Black";
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}
#cardWidgetThreeFall .card-widget-description {
  display: block;
  max-width: 75%;
  font-size: 16px;
  font-family: "Gotham-Medium";
  color: #fff;
  margin: 0.25em 0 0.75em;
}
@media screen and (max-width: 1515px) {
  #cardWidgetThreeFall .card-widget-description {
    max-width: 95%;
  }
}
#cardWidgetThreeFall .buttonwrap a {
  display: inline-block;
  padding: 5px 20px;
  text-decoration: none;
  background: #4f79bc;
  font-size: 14px;
  font-family: "Gotham-Black";
  color: #fff;
  transition: 0.3s;
}
#cardWidgetThreeFall .buttonwrap a:hover, #cardWidgetThreeFall .buttonwrap a:focus {
  background: #3c5e95;
}
#cardWidgetThreeFall .buttonwrap .buyNowButton {
  margin-right: 5px;
}

body.browser-ie #cardWidgetThreeFall .card-widget-item {
  position: relative;
}
body.browser-ie #cardWidgetThreeFall .card-widget-item:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
}
body.browser-ie #cardWidgetThreeFall .card-widget-item:hover:after {
  opacity: 1;
}
body.browser-ie #cardWidgetThreeFall .card-widget-item:hover img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}
body.browser-ie #cardWidgetThreeFall .card-content {
  z-index: 2;
}

#googleMapFall {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  height: 433px;
  max-width: 100%;
  margin: 0px auto 0;
  padding: 0;
}
#googleMapFall .card-widget-item {
  box-sizing: border-box;
  display: flex;
  width: 100%;
}
#googleMapFall .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
#googleMapFall .card-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 105px;
  background: #fff;
  box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.65);
  text-align: left;
}
#googleMapFall .card-content:after {
  content: "";
  display: block;
  display: block;
  position: absolute;
  width: 27px;
  height: 27px;
  background: #fff;
  bottom: -14px;
  transform: rotate(45deg) skew(20deg, 20deg);
  box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.65);
  z-index: -1;
}
#googleMapFall .card-widget-title {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 7px 90px 9px 10px;
  font: 15px "Gotham-Bold";
  text-transform: uppercase;
  color: #fff;
  background: #3464b2;
}
#googleMapFall .card-widget-title:after {
  content: "";
  display: block;
  height: 22px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translatey(-50%);
  background: url("images/location-pin.svg");
}
.browser-ie #googleMapFall .card-widget-title {
  max-height: none;
}
#googleMapFall .card-widget-description {
  font: 14px "Gotham-Bold";
  color: #000;
  padding: 10px;
  background: #fff;
}
#googleMapFall .map-content {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#googleMapFall .buttonwrap {
  position: relative;
  min-width: 60px;
  margin-left: 35px;
  background: #f1be48;
  transition: 0.3s;
}
#googleMapFall .buttonwrap a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  font-family: "Gotham-Black";
  text-decoration: none;
  color: #000;
}
#googleMapFall .buttonwrap:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  height: 101%;
  width: 100%;
  background: #f1be48;
  transform: skew(-30deg, 0deg);
  transition: 0.3s;
}
#googleMapFall .buttonwrap:hover, #googleMapFall .buttonwrap:hover:after {
  background: #c29a3c;
}
@media screen and (max-width: 385px) {
  #googleMapFall {
    height: 332px;
  }
  #googleMapFall .card-content {
    top: 140px;
    max-width: 95%;
  }
  #googleMapFall .card-widget-title {
    padding-right: 65px;
  }
}

.saffireMobileSize #googleMapFall {
  margin-top: 17px;
}

#footerButton {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0;
  margin-left: 8px;
}
#footerButton .card-widget-item {
  box-sizing: border-box;
  display: flex;
  max-width: 185px;
  padding: 10px 21px;
  background: transparent;
  color: #f1be48;
  transition: 0.3s;
}
#footerButton .card-widget-item:hover {
  text-decoration: underline;
  background: transparent;
}
#footerButton .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
#footerButton .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 16px "Gotham-Black", Arial, Verdana, sans-serif;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.saffireMobileSize #footerButton {
  margin: 15px 0 0;
}
.saffireMobileSize #footerButton .card-widget-title {
  font-size: 18px;
}

.subpage-fair.saffireLargeSize #footerButton .card-widget-item {
  background: #f1be48;
  color: #e4002b;
}

#footerButtonStateFair {
  display: none;
}

#cardWidgetEmailSignup,
#cardWidgetEmailSignupStateFair {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  height: 190px;
  max-width: 100%;
  margin: 70px auto 0;
  padding: 0;
  background: #3464b2;
}
#cardWidgetEmailSignup .card-widget-item,
#cardWidgetEmailSignupStateFair .card-widget-item {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  padding-right: 180px;
  margin: 0 20px;
}
#cardWidgetEmailSignup .card-widget-item:before,
#cardWidgetEmailSignupStateFair .card-widget-item:before {
  content: "";
  display: block;
  min-width: 345px;
  min-height: 230px;
  background: url("images/email-front.png") bottom/contain no-repeat;
}
#cardWidgetEmailSignup .card-content,
#cardWidgetEmailSignupStateFair .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 100%;
  margin-left: 5px;
  text-align: left;
}
#cardWidgetEmailSignup .card-widget-title,
#cardWidgetEmailSignupStateFair .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 30px "Gotham-Book-Regular";
  text-transform: uppercase;
  color: #fff;
}
#cardWidgetEmailSignup .card-widget-description,
#cardWidgetEmailSignupStateFair .card-widget-description {
  font: 60px "Gotham-Black", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  color: #fff;
}
#cardWidgetEmailSignup .button-wrap,
#cardWidgetEmailSignupStateFair .button-wrap {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
#cardWidgetEmailSignup .more-button,
#cardWidgetEmailSignupStateFair .more-button {
  width: 182px;
  padding: 15px 30px;
  background: #2b5293;
  text-align: left;
  font: 22px "Gotham-Black", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  transition: 0.3s;
}
#cardWidgetEmailSignup .more-button:hover,
#cardWidgetEmailSignupStateFair .more-button:hover {
  background: #274880;
}
@media screen and (max-width: 1000px) {
  #cardWidgetEmailSignup .card-widget-item,
  #cardWidgetEmailSignupStateFair .card-widget-item {
    padding-right: 145px;
  }
  #cardWidgetEmailSignup .card-widget-title,
  #cardWidgetEmailSignupStateFair .card-widget-title {
    font-size: 24px;
  }
  #cardWidgetEmailSignup .card-widget-description,
  #cardWidgetEmailSignupStateFair .card-widget-description {
    font-size: 47px;
  }
  #cardWidgetEmailSignup .more-button,
  #cardWidgetEmailSignupStateFair .more-button {
    width: 145px;
    padding: 12px 20px 11px;
    font-size: 17px;
  }
}
@media screen and (max-width: 900px) {
  #cardWidgetEmailSignup .card-widget-title,
  #cardWidgetEmailSignupStateFair .card-widget-title {
    font-size: 20px;
  }
  #cardWidgetEmailSignup .card-widget-description,
  #cardWidgetEmailSignupStateFair .card-widget-description {
    font-size: 40px;
  }
  #cardWidgetEmailSignup .more-button,
  #cardWidgetEmailSignupStateFair .more-button {
    width: 140px;
  }
}

.saffireMobileSize #cardWidgetEmailSignup,
.saffireMobileSize #cardWidgetEmailSignupStateFair {
  height: auto;
  margin-top: 17px;
}
.saffireMobileSize #cardWidgetEmailSignup .card-widget-item,
.saffireMobileSize #cardWidgetEmailSignupStateFair .card-widget-item {
  align-items: center;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.saffireMobileSize #cardWidgetEmailSignup .card-widget-item:before,
.saffireMobileSize #cardWidgetEmailSignupStateFair .card-widget-item:before {
  order: 1;
  min-width: 95%;
  max-width: 345px;
  margin-top: 17px;
}
.saffireMobileSize #cardWidgetEmailSignup .card-content,
.saffireMobileSize #cardWidgetEmailSignupStateFair .card-content {
  padding: 33px 0 10px;
  min-height: 69px;
}
.saffireMobileSize #cardWidgetEmailSignup .card-content,
.saffireMobileSize #cardWidgetEmailSignup .more-button,
.saffireMobileSize #cardWidgetEmailSignupStateFair .card-content,
.saffireMobileSize #cardWidgetEmailSignupStateFair .more-button {
  text-align: center;
}
.saffireMobileSize #cardWidgetEmailSignup .button-wrap,
.saffireMobileSize #cardWidgetEmailSignupStateFair .button-wrap {
  position: static;
}

.subpage-fair #cardWidgetEmailSignupStateFair {
  background: #e4002b;
}
.subpage-fair #cardWidgetEmailSignupStateFair .more-button {
  background: #94011c;
}
.subpage-fair #cardWidgetEmailSignupStateFair .more-button:hover {
  background: #800118;
}

#siteInfoBannerWidget {
  box-sizing: border-box;
  position: static;
  display: none !important;
  height: 30px;
  width: auto;
  max-width: 100%;
  margin: auto;
  padding: 0;
  background: rgb(255, 255, 255);
  font-family: "Gotham-Medium";
  font-size: 11px;
  color: #888;
  text-align: center;
  line-height: 1;
  z-index: 2;
  min-width: auto;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  #siteInfoBannerWidget {
    flex-direction: column;
    align-items: flex-end;
    height: auto;
  }
}
#siteInfoBannerWidget #eventDates {
  font-family: "Gotham-Black";
  font-size: 25px;
  font-weight: 400;
  color: #4f79bc;
  padding: 0 10px;
  margin-bottom: 0;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 1279px) {
  #siteInfoBannerWidget #eventDates {
    font-size: 22px;
    margin-bottom: 4px;
    padding: 0;
  }
}
#siteInfoBannerWidget #eventName {
  font-size: 11px;
  font-weight: 400;
  padding: 0 10px;
  text-transform: uppercase;
  display: inline-block;
}
#siteInfoBannerWidget .countdownDays {
  display: inline-block;
  font-family: "Gotham-Medium";
  font-size: 11px;
  font-weight: 400;
  color: #888;
}

.header-mobile-content #siteInfoBannerWidget {
  display: none;
  width: 100%;
  height: 70px;
  justify-content: center;
  align-items: center;
}
.header-mobile-content #siteInfoBannerWidget .countdownDays,
.header-mobile-content #siteInfoBannerWidget #eventName {
  max-width: calc(100% - 20px);
  color: #4f79bc;
  font-size: 13px;
}
.siteInfoBannerWidgetDateIsPast .header-mobile-content #siteInfoBannerWidget .countdownDays,
.siteInfoBannerWidgetDateIsPast .header-mobile-content #siteInfoBannerWidget #eventName {
  max-width: 100%;
  font-family: "Gotham-Black";
  font-size: 18px;
  color: #888 !important;
}

body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
  font-family: "Gotham-Black";
  font-size: 18px;
  color: #888;
}
@media screen and (max-width: 817px) {
  body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
    font-size: 16px;
  }
}
body.siteInfoBannerWidgetDateIsPast.noThankYouMessage #siteInfoBannerWidget {
  display: none !important;
}

body.siteInfoBannerOff #siteInfoBannerWidget {
  display: none !important;
}

body.subpage-fair.siteInfoBannerOn #siteInfoBannerWidget {
  display: inline-flex !important;
}
body.subpage-fair.siteInfoBannerOn #siteInfoBannerWidget #eventDates {
  color: #e4002b;
}
body.subpage-fair.siteInfoBannerOn #siteInfoBannerWidget #eventName, body.subpage-fair.siteInfoBannerOn #siteInfoBannerWidget .countdownDays {
  color: #888888;
}

body.saffireMobileSize.subpage-fair .header-top-right #siteInfoBannerWidget {
  display: none !important;
}

body.saffireMobileSize.subpage-fair .header-mobile-content #siteInfoBannerWidget {
  display: flex !important;
}

body.subpage-fair #siteInfoBannerWidget em {
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

#calendar {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  text-decoration: none;
  margin: 0 15px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 342px;
}
@media screen and (max-width: 1024px) {
  #calendar {
    margin: 29px auto 0;
  }
}
#calendar .card-widget-item {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  text-decoration: none;
  position: relative;
  max-width: 342px;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
#calendar .card-widget-item .calendar_box {
  display: flex;
  flex-direction: column;
}
#calendar .card-widget-item .calendar_box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  background: #e4002b;
  box-sizing: border-box;
}
#calendar .card-widget-item .calendar_box ul li {
  width: 14.2857142857%;
  height: 50px;
  border: 1px solid #e4002b;
  box-sizing: border-box;
}
#calendar .card-widget-item .calendar_box .weekdays li {
  color: #fff;
  font: 18px "Gotham-Black";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e4002b;
  width: 46.8px;
  height: 42px;
}
#calendar .card-widget-item .calendar_box .days {
  border-bottom: 1px solid rgb(196, 196, 196);
  background: rgb(196, 196, 196);
  font: 16px Gotham-Black;
  border-left: 1px solid rgb(196, 196, 196);
  border-right: 1px solid rgb(196, 196, 196);
}
#calendar .card-widget-item .calendar_box .days li {
  background: #fff;
  border: 1px solid #c4c4c4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#calendar .card-widget-item .calendar_box .days li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  width: 46.57px;
  height: 50px;
  color: #111;
  justify-content: center;
}
#calendar .card-widget-item .calendar_box .days li.future a:hover {
  background: #e4002b;
  color: #fff;
}
#calendar .card-widget-item .calendar_box .days li:empty {
  background: #e6e6e6;
}
#calendar .card-widget-item .calendar_box .days li span {
  color: #b2b2b2;
  font-size: 12px;
  text-transform: uppercase;
}
#calendar .card-widget-item .calendar_box .days li.inactive {
  color: #b2b2b2;
  font-style: italic;
}
#calendar .card-widget-item .calendar_box .days li.inactive span {
  font-style: normal;
}
#calendar .card-widget-item .calendar_box .days li.past a {
  color: #b2b2b2;
  pointer-events: none;
}
#calendar .card-content {
  display: flex;
  text-align: center;
  z-index: 9;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  margin: 0px auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 24px;
}
.saffireMobileSize #calendar .card-content {
  padding-bottom: 31px;
}
#calendar .card-widget-title {
  position: static;
  width: 100%;
  font: 14px "Gotham-Black";
  color: #e4002b;
  padding: 0 0 19px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
#calendar .card-widget-title span.bottom-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-style: italic;
}

#hotButtons {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-flow: column wrap;
  max-width: 338px;
  width: 100%;
  padding: 0px;
}
#hotButtons .card-widget-item:hover .card-widget-title {
  background: #94011c;
}
#hotButtons .card-widget-title {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font: 18px "Gotham-Black";
  color: #fff;
  background: #e4002b;
  text-transform: uppercase;
  margin: 7px 0;
}
#hotButtons .card-widget-description {
  display: none;
}
#hotButtons .buttonwrap {
  display: none;
}

#SeoWidgeteventMode {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 523px;
  margin: 73px 24px 0;
  padding: 0;
}
@media screen and (max-width: 1080px) {
  #SeoWidgeteventMode {
    padding: 0;
    margin: 31px 19px 0px;
    width: 89%;
  }
}
#SeoWidgeteventMode .card-widget-item {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
#SeoWidgeteventMode .image-container {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 59vw;
}
@media screen and (min-width: 640px) {
  #SeoWidgeteventMode .image-container {
    height: 31vw;
  }
}
@media screen and (min-width: 960px) {
  #SeoWidgeteventMode .image-container {
    height: 20.75vw;
  }
}
@media screen and (min-width: 1280px) {
  #SeoWidgeteventMode .image-container {
    height: 16vw;
  }
}
#SeoWidgeteventMode .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
#SeoWidgeteventMode .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font-size: 34px;
  font-family: "Gotham-Black";
  color: #e4002b;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  #SeoWidgeteventMode .card-widget-title {
    font-size: 24px;
    letter-spacing: -0.9px;
  }
}
.saffireMobileSize #SeoWidgeteventMode .card-widget-title {
  font-size: 24px;
  line-height: 1.3;
}
#SeoWidgeteventMode .card-widget-title:after {
  content: "";
  width: 172px;
  height: 5px;
  background: #f1be48;
  display: block;
  margin: 28px 0 27px;
}
.saffireMobileSize #SeoWidgeteventMode .card-widget-title:after {
  margin: 21px 0px 29px;
}
#SeoWidgeteventMode .card-widget-description {
  display: block;
  max-width: 100%;
  font-size: 18px;
  font-family: "Gotham-Book-Regular";
  color: #000000;
  margin: 0.25em 0 0.75em;
  line-height: 30px;
}
@media screen and (max-width: 1200px) {
  #SeoWidgeteventMode .card-widget-description {
    font-size: 16px;
  }
}
.saffireMobileSize #SeoWidgeteventMode .card-widget-description {
  line-height: 22px;
  font-size: 16px;
}
#SeoWidgeteventMode .buttonwrap a {
  display: inline-block;
  padding: 5px 20px;
  text-decoration: none;
  background: #4f79bc;
  font-size: 14px;
  font-family: "Gotham-Black";
  color: #fff;
  transition: 0.3s;
}
#SeoWidgeteventMode .buttonwrap a:hover, #SeoWidgeteventMode .buttonwrap a:focus {
  background: #3c5e95;
}
#SeoWidgeteventMode .buttonwrap .buyNowButton {
  margin-right: 5px;
}

/* PAGINATION*/
/* LEFT-RIGHT ARROWS*/
/* You shouldn't need to change the items below for the most part*/
/* used for placing pagination - necessary when giving a specific left value - must be set in Spark (default is 5)*/
/* this allows for vertical centering of images - disable if opting for img elements*/
/*/////////////////////////////////////////////////////////////////////*/
/* MIXINS AND ETC. FOR SLIDER*/
/*/////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////*/
/* ADVANCED SLIDESHOW - General Settings*/
/*/////////////////////////////////////////////////////////////////////*/
.statefair-homepage-content {
  /* Homepage Swiper Slider*/
  /* Slideshow Description*/
  /* Slideshow Description - Current Slide Description*/
  /* New Slider Description Container*/
  /* Slider Title*/
  /* Slideshow Swiper Container*/
  /* Swiper Slide*/
  /* Slider Button Container*/
  /* Slideshow Swiper Button - PREV*/
  /* Slideshow Swiper Button - NEXT*/
  /* Slider Controls container*/
  /* Slideshow Swiper Pagination*/
  /* Play Pause Buttons*/
  /* Play Pause Buttons*/
  /* Slider Play Pause*/
}
@media screen and (max-width: 960px) {
  .statefair-homepage-content {
    padding: 0;
  }
}
.statefair-homepage-content .homepageSwiperSlider {
  position: relative;
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .statefair-homepage-content .homepageSwiperSlider {
    flex-direction: column;
  }
}
.statefair-homepage-content .slideshowSwiperDescription {
  display: none;
  /* Slideshow Description - Hover Styles*/
}
.statefair-homepage-content .slideshowSwiperDescription a,
.statefair-homepage-content .slideshowSwiperDescription span {
  display: none;
  text-decoration: none;
}
.statefair-homepage-content .slideshowSwiperDescription .sliderTextDescription {
  display: block;
  color: white;
  line-height: 1.6em;
  pointer-events: none;
  max-width: 100%;
}
.statefair-homepage-content .slideshowSwiperDescription.currentSlideDescription {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-family: "Gotham-Book-Regular";
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 1000px) {
  .statefair-homepage-content .slideshowSwiperDescription.currentSlideDescription {
    padding-top: 1em;
    padding-left: 2%;
    padding-right: 2%;
  }
}
.statefair-homepage-content #newSliderDescriptionContainer {
  background: url(images/slidesow-bg_image.jpg);
}
.statefair-homepage-content .sliderTitle {
  position: relative;
  max-width: 100%;
  line-height: normal;
  font-family: "Gotham-Black";
  font-size: 43px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.9px;
  text-transform: uppercase;
  height: auto;
}
@media screen and (max-width: 1600px) {
  .statefair-homepage-content .sliderTitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .statefair-homepage-content .sliderTitle {
    font-size: 27px;
  }
}
.statefair-homepage-content .sliderTitle:after {
  content: "";
  width: 172px;
  height: 5px;
  background: #f1be48;
  display: block;
  margin: 23px 0 26px;
}
@media screen and (max-width: 1030px) {
  .statefair-homepage-content .sliderTitle:after {
    margin: 18px 0px 16px;
  }
}
@media screen and (max-width: 1023px) {
  .statefair-homepage-content .sliderTitle {
    font-size: 18px;
  }
}
.statefair-homepage-content .swiper-container {
  position: relative;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  /* Specify Swiper's Size: */
  width: 50%;
  max-width: 100%;
  height: 412px;
  /* Swiper Container - Inset Shadow*/
  /* Swiper Container - Hover Styles*/
}
@media screen and (max-width: 900px) {
  .statefair-homepage-content .swiper-container {
    width: 100%;
  }
}
.statefair-homepage-content .swiper-container:hover .slideshowSwiperDescription {
  max-height: 412px;
}
.statefair-homepage-content .swiper-slide {
  /* Specify Slides's Size: */
  position: relative;
  height: 412px;
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.3;
  text-align: center;
}
.statefair-homepage-content .swiper-slide > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
}
.statefair-homepage-content .swiper-slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.statefair-homepage-content .swiper-slide-active .slideshowSwiperDescription a,
.statefair-homepage-content .swiper-slide-active .slideshowSwiperDescription span {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .statefair-homepage-content .swiper-slide,
  .statefair-homepage-content .swiper-container {
    height: 41.2vw !important;
  }
}
.statefair-homepage-content span.sliderButtonContainer {
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-top: 30px !important;
  /* Buttons*/
}
.statefair-homepage-content span.sliderButtonContainer a.button {
  display: inline-block;
  padding: 4px 19px;
  font-family: "Gotham-Black";
  font-size: 16px;
  color: #e4002b !important;
  background: #fff;
  background: linear-gradient(180deg, #fff);
  white-space: nowrap;
  margin: 0 5px;
  /* More and BuyNow Buttons*/
  /* Button - Hover Styles*/
}
.statefair-homepage-content span.sliderButtonContainer a.button.sliderMoreButton, .statefair-homepage-content span.sliderButtonContainer a.button.sliderWidgetPurchaseLink {
  font-size: 16px;
}
.statefair-homepage-content span.sliderButtonContainer a.button.sliderMoreButton {
  order: 2;
}
.statefair-homepage-content span.sliderButtonContainer a.button.sliderWidgetPurchaseLink {
  order: 1;
}
.statefair-homepage-content span.sliderButtonContainer a.button:hover {
  background: #e0e0e0;
}
.statefair-homepage-content .slideshowSwiperButtonPrev {
  position: absolute;
  top: auto;
  transform: translateY(-50%);
  margin: auto;
  z-index: 4;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  width: 0px;
  height: 0px;
  left: 8px !important;
  right: auto !important;
  content: "<";
  bottom: 56px;
  display: block;
  width: 0;
  height: 0;
  right: calc(1320px + -15px * -1);
  /* Slideshow Swiper Button - PREV - Hover Styles*/
}
.statefair-homepage-content .slideshowSwiperButtonPrev:hover:after {
  color: #e4002b;
}
.statefair-homepage-content .slideshowSwiperButtonPrev:after {
  content: "<";
  display: block;
  color: #fff;
  font-size: 37px;
}
@media screen and (max-width: 1350px) {
  .statefair-homepage-content .slideshowSwiperButtonPrev {
    right: auto;
  }
}
@media screen and (max-width: 1050px) {
  .statefair-homepage-content .slideshowSwiperButtonPrev {
    right: auto;
  }
}
.statefair-homepage-content .slideshowSwiperButtonNext {
  z-index: 4;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  right: 0px;
  font-size: 37px;
  color: rgb(255, 255, 255);
  position: relative;
  display: flex !important;
  width: 0px;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  width: 0;
  height: auto;
  /* Slideshow Swiper Button - PREV - Hover Styles*/
}
.statefair-homepage-content .slideshowSwiperButtonNext:hover:after {
  color: #e4002b;
}
.statefair-homepage-content .slideshowSwiperButtonNext:after {
  content: ">";
  font-size: 37px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  bottom: 1px;
  right: 13px;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 1350px) {
  .statefair-homepage-content .slideshowSwiperButtonNext {
    right: 10px;
    left: auto;
  }
}
@media screen and (max-width: 1050px) {
  .statefair-homepage-content .slideshowSwiperButtonNext {
    left: auto;
  }
}
.statefair-homepage-content .sliderControlsContainer {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto !important;
  margin-right: auto !important;
  top: 100%;
  bottom: auto;
  /* setting is left, right or center*/
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  width: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  margin: 0;
  text-align: center;
  z-index: 3;
}
.statefair-homepage-content .slideshowSwiperPagination {
  box-sizing: border-box;
  display: inline-block;
  padding-top: 3px;
}
.statefair-homepage-content .sliderPlayPauseButtons {
  display: inline-block;
}
.statefair-homepage-content .swiper-pagination-bullet {
  position: relative;
  top: 0;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  background: #fff;
  transition: background 0.4s ease;
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.statefair-homepage-content .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333;
}
.statefair-homepage-content .swiper-pagination-bullet:hover {
  background: #333;
}
.statefair-homepage-content .sliderPlayPause {
  display: inline-block;
  cursor: pointer;
  width: 13px;
  height: 13px;
  font-size: 15px;
  color: #fff;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.8);
}
.statefair-homepage-content .sliderPlayPause.playing:before {
  content: "❚❚";
}
.statefair-homepage-content .sliderPlayPause:before {
  content: "▶";
}

.statefair-homepage.saffireLargeSize .currentSlideDescription,
.statefair-homepage.saffireMobileSize .currentSlideDescription,
.statefair-homepage.swiper-slide-active .slideshowSwiperDescription {
  opacity: 1;
}

.statefair-homepage .currentSlideDescription a,
.statefair-homepage .currentSlideDescription span,
.statefair-homepage .currentSlideDescription span.sliderTitle .statefair-homepage .swiper-slide-active .slideshowSwiperDescription > a,
.statefair-homepage .swiper-slide-active .slideshowSwiperDescription span.sliderTitle {
  display: block;
}

.statefair-homepage .currentSlideDescription .slideshowSwiperDescription,
.statefair-homepage .swiper-slide-active .slideshowSwiperDescription {
  display: block;
}

.statefair-homepage .currentSlideDescription,
.statefair-homepage .swiper-slide.swiper-slide-active {
  opacity: 1;
}

/*/////////////////////////////////////////////////////////////////////*/
/* ADVANCED SLIDESHOW - saffireLargeSize Settings*/
/*/////////////////////////////////////////////////////////////////////*/
.statefair-homepage.saffireLargeSize {
  /* Homepage Swiper Slider*/
  /* Slideshow Description*/
  /* Swiper Container*/
  /* Current Slide Description*/
  /* Slider Text Description*/
  /* Slider Title*/
  /* New Slider Description Container*/
}
.statefair-homepage.saffireLargeSize .slideshowSwiperDescription {
  max-width: none;
  padding: 16px 25px 16px 25px;
  /* Slideshow Description - Hover Styles*/
}
.statefair-homepage.saffireLargeSize .swiper-container {
  border: none;
}
.statefair-homepage.saffireLargeSize .currentSlideDescription {
  padding: 27px 29px;
  max-width: 1000px;
  position: relative;
  /* Slider Button Container*/
}
@media screen and (max-width: 1200px) {
  .statefair-homepage.saffireLargeSize .currentSlideDescription {
    padding: 20px 22px;
  }
}
.statefair-homepage.saffireLargeSize .currentSlideDescription .sliderButtonContainer {
  position: static;
  display: none;
  width: auto;
  min-width: initial;
  max-width: none;
  text-align: right;
  z-index: 300;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.statefair-homepage.saffireLargeSize .currentSlideDescription a.button {
  margin: 0 5px;
  padding: 4px 19px;
}
.statefair-homepage.saffireLargeSize .sliderTitle {
  width: 100%;
  max-width: 100%;
  margin-bottom: 5px;
}
.statefair-homepage.saffireLargeSize #newSliderDescriptionContainer {
  box-sizing: border-box;
  position: relative;
  left: 0;
  right: 0;
  margin-left: auto !important;
  margin-right: auto !important;
  bottom: 0;
  top: auto;
  height: auto;
  width: 1000px;
  max-width: 50%;
  z-index: 2;
  transition: 1s;
  height: auto;
  min-height: 70px;
  width: 100%;
  /* Slider Text Container*/
  /* New Slider Description Container - Hover Styles*/
}
@media screen and (max-width: 900px) {
  .statefair-homepage.saffireLargeSize #newSliderDescriptionContainer {
    max-width: 100%;
  }
}
.statefair-homepage.saffireLargeSize #newSliderDescriptionContainer .sliderTextContainer {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  padding: 0 5px;
}
/*/////////////////////////////////////////////////////////////////////*/
/* ADVANCED SLIDESHOW - saffireMobileSize Settings*/
/*/////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 900px) {
  .statefair-homepage-content {
    padding: 0;
    /* Swiper Slide*/
    /* Slideshow Description - Slider Text Description*/
    /* Slider Title*/
    /* Slideshow Description - Current Slide Description*/
    /* New Slider Description Container*/
    /* Slideshow Swiper Buttons*/
    /* Slideshow Swiper Button - PREV*/
    /* Slideshow Swiper Button - NEXT*/
    /* Slider Controls Container */
  }
  .statefair-homepage-content .swiper-slide-active {
    overflow: hidden;
  }
  .statefair-homepage-content .slideshowSwiperDescription.currentSlideDescription {
    padding: 20px;
  }
  .statefair-homepage-content .sliderTextDescription {
    font-size: 16px;
    line-height: 1.35;
    opacity: 1;
    padding-bottom: 25px;
  }
  .statefair-homepage-content .sliderTitle {
    height: auto;
    padding: 0;
    font-size: 24px;
    line-height: 30px;
  }
  .statefair-homepage-content .sliderTitle:after {
    margin: 18px 0 12px;
  }
  .statefair-homepage-content .currentSlideDescription {
    width: 100%;
    height: auto;
    padding: 10px 5%;
    flex-direction: column;
  }
  .statefair-homepage-content .currentSlideDescription .sliderTextContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
  }
  .statefair-homepage-content .currentSlideDescription .sliderButtonContainer {
    position: static;
    top: auto;
    bottom: 102%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px auto;
  }
  .statefair-homepage-content .currentSlideDescription .sliderButtonContainer a {
    display: inline-block;
    width: 25%;
    min-width: 135px;
    padding: 4px 0;
    margin: 0 10px;
  }
  .statefair-homepage-content #newSliderDescriptionContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: auto;
    padding-top: 8px;
    background: #e5002b;
    z-index: 2;
  }
  .statefair-homepage-content .slideshowSwiperButtonNext,
  .statefair-homepage-content .slideshowSwiperButtonPrev {
    display: none !important;
    display: none !important;
  }
  .statefair-homepage-content .slideshowSwiperButtonPrev {
    display: none !important;
  }
  .statefair-homepage-content .slideshowSwiperButtonNext {
    display: none !important;
  }
  .statefair-homepage-content .sliderControlsContainer {
    position: absolute;
    top: 0;
    padding: 5px 0;
  }
}
#CardEventpageImageModule {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
#CardEventpageImageModule .card-widget-item {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 411px;
}
.saffireMobileSize #CardEventpageImageModule .card-widget-item {
  height: auto;
  flex-direction: column;
}
#CardEventpageImageModule .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 50%;
}
.saffireMobileSize #CardEventpageImageModule .image-container {
  width: 100%;
  height: 41.2vw !important;
}
#CardEventpageImageModule .card-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 50%;
  height: 90.7%;
  background: rgb(228, 0, 43);
  padding: 38px 27px 0px 52px;
}
.saffireMobileSize #CardEventpageImageModule .card-content {
  width: 90%;
  height: auto;
  padding: 10px 5%;
  flex-direction: column;
}
#CardEventpageImageModule .card-widget-title {
  position: relative;
  max-width: 100%;
  line-height: normal;
  font-family: Gotham-Black;
  font-size: 50px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  height: auto;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  #CardEventpageImageModule .card-widget-title {
    font-size: 27px;
  }
}
@media screen and (max-width: 1023px) {
  #CardEventpageImageModule .card-widget-title {
    font-size: 18px;
  }
}
#CardEventpageImageModule .card-widget-title:after {
  content: "";
  width: 172px;
  height: 5px;
  background: rgb(241, 190, 72);
  display: block;
  margin: 23px 0px 26px;
}
#CardEventpageImageModule .card-widget-description {
  box-sizing: border-box;
  display: block;
  color: white;
  line-height: 1.6em;
  pointer-events: none;
  max-width: 100%;
  font-family: Gotham-Book-Regular;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  transition: all 1s ease 0s;
}
.saffireMobileSize #CardEventpageImageModule .card-widget-description {
  font-size: 16px;
  line-height: 1.35;
  opacity: 1;
  padding-bottom: 25px;
}
#CardEventpageImageModule .buttonwrap a {
  margin: 0 5px;
}

#EventpageMenuDropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D50028;
  margin-top: 10px;
  color: #fff;
  text-align: center;
  display: none;
}
.saffireMobileSize #EventpageMenuDropdown {
  flex-direction: column;
  background: transparent;
}
#EventpageMenuDropdown a.card-widget-item {
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  text-transform: uppercase;
  font: 14px "Gotham-Black";
  padding: 15px 14px;
  text-transform: uppercase;
  position: relative;
}
#EventpageMenuDropdown a.card-widget-item:hover span.card-widget-title:after {
  width: 76%;
  height: 3px;
  background: rgb(241, 190, 72);
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  margin: 0px auto;
}
#EventpageMenuDropdown a.card-widget-item:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 17px solid #D50028;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  transition: all 0.3s ease !important;
  opacity: 0;
}
#EventpageMenuDropdown a.card-widget-item.active:after {
  opacity: 1;
}
#EventpageMenuDropdown a.card-widget-item.active span.card-widget-title:after {
  display: none;
}
.saffireMobileSize #EventpageMenuDropdown a.card-widget-item {
  background: #D50028;
  width: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 18px Gotham-Black;
  text-decoration: none;
  text-transform: uppercase;
  padding: 11px 10px;
  margin: 3px 0px 10px;
  color: rgb(255, 255, 255) !important;
}
#EventpageMenuDropdown .card-widget-title {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 18px "Gotham-Black";
  color: #fff;
  text-transform: uppercase;
}
.saffireMobileSize #EventpageMenuDropdown .card-widget-title {
  padding: 0;
}
#EventpageMenuDropdown .card-widget-description {
  display: none;
}
#EventpageMenuDropdown .buttonwrap {
  display: none;
}

#SeoWidgetFairRedMode {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1215px;
  margin: 0px auto 77px;
  padding: 0;
  padding: 0;
}
.standardMode.subpage-fair #SeoWidgetFairRedMode {
  display: block;
}
.saffireLargeSize.standardMode.subpage-fair #SeoWidgetFairRedMode {
  margin: 0 auto;
  padding: 0 0 96px;
}
@media screen and (max-width: 1020px) {
  .saffireLargeSize.standardMode.subpage-fair #SeoWidgetFairRedMode {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 0;
    padding-top: 57px;
  }
}
.eventsMode.subpage-fair #SeoWidgetFairRedMode {
  display: none;
}
.saffireMobileSize #SeoWidgetFairRedMode {
  padding: 0;
  margin: 31px 24px 0px;
  width: 89%;
}
#SeoWidgetFairRedMode .card-widget-item {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
#SeoWidgetFairRedMode .image-container {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 59vw;
}
@media screen and (min-width: 640px) {
  #SeoWidgetFairRedMode .image-container {
    height: 31vw;
  }
}
@media screen and (min-width: 960px) {
  #SeoWidgetFairRedMode .image-container {
    height: 20.75vw;
  }
}
@media screen and (min-width: 1280px) {
  #SeoWidgetFairRedMode .image-container {
    height: 16vw;
  }
}
#SeoWidgetFairRedMode .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
#SeoWidgetFairRedMode .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font-size: 34px;
  font-family: "Gotham-Black";
  color: #e4002b;
  line-height: 1.2;
  text-transform: uppercase;
}
.saffireMobileSize #SeoWidgetFairRedMode .card-widget-title {
  font-size: 24px;
  line-height: 1.3;
}
#SeoWidgetFairRedMode .card-widget-title:after {
  content: "";
  width: 172px;
  height: 5px;
  background: #f1be48;
  display: block;
  margin: 28px 0 27px;
}
.saffireMobileSize #SeoWidgetFairRedMode .card-widget-title:after {
  margin: 21px 0px 29px;
}
#SeoWidgetFairRedMode .card-widget-description {
  display: block;
  max-width: 100%;
  font-size: 18px;
  font-family: "Gotham-Book-Regular";
  color: #000000;
  margin: 0.25em 0 0.75em;
  line-height: 30px;
}
.saffireMobileSize #SeoWidgetFairRedMode .card-widget-description {
  line-height: 22px;
  font-size: 16px;
}
#SeoWidgetFairRedMode .buttonwrap a {
  display: inline-block;
  padding: 10px 21px;
  text-decoration: none;
  background: #e4002b;
  font-size: 14px;
  font-family: "Gotham-Black";
  color: #fff;
  transition: 0.3s;
  margin: 15px 0;
}
#SeoWidgetFairRedMode .buttonwrap a:hover, #SeoWidgetFairRedMode .buttonwrap a:focus {
  background: #94011c;
}
#SeoWidgetFairRedMode .buttonwrap .buyNowButton {
  margin-right: 5px;
}

.socialNetworks {
  position: static;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  background: transparent;
  border-radius: 50px;
  padding: 0;
}
.socialNetworks img {
  display: block;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
}
.socialNetworks > span, .socialNetworks > a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  left: 0;
  margin-right: 12px;
  border: 3px solid transparent;
  transition: 0.3s;
  border-radius: 50%;
  border: none;
  padding: 3px;
  background-color: transparent;
}
.socialNetworks > a:hover {
  left: -6px;
  z-index: 2;
  left: 0;
  background-color: #e6e6e6;
}

.socialNetworks a:hover {
  background-color: #0081d1;
}

.socialNetworks .socialNetworkIconTwitter:hover {
  background-color: #1da1f2;
}
.socialNetworks .socialNetworkIconFacebook:hover {
  background-color: #1da1f2;
}
.socialNetworks .socialNetworkIconInstagram:before {
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  opacity: 0;
  z-index: -1;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.socialNetworks .socialNetworkIconInstagram:hover {
  background: none;
}
.socialNetworks .socialNetworkIconInstagram:hover:before {
  transition: 0.2s;
  opacity: 1;
}
.socialNetworks .socialNetworkIconTumblr:hover {
  background-color: #35465c;
}
.socialNetworks .socialNetworkIconPeriscope:hover {
  background-color: #3aa4c6;
}
.socialNetworks .socialNetworkIconPinterest:hover {
  background-color: #bd081c;
}
.socialNetworks .socialNetworkIconSpotify:hover {
  background-color: #1ed760;
}
.socialNetworks .socialNetworkIconFlickr:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0, 99, 220) 0%, rgb(0, 99, 220) 50%, rgb(0, 99, 220) 50%, rgb(255, 0, 132) 50%, rgb(255, 0, 132) 100%);
  opacity: 0;
  z-index: -1;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.socialNetworks .socialNetworkIconFlickr:hover {
  background: none;
}
.socialNetworks .socialNetworkIconFlickr:hover:before {
  transition: 0.2s;
  opacity: 1;
}
.socialNetworks .socialNetworkIconLinkedIn:hover {
  background-color: #0077b5;
}
.socialNetworks .socialNetworkIconYoutube:hover {
  background-color: #cd201f;
}
.socialNetworks .socialNetworkIconGooglePlus:hover {
  background-color: #dd4b39;
}
.socialNetworks .socialNetworkIconSnapchat:hover {
  background-color: #fffc00;
}

.pageIsLoaded .socialNetworks {
  right: 0;
  right: 10px;
}
@media screen and (max-width: 1230px) {
  .pageIsLoaded .socialNetworks {
    bottom: 0;
    bottom: 5px;
    right: 5px;
  }
}

/* Set the container ID*/
/* Size the container*/
/* Size the images*/
/* Format titles*/
/* Format arrows*/
#sponsorWidgetContainer {
  position: relative;
  width: 85%;
  max-width: 1500px;
  margin: 32px auto 0;
  box-sizing: border-box;
}
#sponsorWidgetContainer .sponsorWidgetContainer {
  padding-top: 37px;
}
#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 .sponsorCarouselImage img {
  max-width: 200px;
  max-height: 150px;
}
#sponsorWidgetContainer #sponsorsTitleContainer {
  width: 100%;
  text-align: center;
  top: 0;
}
#sponsorWidgetContainer #sponsorsTitleContainer .homepageh1 {
  font-family: "Gotham-Black", Arial, Verdana, sans-serif;
  font-size: 27px;
  color: #e4002b;
  text-shadow: 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;
}

.saffireMobileSize #sponsorWidgetContainer .sponsorCarouselImage img {
  max-height: 100px;
}

#sponsorWidgetContainer .sponsorWidgetContainer:not(.animate) .sponsor-controls-container {
  display: none;
}

.header .emailSignup {
  display: inline-flex;
  align-items: center;
}
.header .emailSignup .emailInputField input {
  height: 30px;
  width: 170px;
  padding: 0 5px;
  font-size: 14px;
  font-family: "Gotham-Book-Regular", Arial, Verdana, sans-serif;
  border-radius: 0 !important;
  width: 0;
  padding: 0;
  transition: 0.2s;
}
.header .emailSignup .emailInputField input:focus {
  width: 170px;
  padding: 0 5px;
  transition: 0.2s;
}
.header .emailSignup .emailSubmitButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  background: #999;
  border-radius: 0 !important;
  font-size: 14px;
  font-family: "Gotham-Book-Regular", Arial, Verdana, sans-serif;
  width: 35px;
  padding: 0;
  font-size: 0;
}
.header .emailSignup .emailSubmitButton:before {
  content: "\f0e0";
  display: block;
  font-size: 18px;
  font-family: "FontAwesome";
  line-height: 1;
  color: #000;
}
.header .emailSignup .emailSubmitButton:hover {
  background: #aaa;
}
.header .emailSignup:hover .emailInputField input {
  width: 170px;
  padding: 0 5px;
  transition: 0.2s;
}

.saffireMobileSize .header .emailSignup {
  position: static;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.saffireMobileSize .header .emailSignup:before {
  content: "\f0e0";
  position: static;
  line-height: 1;
  font-size: 26px;
  color: #eee;
}

#videoBlueVimeo iframe,
#videoRedVimeo iframe {
  max-width: 100% !important;
}

body.statefair-homepage main.content {
  display: none;
}

.saffireMobileSize .afterContent {
  display: block;
}

.video-container video {
  width: 100%;
}

.subpage-hero {
  box-sizing: border-box;
  width: 100%;
  height: 32vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.subpage-hero > div {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.subpage-hero .subpage-hero_content {
  box-sizing: border-box;
  width: 1320px;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-items: center;
  margin: 0 auto;
  padding: 0 20px;
}
.subpage-hero h2,
.subpage-hero p {
  display: block;
  max-width: 650px;
  color: #fff;
}
.subpage-hero h2 {
  font-family: "Gotham-Black";
  margin-bottom: 5px;
  line-height: 1.2;
  font-size: 50px;
}
@media screen and (max-width: 1280px) {
  .subpage-hero h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1024px) {
  .subpage-hero h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 800px) {
  .subpage-hero h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 640px) {
  .subpage-hero h2 {
    font-size: 22px;
  }
}
.subpage-hero p {
  font-family: "Gotham-Bold";
  font-size: 23px;
}
@media screen and (max-width: 1280px) {
  .subpage-hero p {
    font-size: 21px;
  }
}
@media screen and (max-width: 1024px) {
  .subpage-hero p {
    font-size: 19px;
  }
}
@media screen and (max-width: 800px) {
  .subpage-hero p {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .subpage-hero p {
    font-size: 14px;
  }
}

.dynamicPageContainer .rowIndex-1 .TextMediaModule .largeImage,
.dynamicPageContainer .rowIndex-1 .TextMediaModule .previewArea,
.dynamicPageContainer .rowIndex-1 .TextMediaModule .moduleTitle {
  display: none;
}

.featureLineup-headline,
.featureLineup-more > .button {
  font-size: 14px;
  padding: 4px;
}

.featureLineup-headline {
  margin-top: 1px;
}

.expandedView .expandedViewEventNameDescription {
  font-size: 13px;
}
.expandedView .expandedViewEventName {
  font-size: 14px;
}

.scroll-panel li a {
  font-size: 13px;
  text-transform: uppercase;
}

#eventFilterList {
  font-family: "Gotham-Bold";
}

.small.bc {
  opacity: 0;
}

.pageIsLoaded .small.bc {
  opacity: 1;
}

.subpage-fair .fa-suitcase,
.subpage-fair .scroll-panel li a,
.subpage-fair .scroll-panel li {
  color: #e4002b;
}
.subpage-fair .itinerary {
  color: #a4a4a4;
}

.fallcreek-homepage .ticket {
  display: none;
}
.fallcreek-homepage .viewcart {
  display: none;
}
.fallcreek-homepage .dynamicPageContainer {
  display: none;
}
.fallcreek-homepage .fallcreek-homepage-content .homepageSwiperSlider {
  display: flex !important;
}
.fallcreek-homepage #newSliderDescriptionContainer {
  display: none;
}
.fallcreek-homepage .saffireMobileSize .m-ticket-wrapper, .fallcreek-homepage .m-ticket-wrapper {
  display: none;
}
.fallcreek-homepage #footerButton {
  display: none;
}
.fallcreek-homepage .content {
  display: none;
}
.fallcreek-homepage .footer-wrapper ul.footerItems2 {
  align-items: center;
}
.fallcreek-homepage .saffireMobileSize .footer ul li a.button {
  margin: 10px auto;
}
.fallcreek-homepage .saffireMobileSize .footer-wrapper .copyright-wrapper {
  max-height: 8em;
}
.fallcreek-homepage .footer-wrapper .powered-by {
  margin-top: -12px;
}

/*# sourceMappingURL=theme.css.map */
