@charset "UTF-8";

/*! ============================================
    Sample Growtix CSS
    Author: Milton M. Montaque II - @KaiFire
    Last modified: May 8, 2023
    Version: 3.0 
   =============================================
 */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
#gtFacetNav ul,
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

#gtFacetNav ul.infinite,
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

@-webkit-keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
}

@-webkit-keyframes flash {

  0%,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1)
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1)
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1)
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1)
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

@-webkit-keyframes shake {

  0%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

@keyframes shake {

  0%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}

@-webkit-keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg)
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
}

@keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg)
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center
}

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97)
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97)
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0)
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0)
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9)
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

#gtFacetNav .gtFacetSubNav,
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

#gtFacetNav ul.flip,
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  }
}

@keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  50% {
    opacity: 1
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3)
  }

  to {
    opacity: 0
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.gt-full-container img {
  max-width: 100%
}

.gt-full-container a {
  cursor: pointer
}

.no-margin-bottom {
  margin-bottom: 0 !important
}

.no-margin-top {
  margin-top: 0 !important
}

.no-margin-left {
  margin-left: 0 !important
}

.no-margin-right {
  margin-right: 0 !important
}

.no-margin {
  margin: 0 !important
}

.no-padding-bottom {
  padding-bottom: 0 !important
}

#gtGuestTabs a:after {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out
}

.gtCSVButton {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out
}

.clear {
  clear: both !important
}

.gt-clear {
  clear: both !important
}

.gt-hide {
  display: none !important
}

.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.glide * {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

.glide__track {
  overflow: hidden
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  will-change: transform
}

.glide__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.glide__slide {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent
}

.glide__slide a {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.glide--rtl {
  direction: rtl
}

.awesomplete {
  display: inline-block;
  position: relative;
  width: 100%
}

.awesomplete [hidden] {
  display: none
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0)
}

.awesomplete>input {
  display: block
}

.awesomplete>ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 0px;
  margin: 0.2em 0 0;
  background: -webkit-gradient(linear, left top, right bottom, from(#fff), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(to bottom right, #fff, rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none
}

.awesomplete>ul:empty {
  display: none
}

.awesomplete>ul:before {
  content: "";
  position: absolute;
  top: -0.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: 0.4em;
  background: #fff;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.awesomplete>ul>li {
  position: relative;
  padding: 0.2em 0.5em;
  cursor: pointer
}

.awesomplete>ul>li:hover {
  background: #b7d2e0;
  color: #000
}

.awesomplete>ul>li[aria-selected=true] {
  background: #f4b223;
  color: #fff
}

.awesomplete mark {
  background: rgba(242, 177, 37, 0.3)
}

.awesomplete li:hover mark {
  background: rgba(242, 177, 37, 0.3)
}

.awesomplete li[aria-selected=true] mark {
  background: rgba(242, 177, 37, 0.3);
  color: inherit
}

@supports (transform:scale(0)) {
  .awesomplete>ul {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    -webkit-transform-origin: 1.43em -0.43em;
    transform-origin: 1.43em -0.43em
  }

  .awesomplete>ul:empty {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: block;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
  }

  .awesomplete>ul[hidden] {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: block;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
  }
}

.gt-button {
  margin-bottom: 1rem;
  font-size: 16px;
  padding: 0.8rem 1.6rem 0.85rem 1.6rem;
  background: #f4b223;
  color: #fff !important;
  text-decoration: none;
  display: inline-block
}

.gt-button:hover {
  background: rgb(217, 152, 13);
  border-bottom: 4px solid #f4b223;
  text-decoration: none
}

.gt-button.large {
  padding: 1.5rem 3rem 1.55rem 3rem
}

.gt-button.small {
  padding: 0.7rem 1.4rem 0.75rem 1.4rem
}

.gt-button.tiny {
  padding: 0.5rem 1rem 0.55rem 1rem
}

.gt-button.expand {
  width: 100%;
  padding: 0.8rem 1.6rem 0.85rem 1.6rem
}

.gt-panel {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.11111rem;
  padding: 1.11111rem;
  background: #f2f2f2;
  color: #333333
}

.gt-panel>:last-child {
  margin-bottom: 0
}

#gtSearch {
  margin-bottom: 0.75rem
}

#gtSearch .gtSearchInput {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 0
}

@media only screen and (min-width:32.05em) {
  #gtSearch .gtSearchInput {
    width: 83.3333333333%
  }
}

@media only screen and (max-width:32em) {
  #gtSearch .gtSearchInput {
    text-align: center
  }
}

#gtSearch .gtSearchButton {
  width: 100%;
  text-align: center;
  margin-top: 1rem
}

@media only screen and (min-width:32.05em) {
  #gtSearch .gtSearchButton {
    width: 16.6666666667%;
    margin: 0
  }
}

#gtSearch #gtSearchButton {
  margin-bottom: 0
}

@media only screen and (min-width:32.05em) {
  #gtSearch #gtSearchButton {
    width: 100%
  }
}

#gtSearch input {
  width: 100%;
  padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  font-size: 1.5rem;
  border-top: none;
  border-left: none;
  border-right: none
}

#gtSearch input::-webkit-input-placeholder {
  color: #222
}

#gtSearch input::-moz-placeholder {
  color: #222
}

#gtSearch input:-ms-input-placeholder {
  color: #222
}

#gtSearch .button {
  width: 100%
}

.specials-list .gt-flex-col {
  background: #fafafa
}

.specials-list .gtSpecial-image-area {
  height: 250px;
  width: 100%;
  overflow: hidden
}

.specials-list .gtSpecial-image {
  width: 100%;
  height: 100%;
  background: #f4b223;
  background-position: top center;
  background-size: cover;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out
}

.specials-list .bottomInfoTop {
  margin-bottom: 0.5rem;
  min-height: 30px;
  position: relative
}

.specials-list .bottomInfoTop:after {
  content: "";
  clear: both;
  display: table
}

.specials-list .small-exhib-icon-container {
  float: left;
  display: block;
  margin-right: 0.5rem
}

.specials-list .gt-company-container {
  margin-top: 8.1px;
  position: relative;
  float: left
}

.specials-list .small-exhib-icon {
  border-radius: 100%;
  height: 30px;
  width: 30px;
  background-position: top center;
  background-size: cover
}

.specials-list .gtSpecial-bottom-area {
  padding: 0.75rem;
  background: #fafafa
}

.specials-list .gtSpecial-company-booth {
  font-size: 15px;
  font-weight: normal;
  color: rgb(59.5, 59.5, 59.5);
  line-height: 1
}

.specials-list .gtSpecial-price {
  font-size: 20px;
  color: #222;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 12px
}

.specials-list .gtSpecial-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  line-height: 1;
  margin-bottom: 12px
}

.specials-list .gt-entry:hover .gtSpecial-image {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

.gtModal-promo-desc {
  font-size: 15px;
  font-weight: normal;
  color: #222;
  line-height: 1;
  margin-bottom: 12px
}

.gt-hasPromo {
  text-decoration: line-through;
  font-style: italic;
  margin-left: 12px;
  font-size: 15px;
  opacity: 0.5
}

.gtModal-promo-code {
  padding: 6px;
  color: black;
  background: -webkit-gradient(linear, left top, right top, from(rgb(235.5, 157.5, 160.0434782609)), to(rgb(218.5, 72.5, 77.2608695652)));
  background: linear-gradient(90deg, rgb(235.5, 157.5, 160.0434782609), rgb(218.5, 72.5, 77.2608695652));
  border-radius: 0px;
  display: inline-block
}

.gtModal-promo-code span {
  font-weight: bold
}

#premProducts .singleSpecialList,
#showroomBottom .singleSpecialList {
  margin: 0;
  padding-left: 0
}

#premProducts .singleSpecialList .singleSpecial,
#showroomBottom .singleSpecialList .singleSpecial {
  width: 25%;
  margin-bottom: 3rem;
  padding-right: 0.75rem;
  list-style-type: none
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {

  #premProducts .singleSpecialList .singleSpecial,
  #showroomBottom .singleSpecialList .singleSpecial {
    width: 33%
  }
}

@media only screen and (max-width:32em) {

  #premProducts .singleSpecialList .singleSpecial,
  #showroomBottom .singleSpecialList .singleSpecial {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4.5rem
  }
}

#premProducts .glide__slides,
#premProducts .singleSpecialList,
#showroomBottom .glide__slides,
#showroomBottom .singleSpecialList {
  margin: 0
}

#premProducts .glide__slides li:hover .gtSlideSpecial-image,
#premProducts .singleSpecialList li:hover .gtSlideSpecial-image,
#showroomBottom .glide__slides li:hover .gtSlideSpecial-image,
#showroomBottom .singleSpecialList li:hover .gtSlideSpecial-image {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

#premProducts .glide__slides .gtSlideSpecial-image-area,
#premProducts .singleSpecialList .gtSlideSpecial-image-area,
#showroomBottom .glide__slides .gtSlideSpecial-image-area,
#showroomBottom .singleSpecialList .gtSlideSpecial-image-area {
  height: 15rem;
  width: 100%;
  overflow: hidden
}

#premProducts .glide__slides .gtSlideSpecial-image,
#premProducts .singleSpecialList .gtSlideSpecial-image,
#showroomBottom .glide__slides .gtSlideSpecial-image,
#showroomBottom .singleSpecialList .gtSlideSpecial-image {
  width: 100%;
  height: 100%;
  background: #f4b223;
  background-position: top center;
  background-size: cover;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out
}

#premProducts .glide__slides .specialsBottom,
#premProducts .singleSpecialList .specialsBottom,
#showroomBottom .glide__slides .specialsBottom,
#showroomBottom .singleSpecialList .specialsBottom {
  padding: 0.75rem;
  background: #fafafa
}

#premProducts .glide__slides .gtSlideSpecial-price,
#premProducts .singleSpecialList .gtSlideSpecial-price,
#showroomBottom .glide__slides .gtSlideSpecial-price,
#showroomBottom .singleSpecialList .gtSlideSpecial-price {
  font-size: 15px;
  color: #222;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 12px
}

#premProducts .glide__slides .gtSlideSpecial-title,
#premProducts .singleSpecialList .gtSlideSpecial-title,
#showroomBottom .glide__slides .gtSlideSpecial-title,
#showroomBottom .singleSpecialList .gtSlideSpecial-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  line-height: 1.2;
  margin-bottom: 6px
}

#premProducts .glide__slides .gtSlideSpecial-desc,
#premProducts .singleSpecialList .gtSlideSpecial-desc,
#showroomBottom .glide__slides .gtSlideSpecial-desc,
#showroomBottom .singleSpecialList .gtSlideSpecial-desc {
  font-size: 15px;
  font-weight: normal;
  color: #222;
  line-height: 1.2;
  margin-bottom: 0
}

