/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** 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: "GrandHotel-Regular";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/GrandHotel-Regular.woff2) format("woff2"), url(fonts/GrandHotel-Regular.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-ExtraBold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-ExtraBold.woff2) format("woff2"), url(fonts/Montserrat-ExtraBold.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");
}
@font-face {
  font-family: "Montserrat-SemiBold";
  font-style: normal;
  font-weight: normal;
  src: url(fonts/Montserrat-SemiBold.woff2) format("woff2"), url(fonts/Montserrat-SemiBold.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: #2a2a2a;
  font: 16px/1.5 "Montserrat-Medium";
}

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

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

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

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

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

h4 {
  font-size: 20px;
}
@media screen and (min-width: 450px) {
  h4 {
    font-size: calc(20px + 0 * ((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 {
  font-family: "Montserrat-ExtraBold";
  color: #543483;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

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

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

.fa {
  color: #2a2a2a;
}
.fa.fa-print {
  color: #fff;
}

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

.error {
  color: #f63f66;
}

/***************** CONTAINERS **************************/
body {
  background: url(images/main-bg.png) #c1e3ee center top no-repeat;
  background-size: 100%;
}
body.homepage {
  background: url(images/middle-bg.png) center/cover no-repeat fixed;
}

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

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

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

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

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

.saffireMobileSize .content {
  margin-top: 140px;
}

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

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

.subContainer {
  background: #f0f0f0;
  color: #2a2a2a;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.dateDisplayBar,
.dateDisplay {
  background: #f6ca15;
  color: #543483;
}
.dateDisplayBar a,
.dateDisplay a {
  color: #543483;
}

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

.mapLegend {
  padding: 10px;
}

.orderhistory {
  background: #f6ca15;
}

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

.alternateRow {
  background: #f0f0f0;
}

.listingItem {
  background: #f0f0f0;
  border-bottom: 1px solid #d7d7d7;
}
.listingItem:hover {
  background: #f8f8f8;
}

.generalmessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #21a149;
  font-family: "Montserrat-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 {
  font-size: 0;
  height: 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: #fff;
}

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

.header-top {
  position: relative;
  display: flex;
  justify-content: center;
}
.header-top .header-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 300px;
}

.inner-container {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 105px;
  width: 100%;
  max-width: 1320px;
  padding: 0 10px;
}
.saffireMobileSize .inner-container {
  height: 70px;
}

.widget-wrapper {
  display: flex;
  align-items: center;
}

.header-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(images/glow.png) center/cover #543483;
  height: 50px;
}
.saffireMobileSize .header-bottom {
  height: 70px;
  background-image: none;
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 284px;
  height: 89px;
  background: url(images/logo.png) center/contain no-repeat;
}
.saffireMobileSize .header-logo {
  top: 4px;
  left: 10px;
  width: 199px;
  height: 62px;
  background: url(images/logo-mobile.png) center/contain no-repeat;
  transform: none;
}

.ticket, .ticket:hover,
.saffireMobileSize a.ticket,
.saffireMobileSize a.ticket:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 188px;
  height: 52px;
  font: 20px/1 "Montserrat-Bold";
  color: #543483;
  text-transform: uppercase;
}

.ticket, .saffireMobileSize a.ticket {
  background: url(images/ticket.png) center/contain no-repeat;
  transition: 0.3s;
}

.ticket:hover, .saffireMobileSize a.ticket:hover {
  background: url(images/ticket-hover.png) center/contain no-repeat;
  transition: 0.3s;
}

.saffireLargeSize .ticket,
.saffireLargeSize .ticket:hover {
  margin-top: 5px;
}

.header .searchBox:not(.clonedSearchBox) {
  display: inline-flex;
  align-items: center;
}
.header .searchBox:not(.clonedSearchBox):hover .searchSubmitButton:before {
  background-image: url(images/search-hover.png);
  transition: 0.3s;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input {
  height: 20px;
  width: 150px;
  padding: 0 5px;
  font: 11px/1 "Montserrat-Medium";
  border-radius: 0 !important;
  border: 1px solid #f6ca15;
  width: 0;
  padding: 0;
  border: 0;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox) .searchBoxInput input:focus {
  width: 150px;
  padding: 0 5px;
  border: 1px solid #f6ca15;
  transition: 0.2s;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0 10px;
  background: transparent;
  border-radius: 0 !important;
  width: auto;
  padding: 0;
  font-size: 0;
}
.header .searchBox:not(.clonedSearchBox) .searchSubmitButton:before {
  content: "";
  display: block;
  width: 16px;
  height: 15px;
  background: url(images/search.png) center/contain no-repeat;
  margin-left: 5px;
  transition: 0.3s;
}
.header .searchBox:not(.clonedSearchBox):hover .searchBoxInput input {
  width: 150px;
  padding: 0 5px;
  border: 1px solid #f6ca15;
  transition: 0.2s;
}

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

.saffireLargeSize .viewcart,
.saffireMobileSize .viewcart {
  display: inline-flex;
}
.saffireLargeSize .viewcart:hover .cartMenuLink,
.saffireMobileSize .viewcart:hover .cartMenuLink {
  color: #f6ca15;
  transition: 0.3s;
}
.saffireLargeSize .viewcart:hover .cartMenuLink:before,
.saffireMobileSize .viewcart:hover .cartMenuLink:before {
  background-image: url(images/cart-hover.png);
  transition: 0.3s;
}
.saffireLargeSize .viewcart .cartMenuLink,
.saffireMobileSize .viewcart .cartMenuLink {
  display: inline-flex;
  align-items: center;
  color: #543483;
  font: 14px/1 "Montserrat-Bold";
  transition: 0.3s;
}
.saffireLargeSize .viewcart .cartMenuLink:before,
.saffireMobileSize .viewcart .cartMenuLink:before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background: url(images/cart.png) center/contain no-repeat;
  margin-right: 5px;
  transition: 0.3s;
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.mobile-nav-toggle:before {
  content: "";
  display: block;
  width: 23px;
  height: 22px;
  background: url(images/menu.png) center/contain no-repeat;
}
.mobile-nav-toggle:hover {
  cursor: pointer;
}

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

#weatherBugWidget {
  font: 15px/1 "Montserrat-SemiBold";
}
.saffireMobileSize #weatherBugWidget {
  display: none !important;
}
#weatherBugWidget img {
  margin-left: 0;
}
#weatherBugWidget .weatherDescriptive {
  display: none;
}

.directions {
  display: block;
  width: 14px;
  height: 19px;
  background: url(images/directions.png) center/contain no-repeat;
  margin: 0 15px;
  transition: 0.3s;
}
.directions:hover {
  background-image: url(images/directions-hover.png);
  transition: 0.3s;
}
.saffireMobileSize .directions {
  display: none;
}

.saffireLargeSize .nav .groups {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.saffireLargeSize .nav .groups .group {
  display: inline-block;
  flex-shrink: 0;
  margin: 0 10px;
}
.saffireLargeSize .nav .groups .group > a {
  display: inline-block;
  padding: 11px 20px;
  background: none;
  font-family: "Montserrat-SemiBold", Arial, Verdana, sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .saffireLargeSize .nav .groups .group > a {
    font-size: 15px;
  }
}
.saffireLargeSize .nav .groups .group:hover > a {
  color: #543483;
  background: #f6ca15;
}
.saffireLargeSize .nav .items {
  top: 100%;
  left: 0;
  padding: 5px 0;
  background: #f6ca15;
  width: 100%;
}
.saffireLargeSize .nav .items .item a {
  padding: 10px 20px;
  color: #543483;
  font: 13px/1 "Montserrat-Medium";
}
.saffireLargeSize .nav .items .item a:hover {
  color: #543483;
}
.saffireLargeSize .nav .item {
  width: 100%;
  line-height: 1.4;
}
.saffireLargeSize .nav .item:hover {
  background: #e9be1d;
}
.saffireLargeSize .nav .subitems {
  left: 100%;
  padding: 0;
  background: #f6ca15;
}

/*********************** FOOTER **************************/
.footer, .saffireMobilesize .footer {
  /* set the height of the footer */
  box-sizing: border-box;
  position: relative;
  height: auto;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: url(images/footer-bg.png) center/cover no-repeat !important;
  color: #fff;
  text-align: left;
  font-size: 15px !important;
}
.footer:before, .saffireMobilesize .footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url(images/divider.png) center/cover;
}
.footer a, .saffireMobilesize .footer a {
  font-family: "Montserrat-Medium";
  color: #fff;
  text-decoration: none;
}
.footer a:hover, .saffireMobilesize .footer a:hover {
  text-decoration: underline;
}
.footer ul.footerItems1, .saffireMobilesize .footer ul.footerItems1 {
  display: flex;
  flex-direction: column;
  margin: 0 80px 0 0;
  font-family: "Montserrat-Medium";
}
@media screen and (max-width: 1350px) {
  .footer ul.footerItems1, .saffireMobilesize .footer ul.footerItems1 {
    margin: 0 40px 0 0;
  }
}
@media screen and (max-width: 1200px) {
  .footer ul.footerItems1, .saffireMobilesize .footer ul.footerItems1 {
    display: none;
  }
}
.footer ul.footerItems1:before, .saffireMobilesize .footer ul.footerItems1:before {
  content: "Site Map";
  font: 20px/1 "Montserrat-Bold";
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer ul.footerItems1 .separator, .saffireMobilesize .footer ul.footerItems1 .separator {
  display: none !important;
}
.footer ul.footerItems2, .saffireMobilesize .footer ul.footerItems2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.footer ul.footerItems2 li, .saffireMobilesize .footer ul.footerItems2 li {
  line-height: 1.25;
}
.saffireMobileSize .footer ul.footerItems2, .saffireMobileSize .saffireMobilesize .footer ul.footerItems2 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-main, .footer-left, .footer-right,
.footer-right-top {
  position: relative;
  display: flex;
}

.footer-left, .footer-right {
  width: 50%;
}

.footer-main {
  box-sizing: border-box;
  justify-content: space-between;
  width: 100%;
  max-width: 1350px;
  padding: 50px 25px;
  margin: 0 auto;
}
.saffireMobileSize .footer-main {
  justify-content: center;
  padding: 30px 25px 20px;
}

.footer-left {
  justify-content: flex-end;
}
.saffireMobileSize .footer-left {
  display: none;
}

.footer-right {
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .footer-right {
    width: 100%;
  }
}
.saffireMobileSize .footer-right {
  align-items: center;
  max-width: 350px;
}

.saffireMobileSize .footer-right-top {
  flex-direction: column;
}

.contact-us {
  display: flex;
  flex-direction: column;
}
.contact-us a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.saffireMobileSize .contact-us a {
  flex-direction: column;
  text-align: center;
}
.contact-us a:before {
  position: relative;
  content: "";
  display: block;
  margin-right: 13px;
}
.saffireMobileSize .contact-us a:before {
  position: static;
  margin: 0 auto;
}
.saffireMobileSize .contact-us {
  align-items: center;
  text-align: center;
}

.phone:before {
  width: 11px;
  height: 16px;
  background: url(images/phone.png) center/contain no-repeat;
}

.address:before {
  top: -10px;
  width: 12px;
  height: 16px;
  background: url(images/address.png) center/contain no-repeat;
}

.email:before {
  width: 14px;
  height: 10px;
  background: url(images/email.png) center/contain no-repeat;
}

.about-us {
  margin-left: 80px;
}
@media screen and (max-width: 1350px) {
  .about-us {
    margin-left: 40px;
  }
}
.saffireMobileSize .about-us {
  text-align: center;
  margin: 0 auto;
}
.about-us p {
  margin: 0;
}

.mascot {
  position: absolute;
  top: -95px;
  left: 0;
  opacity: 0;
  z-index: 99;
}
.saffireMobileSize .mascot {
  position: static;
  width: 131px;
  height: 204px;
  margin-top: 20px;
  opacity: 1;
}

.footer-heading {
  font: 20px/1 "Montserrat-Bold";
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-logos {
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}
.footer-logos a {
  display: block;
}

.friends-of-conroe {
  width: 249px;
  height: 78px;
  background: url(images/friends-of-conroe.png) center/contain no-repeat;
}
.saffireMobileSize .friends-of-conroe {
  width: 133px;
  height: 42px;
}

.cajun-catfish-festival {
  width: 112px;
  height: 121px;
  background: url(images/cajun-catfish-festival.png) center/contain no-repeat;
  margin: 0 75px;
}
.saffireMobileSize .cajun-catfish-festival {
  width: 59px;
  height: 64px;
  margin: 0 20px;
}

.music-series {
  width: 174px;
  height: 116px;
  background: url(images/music-series.png) center/contain no-repeat;
}
.saffireMobileSize .music-series {
  width: 92px;
  height: 61px;
}

.footer-bottom {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #45296a;
  padding: 0 25px 10px;
}
.saffireMobileSize .footer-bottom {
  height: 95px;
  padding: 0 25px;
}

.mobile-menu-container {
  background-color: #fff;
}
.mobile-menu-container .mobile-menu-header {
  background-color: #543483;
}
.mobile-menu-container .close-mobile-menu:before, .mobile-menu-container .close-mobile-menu:after {
  background-color: #fff;
}
.mobile-menu-container .mobile-menu-subheader,
.mobile-menu-container .mobile-menu-subheader-btn {
  background-color: #f6f6f7;
}
.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: #2a2a2a;
}
.mobile-menu-container .mobile-menu-login-showlinks .mobile-menu-login .mobile-menu-subheader-btn,
.mobile-menu-container .mobile-menu-subheader-btn:active {
  background-color: #5e4a7c;
}
.mobile-menu-container .mobile-menu-login-links a {
  font-family: "Montserrat-Medium";
}
.mobile-menu-container .cart-counter {
  font-family: "Montserrat-Medium";
  color: #2a2a2a !important;
}
.mobile-menu-container .search-container input[type=text] {
  font-family: "Montserrat-Medium";
  -webkit-appearance: none;
  border-radius: 0px;
  height: 50px;
}
.mobile-menu-container .search-container .fa-search {
  color: rgba(42, 42, 42, 0.5);
}
.mobile-menu-container .mobile-menu-ticket-btn {
  background-color: #543483;
  font-family: "Montserrat-Medium";
  color: #f6f6f7;
  font-weight: normal;
  border-color: #fff;
}
.mobile-menu-container .mobile-menu-footer-links a {
  font-family: "Montserrat-Medium";
  color: #2a2a2a;
}

#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: #543483;
  font-family: "Montserrat-Medium";
  color: #f6f6f7;
}
#mobile-nav a:hover {
  background-color: #765d9c;
}
#mobile-nav .has-subitems span {
  background-color: #765d9c;
  color: #f6f6f7;
}
#mobile-nav .has-subitems span:hover {
  background-color: #543483;
}

