@charset "UTF-8";
/*! ============================================
    Sample Growtix CSS
    Author: Milton M. Montaque II - @KaiFire
    Last modified: March 18, 2025
    Version: 3.0 
   =============================================
 */
/*====================
Defaults In Every Project
====================*/
/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/*!
 * 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
 */
.animated, #gtFacetNav ul {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite, #gtFacetNav ul.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn, #gtFacetNav .gtFacetSubNav {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) 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 {
  from {
    -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;
  }
}
.animated.flip, #gtFacetNav ul.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    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 {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*Font Smoothing*/
/**********
Trying this Keyframe Mixin
*/
/*Headings*/
/* h1,h2,h3,h4,h5,h6 {
  color: white;
} */
/*==============================================
Ranges
==============================================*/
/*==============================================
Rem & Em Calc
==============================================*/
/*====================
My Bidnish
====================**/
*,
*:before,
*:after {
  -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;
}

/*====================
Plugin Bidnish
====================**/
.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;
}

/*Breakpoints*/
/*Breakpoints*/
/*Colors*/
/*Buttons*/
/*Panels*/
/**/
/*icon vars*/
/**/
/**/
/*Guest Page*/
/**/
/*Guest List*/
/*Guest Page Filters*/
/*Guest Page Filters
$guest-filter-font-size: rem-calc(14);
$guest-filter-padding: rem-calc(5 10);
$guest-filter-text-transform:uppercase;
$guest-filter-margin: rem-calc(0 5 5 0);
$guest-filter-active-bg: $gt-secondary-color;
$guest-filter-active-bg-hover: scale-color($guest-filter-active-bg, $lightness: -20%);
*/
/*Facet Headings*/
/*Facets*/
/*FACET LIST IS THE LEFT SIDE FACETS*/
/*Top Facets*/
/*Session & Exhibitor List*/
/*Session - NEW STUFF March 2025*/
/*SLIM Sessions*/
/*Exhibtitor List*/
/*Exhibtitor Grid*/
/*Featured Listing*/
/*Specials in Listing*/
/*Featured Listing Exclusives*/
/*Aplha Sort*/
/*.gt-filter-list*/
/*Search*/
/*Session Page*/
/*Specials Grid List*/
/*Discounts in Specials*/
/*Modal*/
/*Exhibitor Showroom*/
/*
 General
*/
/*Labels*/
.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: #007DBB;
  color: #fff;
}
.awesomplete mark {
  background: rgba(0, 125, 187, 0.3);
}
.awesomplete li:hover mark {
  background: rgba(0, 125, 187, 0.3);
}
.awesomplete li[aria-selected=true] mark {
  background: rgba(0, 125, 187, 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: 15px;
  padding: 0.8rem 1.6rem 0.85rem 1.6rem;
  background: #007DBB;
  color: #fff !important;
  text-decoration: none;
  display: inline-block;
}
.gt-button:hover {
  background: #006496;
  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;
}

/*Search*/
#gtSearch {
  margin-bottom: 12px;
}
#gtSearch .gtSearchInput {
  width: 100%;
  padding: 24px;
}
@media only screen and (min-width: 769px) {
  #gtSearch .gtSearchInput {
    width: 83.3333333333%;
  }
}
@media only screen and (max-width: 768px) {
  #gtSearch .gtSearchInput {
    text-align: center;
  }
}
#gtSearch .gtSearchButton {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}
@media only screen and (min-width: 769px) {
  #gtSearch .gtSearchButton {
    width: 16.6666666667%;
    margin: 0;
  }
}
#gtSearch #gtSearchButton {
  margin-bottom: 0;
  padding: 12px;
}
@media only screen and (min-width: 769px) {
  #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: #333;
}
#gtSearch input::-moz-placeholder {
  color: #333;
}
#gtSearch input:-ms-input-placeholder {
  color: #333;
}
#gtSearch .button {
  width: 100%;
}

.specials-list .gt-flex-col {
  background: #EFEFEF;
}
.specials-list .gtSpecial-image-area {
  height: 20rem;
  width: 100%;
  overflow: hidden;
}
.specials-list .gtSpecial-image {
  width: 100%;
  height: 100%;
  background: #007DBB;
  background-position: top center;
  background-size: cover;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  /* left: -2.5%;
  position: relative; */
}
.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: 12px;
  background: #EFEFEF;
}
.specials-list .gtSpecial-company-booth {
  font-size: 14px;
  font-weight: normal;
  color: #4d4d4d;
  line-height: 1;
  /*position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);*/
}
.specials-list .gtSpecial-price {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 10px;
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0; */
}
.specials-list .gtSpecial-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1;
  margin-bottom: 10px;
}
.specials-list .gt-entry:hover .gtSpecial-image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.gtModal-promo-desc {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gt-hasPromo {
  text-decoration: line-through;
  font-style: italic;
  margin-left: 1rem;
  font-size: 14px;
  opacity: 0.5;
}

.gtModal-promo-code {
  padding: 0.75rem 1rem;
  color: black;
  background: -webkit-gradient(linear, left top, right top, from(#2493ff), to(#0079f0));
  background: linear-gradient(90deg, #2493ff, #0079f0);
  border-radius: 0px;
  display: inline-block;
}
.gtModal-promo-code span {
  font-weight: bold;
}

#showroomBottom .singleSpecialList {
  margin: 0;
  padding-left: 0;
}
#showroomBottom .singleSpecialList .singleSpecial {
  width: 25%;
  margin-bottom: 48px;
  padding-right: 0.75rem;
  list-style-type: none;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #showroomBottom .singleSpecialList .singleSpecial {
    width: 33%;
  }
}
@media only screen and (max-width: 768px) {
  #showroomBottom .singleSpecialList .singleSpecial {
    width: 100%;
    padding-right: 0;
    margin-bottom: 72px;
  }
}
#showroomBottom .glide__slides, #showroomBottom .singleSpecialList {
  margin: 0;
}
#showroomBottom .glide__slides li:hover .gtSlideSpecial-image, #showroomBottom .singleSpecialList li:hover .gtSlideSpecial-image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
#showroomBottom .glide__slides .gtSlideSpecial-image-area, #showroomBottom .singleSpecialList .gtSlideSpecial-image-area {
  height: 15rem;
  width: 100%;
  overflow: hidden;
}
#showroomBottom .glide__slides .gtSlideSpecial-image, #showroomBottom .singleSpecialList .gtSlideSpecial-image {
  width: 100%;
  height: 100%;
  background: #007DBB;
  background-position: top center;
  background-size: cover;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  /* left: -2.5%;
  position: relative; */
}
#showroomBottom .glide__slides .specialsBottom, #showroomBottom .singleSpecialList .specialsBottom {
  padding: 12px;
  background: #EFEFEF;
}
#showroomBottom .glide__slides .gtSlideSpecial-price, #showroomBottom .singleSpecialList .gtSlideSpecial-price {
  font-size: 1.1rem;
  color: #333;
  font-weight: normal;
  line-height: 1.1rem;
  margin-bottom: 0.5rem;
}
#showroomBottom .glide__slides .gtSlideSpecial-title, #showroomBottom .singleSpecialList .gtSlideSpecial-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6rem;
  margin-bottom: 0.25rem;
}
#showroomBottom .glide__slides .gtSlideSpecial-desc, #showroomBottom .singleSpecialList .gtSlideSpecial-desc {
  font-size: 1.2rem;
  font-weight: normal;
  color: #333;
  line-height: 0.8rem;
  margin-bottom: 0.5rem;
}
#showroomBottom .glide {
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  #showroomBottom .glide {
    margin-bottom: 72px;
  }
}
#showroomBottom .glide__arrow {
  font-size: 0;
  background-color: #007DBB;
  color: #fff !important;
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0.25rem 0.15rem;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media only screen and (max-width: 768px) {
  #showroomBottom .glide__arrow {
    top: auto;
    bottom: -48px;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: 49%;
    text-align: center;
    padding: 8px;
  }
}
#showroomBottom .glide__arrow:hover {
  opacity: 1;
  text-decoration: none !important;
}
#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: 1.75rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#showroomBottom .glide__arrow.glide__arrow--left {
  left: 0.5%;
}
@media only screen and (max-width: 768px) {
  #showroomBottom .glide__arrow.glide__arrow--left {
    left: 0;
  }
}
#showroomBottom .glide__arrow.glide__arrow--right {
  right: 0.5%;
}
@media only screen and (max-width: 768px) {
  #showroomBottom .glide__arrow.glide__arrow--right {
    right: 0;
  }
}
#showroomBottom .glide__arrow.glide__arrow--left:after {
  content: "\f141";
}
#showroomBottom .glide__arrow.glide__arrow--right:after {
  content: "\f142";
}

