/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./src/sass/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
/************** LOAD FONTS ******************/
@font-face {
  font-family: "Black-Diamond";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Black-Diamond.woff2) format("woff2"), url(fonts/Black-Diamond.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Black";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Black.woff2) format("woff2"), url(fonts/Montserrat-Black.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Bold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Bold.woff2) format("woff2"), url(fonts/Montserrat-Bold.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Light";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Light.woff2) format("woff2"), url(fonts/Montserrat-Light.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Medium";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Medium.woff2) format("woff2"), url(fonts/Montserrat-Medium.woff) format("woff");
}
@font-face {
  font-family: "Montserrat-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-Regular.woff2) format("woff2"), url(fonts/Montserrat-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;
}

.saffireMobileSize .header {
  padding: 0;
  font: inherit;
  color: inherit;
}
.saffireMobileSize .headerInnerContent {
  height: auto;
}

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

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

.loginstatus {
  float: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cartMenuRemoveButton {
  text-decoration: none;
}

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

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

.standAloneDirections {
  color: inherit;
}

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

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

.left.pressDate {
  width: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

body {
  color: #323232;
  font: 17px/1.5 "Montserrat-Light";
}

b,
strong {
  font-family: "Montserrat-Black";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat-Black";
  font-weight: normal;
  color: #00478b;
  line-height: 1.2;
  margin: 0.5em 0;
  text-transform: none;
}

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

h2 {
  font-size: 24px;
}
@media screen and (min-width: 450px) {
  h2 {
    font-size: calc(24px + 6 * ((100vw - 450px) / 916));
  }
}
@media screen and (min-width: 1366px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 20px;
}
@media screen and (min-width: 450px) {
  h3 {
    font-size: calc(20px + 2 * ((100vw - 450px) / 916));
  }
}
@media screen and (min-width: 1366px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 18px;
}
@media screen and (min-width: 450px) {
  h4 {
    font-size: calc(18px + 2 * ((100vw - 450px) / 916));
  }
}
@media screen and (min-width: 1366px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
}
@media screen and (min-width: 450px) {
  h5 {
    font-size: calc(18px + 0 * ((100vw - 450px) / 916));
  }
}
@media screen and (min-width: 1366px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 16px;
}
@media screen and (min-width: 450px) {
  h6 {
    font-size: calc(16px + 0 * ((100vw - 450px) / 916));
  }
}
@media screen and (min-width: 1366px) {
  h6 {
    font-size: 16px;
  }
}

a {
  color: #00478b;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

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

input.textbox,
select.dropdown,
textarea.multi {
  color: #323232;
  font: 17px/1.5 "Montserrat-Light";
  padding: 2px 6px;
  border-radius: 0 !important;
}

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

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

.error {
  color: #eb243a;
}

.small {
  font-size: 13px;
}

.expandedViewEventNameDescription {
  font-size: 13px !important;
}

.site h2 a {
  font-size: 18px;
  text-decoration: none;
}

/***************** CONTAINERS **************************/
body {
  background: 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: 210px auto 60px;
  padding: 20px;
  background: #fff;
}

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

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

body:not(.homepage).saffireMobileSize .content {
  margin-top: 80px;
}

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

.saffireLargeSize.homepage .content {
  margin: 0 auto;
}

.saffireMobileSize.homepage .content {
  margin-top: 70px;
}

.saffireMobileSize.homepage.generalMessageOn .content {
  margin-top: 110px;
}

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

.subContainer {
  background: #eee;
  color: #323232;
}
.subContainer a,
.subContainer h1, .subContainer h2, .subContainer h3 {
  color: #323232;
}
.subContainer .error {
  color: #000;
}

.dateDisplayBar,
.dateDisplay {
  background: #00478b;
  color: #fff;
}
.dateDisplayBar a,
.dateDisplay a {
  color: #fff;
}

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

.mapLegend {
  padding: 10px;
}

.orderhistory {
  background: #00478b;
}

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

.alternateRow {
  background: #eee;
}

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

.generalmessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #f7b81e;
  font-family: "Montserrat-Medium";
  font-size: 15px;
  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: 13px;
  line-height: 1.2;
  transition: 0.3s;
}
@media screen and (max-width: 500px) {
  .saffireMobileSize .generalmessage {
    font-size: 11px;
  }
}

.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;
  background: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.saffireWindowScrolled .header {
  background: #fff;
  box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
  transition: 0.3s;
}

.headerInnerContent {
  position: relative;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  height: 90px;
  margin: 0 auto;
}
.saffireMobileSize .headerInnerContent {
  justify-content: center;
  height: 70px;
}

.header-top {
  display: flex;
  align-items: center;
  padding-top: 10px;
}
.saffireMobileSize .header-top {
  display: none;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 257px;
  height: 177px;
  background: url(images/logo.png) center/contain no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 1225px) {
  .header-logo {
    left: 5px;
  }
}
@media screen and (max-width: 1100px) {
  .header-logo {
    width: 180px;
    height: 123px;
  }
}
.saffireWindowScrolled .header-logo, .saffireMobileSize .header-logo {
  width: 130px;
  height: 90px;
  transition: 0.3s;
}
.saffireMobileSize .header-logo {
  top: 5px;
}

.saffireMobileSize.saffireWindowScrolled .header-logo {
  width: 85px;
  height: 60px;
}

.header .searchBox:not(.clonedSearchBox) {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input {
  height: 30px;
  width: 170px;
  padding: 0 5px;
  font-size: 13px;
  font-family: "Montserrat-Light";
  color: #00478b;
  border-radius: 0 !important;
  background: transparent;
  width: 0;
  padding: 0;
  transition: 0.3s;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input:focus {
  width: 170px;
  padding: 0 5px;
  border: 1px solid #2fb890;
  transition: 0.3s;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;
  background: none;
  border-radius: 0 !important;
  font-size: 15px;
  font-family: "Montserrat-Medium";
  color: #00478b !important;
  text-transform: capitalize;
  width: auto;
  padding: 0;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(images/search.png) center/contain no-repeat;
  margin: 0 10px 0 5px;
}
.header .searchBox:not(.clonedSearchBox):hover .searchBoxInput input {
  width: 170px;
  padding: 0 5px;
  border: 1px solid #2fb890;
  transition: 0.3s;
}

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

.mobile-nav-toggle {
  position: relative;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-toggle:before {
  content: "";
  display: block;
  width: 20px;
  height: 14px;
  background: url(images/menu.png) center/contain no-repeat;
}
.mobile-nav-toggle:hover {
  cursor: pointer;
}

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

.header-links a {
  display: inline-block;
  font: 15px/1 "Montserrat-Medium";
  margin: 0 20px;
}

.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 {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  margin: 0 20px;
  background: none;
  font-family: "Montserrat-Black", Arial, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #323232;
  transition: 0.3s;
}
.saffireLargeSize .nav .groups .group > a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 7px;
  background: transparent;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  .saffireLargeSize .nav .groups .group > a {
    font-size: 16px;
  }
}
.saffireLargeSize .nav .groups .group:hover > a {
  color: #31a3dc;
  transition: 0.3s;
}
.saffireLargeSize .nav .groups .group:hover > a:after {
  background: #31a3dc;
  transition: 0.3s;
}
.saffireLargeSize .nav .items {
  top: 100%;
  left: 0;
  padding: 5px 0;
  background: #fff;
  box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.2);
}
.saffireLargeSize .nav .items .item a {
  position: relative;
  padding: 9px 15px;
  color: #00478b;
  font: 15px/1 "Montserrat-Medium";
}
.saffireLargeSize .nav .items .item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: transparent;
  transition: 0.3s;
}
.saffireLargeSize .nav .items .item a:hover {
  color: #00478b;
}
.saffireLargeSize .nav .items .item a:hover:before {
  background: #31a3dc;
  transition: 0.3s;
}
.saffireLargeSize .nav .item {
  width: 200px;
  line-height: 1.5;
}
.saffireLargeSize .nav .item:hover {
  background: rgba(49, 163, 220, 0.2);
}
.saffireLargeSize .nav .subitems {
  left: 100%;
  padding: 0;
  background: #fff;
}

/*********************** FOOTER **************************/
.footer {
  /* set the height of the footer */
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  text-align: center;
  font-family: "Montserrat-Light";
}
.homepage .footer {
  margin-top: -150px;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  margin: 0 !important;
}
.footer ul.footerItems2 {
  font-size: 13px;
  color: #a5a5a5;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .footer ul.footerItems2 {
    text-align: center;
  }
}
@media screen and (max-width: 625px) {
  .footer ul.footerItems2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
  }
}