/************************* 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: #543483;
  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: #2a2a2a;
}
.modalBody .showorksTableGrid tr.odd {
  background: #fff;
  color: black;
}
.modalBody .showorksTableGrid tr.even {
  background: #e6e6e6;
  color: black;
}

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

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

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

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

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

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

.button,
.buttonSmall {
  box-sizing: border-box;
  line-height: 1.75em;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat-SemiBold";
  color: #fff !important;
  background: #21a149;
  transition: 0.3s;
}

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

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

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

#cardWidget {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1485px;
  margin: 10px auto 55px;
  padding: 0;
}
#cardWidget .card-widget-item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  width: 485px;
  height: 405px;
  margin: 5px;
}
@media screen and (max-width: 1100px) {
  #cardWidget .card-widget-item {
    width: 350px;
    height: 292px;
  }
}
#cardWidget .card-widget-item:hover .card-widget-description {
  opacity: 1;
  transition: 0.3s;
}
#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%;
  border-radius: 10px;
}
#cardWidget .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
#cardWidget .card-widget-title {
  box-sizing: border-box;
  order: 2;
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  font: 21px/1 "Montserrat-Bold";
  color: #fff;
  text-transform: uppercase;
  background: url(images/pattern-overlay.png) center/cover;
  border-radius: 0 0 10px 10px;
  padding: 0 95px;
}
@media screen and (max-width: 1100px) {
  #cardWidget .card-widget-title {
    font-size: 17px;
    height: 70px;
    padding: 0 70px;
  }
}
#cardWidget .card-widget-title:after {
  content: "";
  width: 78px;
  height: 8px;
  background: url(images/dots.png) center/contain no-repeat;
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  #cardWidget .card-widget-title:after {
    margin-top: 5px;
  }
}
#cardWidget .card-widget-description {
  box-sizing: border-box;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2a2a2a;
  font: 16px "Montserrat-Medium";
  padding: 0 35px;
  height: 78%;
  background: rgba(246, 202, 21, 0.9);
  border-radius: 10px 10px 0 0;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 1100px) {
  #cardWidget .card-widget-description {
    font-size: 14px;
  }
}
#cardWidget .buttonwrap {
  margin-top: 15px;
}

@media screen and (max-width: 1100px) {
  #cardWidget .button {
    font-size: 14px;
  }
}
#siteInfoBannerWidget {
  box-sizing: border-box;
  position: static;
  display: inline-flex;
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 0 0 15px;
  padding: 0;
  background: transparent;
  font-family: "Montserrat-SemiBold";
  font-size: 15px;
  color: #2a2a2a;
  text-align: left;
  line-height: 1;
  z-index: 2;
  min-width: auto;
  flex-direction: column;
  justify-content: center;
}
#siteInfoBannerWidget #eventDates {
  font-family: "Montserrat-Bold";
  font-size: 24px;
  font-weight: 400;
  color: #543483;
}
#siteInfoBannerWidget #eventName {
  font-size: 15px;
  font-weight: 400;
}
#siteInfoBannerWidget .countdownDays {
  display: inline-block;
  font-family: "Montserrat-SemiBold";
  font-size: 15px;
  font-weight: 400;
  color: #2a2a2a;
}
#siteInfoBannerWidget .countdownDays:before {
  content: "Only";
  margin-right: 5px;
}

.saffireMobileSize #siteInfoBannerWidget {
  left: auto;
  right: auto !important;
  padding: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  width: 100%;
  padding-bottom: 25px;
  margin: 0 auto;
}
.saffireMobileSize #siteInfoBannerWidget #eventName {
  font-size: 15px;
  color: inherit;
}
.saffireMobileSize #siteInfoBannerWidget #eventDates {
  font-size: 24px;
  color: inherit;
}
.saffireMobileSize #siteInfoBannerWidget .countdownDays {
  font-size: 15px;
  color: inherit;
}

body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
  font-family: "Montserrat-Bold";
  font-size: 18px;
  color: #2a2a2a;
}
.saffireMobileSize body.siteInfoBannerWidgetDateIsPast #siteInfoBannerWidget .countdownDays {
  font-size: 16px;
}
body.siteInfoBannerWidgetDateIsPast.siteInfoBannerWidgetNoThankYouMessage #siteInfoBannerWidget {
  display: none !important;
}

#friendsAtWork {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1350px) {
  #friendsAtWork {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#friendsAtWork .card-widget-item {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  flex: 1 1 50%;
  width: 50%;
}
#friendsAtWork .card-widget-item:nth-child(1), #friendsAtWork .card-widget-item:nth-child(2) {
  margin-bottom: 40px;
}
#friendsAtWork .card-widget-item:nth-child(1), #friendsAtWork .card-widget-item:nth-child(3) {
  justify-content: flex-start;
}
#friendsAtWork .card-widget-item:nth-child(1) .card-content, #friendsAtWork .card-widget-item:nth-child(3) .card-content {
  text-align: right;
}
@media screen and (max-width: 1350px) {
  #friendsAtWork .card-widget-item {
    width: 100%;
    justify-content: center !important;
    margin-bottom: 20px !important;
  }
}
#friendsAtWork .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  width: 400px;
}
@media screen and (max-width: 1350px) {
  #friendsAtWork .card-content {
    text-align: center !important;
  }
}
#friendsAtWork .card-widget-title {
  position: static;
  display: block;
  width: 100%;
  font: 43px/1 "Montserrat-ExtraBold";
  margin-bottom: 10px;
}
.saffireMobileSize #friendsAtWork .card-widget-title {
  font-size: 40px;
  margin-bottom: 5px;
}
#friendsAtWork .card-widget-description {
  font: 23px/1.25 "Montserrat-Medium";
}
.saffireMobileSize #friendsAtWork .card-widget-description {
  font-size: 18px;
}
#friendsAtWork .buttonwrap {
  display: none;
}

.socialNetworks {
  z-index: 80000000;
  position: fixed;
  right: -80px;
  top: 22%;
  transition: 0.6s ease;
  background: #fff;
  border-radius: 50px;
  padding: 5px 3px;
}
.socialNetworks img {
  display: block;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
}
.socialNetworks > span, .socialNetworks > a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  left: 0;
  border: 3px solid #fff;
  transition: 0.2s;
  border-radius: 50%;
  border: none;
  padding: 3px;
  background-color: transparent;
}
.socialNetworks > a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #21a149;
  margin: 0 0 5px;
}
.socialNetworks > a:last-of-type {
  margin: 0;
}
.socialNetworks > a:hover {
  left: -6px;
  z-index: 2;
  transition: 0.2s;
  left: 0;
  background-color: #f0f0f0;
}

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

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

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

.saffireMobileSize .socialNetworks {
  position: static;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  border-radius: 0;
}

/* Set the container ID*/
/* Size the container*/
/* Size the images*/
/* Format titles*/
/* Format arrows*/
#sponsorWidgetContainer {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 50px;
}
.saffireMobileSize #sponsorWidgetContainer {
  padding: 0;
}
#sponsorWidgetContainer .sponsorWidgetContainer .sponsor-controls-container:focus-within {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsorCarouselImageContainer {
  animation-play-state: paused;
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsor-playpause-btn:before {
  content: "Resume";
}
#sponsorWidgetContainer .sponsorWidgetContainer.sponsors-paused .sponsor-playpause-btn:after {
  content: "\f04b";
  padding-left: 2px;
}
#sponsorWidgetContainer .sponsorWidgetContainer:hover .sponsor-controls-container {
  bottom: 3px;
  opacity: 1;
  transition: 0.2s;
  pointer-events: auto;
}
#sponsorWidgetContainer .sponsorCarouselImage img {
  max-height: 135px;
}
.saffireMobileSize #sponsorWidgetContainer .sponsorCarouselImage img {
  max-height: 70px;
}
#sponsorWidgetContainer #sponsorsTitleContainer {
  width: 100%;
  text-align: center;
  top: 0;
}
#sponsorWidgetContainer #sponsorsTitleContainer .homepageh1 {
  display: none;
}
#sponsorWidgetContainer #sponsorArrowRight, #sponsorWidgetContainer #sponsorArrowLeft {
  top: 50%;
  transform: translateY(-50%);
}
.saffireMobileSize #sponsorWidgetContainer #sponsorArrowRight, .saffireMobileSize #sponsorWidgetContainer #sponsorArrowLeft {
  display: none;
}
#sponsorWidgetContainer #sponsorArrowRight span, #sponsorWidgetContainer #sponsorArrowLeft span {
  border: none;
  width: 13px;
  height: 22px;
  background: center/contain no-repeat;
  transition: 0.3s;
}
#sponsorWidgetContainer #sponsorArrowRight {
  right: 0;
}
#sponsorWidgetContainer #sponsorArrowRight span {
  background-image: url(images/arrow-right.png);
}
#sponsorWidgetContainer #sponsorArrowRight span:hover {
  background-image: url(images/arrow-right-hover.png);
  transition: 0.3s;
}
#sponsorWidgetContainer #sponsorArrowLeft {
  left: 0;
}
#sponsorWidgetContainer #sponsorArrowLeft span {
  background-image: url(images/arrow-left.png);
}
#sponsorWidgetContainer #sponsorArrowLeft span:hover {
  background-image: url(images/arrow-left-hover.png);
  transition: 0.3s;
}
#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: #2a2a2a;
  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: #2a2a2a;
  text-align: center;
}
#sponsorWidgetContainer .sponsor-controls-container .sponsor-playpause-btn:after {
  content: "\f04c";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  padding-left: 1px;
  width: 30px;
  height: 100%;
  font-family: "FontAwesome";
  font-size: 15px;
  color: #2a2a2a;
}

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

