@charset "UTF-8";
/************** LOAD FONTS ******************/
@font-face {
  font-family: "WorkSans-Black";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/WorkSans-Black.woff2) format("woff2"), url(fonts/WorkSans-Black.woff) format("woff");
}
@font-face {
  font-family: "WorkSans-Bold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/WorkSans-Bold.woff2) format("woff2"), url(fonts/WorkSans-Bold.woff) format("woff");
}
@font-face {
  font-family: "WorkSans-Light";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/WorkSans-Light.woff2) format("woff2"), url(fonts/WorkSans-Light.woff) format("woff");
}
@font-face {
  font-family: "WorkSans-Medium";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/WorkSans-Medium.woff2) format("woff2"), url(fonts/WorkSans-Medium.woff) format("woff");
}
@font-face {
  font-family: "WorkSans-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/WorkSans-Regular.woff2) format("woff2"), url(fonts/WorkSans-Regular.woff) format("woff");
}
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat)*2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat)*3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

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

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

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

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

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

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

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

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration)*3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration)*1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration)*2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

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

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

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

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #869791;
}

.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: #323232;
  font: 16px/1.5 "WorkSans-Regular";
}

b,
strong {
  font-family: "WorkSans-Bold";
}

h1, h2, h3,
h4, h5, h6 {
  font-family: "WorkSans-Black";
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 0.67em 0;
  text-transform: none;
}

h1, h2 {
  color: #1163a9;
}

h3, h4, h5, h6 {
  color: #ac0707;
}

h1 {
  font-size: 34px;
}
@media screen and (min-width: 375px) {
  h1 {
    font-size: calc(34px + 10 * ((100vw - 375px) / 1545));
  }
}
@media screen and (min-width: 1920px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-size: 24px;
}
@media screen and (min-width: 375px) {
  h2 {
    font-size: calc(24px + 10 * ((100vw - 375px) / 1545));
  }
}
@media screen and (min-width: 1920px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: 22px;
}
@media screen and (min-width: 375px) {
  h3 {
    font-size: calc(22px + 2 * ((100vw - 375px) / 1545));
  }
}
@media screen and (min-width: 1920px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 20px;
}
@media screen and (min-width: 375px) {
  h4 {
    font-size: calc(20px + 2 * ((100vw - 375px) / 1545));
  }
}
@media screen and (min-width: 1920px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 18px;
}
@media screen and (min-width: 375px) {
  h5 {
    font-size: calc(18px + 2 * ((100vw - 375px) / 1545));
  }
}
@media screen and (min-width: 1920px) {
  h5 {
    font-size: 20px;
  }
}

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

.subContainer {
  font-size: 14px;
}
.subContainer h1 {
  font-size: 34px;
}
.subContainer h2 {
  font-size: 24px;
}
.subContainer h3 {
  font-size: 22px;
}
.subContainer h4 {
  font-size: 20px;
}
.subContainer h5 {
  font-size: 18px;
}
.subContainer h6 {
  font-size: 16px;
}

a {
  color: #1163a9;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

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

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

.fa {
  color: #323232;
}
.fa.fa-print {
  color: #fff;
}

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

.error {
  color: #c20000;
}

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

/***************** CONTAINERS **************************/
body {
  background: url(images/main-bg.png) no-repeat fixed;
  background-size: cover;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

body:not(.homepage) .content {
  box-sizing: border-box;
  position: relative;
  max-width: 1200px;
  margin: 140px auto;
  padding: 30px 50px;
  background: #fff;
}

body:not(.homepage).saffireMobileSize .content {
  padding: 15px;
  margin-bottom: 25px;
}

body:not(.homepage).saffireLargeSize.generalMessageOn .content {
  margin-top: 180px;
}

.saffireLargeSize.homepage .content {
  margin: 120px 0 75px;
  opacity: 0;
  transition: 0.3s;
}

.saffireLargeSize.homepage.pageIsLoaded .content {
  opacity: 1;
  transition: 0.3s;
}

.saffireLargeSize.homepage.generalMessageOn .content {
  margin-top: 160px;
}

.saffireMobileSize.homepage .content {
  margin-bottom: 25px;
}

.saffireMobileSize .content {
  margin-top: 65px !important;
}

.saffireMobileSize.generalMessageOn .content {
  margin-top: 105px !important;
}

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

.subContainer {
  background: #e6e6e6;
  color: #323232;
}

.dateDisplayBar,
.dateDisplay {
  background: #1163a9;
  color: #fff;
}
.dateDisplayBar a,
.dateDisplay a {
  color: #fff;
}

#google_translate_element {
  /* |%  Google translate position */
  top: 15px;
  right: 30px;
}
.saffireMobileSize #google_translate_element {
  margin: 20px 0 0;
}