.footer-top {
  position: relative;
  width: 100%;
}
.footer-top:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 45px;
  background: rgba(255, 255, 255, 0.5);
}
.saffireMobileSize .footer-top:after {
  height: 15px;
}

.footer-bar {
  display: flex;
  width: 100%;
  height: 160px;
}
.saffireMobileSize .footer-bar {
  height: 90px;
}
.footer-bar .bar-one, .footer-bar .bar-two, .footer-bar .bar-three {
  flex: 1 1 33%;
  width: 33%;
  height: 100%;
}
.footer-bar .bar-one {
  background: #f0756b;
}
.footer-bar .bar-two {
  background: #eb243a;
}
.footer-bar .bar-three {
  background: #f7b81e;
}

.footer-main,
.footer-bottom {
  display: flex;
  justify-content: center;
}
.footer-main .inner-container,
.footer-bottom .inner-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.footer-main {
  background: #31a3dc;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .footer-main {
    padding-bottom: 30px;
  }
  .footer-main .inner-container {
    flex-direction: column;
    max-width: 100%;
  }
}

.footer-main-left,
.footer-main-right {
  box-sizing: border-box;
  width: 50%;
}
@media screen and (max-width: 1250px) {
  .footer-main-left,
.footer-main-right {
    width: 100%;
  }
}