#premProducts .glide,
#showroomBottom .glide {
  margin-bottom: 3rem
}

@media only screen and (max-width:32em) {

  #premProducts .glide,
  #showroomBottom .glide {
    margin-bottom: 4.5rem
  }
}

#premProducts .glide__arrow,
#showroomBottom .glide__arrow {
  font-size: 0;
  background-color: #f4b223;
  color: #fff !important;
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 12px 9px;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out
}

@media only screen and (max-width:32em) {

  #premProducts .glide__arrow,
  #showroomBottom .glide__arrow {}
}

#premProducts .glide__arrow:hover,
#showroomBottom .glide__arrow:hover {
  opacity: 1;
  text-decoration: none !important
}

#premProducts .glide__arrow:after,
#showroomBottom .glide__arrow:after {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

#premProducts .glide__arrow.glide__arrow--left,
#showroomBottom .glide__arrow.glide__arrow--left {
  left: 0.5%
}

@media only screen and (max-width:32em) {

  #premProducts .glide__arrow.glide__arrow--left,
  #showroomBottom .glide__arrow.glide__arrow--left {
    left: 0
  }
}

#premProducts .glide__arrow.glide__arrow--right,
#showroomBottom .glide__arrow.glide__arrow--right {
  right: 0.5%
}

@media only screen and (max-width:32em) {

  #premProducts .glide__arrow.glide__arrow--right,
  #showroomBottom .glide__arrow.glide__arrow--right {
    right: 0
  }
}

#premProducts .glide__arrow.glide__arrow--left:after,
#showroomBottom .glide__arrow.glide__arrow--left:after {
  content: "\f141"
}

#premProducts .glide__arrow.glide__arrow--right:after,
#showroomBottom .glide__arrow.glide__arrow--right:after {
  content: "\f142"
}

#premProducts .glide__arrow {
  cursor: pointer
}

#premProducts .singleSpecialList .singleSpecial {
  margin-bottom: 0
}

#premProducts .glide__slides .gtSlideSpecial-image-area,
#premProducts .singleSpecialList .gtSlideSpecial-image-area {
  height: 150px
}

#premProducts .glide__slides .gtSlideSpecial-title,
#premProducts .singleSpecialList .gtSlideSpecial-title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 16px;
  margin-bottom: 0
}

#premProducts .glide__slides .specialsBottom,
#premProducts .singleSpecialList .specialsBottom {
  background: #f4b223
}

#gtEventGuests {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

#gtEventGuests li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0 1.5rem
}

@media only screen and (min-width:32.05em) {
  #gtEventGuests li {
    width: calc(100% / 5)
  }
}

.gtDate,
.gtTime {
  margin-bottom: 0
}

#gtEventTop #gtDateTimeLocation,
#gtEventTop #gtImage {
  width: 100%
}

@media only screen and (min-width:32.05em) {
  #gtEventTop #gtImage {
    width: 33.3333333333%;
    padding-right: 1.5rem
  }

  #gtEventTop #gtDateTimeLocation {
    width: 66.6666666667%
  }

  #gtEventTop.no-pic #gtDateTimeLocation {
    width: 100%
  }
}

#gtShowroomTop:after {
  content: "";
  display: table;
  clear: both
}

#gtShowroomTop #showroomInfo,
#gtShowroomTop #showroomLogo,
#gtShowroomTop #showroomSocial {
  width: 100%;
  display: inline-block;
  float: left;
  text-align: center
}

#gtShowroomTop #showroomSocial ul {
  margin: 0;
  padding: 0
}

#gtShowroomTop #showroomSocial ul li {
  margin: 0;
  padding: 0;
  display: block;
  float: left;
  list-style: none;
  margin-left: 0.75rem
}

@media only screen and (min-width:32.05em) {

  #gtShowroomTop #showroomInfo,
  #gtShowroomTop #showroomLogo,
  #gtShowroomTop #showroomSocial {
    text-align: left
  }

  #gtShowroomTop #showroomLogo {
    width: 250px;
    margin-right: 1.5rem
  }

  #gtShowroomTop #showroomInfo {
    width: auto;
    margin-right: 1.5rem
  }

  #gtShowroomTop #showroomSocial {
    width: auto;
    float: right
  }
}

.gtFilterHeading {
  background: #f4b223;
  color: #000;
  font-size: 20px;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  margin: 0;
  position: relative
}

.gtFilterHeading:after {
  font-family: "icomoon";
  content: "\f375";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(16px * -0.625);
  color: #000
}

.gtFilterHeading.closed:after {
  content: "\f416"
}

.gtFacetHeading {
  background: rgba(242, 177, 37, 0.25);
  color: #000;
  font-size: 16px;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  margin: 0;
  position: relative
}

.gtFacetHeading:after {
  font-family: "icomoon";
  content: "\f375";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(16px * -0.5);
  color: #000
}

.gtFacetHeading.closed:after {
  content: "\f416"
}

#gtGuestBottom {
  margin-top: 1.5rem
}

#gtGuestSessions {
  margin: 0;
  padding: 0
}

#guestSocial a[class^=gt-icon-] {
  position: relative;
  font-size: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out
}

#guestSocial a[class^=gt-icon-]:hover {
  opacity: 0.5
}

#guestSocial a[class^=gt-icon-]:after {
  display: block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 28px;
  font-size: 25px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

#guestSocial a[class^=gt-icon-].gt-icon-twitter:after {
  content: "\f545";
  color: #00aced
}

#guestSocial a[class^=gt-icon-].gt-icon-facebook:after {
  content: "\f20d";
  color: #3b5998
}

#guestSocial a[class^=gt-icon-].gt-icon-instagram:after {
  content: "\f2fe";
  color: #517fa4;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e33f5f), color-stop(70%, #f77638), to(#fec66d));
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

#guestSocial a[class^=gt-icon-].gt-icon-imdb:after {
  content: "\e900";
  color: #f3ce13
}

#guestSocial a[class^=gt-icon-].gt-icon-twitch:after {
  content: "\f543";
  color: #6441A4
}

#guestSocial a[class^=gt-icon-].gt-icon-snapchat:after {
  content: "\f4b6";
  color: #FFFC00
}

#guestSocial a[class^=gt-icon-].gt-icon-deviantart:after {
  content: "\f1c7";
  color: #04cc47
}

#guestSocial a[class^=gt-icon-].gt-icon-tumblr:after {
  content: "珞";
  color: #32506d
}

#guestSocial a[class^=gt-icon-].gt-icon-youtube:after {
  content: "\f5c3";
  color: #bb0000
}

@media only screen and (max-width:32em) {
  .gtModal-title {
    display: none
  }
}

.gtModal-img {
  width: 40%;
  padding-right: 1.5rem
}

@media only screen and (max-width:32em) {
  .gtModal-img {
    width: 100%;
    padding: 0;
    margin-bottom: 1.2rem
  }
}

.gtModal-img img {
  width: 100%
}

.gtModal-content-right {
  width: 60%
}

@media only screen and (max-width:32em) {
  .gtModal-content-right {
    width: 100%
  }
}

.gtModal-content-right.makeFull {
  width: 100%
}

.gtSpecial-categories {
  margin-bottom: 0.5rem
}

#gtModal-footer .next,
#gtModal-footer .prev {
  display: block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 0;
  display: inline-block;
  background: #f4b223;
  color: white;
  padding: 0.4rem 0.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

#gtModal-footer .next {
  float: right
}

#gtModal-footer .next:before,
#gtModal-footer .prev:before {
  font-size: 0.8rem;
  display: block
}

#gtModal-footer .next:before {
  content: "\f142"
}

#gtModal-footer .prev:before {
  content: "\f141"
}