.sponsors-title {
  font: 46px/1 "GrandHotel-Regular";
  color: #21a149;
  margin-bottom: 5px;
}

#swiperWidget {
  position: relative;
}
.eventsMode #swiperWidget {
  display: none;
}
#swiperWidget .swiper-slide {
  position: relative;
}
#swiperWidget .swiper-slide:after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url(images/divider.png) center/cover;
}
.saffireMobileSize #swiperWidget .swiper-slide:after {
  display: none;
}
#swiperWidget .swiper-image-container {
  height: 40.25vw;
  min-height: 200px;
  max-height: 100vh;
  background-size: cover;
  background-position: center;
}

.swiper-content-container {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-items: center;
  text-align: center;
  width: 750px;
  padding: 100px 75px;
  background: rgba(84, 52, 131, 0.75);
  border-radius: 15px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .swiper-content-container {
    width: 100%;
    max-width: 500px;
    padding: 50px;
  }
}
.saffireMobileSize .swiper-content-container {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  background: #543483;
  padding: 25px 25px 0;
  margin: 0 auto;
}
.swiper-content-container h2 {
  display: inline-block;
  width: auto;
  font: 45px/1 "Montserrat-ExtraBold";
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}
@media screen and (max-width: 1300px) {
  .swiper-content-container h2 {
    font-size: 30px;
  }
}
.saffireMobileSize .swiper-content-container h2 {
  font-size: 24px;
  max-width: 300px;
}
.swiper-content-container p {
  margin: 10px 0 0;
  font: 26px/1 "Montserrat-SemiBold";
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .swiper-content-container p {
    font-size: 18px;
  }
}
.swiper-content-container .button-container {
  margin-top: 10px;
}
.swiper-content-container .button {
  margin: 0 3px;
}
.saffireMobileSize .swiper-content-container .button {
  font-size: 14px;
}

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

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #21a149 !important;
  margin: 0 5px;
  opacity: 0.5;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