/*.gt-button {
    font-size: rem-calc(30);
    font-weight: bold;

    &:hover {
        color: #ffffff;
        text-decoration: none;
    }
}*/
/*showroomBottom*/
/*Session Page*/
#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: 12px 0 24px;
}
@media only screen and (min-width: 769px) {
  #gtEventGuests li {
    width: calc(100% / 5);
  }
}

.gtDate,
.gtTime {
  margin-bottom: 0;
}

#gtEventTop #gtImage,
#gtEventTop #gtDateTimeLocation {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  #gtEventTop #gtImage {
    width: 33.3333333333%;
    padding-right: 24px;
  }
  #gtEventTop #gtDateTimeLocation {
    width: 66.6666666667%;
  }
  #gtEventTop.no-pic #gtDateTimeLocation {
    width: 100%;
  }
}

/* .gtFacetList .mixitup-control-active, #gtFacets .mixitup-control-active {
    font-weight: bold;
} */
/*Facets*/
#gtFacets {
  margin-bottom: 24px;
}
#gtFacets .filterReset {
  color: #222222;
  display: block;
  width: 100%;
}
#gtFacets .filterReset:hover {
  cursor: pointer;
  color: #007DBB;
  text-decoration: none;
}

#gtShowroomTop:after {
  content: "";
  display: table;
  clear: both;
}
#gtShowroomTop #showroomLogo,
#gtShowroomTop #showroomInfo,
#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: 12px;
}
@media only screen and (min-width: 769px) {
  #gtShowroomTop #showroomLogo,
  #gtShowroomTop #showroomInfo,
  #gtShowroomTop #showroomSocial {
    text-align: left;
  }
  #gtShowroomTop #showroomLogo {
    width: 250px;
    margin-right: 24px;
  }
  #gtShowroomTop #showroomInfo {
    width: auto;
    margin-right: 24px;
  }
  #gtShowroomTop #showroomSocial {
    width: auto;
    float: right;
  }
}

.gtFilterHeading {
  background: #007DBB;
  color: #2d2d2d;
  font-size: 1.875rem;
  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;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(1.5rem * -0.625);
  color: #2d2d2d;
}
.gtFilterHeading.closed:after {
  content: "\f416";
}

.gtFacetHeading {
  background: rgba(0, 125, 187, 0.25);
  color: #2d2d2d;
  font-size: 1.5rem;
  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;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(1.5rem * -0.5);
  color: #2d2d2d;
}
.gtFacetHeading.closed:after {
  content: "\f416";
}

/*********************/
#gtGuestBottom {
  margin-top: 24px;
}

#gtGuestSessions {
  margin: 0;
  padding: 0;
}

/*alpha pagination*/
#alpha-sort {
  margin: 1rem 1rem 1rem 0;
  padding: 0 0 0 0.75rem;
}
#alpha-sort li {
  display: inline;
  margin-right: 0.25rem;
}
#alpha-sort a {
  font-size: 1.25rem;
  background-color: #002c57;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  line-height: 0.7rem;
  display: inline-block;
  padding: 0.75rem;
  color: #fff;
}
#alpha-sort a:hover {
  color: #007DBB;
  text-decoration: underline;
}
#alpha-sort .unavailable a {
  background: rgba(204, 204, 204, 0.9);
  color: #fff;
  cursor: not-allowed;
  text-decoration: none;
}
#alpha-sort .mixitup-control-active a {
  background-color: #005b88;
  color: #fff;
}

/*Guest Page*/
#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;
  /* Better Font Rendering =========== */
  -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;
}

/*Modal Layout*/
@media only screen and (max-width: 768px) {
  .gtModal-title {
    display: none;
  }
}

.gtModal-img {
  width: 40%;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .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: 768px) {
  .gtModal-content-right {
    width: 100%;
  }
}
.gtModal-content-right.makeFull {
  width: 100%;
}

.gtSpecial-categories {
  margin-bottom: 0.5rem;
}

#gtModal-footer .prev,
#gtModal-footer .next {
  display: block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 0;
  display: inline-block;
  background: #007DBB;
  color: white;
  padding: 0.4rem 0.5rem;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#gtModal-footer .next {
  float: right;
}
#gtModal-footer .prev:before,
#gtModal-footer .next:before {
  font-size: 0.8rem;
  display: block;
}
#gtModal-footer .next:before {
  content: "\f142";
}
#gtModal-footer .prev:before {
  content: "\f141";
}