.gt-flex-grid,
.gt-flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.gt-flex-grid .gt-flex-col-size-1,
.gt-flex-row .gt-flex-col-size-1 {
  width: 8.3333333333%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-1,
  .gt-flex-row .gt-flex-col-size-1 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-2,
.gt-flex-row .gt-flex-col-size-2 {
  width: 16.6666666667%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-2,
  .gt-flex-row .gt-flex-col-size-2 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-3,
.gt-flex-row .gt-flex-col-size-3 {
  width: 25%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-3,
  .gt-flex-row .gt-flex-col-size-3 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-4,
.gt-flex-row .gt-flex-col-size-4 {
  width: 33.3333333333%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-4,
  .gt-flex-row .gt-flex-col-size-4 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-5,
.gt-flex-row .gt-flex-col-size-5 {
  width: 41.6666666667%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-5,
  .gt-flex-row .gt-flex-col-size-5 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-6,
.gt-flex-row .gt-flex-col-size-6 {
  width: 50%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-6,
  .gt-flex-row .gt-flex-col-size-6 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-7,
.gt-flex-row .gt-flex-col-size-7 {
  width: 58.3333333333%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-7,
  .gt-flex-row .gt-flex-col-size-7 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-8,
.gt-flex-row .gt-flex-col-size-8 {
  width: 66.6666666667%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-8,
  .gt-flex-row .gt-flex-col-size-8 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-9,
.gt-flex-row .gt-flex-col-size-9 {
  width: 75%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-9,
  .gt-flex-row .gt-flex-col-size-9 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-10,
.gt-flex-row .gt-flex-col-size-10 {
  width: 83.3333333333%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-10,
  .gt-flex-row .gt-flex-col-size-10 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-11,
.gt-flex-row .gt-flex-col-size-11 {
  width: 91.6666666667%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-11,
  .gt-flex-row .gt-flex-col-size-11 {
    width: 100%
  }
}

.gt-flex-grid .gt-flex-col-size-12,
.gt-flex-row .gt-flex-col-size-12 {
  width: 100%;
  margin-bottom: 2%
}

@media only screen and (max-width:32em) {

  .gt-flex-grid .gt-flex-col-size-12,
  .gt-flex-row .gt-flex-col-size-12 {
    width: 100%
  }
}

.gt-flex-grid,
.gt-flex-row {}

@media only screen and (max-width:32em) {

  .gt-flex-grid,
  .gt-flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.gt-grid-size-1 .gt-flex-col {
  width: 98%;
  margin-bottom: 2%
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {
  .gt-grid-size-1 .gt-flex-col {
    width: 48%
  }
}

@media only screen and (max-width:32em) {
  .gt-grid-size-1 .gt-flex-col {
    width: 100%;
    margin-bottom: 1.5rem
  }
}

.gt-flex-col-full {
  width: 100% !important
}

.gt-grid-size-2 .gt-flex-col {
  width: 48%;
  margin-bottom: 2%
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {
  .gt-grid-size-2 .gt-flex-col {
    width: 48%
  }
}

@media only screen and (max-width:32em) {
  .gt-grid-size-2 .gt-flex-col {
    width: 100%;
    margin-bottom: 1.5rem
  }
}

.gt-flex-col-full {
  width: 100% !important
}

.gt-grid-size-3 .gt-flex-col {
  width: 31%;
  margin-bottom: 2%
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {
  .gt-grid-size-3 .gt-flex-col {
    width: 48%
  }
}

@media only screen and (max-width:32em) {
  .gt-grid-size-3 .gt-flex-col {
    width: 100%;
    margin-bottom: 1.5rem
  }
}

.gt-flex-col-full {
  width: 100% !important
}

.gt-grid-size-4 .gt-flex-col {
  width: 23%;
  margin-bottom: 2%
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {
  .gt-grid-size-4 .gt-flex-col {
    width: 48%
  }
}

@media only screen and (max-width:32em) {
  .gt-grid-size-4 .gt-flex-col {
    width: 100%;
    margin-bottom: 1.5rem
  }
}

.gt-flex-col-full {
  width: 100% !important
}

.gt-filter-list {
  margin: 0 0 0.75rem 0;
  padding: 0
}

.gt-filter-list li {
  display: inline-block;
  margin: 5px;
  padding: 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px
}

.gt-filter-list a {
  font-weight: normal;
  font-size: 16px;
  display: inline-block;
  color: #000;
  padding: 3px 6px;
  background-color: #f4b223;
  text-decoration: none;
  cursor: pointer
}

.gt-filter-list a:hover {
  color: #000;
  text-decoration: none;
  background-color: rgb(81, 16.2, 18.3130434783)
}

.gt-filter-list a.mixitup-control-active {
  background-color: #f4b223;
    border-bottom: 4px solid rgb(255, 181, 22);
  color: #fff
}

.gt-filter-list a.mixitup-control-active:hover {
  background-color: rgb(140.096, 19.104, 23.084)
}

.gt-filter-list {}

.gt-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%
}

.gt-embed-container embed,
.gt-embed-container iframe,
.gt-embed-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

#gtGuestTabs {
  margin: 0;
  padding: 0
}

#gtGuestTabs li {
  display: inline-block;
  list-style-type: none;
  margin: 0 0.75rem 0.75rem 0;
  padding: 0
}

#gtGuestTabs a {
  text-decoration: none;
  display: block;
  margin-bottom: 0 !important;
  font-weight: bold;
  padding: 0.5rem 1rem;
  position: relative;
  color: #fff;
  overflow: hidden
}

#gtGuestTabs a span {
  position: relative;
  z-index: 1
}

#gtGuestTabs a:after {
  top: 0;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #f4b223;
  z-index: 0;
  -webkit-transform: translateY(0%);
  transform: translateY(0%)
}

#gtGuestTabs a.inactive {
  color: #222;
  opacity: 0.5
}

#gtGuestTabs a.inactive:after {
  background-color: #222;
  -webkit-transform: translateY(95%);
  transform: translateY(95%)
}

.loading-text {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  color: #ddd;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem
}

.loading-text span {
  display: inline-block;
  margin: 0 -0.05em;
  -webkit-animation: loading03 0.9s infinite alternate;
  animation: loading03 0.9s infinite alternate
}

.loading-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s
}

.loading-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s
}

.loading-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s
}

.loading-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s
}

.loading-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s
}

.loading-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s
}

.loading-list {
  height: calc 1150;
  width: 100%;
  position: relative;
  overflow: hidden
}

.loading-page-entry-container {
  height: 10rem;
  width: 100%;
  position: relative;
  overflow: hidden
}

.loading-list-entry-container {
  height: 200px;
  border-bottom: 30px solid #fff
}

.loading-showroom-panel-title {
  height: 70px;
  width: 100%;
  border-top: 30px solid #fff;
  position: relative
}

.loading-showroom-panel-title:after {
  display: block;
  content: "";
  height: 100%;
  width: 60%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0
}

.loading-list-image-area,
.loading-page-image-area {
  height: 100%;
  width: 200px;
  float: left;
  border-right: 30px solid #fff
}

.loading-list-content-area {
  width: calc(100% - 200px)
}

.loading-page-content-area {
  width: calc(100% - 400px)
}

.loading-page-cta-area {
  width: 200px
}

.loading-list-content-area,
.loading-list-heading-area,
.loading-page-content-area,
.loading-page-cta-area {
  height: 100%;
  float: left;
  position: relative
}

.loading-list-content-area div,
.loading-list-heading-area div,
.loading-page-content-area div,
.loading-page-cta-area div {
  float: right;
  background: #fff
}

.loading-list-content-area .loading-list-title-right,
.loading-list-heading-area .loading-list-title-right,
.loading-page-content-area .loading-list-title-right,
.loading-page-cta-area .loading-list-title-right {
  height: 1rem;
  width: 40%
}

.loading-list-content-area .loading-space-below,
.loading-list-heading-area .loading-space-below,
.loading-page-content-area .loading-space-below,
.loading-page-cta-area .loading-space-below {
  height: 0.5rem;
  width: 100%
}

.loading-list-content-area .loading-space-below:last-of-type,
.loading-list-heading-area .loading-space-below:last-of-type,
.loading-page-content-area .loading-space-below:last-of-type,
.loading-page-cta-area .loading-space-below:last-of-type {
  height: 5.1rem
}

.loading-list-content-area .loading-list-booth-right,
.loading-list-heading-area .loading-list-booth-right,
.loading-page-content-area .loading-list-booth-right,
.loading-page-cta-area .loading-list-booth-right {
  height: 0.8rem;
  width: 70%
}

.loading-list-content-area .loading-list-desc,
.loading-list-heading-area .loading-list-desc,
.loading-page-content-area .loading-list-desc,
.loading-page-cta-area .loading-list-desc {
  height: 0.8rem;
  width: 10%
}

.loading-list-content-area .loading-page-long-1,
.loading-list-heading-area .loading-page-long-1,
.loading-page-content-area .loading-page-long-1,
.loading-page-cta-area .loading-page-long-1 {
  height: 0.8rem;
  width: 8%
}

.loading-list-content-area .loading-page-long-2,
.loading-list-heading-area .loading-page-long-2,
.loading-page-content-area .loading-page-long-2,
.loading-page-cta-area .loading-page-long-2 {
  height: 0.8rem;
  width: 7%
}

.loading-list-content-area .loading-page-long-3,
.loading-list-heading-area .loading-page-long-3,
.loading-page-content-area .loading-page-long-3,
.loading-page-cta-area .loading-page-long-3 {
  height: 0.8rem;
  width: 10%
}

.loading-list-content-area .loading-page-long-last,
.loading-list-heading-area .loading-page-long-last,
.loading-page-content-area .loading-page-long-last,
.loading-page-cta-area .loading-page-long-last {
  height: 0.8rem;
  width: 30%
}

.loading-shimmmer {
  background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
  background: linear-gradient(90deg, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 1020px 104px;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: loading-shimmer;
  animation-name: loading-shimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  cursor: wait
}

.loading-exhibitor-grid,
.loading-special-grid,
.loading-special-grid-page {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden
}

.loading-exhibitor-grid.loading-shimmmer,
.loading-special-grid-page.loading-shimmmer,
.loading-special-grid.loading-shimmmer {
  background-size: 1400px 104px;
  -webkit-animation-name: loading-shimmer2;
  animation-name: loading-shimmer2
}

@media only screen and (max-width:32em) {

  .loading-exhibitor-grid,
  .loading-special-grid,
  .loading-special-grid-page {
    height: auto
  }
}

.loading-special-grid-page {
  height: 399px
}

.loading-exhibitor-grid {
  height: 60rem
}

.loading-exhibitor-grid-spacer,
.loading-special-spacer {
  display: block;
  width: 25%;
  height: 50vh;
  border: 30px solid white;
  float: left;
  position: relative
}

@media only screen and (max-width:32em) {

  .loading-exhibitor-grid-spacer,
  .loading-special-spacer {
    width: 100%;
    border: 15px solid white
  }
}

.loading-exhibitor-grid-spacer:after,
.loading-special-spacer:after {
  content: "";
  height: 35%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05)
}

.loading-exhibitor-grid-spacer {
  border: 15px solid white;
  height: 15rem
}

.loading-special {
  height: 500px;
  width: 100%;
  position: relative;
  overflow: hidden
}

.loading-image-right,
.loading-right-area div {
  background: white;
  float: right
}

.loading-image-area {
  height: 100%;
  width: 40%;
  position: absolute;
  top: 0;
  left: 0
}

@media only screen and (max-width:32em) {
  .loading-image-area {
    width: 100%;
    height: 20vh;
    position: relative
  }
}

.loading-page-cta-area {
  position: absolute;
  top: 0;
  right: 0
}

.loading-page-cta-area div {
  position: absolute;
  height: 100%;
  width: 10px;
  left: 0;
  top: 0
}

.loading-page-cta-area:after,
.loading-page-cta-area:before {
  content: "";
  background: #fff;
  width: 100%;
  display: block;
  position: absolute
}

.loading-page-cta-area:before {
  top: 50px;
  height: 40px
}

.loading-page-cta-area:after {
  top: 90px;
  height: 100%
}

.loading-image-right {
  width: 30px;
  height: 100%;
  display: block
}

@media only screen and (max-width:32em) {
  .loading-image-right {
    display: none
  }
}

.loading-right-area {
  height: 100%;
  width: 60%;
  position: absolute;
  top: 0;
  right: 0
}

@media only screen and (max-width:32em) {
  .loading-right-area {
    width: 100%;
    position: relative
  }

  .loading-right-area:before {
    content: "";
    width: 100%;
    height: 20px;
    display: block;
    background: white
  }
}

.loading-title-right {
  height: 2.6rem;
  width: 20%
}

.loading-title-below {
  height: 1.6rem;
  width: 100%
}

.loading-sub-right {
  height: 1.8rem;
  width: 30%
}

.loading-sub-below {
  height: 1.8rem;
  width: 100%
}

.loading-copy-right {
  height: 0.9rem;
  width: 5%
}

.loading-copy-below {
  height: 0.9rem;
  width: 100%
}

.loading-copy-break {
  width: 100%;
  height: 0.9rem;
  background: transparent !important
}

.loading-copy-right-final {
  height: 0.9rem;
  width: 40%
}

.loading-copy-right-final-below {
  width: 100%;
  height: 300%
}

.tempModal-img {
  background: red;
  height: 400px;
  border-radius: 0.15rem
}

.tempModal-Sub-Title span,
.tempModal-Title span,
.tempModal-copy span {
  display: block;
  width: 100%;
  padding: 0.5rem
}

.tempModal-Title span {
  width: 80%;
  height: 2.6rem;
  margin-bottom: 1.6rem
}

.tempModal-Sub-Title span {
  width: 70%;
  height: 1.8rem;
  margin-bottom: 1.8rem
}

.tempModal-copy span {
  margin-bottom: 0.9rem;
  height: 0.9rem
}

.tempModal-copy span:nth-child(odd) {
  width: 95%
}

.tempModal-copy span:last-of-type {
  width: 40%
}

@-webkit-keyframes loading-shimmer {
  0% {
    background-position: -468px 0
  }

  to {
    background-position: 468px 0
  }
}

@keyframes loading-shimmer {
  0% {
    background-position: -468px 0
  }

  to {
    background-position: 468px 0
  }
}

@-webkit-keyframes loading-shimmer2 {
  0% {
    background-position: -700px 0
  }

  to {
    background-position: 700px 0
  }
}

@keyframes loading-shimmer2 {
  0% {
    background-position: -700px 0
  }

  to {
    background-position: 700px 0
  }
}

@-webkit-keyframes fade-in-out {
  0% {
    opacity: 1;
    -webkit-filter: blur(5px);
    filter: blur(5px)
  }

  50% {
    opacity: 0.7;
    -webkit-filter: blur(2px);
    filter: blur(2px)
  }

  to {
    opacity: 1;
    -webkit-filter: blur(5px);
    filter: blur(5px)
  }
}

@keyframes fade-in-out {
  0% {
    opacity: 1;
    -webkit-filter: blur(5px);
    filter: blur(5px)
  }

  50% {
    opacity: 0.7;
    -webkit-filter: blur(2px);
    filter: blur(2px)
  }

  to {
    opacity: 1;
    -webkit-filter: blur(5px);
    filter: blur(5px)
  }
}

@-webkit-keyframes loading03 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8)
  }
}