.orderhistory {
  background: #1163a9;
}

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

.alternateRow {
  background: #e6e6e6;
}

.listingItem {
  background: #e6e6e6;
  border-bottom: 1px solid #cdcdcd;
}
.listingItem:hover {
  background: #eeeeee;
}

.generalmessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #ac0707;
  font-family: "WorkSans-Medium";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  transition: 0.3s;
}
.generalmessage a {
  color: inherit;
  text-decoration: underline;
}

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

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

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

.headerInnerContent {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: url(images/header-bg.png) center top;
  background-size: cover;
}

.header-main {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1210px;
  height: 109px;
  padding-right: 10px;
}
.saffireMobileSize .header-main {
  height: 65px;
  padding-right: 0;
}

.header-top, .header-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 0 5px;
}
.saffireMobileSize .header-top, .saffireMobileSize .header-bottom {
  padding: 0;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 327px;
  height: 171px;
  background: url(images/logo.png) center/contain no-repeat;
  z-index: 999;
  transition: 0.3s;
}
.saffireWindowScrolled .header-logo {
  width: 210px;
  height: 109px;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .header-logo {
    width: 210px;
    height: 109px;
  }
}
.saffireMobileSize .header-logo {
  width: 163px !important;
  height: 85px !important;
}

.ticket, .saffireMobileSize a.ticket {
  background: #1163a9;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #fff;
}
.ticket:hover, .saffireMobileSize a.ticket:hover {
  background: #1163a9;
  color: #fff;
  border: 2px solid #fff;
}

.ticket {
  font: 22px/1 "WorkSans-Black";
  padding: 9px 13px;
  margin: 0 0 0 10px;
}

.saffireMobileSize a.ticket, .saffireMobileSize a.ticket:hover {
  font: 18px/1 "WorkSans-Black";
  padding: 9px 17px;
  margin: 0;
}