.footer-main-left {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
@media screen and (max-width: 1250px) {
  .footer-main-left {
    justify-content: center;
  }
}
@media screen and (max-width: 625px) {
  .footer-main-left {
    flex-direction: column;
  }
}

.footer-main-right {
  background: #c1e3f4;
}
@media screen and (max-width: 1250px) {
  .footer-main-right {
    padding: 20px 0;
  }
}

.footer-logo {
  display: block;
  width: 157px;
  height: 128px;
  background: url(images/footer-logo.png) center/contain no-repeat;
  margin-right: 35px;
}
@media screen and (max-width: 625px) {
  .footer-logo {
    margin: 0 auto 20px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-info a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}
@media screen and (max-width: 625px) {
  .contact-info a {
    font-size: 14px;
  }
}
.contact-info a:last-of-type {
  margin-bottom: 0;
}
.contact-info a:before {
  content: "";
  display: block;
  background: center/contain no-repeat;
}
.contact-info .phone:before {
  width: 16px;
  height: 26px;
  background-image: url(images/phone.png);
  padding-left: 5px;
  margin-right: 22px;
}
.contact-info .email:before {
  width: 22px;
  height: 16px;
  background-image: url(images/email.png);
  margin-right: 20px;
}
.contact-info .address:before {
  width: 16px;
  height: 21px;
  background-image: url(images/address.png);
  padding-left: 5px;
  margin-right: 21px;
}

.saffireMobileSize .footer-links {
  margin-bottom: 15px !important;
}
.footer-links a {
  font-size: 15px;
  color: #31a3dc;
  margin-right: 15px;
}
@media screen and (max-width: 625px) {
  .footer-links a {
    font-size: 11px;
    margin-right: 5px;
  }
}

.footer-bottom {
  padding: 15px 0 30px;
}
.footer-bottom .inner-container {
  align-items: flex-end;
}
@media screen and (max-width: 1250px) {
  .footer-bottom .inner-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu-container {
  background-color: #31a3dc;
  background: url(images/mobile-bg.png) center bottom;
  background-size: cover;
}
.mobile-menu-container:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 174px;
  height: 121px;
  background: url(images/logo.png) center/contain no-repeat;
}
.mobile-menu-container .mobile-menu-header {
  background-color: #fff;
}
.mobile-menu-container .close-mobile-menu {
  display: block;
  width: 25px;
  height: 26px;
  background: url(images/menu-x.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 {
  background: #c1e3f4;
}
.mobile-menu-container .search-container input[type=text] {
  font: 13px/1 "Montserrat-Light";
  -webkit-appearance: none;
  border-radius: 0px;
  height: 50px;
}
.mobile-menu-container .search-container .fa-search {
  color: rgba(50, 50, 50, 0.5);
}
.mobile-menu-container .mobile-menu-ticket-btn {
  background-color: #00478b;
  font-family: "Montserrat-Black";
  color: #fff;
  border-color: #fff;
}
.mobile-menu-container .mobile-menu-footer-links a {
  font: 11px/1 "Montserrat-Light";
  color: #fff;
}

#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: #00478b;
  font: 15px/1 "Montserrat-Black";
  color: #fff;
}
#mobile-nav a:hover {
  background-color: #1a5a97;
}
#mobile-nav .has-subitems span {
  background-color: #1a5a97;
  color: #fff;
}
#mobile-nav .has-subitems span:hover {
  background-color: #00478b;
}