@keyframes loading03 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8)
  }
}

.modal {
  display: none
}

.modal.is-open {
  display: block
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 1024px;
  width: 95vw;
  max-height: 95vh;
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.9rem;
  line-height: 1;
  visibility: hidden
}

@media only screen and (max-width:32em) {
  .modal__title {
    visibility: visible
  }
}

.modal__close {
  background: transparent;
  border: 0
}

.modal__header .modal__close:before {
  content: "\f156";
  font-family: "icomoon"
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8)
}

@-webkit-keyframes mmfadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes mmfadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-webkit-keyframes mmfadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes mmfadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@-webkit-keyframes mmslideIn {
  0% {
    -webkit-transform: translateY(15%);
    transform: translateY(15%)
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes mmslideIn {
  0% {
    -webkit-transform: translateY(15%);
    transform: translateY(15%)
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes mmslideOut {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%)
  }
}

@keyframes mmslideOut {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%)
  }
}

.micromodal-slide {
  display: none
}

.micromodal-slide.is-open {
  display: block
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform
}

#gtShowroomTop,
#showroomBottom,
#showroomDesc {
  margin-bottom: 1.5rem
}

#showroomDesc {
  line-height: 1.5
}

.exhibitor-list a,
.session-list a {
  text-decoration: none
}

.exhibitor-list:not(.gtgrid) .gt-flex-col,
.session-list:not(.gtgrid) .gt-flex-col {
  margin: 0
}

.exhibitor-list:not(.gtgrid) .gt-flex-col.exhibitor-entry,
.exhibitor-list:not(.gtgrid) .gt-flex-col.session-entry,
.session-list:not(.gtgrid) .gt-flex-col.exhibitor-entry,
.session-list:not(.gtgrid) .gt-flex-col.session-entry {
  padding: 1.5rem;
  border-bottom: none;
  position: relative
}

.exhibitor-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured,
.exhibitor-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured,
.session-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured,
.session-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured {
  background: rgba(242, 177, 37, 0.2);
  border: 1px solid #f4b223
}

.exhibitor-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured.hasHeadingArea,
.exhibitor-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured.hasHeadingArea,
.session-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured.hasHeadingArea,
.session-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured.hasHeadingArea {
  padding-top: 36px
}

.exhibitor-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea,
.session-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #d9980d;
  padding: 0 3px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-left: 8px solid rgb(86.24, 11.76, 14.21)
}

.exhibitor-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea:after,
.session-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea:after {
  content: "";
  width: 10px;
  height: 24px;
  border-right: 10px solid transparent;
  border-top: 26px solid #d9980d;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: -10px
}

.exhibitor-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea,
.session-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea {}

.exhibitor-entry span {
  font-weight: bold
}

.session-categories,
.session-people {
  margin-top: 0.75rem;
  width: 100%
}

.gtlist .gtImageArea {
  width: 100%;
  text-align: center
}

@media only screen and (min-width:51.25em) {
  .gtlist .gtImageArea {
    width: 16%;
    padding-right: 1.5rem
  }
}

@media only screen {
  .gtlist .gtImageArea {
    margin-bottom: 0.75rem
  }
}

.gtlist .gtExhibitorInfo,
.gtlist .gtSessionInfo {
  width: 100%;
  margin-bottom: 0.75rem
}

@media only screen and (min-width:51.25em) {

  .gtlist .gtExhibitorInfo,
  .gtlist .gtSessionInfo {
    width: 84%
  }
}

.gtlist .gtSessionInfo.gtHasNoImageArea {
  width: 100%
}

.gtlist .exhibitor-categories,
.gtlist .exhibitorListExclusives {
  width: 100%
}

.gtlist .exhibitor-location,
.gtlist .exhibitor-name {
  margin-bottom: 0.5rem
}

.gtlist .exhibitor-name {
  font-size: 20px;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #222222 !important
}

.gtlist .exhibitor-name:hover {
  color: #f4b223 !important
}

.gtgrid .gt-flex-col {
  margin-bottom: 1.5rem
}

.gtgrid .exhibitor-entry {
  background: rgb(244.1, 244.1, 244.1);
  overflow: hidden
}

.gtgrid .exhibitor-entry.gtFeatured {
  background: rgba(242, 177, 37, 0.1);
  border: 1px solid #f4b223 !important
}

.gtgrid .exhibitor-entry:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

.gtgrid .exhibitor-entry:hover .gtExhibitorInfo {
  top: 0
}

.gtgrid .exhibitor-entry:hover .gtExhibitorInfo .exhibitor-description {
  opacity: 1
}

.gtgrid .exhibitor-entry:hover .gtExhibitorInfo .exhibitor-name {
  white-space: normal;
  overflow: visible;
  text-overflow: unset
}

.gtgrid .gtImageArea {
  padding: 0;
  text-align: center;
  width: 100%;
  min-height: 10rem;
  position: relative;
  overflow: hidden
}

.gtgrid .gtImageArea a {
  display: block;
  height: 100%;
  width: 100%
}

.gtgrid .gtImageArea img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  min-height: 400px;
  max-height: 400px
}

.gtgrid .exhibitor-entry {
  position: relative
}

.gtgrid .gtExhibitorInfo {
  width: 100%;
  position: absolute;
  top: 80%;
  bottom: -150px;
  padding: 24px;
  background: rgba(217, 152, 13, 0.9);
  min-height: 200px;
  text-align: center;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease
}

.gtgrid .gtExhibitorInfo .exhibitor-location {
  display: none
}

.gtgrid .gtExhibitorInfo .grid-btn {
  margin-top: 1rem
}

.gtgrid .gtExhibitorInfo .grid-btn a {
  font-size: 1.5rem
}

.gtgrid .gtFeatured .gtExhibitorInfo {
  background: rgba(242, 177, 37, 0.2)
}

.gtgrid .exhibitor-location {
  padding-top: 0.5rem
}

.gtgrid a {
  display: block;
  height: 100%
}

.gtgrid a .exhibitor-name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  padding: 0.5rem 0;
  color: #fff !important;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease
}

.gtgrid a .exhibitor-description {
  color: #fff !important;
  font-weight: normal;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease
}

.gtgrid .exhibitor-categories {
  display: none
}

.session-list .gt-flex-col .session-title {
  font-size: 20px;
  margin-bottom: 0.5rem
}

.session-list .session-date-time {
  margin-bottom: 0.5rem
}

.session-list .session-date {
  font-size: 15px
}

.session-list .session-time {
  font-size: 15px
}

@media only screen and (max-width:32em) {
  .session-list .session-time {
    display: block;
    clear: left;
    margin-top: 0.5rem
  }
}

.session-list .session-location {
  font-size: 15px
}

.session-list .sessions-people-label {
  font-weight: bold
}

.session-list .session-description {
  margin-top: 0.75rem
}

.session-list .session-date-time div,
.session-list .session-location {
  display: inline-block
}

.session-list .gt-session-icon {
  font-size: 15px;
  margin-right: 0.25rem
}

@media only screen and (min-width:32.05em) {
  .session-list .gt-session-time-icon {
    margin-left: 0.8rem
  }
}

.exhibitor-list.gtlist .exhibitor-location {
  font-size: 15px
}

.exhibitor-list.gtlist .exhibitor-description {
  font-size: 15px
}

.exhibitor-list.gtlist .exclusivesHeading {
  font-weight: bold;
  padding-bottom: 0.375rem
}

.featuredExclusives ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center
}

.featuredExclusives li {
  line-height: normal;
  font-size: 20px;
  list-style-type: none;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 0.75rem
}

@media only screen and (min-width:32.05em) {
  .featuredExclusives li {
    width: 23%
  }
}

.featuredExclusives li:not(.moreExclusives) a {
  border: 1px solid #ccc;
  display: block;
  height: 100%;
  overflow: hidden
}

.featuredExclusives li .listExclusivelPicture {
  height: 250px;
  background-position: top center;
  background-size: cover
}

.featuredExclusives li .listExclusiveTitle {
  background: #f4b223;
  padding: 0.5rem;
  color: #fff;
  height: 100%
}