.header .searchBox:not(.clonedSearchBox) {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input {
  height: 30px;
  width: 170px;
  padding: 0 5px;
  font-size: 14px;
  font-family: "WorkSans-Regular";
  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: 30px;
  padding: 0 10px;
  background: transparent;
  border-radius: 0 !important;
  font-size: 14px;
  font-family: "WorkSans-Regular";
  width: 35px;
  padding: 0;
  font-size: 0;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton:before {
  content: "";
  display: block;
  font-size: 18px;
  font-family: "FontAwesome";
  line-height: 1;
  color: #fff;
}
.header .searchBox:not(.clonedSearchBox):hover .searchBoxInput input {
  width: 170px;
  padding: 0 5px;
  transition: 0.2s;
}

.saffireMobileSize .header .searchBox:not(.clonedSearchBox) {
  display: none;
}

.saffireLargeSize .viewcart {
  display: inline-flex;
  color: #fff;
}
.saffireLargeSize .viewcart .cartMenuLink {
  display: inline-block;
  color: inherit;
}
.saffireLargeSize .viewcart .cartMenuLink:before {
  content: "";
  position: relative;
  margin-right: 5px;
  font-family: "FontAwesome";
  font-size: 20px;
  line-height: 1;
  color: inherit;
}

.saffireMobileSize .viewcart {
  display: none;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  vertical-align: top;
}
.mobile-nav-toggle:before {
  content: "";
  position: relative;
  top: 2px;
  font-family: "FontAwesome";
  font-size: 28px;
  line-height: 1;
  color: #fff;
}
.mobile-nav-toggle:hover {
  cursor: pointer;
}

.saffireLargeSize .mobile-nav-toggle {
  display: none;
}

.saffireLargeSize .nav .groups {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.saffireLargeSize .nav .groups .group {
  display: inline-block;
  flex-shrink: 0;
}
.saffireLargeSize .nav .groups .group:last-child .items,
.saffireLargeSize .nav .groups .group:nth-last-child(2) .items {
  left: auto;
  right: 0;
}
.saffireLargeSize .nav .groups .group:last-child .subitems,
.saffireLargeSize .nav .groups .group:nth-last-child(2) .subitems {
  left: auto;
  right: 100%;
}
.saffireLargeSize .nav .groups .group > a {
  display: inline-block;
  padding: 10px 20px;
  background: none;
  font-family: "WorkSans-Black", Arial, Verdana, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.saffireLargeSize .nav .groups .group:hover > a {
  color: #fff;
}
.saffireLargeSize .nav .items {
  top: 100%;
  left: 0;
  padding: 0;
  background: #1163a9;
}
.saffireLargeSize .nav .items .item a {
  padding: 5px 20px;
  color: #fff;
  font-family: "WorkSans-Regular";
}
.saffireLargeSize .nav .items .item a:hover {
  color: #fff;
}
.saffireLargeSize .nav .item {
  width: 200px;
  line-height: 1.4;
}
.saffireLargeSize .nav .item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.saffireLargeSize .nav .subitems {
  left: 100%;
  padding: 0;
  background: #1163a9;
}

/*********************** FOOTER **************************/
.footer {
  /* set the height of the footer */
  position: relative;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  font: 15px "WorkSans-Regular";
  color: #fff;
  text-align: left;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer-main {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(images/footer-main.png) center top no-repeat;
  background-size: cover;
  padding: 155px 20px 65px;
}
.saffireMobileSize .footer .footer-main {
  padding: 100px 20px 35px;
}
.footer .footer-main .inner-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.saffireMobileSize .footer .footer-main .inner-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.footer .footer-logo {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 789px;
  height: 193px;
  background: url(images/footer-logo.png) center/contain no-repeat;
}
.saffireMobileSize .footer .footer-logo {
  width: 355px;
  height: 97px;
  top: -22px;
}
@media screen and (max-width: 400px) {
  .footer .footer-logo {
    width: 325px !important;
    top: -25px !important;
  }
}
.footer .site-map ul, .footer .contact-us {
  display: flex;
  flex-direction: column;
}
.saffireMobileSize .footer .site-map {
  display: none;
}
.footer .site-map ul {
  margin: 10px 0 0;
}
.saffireMobileSize .footer .contact-us {
  margin-bottom: 25px;
}
.footer .address {
  margin: 10px 0;
}
.footer .address, .footer .phone {
  display: flex;
}
.footer .address:before, .footer .phone:before {
  content: "";
  display: block;
}
.footer .address:before {
  width: 12px;
  height: 16px;
  background: url(images/address.png) center/contain no-repeat;
  margin-right: 16px;
}
.footer .phone:before {
  width: 11px;
  height: 16px;
  background: url(images/phone.png) center/contain no-repeat;
  margin-right: 17px;
}
.footer .footer-heading {
  font: 14px/1 "WorkSans-Black";
}
.saffireMobileSize .footer .footer-heading {
  text-align: center;
}
.footer .footer-bottom {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: url(images/footer-bottom.png) center/cover;
  padding: 0 20px;
}
@media screen and (max-width: 1375px) {
  .footer .footer-bottom {
    align-items: flex-start;
    height: 95px;
  }
}
.saffireMobileSize .footer .footer-bottom {
  padding-top: 15px;
  height: 140px;
}
.footer ul.footerItems2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  width: 100%;
  max-width: 1200px;
  padding-bottom: 10px;
  margin: 0 auto;
}
.saffireMobileSize .footer ul.footerItems2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0;
}

.mobile-menu-container {
  background: url(images/main-bg.png) center/cover;
}
.mobile-menu-container .mobile-menu-header {
  background-color: #1163a9;
}
.mobile-menu-container .close-mobile-menu {
  width: 25px;
  height: 26px;
  background: url(images/menu-close.png) center/contain no-repeat;
}
.mobile-menu-container .close-mobile-menu:before, .mobile-menu-container .close-mobile-menu:after {
  display: none;
}
.mobile-menu-container .mobile-menu-subheader,
.mobile-menu-container .mobile-menu-subheader-btn {
  background-color: #ebeae7;
}
.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: #8c8c8c;
}
.mobile-menu-container .mobile-menu-login-showlinks .mobile-menu-login .mobile-menu-subheader-btn,
.mobile-menu-container .mobile-menu-subheader-btn:active {
  background-color: #1f5889;
}
.mobile-menu-container .mobile-menu-login-links a {
  font-family: "WorkSans-Black";
}
.mobile-menu-container .cart-counter {
  font-family: "WorkSans-Regular";
}
.mobile-menu-container .search-container input {
  font-family: "WorkSans-Regular";
}
.mobile-menu-container .search-container .search-submit-btn {
  color: #323232;
}
.mobile-menu-container .fa.fa-search {
  color: #8c8c8c;
}
.mobile-menu-container .mobile-menu-ticket-btn {
  background-color: #1163a9;
  font-family: "WorkSans-Black";
  color: #fff;
  border-color: #fff;
}
.mobile-menu-container .mobile-menu-footer-links a {
  font-family: "WorkSans-Regular";
  color: #323232;
}

#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: #1163a9;
  font-family: "WorkSans-Black";
  color: #fff;
}
#mobile-nav a:hover {
  background-color: #2973b2;
}
#mobile-nav .has-subitems span {
  background-color: #2973b2;
  color: #fff;
}
#mobile-nav .has-subitems span:hover {
  background-color: #1163a9;
}