/*Flex Grid*/
.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;
  /*Did Dan Remove This*/
  /*End Dan Remove*/
}
.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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .gt-flex-grid .gt-flex-col-size-12,
  .gt-flex-row .gt-flex-col-size-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .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: 769px) and (max-width: 1024px) {
  .gt-grid-size-1 .gt-flex-col {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .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: 769px) and (max-width: 1024px) {
  .gt-grid-size-2 .gt-flex-col {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .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: 769px) and (max-width: 1024px) {
  .gt-grid-size-3 .gt-flex-col {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .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: 769px) and (max-width: 1024px) {
  .gt-grid-size-4 .gt-flex-col {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .gt-grid-size-4 .gt-flex-col {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.gt-flex-col-full {
  width: 100% !important;
}

/* Gonna Need To Redo This 
.gt-flex-row {

} */
/*-new specials Artists Page w/o Foundation*/
.gt-filter-list {
  margin: 0 0 0.75rem 0;
  padding: 0;
  /**/
}
.gt-filter-list li {
  display: inline-block;
  margin: 5px;
  padding: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
}
.gt-filter-list a {
  font-weight: normal;
  font-size: 13px;
  display: inline-block;
  color: #fff;
  padding: 0.3rem 0.4rem;
  background-color: #002c57;
  text-decoration: none;
  cursor: pointer;
  /**/
}
.gt-filter-list a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #001224;
}
.gt-filter-list a.mixitup-control-active {
  background-color: #002c57;
  color: #fff;
}
.gt-filter-list a.mixitup-control-active:hover {
  background-color: #c61118;
}

/*Responsive YT Embed*/
.gt-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.gt-embed-container iframe,
.gt-embed-container object,
.gt-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Tabs*/
#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: #007DBB;
  z-index: 0;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
#gtGuestTabs a.inactive {
  color: #333;
  opacity: 0.5;
}
#gtGuestTabs a.inactive:after {
  background-color: #333;
  -webkit-transform: translateY(95%);
          transform: translateY(95%);
}

/*Loading Text*/
.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;
}

/*Exhibitor List & Panel List Loader*/
.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-page-content-area, .loading-page-cta-area, .loading-list-heading-area {
  height: 100%;
  float: left;
  position: relative;
}
.loading-list-content-area div, .loading-page-content-area div, .loading-page-cta-area div, .loading-list-heading-area div {
  float: right;
  background: #fff;
}
.loading-list-content-area .loading-list-title-right, .loading-page-content-area .loading-list-title-right, .loading-page-cta-area .loading-list-title-right, .loading-list-heading-area .loading-list-title-right {
  height: 1rem;
  width: 40%;
}
.loading-list-content-area .loading-space-below, .loading-page-content-area .loading-space-below, .loading-page-cta-area .loading-space-below, .loading-list-heading-area .loading-space-below {
  height: 0.5rem;
  width: 100%;
}
.loading-list-content-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, .loading-list-heading-area .loading-space-below:last-of-type {
  height: 5.1rem;
}
.loading-list-content-area .loading-list-booth-right, .loading-page-content-area .loading-list-booth-right, .loading-page-cta-area .loading-list-booth-right, .loading-list-heading-area .loading-list-booth-right {
  height: 0.8rem;
  width: 70%;
}
.loading-list-content-area .loading-list-desc, .loading-page-content-area .loading-list-desc, .loading-page-cta-area .loading-list-desc, .loading-list-heading-area .loading-list-desc {
  height: 0.8rem;
  width: 10%;
}
.loading-list-content-area .loading-page-long-1, .loading-page-content-area .loading-page-long-1, .loading-page-cta-area .loading-page-long-1, .loading-list-heading-area .loading-page-long-1 {
  height: 0.8rem;
  width: 8%;
}
.loading-list-content-area .loading-page-long-2, .loading-page-content-area .loading-page-long-2, .loading-page-cta-area .loading-page-long-2, .loading-list-heading-area .loading-page-long-2 {
  height: 0.8rem;
  width: 7%;
}
.loading-list-content-area .loading-page-long-3, .loading-page-content-area .loading-page-long-3, .loading-page-cta-area .loading-page-long-3, .loading-list-heading-area .loading-page-long-3 {
  height: 0.8rem;
  width: 10%;
}
.loading-list-content-area .loading-page-long-last, .loading-page-content-area .loading-page-long-last, .loading-page-cta-area .loading-page-long-last, .loading-list-heading-area .loading-page-long-last {
  height: 0.8rem;
  width: 30%;
}

/*Modal Loader*/
.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;
}

/*all grid*/
.loading-special-grid, .loading-exhibitor-grid, .loading-special-grid-page {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.loading-special-grid.loading-shimmmer, .loading-exhibitor-grid.loading-shimmmer, .loading-special-grid-page.loading-shimmmer {
  background-size: 1400px 104px;
  -webkit-animation-name: loading-shimmer2;
          animation-name: loading-shimmer2;
}
@media only screen and (max-width: 768px) {
  .loading-special-grid, .loading-exhibitor-grid, .loading-special-grid-page {
    height: auto;
  }
}

.loading-special-grid-page {
  height: 399px;
}

.loading-exhibitor-grid {
  height: 60rem;
}

.loading-special-spacer, .loading-exhibitor-grid-spacer {
  display: block;
  width: 25%;
  height: 50vh;
  border: 30px solid white;
  float: left;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .loading-special-spacer, .loading-exhibitor-grid-spacer {
    width: 100%;
    border: 15px solid white;
  }
}
.loading-special-spacer:after, .loading-exhibitor-grid-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-spacer:nth-child(3n+2); {
    border-left

} */
/*special modal*/
.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: 768px) {
  .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:before, .loading-page-cta-area:after {
  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: 768px) {
  .loading-image-right {
    display: none;
  }
}

.loading-right-area {
  height: 100%;
  width: 60%;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .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-Title span, .tempModal-Sub-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%;
}

/*Animations*/
@-webkit-keyframes loading-shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes loading-shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@-webkit-keyframes loading-shimmer2 {
  0% {
    background-position: -700px 0;
  }
  100% {
    background-position: 700px 0;
  }
}
@keyframes loading-shimmer2 {
  0% {
    background-position: -700px 0;
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
}
@-webkit-keyframes loading03 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes loading03 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

/**************************\
  Basic Modal Styles
\**************************/
.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: 18px;
  line-height: 1;
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .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);
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -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;
}

/*Exhibitor Showroom*/
#gtShowroomTop,
#showroomBottom,
#showroomDesc {
  margin-bottom: 24px;
}

#showroomDesc {
  line-height: 1.5;
}