.featuredExclusives .moreExclusives {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.time-slot-container {
  margin: 0.75rem 0;
  padding: 0.75rem 0
}

.session-entry-slim {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0
}

.session-entry-slim a {
  color: #000;
  background-color: rgba(242, 177, 37, 0.1);
  padding: 0.5rem 0.75rem;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease
}

.session-entry-slim a:hover {
  background-color: #f4b223;
  color: #fff
}

.time-events,
.time-header {
  padding: 0.5rem;
  display: inline-block
}

.time-header {
  width: 15%;
  float: left;
  font-weight: bold;
  font-size: 16px
}

.time-events {
  width: 85%;
  border-left: 0.5rem solid #f4b223
}

.day-container {
  width: 100%
}

.day-container-header {
  font-size: 24px;
  font-weight: bold;
  padding: 1.5rem
}

.exhibitor-list,
.session-list {
  position: relative
}

.exhibitor-list.mixitup-container-failed:after,
.session-list.mixitup-container-failed:after {
  position: absolute;
  left: 0;
  content: "Nothing matches your filter selection. Please try another.";
  padding: 0.75rem 1.125rem;
  background: rgba(255, 51, 51, 0.3);
  border: none;
  margin: 0.75rem;
  border-radius: 0px;
  color: unset;
  font-size: 15px;
  font-weight: normal;
  font-style: italic
}

.guest-grid.mixitup-container-failed:after {
  content: "Nothing matches your filter selection. Please try another.";
  display: inline-block;
  padding: 0.75rem 1.125rem;
  background: rgba(255, 51, 51, 0.3);
  border: none;
  font-style: italic;
  color: unset
}

.info-area {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  text-align: left
}

.info-area .guest-name,
.info-area .title {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.7;
  color: #fff;
  padding: 0;
  background: transparent;
  text-transform: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline
}

.info-area .bkf,
.info-area .days-appearing,
.info-area .guest-location,
.info-area .location,
.info-area .segment,
.info-area i {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  margin: 0 0 6px 0;
  font-style: italic;
  background: transparent;
  padding: 0;
  display: table;
  max-width: 100%;
  position: relative;
  z-index: 10
}

.info-area .bkf span,
.info-area .days-appearing span,
.info-area .guest-location span,
.info-area .location span,
.info-area .segment span,
.info-area i span {
  margin: 0 6px 0 0;
  font-size: 15px;
  left: 0;
  vertical-align: middle;
  top: auto
}

#guest-grid h2 {
  text-transform: uppercase;
  padding-top: 1.5rem
}

.card-grid,
.guest-grid {
  width: 100%;
  margin: auto;
  padding: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.card-grid li,
.guest-grid li {
  position: relative;
  overflow: hidden;
  padding: 0.5rem
}

.card-grid .mix,
.guest-grid .mix {
  clear: none !important
}

.card-grid .auto-photos a,
.guest-grid .auto-photos a {
  margin-bottom: 12px;
  display: block
}

.card-grid .auto-photos,
.card-grid .schedule-link,
.guest-grid .auto-photos,
.guest-grid .schedule-link {
  margin-top: 1.5rem;
  display: inline-block;
  width: auto;
  position: relative
}

.card-grid .auto-photos a,
.card-grid .schedule-link a,
.guest-grid .auto-photos a,
.guest-grid .schedule-link a {
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  background-color: #f4b223;
  color: white;
  padding: 0.75rem !important;
  letter-spacing: 1px;
  font-size: 16px;
  z-index: 10;
  position: relative;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-bottom: 4px solid #d9980d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}

.card-grid .auto-photos a span,
.card-grid .schedule-link a span,
.guest-grid .auto-photos a span,
.guest-grid .schedule-link a span {
  margin-left: 0.4rem
}

.card-grid .auto-photos a span:before,
.card-grid .schedule-link a span:before,
.guest-grid .auto-photos a span:before,
.guest-grid .schedule-link a span:before {
  position: relative;
  top: 0.2rem
}

.card-grid .auto-photos a:hover,
.card-grid .schedule-link a:hover,
.guest-grid .auto-photos a:hover,
.guest-grid .schedule-link a:hover {
  letter-spacing: 1.5px
}

.card-grid .image-area,
.guest-grid .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden
}

.card-grid .image-area img,
.guest-grid .image-area img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%
}

.card-grid .hover-content,
.guest-grid .hover-content {
  position: absolute;
  z-index: 5;
  width: 100%;
  margin: 0;
  top: -100%;
  height: 100px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}

.card-grid .hover-content .autos-photos,
.guest-grid .hover-content .autos-photos {
  text-align: center
}

@media only screen and (min-width:32.05em) {

  .card-grid .hover-content .autos-photos,
  .guest-grid .hover-content .autos-photos {
    display: inline
  }
}

@media only screen and (max-width:32em) {

  .card-grid .hover-content .autos-photos,
  .guest-grid .hover-content .autos-photos {
    width: 100%
  }
}

.card-grid .hover-content .guest-social,
.guest-grid .hover-content .guest-social {
  text-align: center;
  margin: auto;
  padding: 0
}

.card-grid .hover-content .guest-social li,
.guest-grid .hover-content .guest-social li {
  font-size: 20px;
  text-align: center;
  display: inline;
  float: none
}

.card-grid .hover-content .guest-social a,
.guest-grid .hover-content .guest-social a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}

.card-grid .hover-content .guest-social a:hover,
.guest-grid .hover-content .guest-social a:hover {
  color: rgb(233.1, 94.4, 98.9625)
}

.card-grid li:hover .hover-content,
.guest-grid li:hover .hover-content {
  top: 30%
}

.card-grid li:hover img,
.guest-grid li:hover img {
  -webkit-filter: grayscale(1) brightness(0.2) !important;
  filter: grayscale(1) brightness(0.2) !important
}

.card-grid li:hover,
.guest-grid li:hover {}

.card-grid li:hover .info-area,
.guest-grid li:hover .info-area {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}

.card-grid li:hover .bkf,
.card-grid li:hover .days-appearing,
.card-grid li:hover .guest-location,
.guest-grid li:hover .bkf,
.guest-grid li:hover .days-appearing,
.guest-grid li:hover .guest-location {
  font-size: 0;
  color: transparent;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}

.card-grid li:hover .bkf span,
.card-grid li:hover .days-appearing span,
.card-grid li:hover .guest-location span,
.guest-grid li:hover .bkf span,
.guest-grid li:hover .days-appearing span,
.guest-grid li:hover .guest-location span {
  font-size: 0;
  color: transparent;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease
}

.card-grid#canceled .mix .image-area,
.guest-grid#canceled .mix .image-area {
  -webkit-filter: grayscale(1);
  filter: grayscale(1)
}

.card-grid#canceled .mix .image-area img,
.guest-grid#canceled .mix .image-area img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1)
}

.card-grid#canceled .mix .auto-photos,
.card-grid#canceled .mix .days-appearing,
.card-grid#canceled .mix .guest-location,
.card-grid#canceled .mix .schedule-link,
.guest-grid#canceled .mix .auto-photos,
.guest-grid#canceled .mix .days-appearing,
.guest-grid#canceled .mix .guest-location,
.guest-grid#canceled .mix .schedule-link {
  display: none
}

.gt-guest-filters {
  text-transform: uppercase
}

@media only screen and (max-width:32em) {
  .gt-guest-filters li:first-of-type {
    width: 100%
  }
}

#guest-grid #guest-filter-container {
  padding: 0.75rem 0;
  position: relative;
  margin-bottom: 3rem;
  border-radius: 3px 3px 0 0
}

#guest-grid #guest-filter-container .gt-filter-list {
  z-index: 100;
  position: relative
}

#guest-grid #guest-filter-container .gt-filter-list#gtGuestDays {
  margin: 0
}

#guest-grid #guest-filter-container .gt-filter-list a {
  font-size: 13px;
  padding: 3px 4px;
  background: #f4b223;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: white
}

#guest-grid #guest-filter-container .gt-filter-list a.mixitup-control-active {
  background: #d9980d
}

#guest-grid #guest-filter-container {}

#guest-grid .guest-grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

#guest-grid .guest-grid li {
  margin-bottom: 2%
}

@media (width > 970px) {
  #guest-grid .guest-grid li {
    width: 32.3%;
    margin-right: 1%
  }
}

@media (width <=970px) {
  #guest-grid .guest-grid li {
    width: 49%;
    margin-right: 1%
  }
}

@media (width <=650px) {
  #guest-grid .guest-grid li {
    width: 100%
  }
}

#guest-grid .guest-grid li {}

#guest-grid .guest-grid li .info-area {
  padding: 12px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.75)
}

#guest-grid .guest-grid li .info-area .guest-name {
  z-index: 10;
  position: relative;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px
}

#guest-grid .guest-grid li .info-area .icon-star {
  color: #f4b223
}

#guest-grid .guest-grid li .info-area .icon-map-marker {
  color: #f4b223
}

#guest-grid .guest-grid li .info-area .icon-calendar-range {
  color: #f4b223
}

#guest-grid .guest-grid li .info-area:before {
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1
}

#guest-grid .guest-grid li:hover .image-area:before {
  top: 100%
}

#guest-grid .guest-grid li:hover .image-area:after {
  height: 100%
}

.guestprofile #gtGuestInfo h2 {
  font-size: 24px;
  padding-left: 2.25rem;
  position: relative
}

.guestprofile #gtGuestInfo h2 span {
  position: absolute;
  left: 0
}

.guestprofile #gtGuestInfo h2 span.icon-star {
  top: 0
}

.guestprofile #gtGuestInfo h2 span.icon-calendar-range {
  top: 3px
}

.gt-panelist-title {
  display: block;
  width: 100%
}

#guest-grid .guest-grid li.cat-Panelist {
  padding: 0
}

@media (width <=1200px) {
  #guest-grid .guest-grid li.cat-Panelist {
    width: 49%
  }
}

@media (width <=970px) {
  #guest-grid .guest-grid li.cat-Panelist {
    width: 100%
  }
}

#guest-grid .guest-grid li.cat-Panelist .image-area {
  background: #f4b223;
  position: static
}

#guest-grid .guest-grid li.cat-Panelist .image-area .info-area {
  position: static
}

#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .bkf,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .days-appearing,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .guest-location,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .location,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .segment,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area i {
  font-size: 15px !important;
  margin: 0 0 6px 0 !important
}

#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .bkf span,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .days-appearing span,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .guest-location span,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .location span,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area .segment span,
#guest-grid .guest-grid li.cat-Panelist .image-area .info-area i span {
  margin: 0 6px 0 0 !important
}

#guest-grid .guest-grid li.cat-Panelist .image-area .info-area:before {
  width: 100%;
  height: 100%
}

#guest-grid .guest-grid li.cat-Panelist .image-area img {
  display: none
}

#guest-grid .guest-grid li.cat-Panelist .hover-content {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  z-index: 20
}

#guest-grid .guest-grid li.cat-Panelist .hover-content .guest-social {
  margin-top: 24px
}

#guest-grid .guest-grid li.cat-Panelist:hover .info-area .bkf,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .days-appearing,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .guest-location,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .location,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .segment,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area i {
  font-size: 15px !important;
  color: white
}