.mobile-menu-subheader-btn:hover, .mobile-menu-subheader-btn:active, .mobile-menu-login-links a:hover {
  color: #8c8c8c;
}

/************************* 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: #1163a9;
  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: #323232;
}
.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 {
  position: relative;
  top: -25px;
  right: 5px;
  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;
}

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

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

.button,
.buttonSmall {
  box-sizing: border-box;
  line-height: 1.75em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  font-weight: normal !important;
  font-family: "WorkSans-Black";
  color: #fff !important;
  background: #1163a9;
  transition: 0.3s;
}

a.buttonSmall.button,
.buttonSmall {
  padding: 1px 10px;
  font-size: 11px;
}

.button:hover,
.buttonSmall:hover {
  background: #ac0707;
  transition: 0.3s;
}

a.updateButton.buttonSmall,
a.removeButton.buttonSmall,
a.cartMenuRemoveButton.button.buttonSmall {
  font-size: 0.875em;
}

.cartMenu .cartMenuCheckoutButton {
  margin-right: 10px;
}

.searchMapButton {
  font-size: 15px;
  padding: 2px 18px;
}

.featureLineup-more,
.featureLineup-headline {
  display: none;
}

#siteInfoBannerWidget {
  box-sizing: border-box;
  position: absolute;
  top: 8px;
  right: -3px;
  display: inline-flex;
  height: 101px;
  width: auto;
  max-width: 349px;
  margin: 0;
  padding: 10px 25px;
  background: url(images/countdown-bg.png);
  font-family: "WorkSans-Regular";
  font-size: 18px;
  color: #fff;
  text-align: right;
  line-height: 1;
  z-index: 2;
  min-width: auto;
  flex-direction: column;
  justify-content: center;
}
.saffireMobileSize #siteInfoBannerWidget {
  position: static;
}
@media screen and (max-width: 1225px) {
  #siteInfoBannerWidget {
    top: 0;
    right: 0;
  }
}
#siteInfoBannerWidget #eventDates {
  order: 2;
  font-family: "WorkSans-Black";
  font-size: 30px;
  font-weight: 400;
  color: #faf1b5;
}
#siteInfoBannerWidget #eventName {
  order: 1;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
}
#siteInfoBannerWidget .countdownDays {
  display: inline-block;
  font-family: "WorkSans-Black";
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.saffireMobileSize #siteInfoBannerWidget {
  left: auto;
  right: auto !important;
  padding: 10px;
  background: #c20000;
  width: 100%;
  max-width: 100%;
  height: 90px;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.saffireMobileSize #siteInfoBannerWidget #eventName {
  font-size: 13px;
  color: #fff;
  margin: 0 0 5px;
}
.saffireMobileSize #siteInfoBannerWidget #eventDates {
  font-size: 22px;
  color: #faf1b5;
}
.saffireMobileSize #siteInfoBannerWidget .countdownDays {
  font-size: 18px;
  color: #fff;
  margin: 0 0 5px;
}

body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
  font-family: "WorkSans-Black";
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 817px) {
  body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
    font-size: 16px;
  }
}
body.siteInfoBannerWidgetDateIsPast.siteInfoBannerWidgetNoThankYouMessage #siteInfoBannerWidget {
  display: none !important;
}

#hotButtons {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1215px;
  margin: 25px auto;
  padding: 0;
}
.saffireMobileSize #hotButtons {
  margin: 0 0 25px;
}
#hotButtons .card-widget-item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  width: 342px;
  height: 129px;
  margin: 5px 30px;
  text-decoration: none;
}
#hotButtons .card-widget-item:before, #hotButtons .card-widget-item:after {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 25px;
  height: 100%;
}
#hotButtons .card-widget-item:before {
  left: -25px;
  background: url(images/accent-left.png) center/contain no-repeat;
}
.saffireMobileSize #hotButtons .card-widget-item:before {
  left: -23px;
}
#hotButtons .card-widget-item:after {
  right: -25px;
  background: url(images/accent-right.png) center/contain no-repeat;
}
.saffireMobileSize #hotButtons .card-widget-item:after {
  right: -23px;
}
.saffireMobileSize #hotButtons .card-widget-item {
  width: 275px;
  height: 107px;
}
#hotButtons .card-widget-item:hover:before {
  background-image: url(images/accent-left-hover.png);
}
#hotButtons .card-widget-item:hover:after {
  background-image: url(images/accent-right-hover.png);
}
#hotButtons .card-widget-item:hover .card-content {
  background: linear-gradient(to right, #1163a9, rgba(17, 99, 169, 0.8), #1163a9);
}
#hotButtons .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
#hotButtons .card-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #c20000, rgba(194, 0, 0, 0.8), #c20000);
}
#hotButtons .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 30px/1 "WorkSans-Black";
  color: #fff;
}
.saffireMobileSize #hotButtons .card-widget-title {
  font-size: 24px;
}
#hotButtons .buttonwrap {
  display: none;
}

#mainFeature {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
#mainFeature .card-widget-item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  text-decoration: none;
}
#mainFeature .image-container {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 1200px;
  height: 675px;
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1200px) {
  #mainFeature .image-container {
    height: 56vw;
    box-shadow: none;
  }
}
#mainFeature .card-content {
  box-sizing: border-box;
  position: relative;
  top: -25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 97%;
  max-width: 1150px;
  height: 100px;
  background: url(images/title-bg.png) center/contain no-repeat;
  padding: 0 35px;
  margin: 0 auto;
}
.saffireMobileSize #mainFeature .card-content {
  width: 100%;
  height: 130px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 25px;
  border-top: 1px solid #fff;
  background-image: none;
  background-color: #c20000;
}
#mainFeature .card-widget-title {
  position: static;
  display: block;
  width: 70%;
  font: 36px/1 "WorkSans-Black";
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.saffireMobileSize #mainFeature .card-widget-title {
  width: 100%;
  font-size: 20px;
  margin-bottom: 10px;
  overflow: visible;
  text-overflow: initial;
  white-space: initial;
}
@media screen and (max-width: 1200px) {
  #mainFeature .card-widget-title {
    font-size: 32px;
  }
}
#mainFeature .buttonwrap {
  display: flex;
}
#mainFeature .buttonwrap a {
  font-size: 22px;
  border: 2px solid #fff;
  padding: 2px 19px;
  margin: 0 5px;
}
@media screen and (max-width: 1200px) {
  #mainFeature .buttonwrap a {
    font-size: 18px;
    padding: 3px 18px;
  }
}
#mainFeature .moreButton:hover, #mainFeature .buyNowButton:hover {
  background: #1163a9;
}

.owl-nav {
  height: 0;
}
.owl-nav.disabled {
  display: none;
}
@media screen and (max-width: 1225px) {
  .owl-nav {
    display: none;
  }
}

.owl-prev, .owl-next {
  position: absolute;
  bottom: 95px;
  font-size: 0 !important;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
}

.owl-prev {
  left: 0;
  border-top: 10px solid transparent;
  border-right: 12px solid #1163a9;
  border-bottom: 10px solid transparent;
}

.owl-next {
  right: 0;
  border-top: 10px solid transparent;
  border-left: 12px solid #1163a9;
  border-bottom: 10px solid transparent;
}

.owl-dots {
  position: relative;
  top: -20px;
}

.owl-dot span {
  width: 13px;
  height: 13px;
  border: 2px solid #5f471f;
  background: #5f471f !important;
}
.saffireMobileSize .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px;
}

.owl-dot.active span {
  background: transparent !important;
}

#premierSponsor {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 10px 0 0;
  padding: 0;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1250px) {
  #premierSponsor {
    margin: 0 0 65px 0;
  }
}
#premierSponsor:before {
  position: absolute;
  top: -30px;
  left: 0;
  content: "PREMIER SPONSOR";
  font: 20px/1 "WorkSans-Regular";
  color: #8c8c8c;
  width: 100%;
  text-align: center;
}
#premierSponsor .card-widget-item {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 200px;
  margin: 0;
  background: #fff;
}
#premierSponsor .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
}
#premierSponsor .card-content {
  display: none;
}

.socialNetworks {
  z-index: 80000000;
  position: fixed;
  right: -80px;
  top: 25%;
  transition: 0.6s ease;
  background: rgba(95, 71, 31, 0.5);
  border-radius: 50px;
  padding: 5px 3px;
}
.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;
  border: 3px solid rgba(95, 71, 31, 0.5);
  transition: 0.2s;
  border-radius: 50%;
  border: none;
  padding: 3px;
  background-color: transparent;
}
.socialNetworks > a:hover {
  left: -6px;
  z-index: 2;
  transition: 0.2s;
  left: 0;
  background-color: #e6e6e6;
}

@media screen and (max-width: 1375px) {
  .socialNetworks {
    top: auto;
    right: 0;
    bottom: -60px;
    border-top: none;
    border-bottom: none;
    padding: 0;
  }
  .socialNetworks img {
    max-width: 30px;
    max-height: 30px;
  }
  .socialNetworks > a {
    max-width: 30px;
    max-height: 30px;
    bottom: 0;
    float: left;
    margin: 0;
    transition: 0.2s;
    background-size: contain;
  }
  .socialNetworks > a:hover {
    left: 0;
    bottom: 6px;
    z-index: 2;
    transition: 0.2s;
    bottom: 0;
  }
}
.socialNetworks a:hover {
  background-color: #c20000;
}

.pageIsLoaded .socialNetworks {
  right: 0;
  right: 10px;
}
@media screen and (max-width: 1375px) {
  .pageIsLoaded .socialNetworks {
    bottom: 0;
    bottom: 10px;
    right: 10px;
  }
}

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

/* Set the container ID*/
/* Size the container*/
/* Size the images*/
/* Format titles*/
/* Format arrows*/
#sponsorWidgetContainer {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 890px;
  margin: 0;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  padding: 27px 40px;
}
@media screen and (max-width: 900px) {
  #sponsorWidgetContainer {
    padding: 25px 0;
  }
}
#sponsorWidgetContainer:before {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  content: "SPONSORS";
  font-size: 20px;
  font-family: "WorkSans-Regular";
  color: #8c8c8c;
}
#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: "";
  padding-left: 2px;
}
#sponsorWidgetContainer .sponsorWidgetContainer:hover .sponsor-controls-container {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorCarouselImage img {
  max-height: 125px;
}
@media screen and (max-width: 900px) {
  #sponsorWidgetContainer .sponsorCarouselImage img {
    max-height: 85px;
  }
}
#sponsorWidgetContainer #sponsorsTitleContainer {
  width: 100%;
  text-align: center;
  top: 0;
}
#sponsorWidgetContainer #sponsorsTitleContainer .homepageh1 {
  display: none;
}
#sponsorWidgetContainer #sponsorArrowRight {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  #sponsorWidgetContainer #sponsorArrowRight {
    display: none;
  }
}
#sponsorWidgetContainer #sponsorArrowRight span {
  border-width: 9.5px 0 9.5px 12px;
  border-color: transparent transparent transparent #1163a9;
}
#sponsorWidgetContainer #sponsorArrowLeft {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  #sponsorWidgetContainer #sponsorArrowLeft {
    display: none;
  }
}
#sponsorWidgetContainer #sponsorArrowLeft span {
  border-width: 9.5px 12px 9.5px 0;
  border-color: transparent #1163a9 transparent transparent;
}
#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: #323232;
  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: #323232;
  text-align: center;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn:after {
  content: "";
  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: #323232;
}

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