/*Dan Addition*

#gtFacets {
    width: 100%;
    float: none;

    @media only screen and (min-width: 1025px) {
        width: 20%;
        float: left;
    }
}

#exhibList, #panelList, #gtArtist{
     &.gt-full-container {
        float: none;

        @media only screen and (min-width: 1025px) {
            width: 80%;
            float: left;
            padding-right: $gt-column-gutter;
            padding-left: $gt-column-gutter;
        }
    }
}

/*Session & Exhibitor List*/
.session-list a,
.exhibitor-list a {
  text-decoration: none;
}
.session-list:not(.gtgrid) .gt-flex-col,
.exhibitor-list:not(.gtgrid) .gt-flex-col {
  margin: 0;
}
.session-list:not(.gtgrid) .gt-flex-col.session-entry, .session-list:not(.gtgrid) .gt-flex-col.exhibitor-entry,
.exhibitor-list:not(.gtgrid) .gt-flex-col.session-entry,
.exhibitor-list:not(.gtgrid) .gt-flex-col.exhibitor-entry {
  padding: 24px;
  border-bottom: 1px solid #ccc;
  position: relative;
  /*FEATURED*/
}
.session-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured, .session-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured,
.exhibitor-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured,
.exhibitor-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured {
  background: rgba(0, 125, 187, 0.2);
  border: 1px solid #007DBB;
}
.session-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured.hasHeadingArea, .session-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured.hasHeadingArea,
.exhibitor-list:not(.gtgrid) .gt-flex-col.session-entry.gtFeatured.hasHeadingArea,
.exhibitor-list:not(.gtgrid) .gt-flex-col.exhibitor-entry.gtFeatured.hasHeadingArea {
  padding-top: 30px;
}
.session-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea,
.exhibitor-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #007DBB;
  padding: 4px 8px;
  color: white;
  font-weight: bold;
  font-size: 10px;
  border-left: 8px solid #005b88;
  /*&:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;

      display: block;
  }*/
}
.session-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea:after,
.exhibitor-list .gt-flex-col.exhibitor-entry .gtfeaturedHeadingArea:after {
  content: "";
  width: 10px;
  height: 24px;
  border-right: 10px solid transparent;
  border-top: 24px solid #007DBB;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: -10px;
}

.exhibitor-entry span {
  font-weight: bold;
}

.session-people,
.session-categories {
  margin-top: 12px;
  width: 100%;
}

.gtlist .grid-btn,
.gtlist .gt-label {
  display: none;
}
.gtlist .gtImageArea {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .gtlist .gtImageArea {
    width: 16%;
    padding-right: 24px;
  }
}
@media only screen {
  .gtlist .gtImageArea {
    margin-bottom: 12px;
  }
}
.gtlist .gtExhibitorInfo,
.gtlist .gtSessionInfo {
  width: 100%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 1025px) {
  .gtlist .gtExhibitorInfo,
  .gtlist .gtSessionInfo {
    width: 84%;
  }
}
.gtlist .gtSessionInfo.gtHasNoImageArea {
  width: 100%;
}
.gtlist .exhibitor-categories,
.gtlist .exhibitorListExclusives {
  width: 100%;
}
.gtlist .exhibitor-name,
.gtlist .exhibitor-location {
  margin-bottom: 8px;
}
.gtlist .exhibitor-name {
  font-size: 1.5rem;
  font-family: Kanit, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #222222 !important;
}
.gtlist .exhibitor-name:hover {
  color: #007DBB !important;
}

/*Grid*/
.gtgrid .gt-flex-col {
  margin-bottom: 24px;
}
.gtgrid .exhibitor-entry {
  background: #f4f4f4;
  overflow: hidden;
}
.gtgrid .exhibitor-entry.gtFeatured {
  background: rgba(0, 125, 187, 0.1);
  border: 1px solid #007DBB !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: 1rem;
  background: rgba(0, 44, 87, 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(0, 125, 187, 0.2);
}
.gtgrid .exhibitor-location {
  padding-top: 8px;
}
.gtgrid a {
  display: block;
  height: 100%;
}
.gtgrid a .exhibitor-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 0.5rem 0;
  color: #fff !important;
  font-family: Kanit, "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 Including Guest Page*/
.session-list .gt-flex-col .session-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.session-list .session-date-time {
  margin-bottom: 0;
}
.session-list .session-date {
  font-size: 16px;
}
.session-list .session-time {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .session-list .session-time {
    display: block;
    clear: left;
    margin-top: 0;
  }
}
.session-list .session-location {
  font-size: 16px;
}
.session-list .sessions-people-label {
  font-weight: bold;
}
.session-list .session-description {
  margin-top: 12px;
}
.session-list .session-date-time div,
.session-list .session-location {
  display: inline-block;
}
.session-list .gt-session-icon {
  font-size: 16px;
  margin-right: 0.25rem;
}
@media only screen and (min-width: 769px) {
  .session-list .gt-session-time-icon {
    margin-left: 0.8rem;
  }
}

/*Exhibitor List*/
.exhibitor-list.gtlist .exhibitor-location {
  font-size: 16px;
}
.exhibitor-list.gtlist .exhibitor-description {
  font-size: 14px;
}
.exhibitor-list.gtlist .exclusivesHeading {
  font-weight: bold;
  padding-bottom: 6px;
}

/*Exclusive Grid in List*/
.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: 1rem;
  list-style-type: none;
  width: 48%;
  margin-right: 2%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 769px) {
  .featuredExclusives li {
    width: 23%;
  }
}
.featuredExclusives li:not(.moreExclusives) a {
  border: 1px solid #ccc;
  display: block;
  height: 100%;
  overflow: hidden;
}
.featuredExclusives li .listExclusivelPicture {
  height: 11.25rem;
  background-position: top center;
  background-size: cover;
}
.featuredExclusives li .listExclusiveTitle {
  background: #007DBB;
  padding: 8px;
  color: #fff;
  height: 100%;
  font-size: 1.3rem;
}
.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;
}

/*SLIM*/
.time-slot-container {
  margin: 12px 0;
  padding: 12px 0;
}