#guest-grid .guest-grid li.cat-Panelist:hover .info-area .bkf span,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .days-appearing span,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .guest-location span,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .location span,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area .segment span,
#guest-grid .guest-grid li.cat-Panelist:hover .info-area i span {
  font-size: 15px
}

#guest-grid .guest-grid li.cat-Panelist:hover .hover-content {
  top: 0
}

#gtGuestTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem
}

#gtImage {
  width: 100%;
  margin: 0;
  padding-bottom: 20px
}

@media only screen and (min-width:32.05em) {
  #gtImage {
    width: 30%;
    padding-right: 1.5rem;
    padding-bottom: 0
  }
}

#gtGuestInfo {
  margin: 0;
  padding: 0;
  width: 100%
}

@media only screen and (min-width:32.05em) {
  #gtGuestInfo {
    width: 70%
  }
}

#gtGuestInfo.gtNoImage {
  width: 100% !important
}

#gtGuestInfo .bkf,
#gtGuestInfo .guestName {
  margin-top: 0;
  margin-bottom: 0
}

#guestSocial {
  margin: 0;
  padding: 0;
  list-style: none
}

#guestSocial li {
  display: inline-block;
  margin: 0 0.75rem 0.75rem 0
}

#guestSocial a {
  text-decoration: none
}

#gtGuestBottom li {
  padding: 1.5rem 0;
  list-style-type: none
}

.gt-full-container {
  width: 100%
}

#featured-guests ul.glide__slides {
  margin-left: 0
}

#featured-guests .glide__slide {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 100% !important;
  overflow: hidden
}

#featured-guests .glide__slide img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  width: 100%;
  aspect-ratio: 5/6;
  opacity: 1
}

#featured-guests .glide__slide .image-area {
  position: static;
  text-align: left;
  background: #f4b223;
  display: block
}

#featured-guests .glide__slide .image-area:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.7
}

#featured-guests .glide__slide .info-area {
  padding: 12px;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.75)
}

#featured-guests .glide__slide .info-area span {
  color: #f4b223
}

#featured-guests .glide__slide .guests-bottom,
#featured-guests .glide__slide .info-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background: linear-gradient(0deg, black, transparent)
}

#featured-guests .glide__slide .guests-bottom h2,
#featured-guests .glide__slide .guests-bottom h4,
#featured-guests .glide__slide .guests-bottom p,
#featured-guests .glide__slide .info-area h2,
#featured-guests .glide__slide .info-area h4,
#featured-guests .glide__slide .info-area p {
  color: #FFFFFF
}

#featured-guests .glide__slide .guests-bottom h4,
#featured-guests .glide__slide .guests-bottom p,
#featured-guests .glide__slide .info-area h4,
#featured-guests .glide__slide .info-area p {
  display: table;
  text-align: left;
  max-width: 90%
}

#featured-guests .glide__slide .guests-bottom h4,
#featured-guests .glide__slide .info-area h4 {
  background: #f4b223
}

#featured-guests .glide__slide .guests-bottom p,
#featured-guests .glide__slide .info-area p {
  background: #EF4323
}

#featured-guests .glide__arrows .glide__arrow {
  position: absolute;
  bottom: 45%;
  color: #fff !important;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px
}

#featured-guests .glide__arrows .glide__arrow:hover {
  text-decoration: none;
  cursor: pointer;
  background: black
}

#featured-guests .glide__arrows .glide__arrow span:before {
  font-size: 20px
}

#featured-guests .glide__arrows .glide__arrow--left {
  left: 0
}

#featured-guests .glide__arrows .glide__arrow--right {
  right: 0
}

#gtAllFacets {
  margin-bottom: 1.5rem
}

#gtAllFacets .filterReset {
  display: block;
  width: 100%
}

#gtAllFacets .filterReset:hover {
  cursor: pointer;
  color: #f4b223;
  text-decoration: none
}

#gtAllFacets button.filterReset {
  padding: 0 6px;
  text-align: left;
  background: none;
  border: 0;
  position: relative;
  font-size: 16px
}

#gtAllFacets button.filterReset:after,
#gtAllFacets button.filterReset:before {
  font-family: "icomoon";
  display: block;
  right: 0.25rem;
  top: 50%;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(16px * -0.5);
  color: #f4b223
}

#gtAllFacets button.filterReset:after {
  content: "\f235";
  opacity: 1
}

#gtAllFacets button.filterReset:before {
  content: "\f234";
  color: #f4b223;
  opacity: 0
}

#gtAllFacets button.filterReset:hover {
  color: #f4b223
}

#gtAllFacets button.filterReset:hover:after {
  opacity: 0
}

#gtAllFacets button.filterReset:hover:before {
  opacity: 1
}

#gtAllFacets {}

.gtFacetList {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background: #FFFFFF
}

.gtFacetList li {
  list-style-type: none
}

.gtFacetList li a {
  display: block;
  padding: 0 6px;
  position: relative;
  color: #222222;
  text-decoration: none
}

.gtFacetList li a:hover {
  color: #000;
  cursor: pointer
}

.gtFacetList li a:after {
  font-family: "icomoon";
  content: "\f131";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(16px * -0.5);
  color: #f4b223
}

.gtFacetList li a.mixitup-control-active,
.gtFacetList li a.mixitup-control-active:after {
  color: #f4b223
}

.gtFacetList li a.mixitup-control-active:after {
  content: "\f135"
}

#gtTopFacets {
  min-height: 30px
}

body.gtSticky #gtTopFacets {
  position: fixed;
  width: 100%;
  top: 65px;
  padding: 0.5rem 0;
  background: #fff
}

@media only screen and (min-width:32.05em) {
  body.gtSticky #gtTopFacets {
    top: 100px
  }
}

#gtFacetNav {
  margin: 0;
  padding: 0
}

#gtFacetNav ul {
  margin: 0;
  padding: 0
}

#gtFacetNav li {
  margin: 0;
  padding: 0;
  list-style-type: none
}

#gtFacetNav>li {
  border: 1px solid #ccc;
  margin: 0 1rem 0.5rem 0;
  width: 240px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  background: #fff;
  cursor: pointer
}

#gtFacetNav>li.gt-active {
  border: 1px solid #f4b223;
  color: #f4b223
}

#gtFacetNav>li span {
  padding: 0.25rem 2rem 0.25rem 0.5rem;
  display: block
}

#gtFacetNav>li span:after {
  font-family: "icomoon";
  content: "\f140";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 15px;
  margin-top: calc(15px * -0.5)
}

#gtFacetNav .gtFacetSubNav {
  padding: 10px 0;
  width: 240px;
  margin-left: 0;
  display: none;
  left: 0;
  z-index: 5;
  top: 100%;
  max-height: 40vh;
  overflow-y: auto
}

#gtFacetNav .gtFacetSubNav li {
  font-size: 15px
}

#gtFacetNav .gtFacetSubNav li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #000
}

#gtFacetNav .gtFacetSubNav li a.mixitup-control-active:hover,
#gtFacetNav .gtFacetSubNav li a:hover {
  background-color: #f4b223;
  color: #fff
}

#gtFacetNav .gtFacetSubNav li a.mixitup-control-active {
  color: #f4b223
}

#gtFacetNav .open .gtFacetSubNav {
  display: block;
  left: -1px;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 0
}

#gtFacetNav #gtTopFacetIcon,
#gtFacetNav #gtTopReset {
  padding: 0;
  width: auto;
  border: none
}

#gtFacetNav #gtTopFacetIcon span,
#gtFacetNav #gtTopReset span {
  padding: 0
}

#gtFacetNav #gtTopFacetIcon span:after,
#gtFacetNav #gtTopReset span:after {
  display: none
}

#gtFacetNav {}

#gtFacetNav button {
  border: 0;
  font-size: 0;
  padding: 16px;
  position: relative;
  background-color: #f4b223;
  color: #fff;
  cursor: pointer
}

#gtFacetNav button:after,
#gtFacetNav button:before {
  font-family: "icomoon";
  font-size: 15px;
  display: block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 7.5px;
  top: 50%;
  margin-top: calc(15px * -0.5)
}

#gtFacetNav button:after {
  content: "\f235";
  opacity: 1
}

#gtFacetNav button:before {
  content: "\f234";
  opacity: 0
}

#gtFacetNav button:hover {
  background-color: rgb(217, 152, 13)
}

#gtFacetNav button:hover:after {
  opacity: 0
}

#gtFacetNav button:hover:before {
  opacity: 1
}

#alpha-sort {
  margin: 1rem 1rem 1rem 0;
  padding: 0 0 0 0.75rem;
  width: 100%
}

#alpha-sort li {
  display: inline;
  margin: 0 0 0.25rem 0.25rem
}

#alpha-sort a,
#alpha-sort button {
  font-size: 16px;
  background-color: #f4b223;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  line-height: 16px;
  display: inline-block;
  padding: 3px 6px;
  color: #fff
}

#alpha-sort a:hover,
#alpha-sort button:hover {
  color: #000;
  text-decoration: underline
}

#alpha-sort button {
  border: 0;
  background-color: #f4b223;
  color: #fff
}

#alpha-sort button:hover {
  background-color: rgb(217, 152, 13);
  color: #fff
}

#alpha-sort .unavailable a {
  background: rgba(204, 204, 204, 0.9);
  color: rgba(0, 0, 0, 0.5) !important;
  cursor: not-allowed;
  text-decoration: none
}

#alpha-sort .mixitup-control-active a {
  background-color: rgb(158, 111, 9);
  color: #fff
}

#gtFacetBreadcrumbs {
  margin: 12px 0;
  padding: 0;
  display: inline-block;
  width: 100%
}

#gtFacetBreadcrumbs li {
  display: inline-block;
  margin: 0 6px 6px 0;
  font-size: 15px;
  border-radius: 0
}

#gtFacetBreadcrumbs a {
  text-decoration: none;
  position: relative;
  display: block;
  padding: 0 6px 0 24px;
  background: #f4b223;
  color: #fff;
  border-radius: 0
}

#gtFacetBreadcrumbs a span {
  position: absolute;
  display: block;
  left: 2px;
  top: 50%;
  margin-top: -6.75px
}

#gtFacetBreadcrumbs a:hover {
  color: #fff;
  background: rgba(242, 177, 37, 0.7)
}

.gt-inline-list {
  margin: 0;
  padding: 0;
  list-style: none
}

.gt-inline-list li {
  display: inline-block;
  margin: 0 0.7rem 0.7rem 0
}

.gt-label {
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 6px;
  font-size: 15px;
  background-color: #f4b223;
  color: #fff;
  margin: 3px 0
}

.gt-label:hover {
  color: #fff;
  background: #d9980d
}

#gtPremiumExhibitor {
  width: 100%;
  padding: 0;
  background: rgba(242, 177, 37, 0.2);
  border: 1px solid #f4b223;
  margin-bottom: 1.5rem
}