.footer .emailSignup {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.saffireMobileSize .footer .emailSignup {
  align-items: center;
  text-align: center;
}
.footer .emailSignup:before {
  content: "Never Miss Another Deal or Announcement!";
  font: 14px/1 "WorkSans-Black";
  text-transform: uppercase;
  max-width: 200px;
  text-align: right;
}
.saffireMobileSize .footer .emailSignup:before {
  text-align: center;
}
.saffireMobileSize .footer .emailSignup .emailSignupText {
  font-size: 13px;
}
.footer .emailSignup .emailInputField input {
  height: 45px;
  width: 280px;
  padding: 0 15px;
  font-size: 14px;
  font-family: "WorkSans-Regular";
  border-radius: 0 !important;
  background-image: none;
  margin-bottom: 15px;
}
.footer .emailSignup .emailSubmitButton {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 167px;
  height: 45px;
  background: #1163a9;
  border-radius: 0 !important;
  font: 22px/1 "WorkSans-Black";
  text-decoration: none;
  border: 2px solid #fff;
  transition: 0.3s;
}
.saffireMobileSize .footer .emailSignup .emailSubmitButton {
  font-size: 18px;
  width: 147px;
  height: 41px;
}
.footer .emailSignup .emailSubmitButton:hover {
  background: #ac0707;
  transition: 0.3s;
}

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

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

*:focus {
  outline: none;
}

.saffireMobileSize .expandedViewEventNameDescription {
  padding-bottom: 50px !important;
}

.calloutArrow, .calloutArrowGallery {
  display: none !important;
}

.tier-one {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1210px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.tier-three {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 50px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .tier-three {
    flex-direction: column;
  }
}

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