*: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;
}

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

.faqAnswer {
  background: #f0f0f0;
  padding: 20px;
  margin-left: 60px;
  color: #2a2a2a;
}

.faqSection {
  width: 100%;
  max-width: 1200px;
}
.faqSection .bold {
  font-weight: normal;
}
.faqSection a {
  font-family: "Montserrat-Medium";
}

.FAQModule hr {
  display: none;
}

.featureLineupContainer .subContainer {
  position: relative;
  box-shadow: none;
  background: #f0f0f0;
}
.featureLineupContainer .subContainer a {
  font-family: "Montserrat-Medium";
}

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

.featureLineup-headline {
  box-sizing: border-box;
  top: auto;
  bottom: 59px;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  font: 15px/1 "Montserrat-Medium";
  text-transform: uppercase;
  color: #fff;
  background: rgba(33, 161, 73, 0.9);
  width: 283px;
  padding: 10px;
}

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

.featureLineup-more {
  display: none;
}

.featureLineup-social a {
  color: #21a149;
  transition: 0.3s;
}
.featureLineup-social a:hover {
  color: #178439;
  transition: 0.3s;
}

.tier-one {
  position: relative;
}
.saffireMobileSize .tier-one {
  background: #543483;
}
.saffireMobileSize .tier-one:after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url(images/divider.png) center/cover;
}

.tier-three {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 455px;
  padding: 60px 40px;
  background: url(images/purple-bg.png) center/cover;
}
@media screen and (max-width: 1350px) {
  .tier-three {
    height: auto;
    padding: 375px 40px 25px;
  }
}
.saffireMobileSize .tier-three {
  padding: 315px 30px 25px;
}
.tier-three:before, .tier-three:after {
  position: absolute;
  content: "";
  display: block;
}
.tier-three:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 281px;
  height: 337px;
  background: url(images/friends-at-work.png) center/contain no-repeat;
}
@media screen and (max-width: 1350px) {
  .tier-three:before {
    top: 20px;
    transform: translate(-50%, 0);
  }
}
.saffireMobileSize .tier-three:before {
  width: 226px;
  height: 286px;
}
.tier-three:after {
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url(images/dotted-divider.png) center/cover;
}

.tier-four {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  padding: 15px 25px 45px;
}
.saffireMobileSize .tier-four {
  padding: 15px 0;
}

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