#gtPremiumExhibitor a {
  text-decoration: none
}

#gtPremiumImageArea {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 0
}

@media only screen and (max-width:32em) {
  #gtPremiumImageArea {
    min-height: 150px
  }
}

#gtPremiumImageArea img {
  z-index: 1;
  max-height: 75%;
  max-width: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

#gtPremiumImageBackground {
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 150%;
  height: 150%;
  right: -25%;
  top: -25%;
  z-index: 0;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  opacity: 0.7
}

#gtPremiumConentArea {
  padding: 0 1.5rem;
  margin-bottom: 0
}

#gtPremiumConentArea h4 {
  margin: 0 0 0.75rem 0
}

#gtPremiumConentArea .listExclusivelPicture {
  height: 100px
}

#gtPremiumConentArea .listExclusiveTitle {
  background: #f4b223;
  padding: 0.5rem;
  color: #fff;
  height: 100%
}

#gtPremiumConentArea .featuredExclusives ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

#gtPremiumConentArea .featuredExclusives li {
  margin-right: 0
}

#gtPremiumExhibitorHeading {
  margin-bottom: 0;
  padding: 0.5rem;
  background: #d9980d;
  color: white;
  font-weight: bold
}

#gtPremiumTitle h2 {
  margin-top: 0
}

#gtPremiumTitle {
  padding-right: 1.5rem
}

#gtPremiumTitle.gt-flex-col,
#gtPremiumWebsite.gt-flex-col {
  margin: 1.5rem 0 0 0
}

#gtPremiumWebsite .gt-button {
  width: 100%;
  text-align: center
}

#premDesc {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1.5rem
}

#gtExhibitorsTable {
  border: 1px solid #ccc;
  border-left: 0;
  border-bottom: 0;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15)
}

#gtExhibitorsTable td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-right: 0;
  border-top: 0
}

#gtExhibitorsTable thead {
  font-weight: bold;
  font-size: 15px
}

#gtExhibitorsTable thead tr {
  background-color: #f4b223;
  color: #fff
}

#gtExhibitorsTable tbody {
  font-size: 14px
}

#gtExhibitorsTable tbody tr:nth-of-type(2n) {
  background-color: rgba(242, 177, 37, 0.1)
}

#gtExhibitorsTable tbody .gtTableLogo {
  font-size: 12px
}

#gtExhibitorsTable .gtGreen {
  color: #008000;
  font-weight: bold
}

#gtExhibitorsTable .gtRed {
  color: #FF3333;
  font-weight: bold
}

#gtExhibitorsTable .gtTableExhib {
  width: 22%
}

#gtExhibitorsTable .gtTableBooth {
  width: 11%;
  text-align: center
}

#gtExhibitorsTable .gtTableFeat {
  width: 11%;
  text-align: center
}

#gtExhibitorsTable .gtTableArt {
  width: 11%;
  text-align: center
}

#gtExhibitorsTable .gtTableSpecials {
  width: 11%;
  text-align: center
}

#gtExhibitorsTable .gtTableExclusives {
  width: 11%;
  text-align: center
}

#gtExhibitorsTable .gtTableLogo {
  width: 23%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden
}

.gt-full-Export-Container h1 {
  margin: 0;
  padding: 0;
  line-height: 1em;
  display: inline-block
}

.gt-Table-Top {
  display: inline-block
}

.gt-Table-Top:after {
  content: "";
  display: block;
  clear: both
}

.gtCSVButton {
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  padding: 10px 15px;
  margin: 0 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  background-clip: padding-box;
  background-color: transparent;
  border-radius: 5px;
  text-decoration: none;
  top: -5px
}

.gtCSVButton:after {
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  border-radius: 5px;
  background-size: 200% 100%;
  background-position: 0% 0;
  background-image: linear-gradient(135deg, #f4b223 0%, #f4b223 31%, rgb(176, 44.3333333333, 24) 31%, rgb(176, 44.3333333333, 24) 42%, rgb(176, 69.6666666667, 24) 42%, rgb(176, 69.6666666667, 24) 49%, #b05f18 49%, #b05f18 100%)
}

.gtCSVButton:hover {
  background-color: rgba(242, 177, 37, 0.1);
  color: white
}

.gtCSVButton:hover:after {
  background-position: 100% 0
}

.medium-3 {
  float: left;
  width: 20%
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {
  .medium-3 {
    width: 25%
  }
}

@media only screen and (max-width:32em) {
  .medium-3 {
    width: 100%
  }
}

.medium-9 {
  float: left;
  width: 80%;
  padding-left: 1.5rem
}

@media only screen and (min-width:32.05em) and (max-width:51.2em) {
  .medium-9 {
    width: 75%
  }
}

@media only screen and (max-width:32em) {
  .medium-9 {
    width: 100%;
    padding-left: 0
  }
}

#panelList .session-list .day-container-header {
  padding: 0;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif
}

#panelList .session-list .time-header {
  width: 100px
}

@media only screen and (max-width:32em) {
  #panelList .session-list .time-header {
    width: 100%
  }
}

#panelList .session-list .time-events {
  width: calc(100% - 100px)
}

@media only screen and (max-width:32em) {
  #panelList .session-list .time-events {
    width: 100%
  }
}

#panelList .session-list .session-entry {
  background: white;
  margin-bottom: 12px;
  width: 100%;
  border: 1px solid rgba(242, 177, 37, 0.15)
}

#panelList .session-list .session-title {
  font-weight: bold
}

#panelList .session-list .gt-session-icon {
  display: inline-block;
  vertical-align: middle
}

#panelList.slim-schedule .session-entry-slim.cat-Tournament {
  background: #B897BC;
  color: black
}

#panelList.slim-schedule .session-entry-slim.loc-Arachnid-Theatre,
#panelList.slim-schedule .session-entry-slim.loc-Bobcat-Theatre,
#panelList.slim-schedule .session-entry-slim.loc-Bumblebee-Theatre,
#panelList.slim-schedule .session-entry-slim.loc-Condor-Theatre,
#panelList.slim-schedule .session-entry-slim.loc-Dragonfly-Theatre {
  background: #F1BC48
}

#panelList.slim-schedule .session-entry-slim.loc-Arachnid-Theatre a,
#panelList.slim-schedule .session-entry-slim.loc-Bobcat-Theatre a,
#panelList.slim-schedule .session-entry-slim.loc-Bumblebee-Theatre a,
#panelList.slim-schedule .session-entry-slim.loc-Condor-Theatre a,
#panelList.slim-schedule .session-entry-slim.loc-Dragonfly-Theatre a {
  color: black
}

#panelList.slim-schedule .session-entry-slim.loc-Arachnid-Theatre a:hover,
#panelList.slim-schedule .session-entry-slim.loc-Bobcat-Theatre a:hover,
#panelList.slim-schedule .session-entry-slim.loc-Bumblebee-Theatre a:hover,
#panelList.slim-schedule .session-entry-slim.loc-Condor-Theatre a:hover,
#panelList.slim-schedule .session-entry-slim.loc-Dragonfly-Theatre a:hover {
  color: #fff
}

#panelList.slim-schedule .session-entry-slim.loc-Main-Theatre-Level-3-Ballroom {
  background: #f4b223
}

#panelList.slim-schedule .session-entry-slim.loc-Main-Theatre-Level-3-Ballroom a {
  color: white
}

#grid-leap-key .text {
  width: auto;
  margin-right: 12px;
  display: inline-block;
  margin-bottom: 0
}

#grid-leap-key #filterGaming p,
#grid-leap-key #filterMainTheatre p,
#grid-leap-key #filterTheatre p,
#grid-leap-key #loc-1 p,
#grid-leap-key #loc-2 p,
#grid-leap-key #loc-3 p,
#grid-leap-key #loc-4 p,
#grid-leap-key #loc-5 p,
#grid-leap-key #loc-6 p {
  margin-bottom: 0
}

#grid-leap-key #filterGaming p:before,
#grid-leap-key #filterMainTheatre p:before,
#grid-leap-key #filterTheatre p:before,
#grid-leap-key #loc-1 p:before,
#grid-leap-key #loc-2 p:before,
#grid-leap-key #loc-3 p:before,
#grid-leap-key #loc-4 p:before,
#grid-leap-key #loc-5 p:before,
#grid-leap-key #loc-6 p:before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 12px;
  display: inline-block;
  margin-bottom: -2px
}

#grid-leap-key #filterMainTheatre p:before {
  background: #f4b223
}

#grid-leap-key #filterTheatre p:before {
  background: #F1BC48
}

#grid-leap-key #filterGaming p:before {
  background: #B897BC
}

#grid-leap-key #loc-1 p:before {
  background: #d9980d
}

#grid-leap-key #loc-2 p:before {
  background: #0fa166
}

#grid-leap-key #loc-3 p:before {
  background: #ef7d04
}

#grid-leap-key #loc-4 p:before {
  background: #5bc1ff
}

#grid-leap-key #loc-5 p:before {
  background: yellow
}

#grid-leap-key #loc-6 p:before {
  background: pink
}

#gtEvent #gtEventTop h3 {
  font-size: 24px;
  margin: 0
}

#gtEvent #gtEventTop h3:before {
  font-family: "icomoon";
  vertical-align: middle;
  font-size: 22px;
  margin-right: 6px
}

#gtEvent #gtEventTop h3.gtDate:before {
  content: "\f678"
}

#gtEvent #gtEventTop h3.gtTime:before {
  content: "\f150";
  margin-left: 3px
}

#gtEvent #gtEventTop h3.gtLocation:before {
  content: "\f34e"
}

#gtEvent #gtEventTop .gtDescription {
  margin-top: 12px
}

#gtEvent h2.gtEventGuests {
  text-transform: uppercase
}

#gtEvent #gtEventGuests {
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: normal
}

#gtEvent #gtEventGuests .gtGuestBKF {
  font-size: 15px;
  font-style: italic
}

#gtEvent #gtEventGuests .gtGuestBKF:before {
  content: "\f4ce";
  font-size: 15px;
  font-family: "icomoon";
  font-style: normal
}

#gtPremiumExhibitor #gtPremiumExhibitorHeading {
  background: #f4b223;
  color: white;
  padding-left: 6px;
  padding-right: 6px
}

#gtPremiumExhibitor [class*=" icon-"],
#gtPremiumExhibitor [class^=icon-] {
  vertical-align: middle
}

#gtPremiumExhibitor .premExhibitorName {
  font-size: 20px
}

#gtPremiumExhibitor .premBoothLocation {
  font-size: 16px
}

#gtPremiumExhibitor #premProducts a {
  font-size: 15px
}