.session-entry-slim {
  display: inline-block;
  margin: 0 8px 8px 0;
}
.session-entry-slim a {
  color: #000;
  background-color: rgba(0, 125, 187, 0.5);
  padding: 8px 12px;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.session-entry-slim a:hover {
  background-color: #007dbb;
  color: #fff;
}

.time-header,
.time-events {
  padding: 8px;
  display: inline-block;
}

.time-header {
  width: 15%;
  float: left;
  font-weight: bold;
  font-size: 18px;
}

.time-events {
  width: 85%;
  border-left: 0.5rem solid #007DBB;
}

.day-container {
  width: 100%;
}

.day-container-header {
  font-size: 24px;
  font-weight: bold;
  padding: 24px;
}

.guest-grid.mixitup-container-failed:after {
  content: "Nothing matches your filter. Please try another.";
  display: inline-block;
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
  background: rgba(255, 51, 51, 0.1);
  border: 3px solid rgba(255, 51, 51, 0.5);
  font-style: italic;
  color: #FF3333;
}

.info-area {
  position: absolute;
  bottom: 24px;
  left: 10px;
  z-index: 3;
  width: calc(100% - 20px);
  text-align: left;
  /*.show-features & .segment:before {
      content: 'Show Features';
  }

  .entertainment & .segment:before {
      content: 'Entertainment';
  }

  .artist-alley & .segment:before {
      content: 'Artist Alley';
  }

  .comic & .segment:before {
      content: 'Comic';
  }

  .auto-photo & .segment:before {
      content: 'Autograph/Photo Ops';
  }

  .gaming & .segment:before {
      content: 'Gaming';
  }

  .show-floor-activations & .segment:before {
      content: 'Show Floor/Activations';
  }

  .literary & .segment:before {
      content: 'Literary';
  }

  .house & .segment:before {
      content: 'House';
  }

  .cosplay & .segment:before {
      content: 'Cosplay';
  }

  .anime & .segment:before {
      content: 'Anime';
  }*/
  /*.panels & .segment:before {
      content: 'Panels';

      .slick-center & {
          color: $gt-black;
      }
  }*/
}
.info-area .title,
.info-area .guest-name {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  padding: 0.15rem 0.35rem 0.15rem 1rem;
  background: #007DBB;
  text-transform: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.info-area .bkf,
.info-area .location,
.info-area i,
.info-area .segment,
.info-area .guest-location,
.info-area .days-appearing {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  margin: 0.2rem 0 0 0;
  font-style: normal;
  background: transparent;
  padding: 0.15rem 0.4rem 0.15rem 1rem;
  display: table;
  max-width: 100%;
}
.info-area .bkf span,
.info-area .location span,
.info-area i span,
.info-area .segment span,
.info-area .guest-location span,
.info-area .days-appearing span {
  margin: 0 0.4rem 0 0;
  font-size: 14px;
  position: relative;
  top: 0.05rem;
}

#guest-grid h2 {
  text-transform: uppercase;
  padding-top: 1.5rem;
}

/*Guest Page*/
.guest-grid,
.card-grid {
  width: 100%;
  margin: auto;
  padding: 0;
}
.guest-grid li,
.card-grid li {
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  float: none;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .guest-grid li,
  .card-grid li {
    width: 50%;
    float: left;
  }
}
@media only screen and (min-width: 1025px) {
  .guest-grid li,
  .card-grid li {
    width: 33.3%;
    float: left;
  }
  .guest-grid li .title,
  .guest-grid li .guest-name,
  .card-grid li .title,
  .card-grid li .guest-name {
    font-size: 20px;
  }
}
.guest-grid .mix,
.card-grid .mix {
  clear: none !important;
}
.guest-grid .schedule-link,
.guest-grid .auto-photos,
.card-grid .schedule-link,
.card-grid .auto-photos {
  margin-top: 24px;
}
.guest-grid .schedule-link a,
.guest-grid .auto-photos a,
.card-grid .schedule-link a,
.card-grid .auto-photos a {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: bold;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-decoration: none;
  outline: 2px solid;
  outline-color: #007DBB;
  padding: 0.3rem 0.6rem !important;
  letter-spacing: 1px;
  font-size: 1.2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guest-grid .schedule-link a span,
.guest-grid .auto-photos a span,
.card-grid .schedule-link a span,
.card-grid .auto-photos a span {
  margin-left: 0.4rem;
}
.guest-grid .schedule-link a span:before,
.guest-grid .auto-photos a span:before,
.card-grid .schedule-link a span:before,
.card-grid .auto-photos a span:before {
  position: relative;
  top: 0.2rem;
}
.guest-grid .schedule-link a:hover,
.guest-grid .auto-photos a:hover,
.card-grid .schedule-link a:hover,
.card-grid .auto-photos a:hover {
  color: #007DBB;
  border-color: #007DBB;
  outline: 0px solid;
  -webkit-box-shadow: inset 0 0 20px rgba(0, 125, 187, 0.3), 0 0 20px rgba(0, 125, 187, 0.2);
          box-shadow: inset 0 0 20px rgba(0, 125, 187, 0.3), 0 0 20px rgba(0, 125, 187, 0.2);
  outline-color: transparent;
  outline-offset: 10px;
}
.guest-grid .image-area,
.card-grid .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.guest-grid .image-area:before,
.card-grid .image-area:before {
  background: black;
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guest-grid .image-area:after,
.card-grid .image-area:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(55%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 55%);
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  bottom: 0;
  left: 0;
  border-width: 10px;
  border-style: solid;
  border-color: #007DBB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guest-grid .image-area img,
.card-grid .image-area img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.guest-grid .hover-content,
.card-grid .hover-content {
  position: absolute;
  z-index: 5;
  width: calc(100% - 16px);
  margin: 0;
  top: -100%;
  height: 100px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /**/
}
.guest-grid .hover-content .autos-photos,
.card-grid .hover-content .autos-photos {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .guest-grid .hover-content .autos-photos,
  .card-grid .hover-content .autos-photos {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  .guest-grid .hover-content .autos-photos,
  .card-grid .hover-content .autos-photos {
    width: 100%;
  }
}
.guest-grid .hover-content .guest-social,
.card-grid .hover-content .guest-social {
  text-align: center;
  margin: auto;
  padding: 0;
}
.guest-grid .hover-content .guest-social li,
.card-grid .hover-content .guest-social li {
  font-size: 2rem;
  text-align: center;
  display: inline;
  float: none;
}
.guest-grid .hover-content .guest-social a,
.card-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;
}
.guest-grid .hover-content .guest-social a:hover,
.card-grid .hover-content .guest-social a:hover {
  color: #fff;
}
.guest-grid li:hover .hover-content,
.card-grid li:hover .hover-content {
  top: 30%;
}
.guest-grid li:hover .image-area:before,
.card-grid li:hover .image-area:before {
  opacity: 0.7;
}
.guest-grid li:hover .image-area:after,
.card-grid li:hover .image-area:after {
  opacity: 0;
}
.guest-grid li:hover .info-area,
.card-grid li:hover .info-area {
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guest-grid li:hover .bkf,
.guest-grid li:hover .guest-location,
.guest-grid li:hover .days-appearing,
.card-grid li:hover .bkf,
.card-grid li:hover .guest-location,
.card-grid li:hover .days-appearing {
  font-size: 0;
  color: transparent;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guest-grid li:hover .bkf span,
.guest-grid li:hover .guest-location span,
.guest-grid li:hover .days-appearing span,
.card-grid li:hover .bkf span,
.card-grid li:hover .guest-location span,
.card-grid li:hover .days-appearing span {
  font-size: 0;
  color: transparent;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.guest-grid#canceled .mix .guest-location,
.guest-grid#canceled .mix .days-appearing,
.guest-grid#canceled .mix .schedule-link,
.guest-grid#canceled .mix .auto-photos,
.card-grid#canceled .mix .guest-location,
.card-grid#canceled .mix .days-appearing,
.card-grid#canceled .mix .schedule-link,
.card-grid#canceled .mix .auto-photos {
  display: none;
}

.gt-guest-filters {
  text-transform: capitalize;
}
@media only screen and (max-width: 768px) {
  .gt-guest-filters li:first-of-type {
    width: 100%;
  }
}

#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: 24px;
}

#gtImage {
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
}
@media only screen and (min-width: 769px) {
  #gtImage {
    width: 30%;
    padding-right: 24px;
    padding-bottom: 0;
  }
}

#gtGuestInfo {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  #gtGuestInfo {
    width: 70%;
  }
}
#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 12px 12px 0;
}
#guestSocial a {
  text-decoration: none;
}