/************************* 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: #00478b;
  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: -20px !important;
  background: none;
}
.modalClose .modalCloseButton {
  min-width: 40px;
  margin-right: 10px;
}
.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 {
  height: 250px !important;
  padding: 0;
}

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

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

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

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

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

.searchMapButton {
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 0 !important;
}

#cardWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 5px;
}
.saffireMobileSize #cardWidget {
  flex-wrap: wrap;
  padding: 0;
}
#cardWidget .card-widget-item {
  flex: 1 1 33%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  width: 520px;
  height: 330px;
  margin: 0 5px;
}
#cardWidget .card-widget-item:hover .image-container {
  transform: scale(1.2);
  transition: 0.3s;
}
#cardWidget .card-widget-item:hover .card-widget-description, #cardWidget .card-widget-item:hover .buttonwrap {
  display: block;
}
#cardWidget .card-widget-item:nth-child(1) .card-content {
  background: rgba(47, 184, 144, 0.8);
}
#cardWidget .card-widget-item:nth-child(2) .card-content {
  background: rgba(247, 184, 30, 0.8);
}
#cardWidget .card-widget-item:nth-child(3) .card-content {
  background: rgba(235, 36, 58, 0.8);
}
.saffireMobileSize #cardWidget .card-widget-item {
  flex: 1 1 100%;
  height: 175px;
  margin: 0 0 5px;
}
#cardWidget .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%;
  transform: none;
  transition: 0.3s;
}
#cardWidget .card-content {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0 70px;
}
@media screen and (max-width: 1200px) {
  #cardWidget .card-content {
    padding: 0 20px;
  }
}
#cardWidget .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 32px/1 "Montserrat-Black";
  color: #fff;
}
.saffireMobileSize #cardWidget .card-widget-title {
  font-size: 24px;
}
#cardWidget .card-widget-description {
  display: none;
  font: 17px/1.5 "Montserrat-Light";
  color: #fff;
  margin: 20px 0;
  transition: 0.3s;
}
.saffireMobileSize #cardWidget .card-widget-description {
  font-size: 13px;
  max-width: 350px;
  margin: 10px 0;
}
#cardWidget .buttonwrap {
  display: none;
}
#cardWidget .moreButton {
  background: #fff;
  color: #00478b !important;
  font-size: 21px;
  padding: 6px 29px;
  transition: 0.3s;
}
#cardWidget .moreButton:hover {
  color: #31a3dc !important;
  transition: 0.3s;
}
.saffireMobileSize #cardWidget .moreButton {
  font-size: 16px;
  padding: 2px 16px;
}

#footerLogos {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
#footerLogos .card-widget-item {
  box-sizing: border-box;
  display: flex;
  margin: 0 20px;
}
@media screen and (max-width: 625px) {
  #footerLogos .card-widget-item {
    margin: 0 15px;
  }
}
#footerLogos .image-container {
  box-sizing: border-box;
  position: static;
  display: inline-block;
}
#footerLogos .image-container img {
  max-width: 210px;
  max-height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 625px) {
  #footerLogos .image-container img {
    max-width: 100px;
    max-height: 50px;
  }
}
#footerLogos .card-content {
  display: none;
}

#seoWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1240px;
  padding: 0 20px;
  margin: 40px auto 80px;
}
.saffireMobileSize #seoWidget {
  margin: 40px auto;
}
#seoWidget .card-widget-item {
  box-sizing: border-box;
  display: flex;
}
#seoWidget .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
#seoWidget .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 80px/1 "Black-Diamond";
  color: #00478b;
}
.saffireMobileSize #seoWidget .card-widget-title {
  font-size: 40px;
}
#seoWidget .card-widget-title:after {
  content: "";
  display: block;
  width: 198px;
  height: 19px;
  background: url(images/separator.png) center/contain no-repeat;
  margin: 45px auto 25px;
}
.saffireMobileSize #seoWidget .card-widget-title:after {
  margin: 35px auto;
}
#seoWidget .card-widget-description {
  font: 17px/1.5 "Montserrat-Light";
  color: #323232;
}
.saffireMobileSize #seoWidget .card-widget-description {
  font-size: 15px;
}
#seoWidget .buttonwrap {
  margin-top: 30px;
}
#seoWidget .moreButton {
  font-size: 24px;
  padding: 2px 20px;
}
.saffireMobileSize #seoWidget .moreButton {
  font-size: 16px;
  padding: 2px 16px;
}

/* SOCIAL NETWORK PLUGIN */
#socialNetworkWidget {
  height: 530px;
  width: 100%;
  max-width: 100%;
  background: #fff;
  overflow: hidden;
  border-bottom: 2px solid #fff;
}
.saffireMobileSize #socialNetworkWidget {
  min-height: 353px;
}
#socialNetworkWidget .multiSocialWidgetContainer {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
#socialNetworkWidget #instafeedContainer {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}
#socialNetworkWidget #instafeedContainer a {
  box-sizing: border-box;
  position: relative;
  display: block;
  flex: 1 1 48%;
  min-width: 175px;
  height: 50%;
  overflow: hidden;
  border: 2px solid transparent;
}
@media screen and (min-width: 600px) {
  #socialNetworkWidget #instafeedContainer a {
    flex: 1 1 33%;
  }
}
@media screen and (min-width: 850px) {
  #socialNetworkWidget #instafeedContainer a {
    flex: 1 1 25%;
  }
}
@media screen and (min-width: 1024px) {
  #socialNetworkWidget #instafeedContainer a {
    flex: 1 1 20%;
  }
}
@media screen and (min-width: 1366px) {
  #socialNetworkWidget #instafeedContainer a {
    flex: 1 1 15%;
  }
}
#socialNetworkWidget #instafeedContainer img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#socialNetworkWidget #instafeedContainer > a:hover {
  opacity: 0.75;
}