#gtPremiumExhibitor #premProducts a.glide__arrow {
  font-size: 0
}

#gtPremiumExhibitor #premProducts a:hover .listExclusivelPicture {
  background-size: 110%
}

#gtPremiumExhibitor #premProducts a .listExclusivelPicture {
  background-position: center;
  background-size: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s
}

#gtPremiumExhibitor #gtPremiumTitle {
  width: 72%
}

#gtPremiumExhibitor #gtPremiumWebsite {
  width: 28%
}

#exhibList .exhibitor-list .exhibitor-entry {
  margin-bottom: 12px;
  background: white
}

#exhibList .exhibitor-list .exhibitor-entry.cat-Featured,
#exhibList .exhibitor-list .exhibitor-entry.cat-Premium,
#exhibList .exhibitor-list .exhibitor-entry.gtFeatured {
  background: rgba(242, 177, 37, 0.2)
}

#exhibList .exhibitor-list .exhibitor-entry.cat-Featured .featuredExclusives a,
#exhibList .exhibitor-list .exhibitor-entry.cat-Premium .featuredExclusives a,
#exhibList .exhibitor-list .exhibitor-entry.gtFeatured .featuredExclusives a {
  font-size: 15px
}

#exhibList .exhibitor-list .exhibitor-entry.cat-Featured .featuredExclusives a:hover .listExclusivelPicture,
#exhibList .exhibitor-list .exhibitor-entry.cat-Premium .featuredExclusives a:hover .listExclusivelPicture,
#exhibList .exhibitor-list .exhibitor-entry.gtFeatured .featuredExclusives a:hover .listExclusivelPicture {
  background-size: 110%
}

#exhibList .exhibitor-list .exhibitor-entry.cat-Featured .featuredExclusives a .listExclusivelPicture,
#exhibList .exhibitor-list .exhibitor-entry.cat-Premium .featuredExclusives a .listExclusivelPicture,
#exhibList .exhibitor-list .exhibitor-entry.gtFeatured .featuredExclusives a .listExclusivelPicture {
  background-position: center;
  background-size: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  height: 125px
}

#exhibList .exhibitor-list {}

#exhibList .exhibitor-list {}

#exhibList .exhibitor-list.gtgrid {
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: normal
}

#exhibList .exhibitor-list.gtgrid .gtImageArea img {
  min-height: auto
}

#exhibList .exhibitor-list.gtgrid .exhibitor-entry {
  margin-right: 2%
}

#exhibList .exhibitor-list.gtgrid .exhibitor-entry.cat-Featured .gtExhibitorInfo,
#exhibList .exhibitor-list.gtgrid .exhibitor-entry.exhibitor-entry.cat-Premium .gtExhibitorInfo,
#exhibList .exhibitor-list.gtgrid .exhibitor-entry.gtFeatured .gtExhibitorInfo {
  background: rgba(242, 177, 37, 0.8)
}

#exhibList .exhibitor-list.gtgrid .exhibitor-entry .gtExhibitorInfo {
  padding: 12px
}

#gtprofile.exhibitor-profile #gtShowroomTop {
  -ms-flex-flow: nowrap;
  flex-flow: nowrap
}

@media only screen and (max-width:32em) {
  #gtprofile.exhibitor-profile #gtShowroomTop {
    -ms-flex-flow: wrap;
    flex-flow: wrap
  }
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopLeft {
  width: auto
}

@media only screen and (max-width:32em) {
  #gtprofile.exhibitor-profile #gtShowroomTop #showroomTopLeft {
    width: 100%;
    margin-right: 0
  }
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopLeft #showroomLogo {
  width: auto;
  margin: 0 24px 24px 0
}

@media only screen and (max-width:32em) {
  #gtprofile.exhibitor-profile #gtShowroomTop #showroomTopLeft #showroomLogo {
    width: 100%
  }
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopLeft .showroomLocation {
  margin-top: 0
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopRight {
  width: auto;
  min-width: 150px
}

@media only screen and (max-width:32em) {
  #gtprofile.exhibitor-profile #gtShowroomTop #showroomTopRight {
    width: 100%;
    margin-right: 0
  }
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopRight #showroomSocial {
  float: none
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopRight #showroomSocial ul li {
  display: block;
  float: none
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopRight #showroomSocial ul li a {
  display: block
}

#gtprofile.exhibitor-profile #gtShowroomTop #showroomTopRight #showroomSocial ul li span {
  vertical-align: middle
}

#gtprofile.exhibitor-profile #showroomBottom h2 {
  text-transform: uppercase
}

#gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--left,
#gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--right {
  width: 50px;
  opacity: 0.8
}

#gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--left:hover,
#gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--right:hover {
  opacity: 1
}

#gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--left {
  left: -25px
}

@media (min-width:1200px) and (max-width:1300px) {
  #gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--left {
    left: -12px
  }
}

#gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--right {
  right: -25px
}

@media (min-width:1200px) and (max-width:1300px) {
  #gtprofile.exhibitor-profile #showroomBottom .glide__arrow.glide__arrow--right {
    right: -12px
  }
}

@media only screen and (max-width:32em) {
  #gtSearch .gtSearchInput {
    padding: 0
  }
}

@media only screen and (max-width:32em) {
  #gtSearch #gtSearchButton {
    width: 100%
  }
}

#exhibList #alpha-sort,
#panelList #alpha-sort {
  padding-left: 0
}

#exhibList #alpha-sort a,
#panelList #alpha-sort a {
  border-bottom: 4px solid #d9980d
}

#exhibList #alpha-sort .mixitup-control-active a,
#panelList #alpha-sort .mixitup-control-active a {
  border-bottom: 4px solid rgb(217, 152, 13)
}

#exhibList #alpha-sort .unavailable a,
#panelList #alpha-sort .unavailable a {
  border-bottom: 4px solid rgba(178.5, 178.5, 178.5, 0.9)
}

#exhibList #alpha-sort .viewAll button,
#panelList #alpha-sort .viewAll button {
  border-bottom: 4px solid rgb(217, 152, 13)
}

#exhibList #alpha-sort a:hover,
#panelList #alpha-sort a:hover {
  color: white;
  text-decoration: none
}

#alpha-sort a,
#alpha-sort button {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-transform: uppercase
}

#alpha-sort a:hover,
#alpha-sort button:hover {
  text-decoration: none
}

#gtFacets .gtFacetList li a {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s
}

#gtFacets #gtAllFacets {
  background: white
}

#gtFacets h3.gtFilterHeading,
#gtFacets h3.gtFilterHeading:after {
  color: white;
  text-transform: uppercase
}

#gtFacets h4 {
  text-transform: uppercase
}

#gtFacetBreadcrumbs a {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s
}

.gt-label {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 0 0 #d9980d;
  box-shadow: 0 4px 0 0 #d9980d;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase
}

.gt-label.mixitup-control-active {
  background: #d9980d
}

#gtTopFacets {
  z-index: 10
}

body.gtSticky #gtTopFacets {
  top: 100px
}

body.gtSticky #gtTopFacets:before {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  display: block;
  position: absolute;
  top: 0;
  right: 100%
}

body.gtSticky #gtTopFacets #gtFacetNav {
  margin: 0 auto
}

@media screen and (max-width:1199px) {
  body.gtSticky #gtTopFacets {
    top: 87px
  }
}

@media screen and (max-width:991px) {
  body.gtSticky #gtTopFacets {
    top: 65px
  }
}

@media screen and (max-width:767px) {
  body.gtSticky #gtTopFacets {
    top: 109px
  }
}

#gtTopFacets #gtFacetNav {
  margin-bottom: 12px
}

#gtTopFacets #gtFacetNav .gtFacetSubNav {
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s
}

#gtTopFacets #gtFacetNav>li {
  vertical-align: middle
}

#gtTopFacets #gtFacetNav>li#gtTopFacetIcon {
  font-size: 20px;
  cursor: default;
  background: transparent
}

@media only screen and (max-width:32em) {
  #gtTopFacets #gtFacetNav>li#gtTopFacetIcon {
    display: block
  }
}

#gtTopFacets #gtFacetNav>li.gtFacetNavHeading {
  width: auto;
  min-width: 150px
}

@media only screen and (max-width:32em) {
  #gtTopFacets #gtFacetNav>li.gtFacetNavHeading {
    min-width: 0;
    font-size: 14px;
    margin-right: 6px;
    width: calc(50% - 6px)
  }
}

#gtTopFacets #gtFacetNav>li#gtTopReset {
  background: transparent;
  cursor: default
}

@media only screen and (max-width:32em) {
  #gtTopFacets #gtFacetNav>li#gtTopReset {
    display: block
  }
}

#gtTopFacets #gtFacetNav button {
  display: block
}

.gt-button {
  font-weight: 700;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  border-bottom: 4px solid #d9980d;
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase
}

.gt-filter-list a {
  font-weight: 700;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  border-bottom: 4px solid rgb(217, 152, 13);
  font-family: LatoBlack, "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase
}

.gt-guestprofile #gtGuestInfo h2 {
  font-size: 24px;
  margin: 0 0 12px 0
}

.gt-guestprofile #gtGuestInfo h2 span {
  vertical-align: middle;
  font-size: 22px
}

.gt-guestprofile #gtGuestInfo .gtEpicLink {
  margin-bottom: 12px
}

.gt-guestprofile #gtGuestInfo .gtEpicLink span {
  vertical-align: middle
}

.gt-guestprofile #gtGuestInfo #guestSocial {
  margin-bottom: 12px
}

.gt-guestprofile #gtGuestInfo #guestSocial a {
  display: block
}

.gt-guestprofile #gtGuestBottom h2 {
  text-transform: uppercase
}

.gt-guestprofile #gtGuestBottom .gt-session-icon {
  vertical-align: middle
}

.specials-list {
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: normal;
  margin-top: 24px
}

.specials-list .gtSpecial-image {
  background-position: center;
  background-color: white
}

.specials-list.gt-grid-size-4 .gt-entry.gt-flex-col {
  margin-right: 2%
}

#gtprofile.exhibitor-profile .gtSlideSpecial-image {
  background-position: center;
  background-color: white
}

#showroomBottom .glide__slides .gtSlideSpecial-image-area,
#showroomBottom .singleSpecialList .gtSlideSpecial-image-area {
  height: 250px
}

.gtModal-promo-code {
  margin-bottom: 12px
}

#gtTopFacets #gtAllFacets .gtTags,
#gtTopFacets #gtFacetNav li.gtTags {
  display: none !important
}

.gtFacetList li a[data-toggle=".cat-Featured-Exhibitors"] {
  display: none !important
}

.title__base--h1 {
  text-transform: uppercase
}