#gtGuestBottom li {
  padding: 24px 0;
  list-style-type: none;
}

.gt-full-container {
  width: 100%;
}

#featured-guests ul.glide__slides, #featured-exhibitors ul.glide__slides {
  margin-left: 0;
}
#featured-guests .glide__slide, #featured-exhibitors .glide__slide {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 100% !important;
}
#featured-guests .glide__slide img, #featured-exhibitors .glide__slide img {
  -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%;
}
#featured-guests .glide__slide .guests-bottom, #featured-exhibitors .glide__slide .guests-bottom {
  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 p, #featured-guests .glide__slide .guests-bottom h2, #featured-guests .glide__slide .guests-bottom h4, #featured-exhibitors .glide__slide .guests-bottom p, #featured-exhibitors .glide__slide .guests-bottom h2, #featured-exhibitors .glide__slide .guests-bottom h4 {
  color: #FFFFFF;
}
#featured-guests .glide__slide .guests-bottom h4, #featured-guests .glide__slide .guests-bottom p, #featured-exhibitors .glide__slide .guests-bottom h4, #featured-exhibitors .glide__slide .guests-bottom p {
  display: table;
  text-align: left;
  max-width: 90%;
}
#featured-guests .glide__slide .guests-bottom h4, #featured-exhibitors .glide__slide .guests-bottom h4 {
  padding: 5px 5px 5px 10px;
  background: #007DBB;
  font-family: Kanit, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 5px;
}
#featured-guests .glide__slide .guests-bottom p, #featured-exhibitors .glide__slide .guests-bottom p {
  position: relative;
  padding: 5px 5px 5px 30px;
  line-height: 1.5;
  margin: 0;
}
#featured-guests .glide__slide .guests-bottom p:before, #featured-exhibitors .glide__slide .guests-bottom p:before {
  font-family: "icomoon";
  position: absolute;
  left: 5px;
  top: 5px;
  content: "\f4ce";
  color: white;
}
#featured-guests .glide__arrows .glide__arrow, #featured-exhibitors .glide__arrows .glide__arrow {
  position: absolute;
  bottom: 45%;
  color: white !important;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
}
#featured-guests .glide__arrows .glide__arrow:hover, #featured-exhibitors .glide__arrows .glide__arrow:hover {
  text-decoration: none;
  cursor: pointer;
  background: black;
}
#featured-guests .glide__arrows .glide__arrow span:before, #featured-exhibitors .glide__arrows .glide__arrow span:before {
  font-size: 20px;
}
#featured-guests .glide__arrows .glide__arrow--left, #featured-exhibitors .glide__arrows .glide__arrow--left {
  left: 0;
}
#featured-guests .glide__arrows .glide__arrow--right, #featured-exhibitors .glide__arrows .glide__arrow--right {
  right: 0;
}
@media only screen and (min-width: 769px) {
  #featured-guests .glide__arrows .glide__arrow--left, #featured-exhibitors .glide__arrows .glide__arrow--left {
    left: -60px;
  }
  #featured-guests .glide__arrows .glide__arrow--right, #featured-exhibitors .glide__arrows .glide__arrow--right {
    right: -60px;
  }
}

.gtFacetList {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  background: #FFFFFF;
}
.gtFacetList li {
  list-style-type: none;
}
.gtFacetList li a {
  display: block;
  padding: 0.25rem 1.25rem 0.25rem 0.25rem;
  position: relative;
  color: #222222 !important;
  text-decoration: none;
}
.gtFacetList li a:hover {
  color: #007DBB;
  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;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: calc(1.5rem * -0.5);
  color: #222222;
}
.gtFacetList li a.mixitup-control-active, .gtFacetList li a.mixitup-control-active:after {
  color: #007DBB;
}
.gtFacetList li a.mixitup-control-active:after {
  content: "\f135";
}

/*Top Facets*/
#gtTopFacets {
  min-height: 32px;
}
body.gtSticky #gtTopFacets {
  position: fixed;
  width: 100%;
  top: 100px;
  padding: 0.5rem 0;
  background: #fff;
}
@media only screen and (min-width: 769px) {
  body.gtSticky #gtTopFacets {
    top: 65px;
  }
}

#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: 16px;
  background: #fff;
  cursor: pointer;
}
#gtFacetNav > li.gt-active {
  border: 1px solid #007DBB;
  color: #007DBB;
}
#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;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0.25rem;
  top: 16px;
  margin-top: calc(16px * -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: 16px;
}
#gtFacetNav .gtFacetSubNav li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #000;
}
#gtFacetNav .gtFacetSubNav li a:hover, #gtFacetNav .gtFacetSubNav li a.mixitup-control-active:hover {
  background-color: #007DBB;
  color: #fff;
}
#gtFacetNav .gtFacetSubNav li a.mixitup-control-active {
  color: #007DBB;
}
#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 #gtTopReset {
  margin: 0;
  padding: 5px;
}
#gtFacetNav #gtTopReset.mixitup-control-active {
  display: none;
}

.gt-inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gt-inline-list li {
  display: inline-block;
  margin: 0 0.7rem 0.7rem 0;
}

/*labels*/
.gt-label {
  display: inline-block;
  font-weight: normal;
  line-height: 1;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0.3rem;
  font-size: 0.8rem;
  background-color: #007DBB;
  color: #fff;
  margin: 0.15rem 0;
}
.gt-label:hover {
  color: #fff;
  background: #005b88;
}

#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: #007DBB;
  color: #fff;
}
#gtExhibitorsTable tbody {
  font-size: 14px;
}
#gtExhibitorsTable tbody tr:nth-of-type(even) {
  background-color: rgba(0, 125, 187, 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, #007DBB 0%, #007DBB 31%, #005ebb 31%, #005ebb 42%, #003fbb 42%, #003fbb 49%, #0020bb 49%, #0020bb 100%);
}
.gtCSVButton:hover {
  background-color: rgba(0, 125, 187, 0.1);
  color: white;
}
.gtCSVButton:hover:after {
  background-position: 100% 0;
}