@supports (display: grid) {
  #socialNetworkWidget {
    height: 21vw;
    min-height: 530px;
    width: 100%;
  }
  .saffireMobileSize #socialNetworkWidget {
    min-height: 353px;
  }
  #socialNetworkWidget #instafeedContainer {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: 1fr 1fr;
    grid-gap: 2px 2px;
  }
  @media screen and (min-width: 817px) {
    #socialNetworkWidget #instafeedContainer {
      grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    }
  }
  #socialNetworkWidget #instafeedContainer a {
    width: 100%;
    max-width: 100%;
    height: 175px;
    max-height: 100%;
    border: none;
  }
  #socialNetworkWidget #instafeedContainer img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #socialNetworkWidget #instafeedContainer > a:hover {
    opacity: 0.75;
  }
}
.instafeed-title {
  box-sizing: border-box;
  display: block;
  margin: 0 auto 20px;
  width: 464px;
  height: 58px;
  background: url(images/instafeed-title.png) center/contain no-repeat;
}
.saffireMobileSize .instafeed-title {
  width: 85%;
}

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  font: 24px/1 "Montserrat-Black";
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background: #00478b;
  margin: 30px auto 0;
  transition: 0.3s;
}
.load-more:hover {
  background: #31a3dc;
  transition: 0.3s;
}

#swiperWidget {
  position: relative;
}
#swiperWidget .swiper-slide {
  position: relative;
  z-index: 3;
}
#swiperWidget .swiper-image-container {
  height: 50vw;
  max-height: 100vh;
  background-size: cover;
  background-position: center;
}
.saffireMobileSize #swiperWidget .swiper-image-container {
  min-height: 200px;
  border-bottom: 1px solid #fff;
}

#swiperWidget .swiper-wrapper {
  background: #31a3dc;
}
#swiperWidget .swiper-wrapper:before, #swiperWidget .swiper-wrapper:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 200px;
  height: 120px;
}
#swiperWidget .swiper-wrapper:before {
  left: 0;
  background: url(images/color-blocks-left.png) #31a3dc center/contain repeat-x;
  z-index: 1;
}
.saffireMobileSize #swiperWidget .swiper-wrapper:before {
  height: 95px;
  left: -180px;
  z-index: 9;
}
#swiperWidget .swiper-wrapper:after {
  right: 0;
  background: url(images/color-blocks-right.png) #31a3dc center/contain repeat-x;
  z-index: 1;
}
.saffireMobileSize #swiperWidget .swiper-wrapper:after {
  display: none;
}