/*====================
Oñay Custom
====================**/
/*icon vars*/
/*PAX East vars*/
/*add foundation-style grid*/
.medium-3 {
  float: left;
  width: 20%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .medium-3 {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .medium-3 {
    width: 100%;
  }
}

.medium-9 {
  float: left;
  width: 80%;
  padding-left: 24px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .medium-9 {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  .medium-9 {
    width: 100%;
    padding-left: 0;
  }
}

/*add padding to container since ATLAS adds negative padding on small*/
@media only screen and (max-width: 768px) {
  .gt-full-container {
    padding: 12px;
  }
}

/*add font-weight, text case, border, and box-shadow for ATLAS flat button style*/
.gt-button {
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #006292;
  -webkit-box-shadow: 0 3px 0 0 #006292;
          box-shadow: 0 3px 0 0 #006292;
}
.gt-button:hover {
  -webkit-box-shadow: 0 3px 0 0 #007DBB;
          box-shadow: 0 3px 0 0 #007DBB;
  border: 1px solid #004d74;
}

/*search mobile edits*/
@media only screen and (max-width: 768px) {
  #gtSearch .gtSearchInput {
    padding: 0;
  }
  #gtSearchButton {
    width: 100%;
  }
}
/*top facet edits (HIDE TAGS FOR PAX)*/
#gtTopFacets {
  /*sticky top facet placement*/
  /*align icon with dropdowns*/
}
body.gtSticky #gtTopFacets {
  top: 100px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  body.gtSticky #gtTopFacets {
    top: 63px;
  }
}
@media screen and (max-width: 991px) {
  body.gtSticky #gtTopFacets {
    top: 64px;
  }
}
#gtTopFacets #gtFacetNav > li {
  vertical-align: middle;
  width: 29%;
  /*custom mobile styling to make top facets more condensed*/
}
#gtTopFacets #gtFacetNav > li#gtTopFacetIcon {
  width: auto;
}
#gtTopFacets #gtFacetNav > li.gtTags {
  display: none;
}
@media only screen and (max-width: 768px) {
  #gtTopFacets #gtFacetNav > li {
    font-size: 14px;
    margin-right: 0;
  }
  #gtTopFacets #gtFacetNav > li .gtFacetSubNav li {
    font-size: 14px;
  }
  #gtTopFacets #gtFacetNav > li span {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/*slim schedule edits on small*/
@media only screen and (max-width: 768px) {
  .day-container-header {
    padding-left: 0;
    padding-right: 0;
  }
  .time-header {
    font-size: 13px;
    padding-left: 0;
  }
}
/*alpha list and filter edits (ATLAS flat button style)*/
#alpha-sort li {
  margin-bottom: 0.25rem;
  display: inline-block;
}

#alpha-sort li:not(.unavailable, .mixitup-control-active) a,
.gt-filter-list:not(.unavailable, .mixitup-control-active) a {
  border: 1px solid #00172e;
  -webkit-box-shadow: 0 3px 0 0 #00172e;
          box-shadow: 0 3px 0 0 #00172e;
}
#alpha-sort li:not(.unavailable, .mixitup-control-active) a:hover,
.gt-filter-list:not(.unavailable, .mixitup-control-active) a:hover {
  background: #007DBB;
  border-color: #006292;
  -webkit-box-shadow: 0 3px 0 0 #006292;
          box-shadow: 0 3px 0 0 #006292;
}
#alpha-sort li.unavailable a,
.gt-filter-list.unavailable a {
  border: 1px solid rgba(191, 191, 191, 0.9);
  -webkit-box-shadow: 0 3px 0 0 rgba(179, 179, 179, 0.9);
          box-shadow: 0 3px 0 0 rgba(179, 179, 179, 0.9);
}
#alpha-sort li.mixitup-control-active a,
#alpha-sort li a.mixitup-control-active,
.gt-filter-list.mixitup-control-active a,
.gt-filter-list a.mixitup-control-active {
  border: 1px solid #006292;
  -webkit-box-shadow: 0 3px 0 0 #006292;
          box-shadow: 0 3px 0 0 #006292;
}
#alpha-sort li.mixitup-control-active a:hover,
#alpha-sort li a.mixitup-control-active:hover,
.gt-filter-list.mixitup-control-active a:hover,
.gt-filter-list a.mixitup-control-active:hover {
  border-color: #004d74;
  -webkit-box-shadow: 0 3px 0 0 #004d74;
          box-shadow: 0 3px 0 0 #004d74;
  background: #006292;
}
#alpha-sort li a,
.gt-filter-list a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
}
#alpha-sort li a:hover,
.gt-filter-list a:hover {
  color: white;
  text-decoration: none !important;
}

#exhibList #alpha-sort li:not(.unavailable, .mixitup-control-active) a {
  border: 1px solid #00172e;
  -webkit-box-shadow: 0 3px 0 0 #00172e;
          box-shadow: 0 3px 0 0 #00172e;
}
#exhibList #alpha-sort li:not(.unavailable, .mixitup-control-active) a:hover {
  background: #007DBB;
  border-color: #006292;
  -webkit-box-shadow: 0 3px 0 0 #006292;
          box-shadow: 0 3px 0 0 #006292;
}
#exhibList #alpha-sort li.mixitup-control-active {
  -webkit-box-shadow: 0 3px 0 0 #006292;
          box-shadow: 0 3px 0 0 #006292;
}
#exhibList #alpha-sort li.mixitup-control-active:hover {
  border-color: #004d74;
  -webkit-box-shadow: 0 3px 0 0 #004d74;
          box-shadow: 0 3px 0 0 #004d74;
}
#exhibList #alpha-sort li.unavailable a {
  border: 1px solid rgba(191, 191, 191, 0.9);
  -webkit-box-shadow: 0 3px 0 0 rgba(179, 179, 179, 0.9);
          box-shadow: 0 3px 0 0 rgba(179, 179, 179, 0.9);
}

/*modals*/
a.modal__close:hover {
  text-decoration: none !important;
}

/*exclusives edits*/
a.artist-modal-link:hover {
  text-decoration: none !important;
}

/*guest list edits*/
a[data-filter=".cat-Guest-of-honor"] {
  display: none;
  position: relative;
  font-size: 0;
  line-height: 1.4;
}
a[data-filter=".cat-Guest-of-honor"]:before {
  content: "Featured Guests";
  font-size: 13px;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .guest-grid li {
    width: 33.3%;
    float: left;
  }
}
@media only screen and (min-width: 1025px) {
  .guest-grid li {
    width: 25%;
    float: left;
  }
}
.guest-grid li:hover .info-area {
  text-align: center;
}
.guest-grid li:hover .info-area .guest-name {
  padding: 0;
  background: none;
}
.guest-grid li .info-area {
  text-shadow: 3px 3px 3px black;
}
.guest-grid li .info-area .guest-name {
  text-shadow: none;
}
.guest-grid li .auto-photos a,
.guest-grid li .schedule-link a {
  background: #007DBB;
  color: white;
  padding: 10px 15px !important;
}
.guest-grid li .auto-photos a:hover,
.guest-grid li .schedule-link a:hover {
  color: white;
  background: #002c57;
}
.guest-grid li:hover .image-area:before {
  opacity: 0.9;
}
.guest-grid li .image-area:before {
  background: #00050b;
}
.guest-grid li .image-area:after {
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(55%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 55%);
}

/*guest profile edits*/
.gt-guestprofile, .paxe-guest-profile {
  padding: 0 12px;
}
.gt-guestprofile #gtGuestInfo h2, .paxe-guest-profile #gtGuestInfo h2 {
  font-size: 28px;
}
.gt-guestprofile #gtGuestInfo h2 span, .paxe-guest-profile #gtGuestInfo h2 span {
  vertical-align: middle;
}
.gt-guestprofile #gtGuestInfo ul.gt-inline-list, .paxe-guest-profile #gtGuestInfo ul.gt-inline-list {
  margin: 12px 0;
}
.gt-guestprofile #gtGuestInfo ul.gt-inline-list li, .paxe-guest-profile #gtGuestInfo ul.gt-inline-list li {
  margin: 0;
  padding: 6px;
  background: #f2f2f2;
}

/*slider edits*/
#featured-exhibitors .glide__slide,
#featured-guests .glide__slide {
  overflow: hidden;
}
#featured-exhibitors .glide__slide .guests-bottom,
#featured-guests .glide__slide .guests-bottom {
  background: -webkit-gradient(linear, left bottom, left top, from(#111), to(transparent));
  background: linear-gradient(0deg, #111, transparent);
}
#featured-exhibitors .glide__slide a img,
#featured-guests .glide__slide a img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#featured-exhibitors .glide__slide a:hover img,
#featured-guests .glide__slide a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#featured-exhibitors .glide__slide a {
  display: block;
}
#featured-exhibitors .glide__slide a:hover {
  text-decoration: none;
}
#featured-exhibitors .glide__slide a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#featured-exhibitors .glide__slide img {
  aspect-ratio: 1/1;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#featured-exhibitors .glide__slide .guests-bottom {
  background: transparent;
  position: static;
}
#featured-exhibitors .glide__slide .guests-bottom h4 {
  background: transparent;
  padding: 0;
}
#featured-exhibitors .glide__slide .guests-bottom p {
  display: none;
}

/*exhibitor grid edits*/
.gtgrid .gtExhibitorInfo {
  background: rgba(0, 0, 0, 0.9);
}

/*tattoo pavilion edits*/
.tattoopavilion-grid .gtExhibitorInfo .exhibitor-location {
  display: block;
  color: white;
}
.tattoopavilion-grid .gtImageArea img {
  min-height: 345px;
}

/*artist alley edits*/
.artistalley-grid .gtImageArea img {
  min-height: 0;
  max-height: 250px;
}

/*writers block edits*/
.writersblock-grid .gtImageArea img {
  min-height: 0;
  max-height: 400px;
}

/*full width slim panel edits*/
.afterdark-panels-slim.medium-9,
.cosplaycentral-panels-slim.medium-9,
.familyhq-panels-slim.medium-9,
.pridelounge-panels-slim.medium-9,
.sidequest-panels-slim.medium-9,
.theyard-panels-slim.medium-9 {
  width: 100%;
  padding: 0;
}

.cache-elementThatDoesntExist {
  display: none;
}

/*NEW AS OF MARCH 2025*/
/*schedule edits*/
.session-list .gt-flex-col .session-title {
  font-family: Kanit, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
}

.session-list .gt-session-icon {
  vertical-align: middle;
}

.gtlist .gtSessionInfo.gtHasNoImageArea {
  margin: 0;
}

#gtSearch {
  margin-bottom: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#gtSearch #gtSearchButton {
  font-family: Kanit, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
}

.gtFilterHeading,
.gtFilterHeading:after {
  color: white;
}

.gtFacetHeading:after {
  color: #007DBB;
}

#alpha-sort {
  padding-left: 24px;
  padding-right: 24px;
}

.session-list .session-categories {
  display: none;
}

.all-panels-slim .session-entry-slim.cat-Tournament a {
  background-color: rgba(0, 125, 187, 0.25);
}
.all-panels-slim .session-entry-slim.cat-Tournament a:hover {
  background-color: #007dbb;
}

.all-panels-slim .session-entry-slim.loc-Main-Theatre a {
  background-color: #007DBB;
}
.all-panels-slim .session-entry-slim.loc-Main-Theatre a:hover {
  background-color: #005b88;
}

/*schedule page edits*/
#gtEvent h3.gtDate,
#gtEvent h3.gtTime,
#gtEvent h3.gtLocation {
  margin-top: 0;
  position: relative;
}
#gtEvent h3.gtDate:before,
#gtEvent h3.gtTime:before,
#gtEvent h3.gtLocation:before {
  font-family: "icomoon";
  margin-right: 5px;
  font-size: 20px;
}
#gtEvent .gtDate:before {
  content: "\f678";
}
#gtEvent .gtTime:before {
  content: "\f150";
}
#gtEvent .gtLocation:before {
  content: "\f34e";
}
#gtEvent #gtEventGuests li {
  padding-right: 24px;
}
#gtEvent #gtEventGuests li p.gtGuestBKF {
  position: relative;
  line-height: 1;
  color: #2d2d2d;
}
#gtEvent #gtEventGuests li p.gtGuestBKF:before {
  font-family: "icomoon";
  margin-right: 5px;
  content: "\f4ce";
}

/*playable games*/
.playablegames #gtSearch .gtSearchInput {
  padding-left: 0;
}
.playablegames #alpha-sort {
  padding-left: 0;
}
.playablegames .specials-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*exhibitor showroom*/
#gtExhibitor #gtShowroomTop #showroomSocial ul li {
  float: none;
}
/*fix accidental not full width*/
.autographing-panels,
.communitymeetups-panels,
.concerts-panels,
.consolefreeplay-panels,
.cosplay-panels,
.handheld-panels,
.industry-panels,
.omegathon-panels,
.paxarena-panels,
.paxtogether-panels,
.pc-panels,
.tabletop-panels,
.tabletoprpg-panels,
.tabletoptourney-panels,
.tournament-panels,
.workshop-panels {
  width: 100% !important;
  padding-left: 0 !important;
}