.swiper-content-container {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 120px;
  text-decoration: none;
  background: #31a3dc;
  padding: 30px 50px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .swiper-content-container {
    max-width: 90%;
  }
}
.saffireMobileSize .swiper-content-container {
  align-items: flex-start;
  max-width: 100%;
  height: 95px;
  padding: 15px 40px;
}
.swiper-content-container h2 {
  display: flex;
  width: auto;
  max-width: 100%;
  margin: 0;
  font: 34px/1 "Montserrat-Black";
  color: #fff;
  max-width: 625px;
}
.saffireMobileSize .swiper-content-container h2 {
  font-size: 19px;
  line-height: 1.25;
}
.swiper-content-container .button {
  font-size: 24px;
  border: 2px solid #00478b;
  padding: 2px 20px;
  transition: 0.3s;
}
.swiper-content-container .button:hover {
  border-color: #fff;
  transition: 0.3s;
}
.saffireMobileSize .swiper-content-container .button {
  position: absolute;
  bottom: -10px;
  left: 40px;
  font-size: 16px;
  padding: 2px 16px;
  z-index: 99;
}

.swiper-pagination {
  position: relative;
  padding: 15px 0 10px;
}

.swiper-pagination-bullet {
  box-sizing: border-box;
  width: 13px;
  height: 13px;
  border: 2px solid #98d1ed;
  border-radius: 0 !important;
  background: transparent;
  margin: 0 4px;
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #7fa3c5;
  border-color: #7fa3c5;
}

.swiper-button-prev,
.swiper-button-next {
  top: 45%;
  width: 80px;
  height: 82px;
}
@media screen and (max-width: 1200px) {
  .swiper-button-prev,
.swiper-button-next {
    top: 48%;
    width: 40px;
    height: 42px;
  }
}
.saffireMobileSize .swiper-button-prev,
.saffireMobileSize .swiper-button-next {
  display: none;
}

.swiper-button-prev {
  background: url(images/arrow-left.png) center/contain no-repeat;
  left: 120px;
}
@media screen and (max-width: 1600px) {
  .swiper-button-prev {
    left: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .swiper-button-prev {
    left: 30px;
  }
}

.swiper-button-next {
  background: url(images/arrow-right.png) center/contain no-repeat;
  right: 120px;
}
@media screen and (max-width: 1600px) {
  .swiper-button-next {
    right: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .swiper-button-next {
    right: 30px;
  }
}

.swiper-container {
  overflow: visible;
}

#videoSection {
  position: relative;
  display: inline-block;
  width: 875px;
  max-width: 100%;
  vertical-align: top;
  float: none;
}
#videoSection:after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
  content: "";
  display: block;
  width: 845px;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
}
@media screen and (max-width: 900px) {
  #videoSection:after {
    width: 90%;
  }
}
#videoSection.single-video #arrow-container {
  display: none;
}

#videoWidget {
  box-sizing: border-box;
  position: relative;
  height: 0;
  width: 100%;
  max-width: 875px;
  padding-bottom: 56.3%;
  text-align: center;
}
#videoWidget iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  border: none !important;
  z-index: 1;
}
#videoWidget .video-loading {
  box-sizing: border-box;
  position: relative;
  top: calc(50% - 40px);
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 100%;
  z-index: 0;
  animation: spin 1s infinite linear;
}
#videoWidget .video-arrow {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 14px;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
#videoWidget:hover .video-arrow.previous {
  left: 8px;
  opacity: 0.8;
  visibility: visible;
}
#videoWidget:hover .video-arrow.next {
  right: 8px;
  opacity: 0.8;
  visibility: visible;
}
#videoWidget #videoList {
  display: none;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
*:focus {
  outline: none;
}

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

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

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

.starlist li {
  padding: 0;
}

.getUpdatesPageEmailModule .emailSignup.modalOnly {
  max-width: 100%;
}
.getUpdatesPageEmailModule .emailSignup.modalOnly .emailInputField input {
  width: 300px;
  margin-bottom: 15px;
}

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

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

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

.FAQModule hr {
  display: none;
}

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

.featureLineup-headline {
  box-sizing: border-box;
  top: auto;
  bottom: 59px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  font: 16px/1 "Montserrat-Black";
  color: #fff;
  background: #2fb890;
  width: 283px;
  padding: 10px;
}

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

.featureLineup-more {
  display: none;
}

.featureLineup-social a {
  color: #00478b;
  transition: 0.3s;
}
.featureLineup-social a:hover {
  color: #31a3dc;
  transition: 0.3s;
}

.tier-four {
  padding: 100px 0 0;
}
.saffireMobileSize .tier-four {
  padding: 70px 0 0;
}

.bg-container {
  width: 100%;
  background: url(images/middle-bg.png) center top;
  background-size: cover;
  padding-bottom: 230px;
}

.tier-five {
  display: flex;
  justify-content: center;
  margin-top: -185px;
  padding: 0 5px 110px;
}

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