@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-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 heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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 {
  -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) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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;
}

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

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@charset "UTF-8";
/* Base - site-specific settings */
/* Brand Colors */
/*
Bootstrap config
 */
/*Global Options*/
/*Grid*/
/*Breakpoints*/
/*Container Widths*/
/*Colors*/
/*Fonts*/
/*Forms*/
/*Placeholders*/
/*Buttons*/
/*Form Small Text*/
/*Breadcrumbs*/
/*Pagination*/
/*Blockquotes*/
/*Navs*/
/*Navbar*/
/*Pills*/
/*Dropdown*/
/* Input Placeholder Color */
/* List Reset */
/* Quick Transition with defaults */
/* 2D Transform - Translate */
/* RGBA Colors */
/* Columns */
/* Convert px to rem - example: font-size: rem(30); */
@font-face {
  font-family: 'Gotham Book';
  src: url("../fonts/gotham/Gotham-Book.eot");
  src: url("../fonts/gotham/Gotham-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham/Gotham-Book.woff2") format("woff2"), url("../fonts/gotham/Gotham-Book.woff") format("woff"), url("../fonts/gotham/Gotham-Book.ttf") format("truetype"), url("../fonts/gotham/Gotham-Book.svg#Gotham-Book") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Medium';
  src: url("../fonts/gotham/Gotham-Medium.eot");
  src: url("../fonts/gotham/Gotham-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham/Gotham-Medium.woff2") format("woff2"), url("../fonts/gotham/Gotham-Medium.woff") format("woff"), url("../fonts/gotham/Gotham-Medium.ttf") format("truetype"), url("../fonts/gotham/Gotham-Medium.svg#Gotham-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Bold';
  src: url("../fonts/gotham/Gotham-Bold.eot");
  src: url("../fonts/gotham/Gotham-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham/Gotham-Bold.woff2") format("woff2"), url("../fonts/gotham/Gotham-Bold.woff") format("woff"), url("../fonts/gotham/Gotham-Bold.ttf") format("truetype"), url("../fonts/gotham/Gotham-Bold.svg#Gotham-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Black';
  src: url("../fonts/gotham/Gotham-Black.eot");
  src: url("../fonts/gotham/Gotham-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/gotham/Gotham-Black.woff2") format("woff2"), url("../fonts/gotham/Gotham-Black.woff") format("woff"), url("../fonts/gotham/Gotham-Black.ttf") format("truetype"), url("../fonts/gotham/Gotham-Black.svg#Gotham-Black") format("svg");
  font-weight: normal;
  font-style: normal;
}

.font-book {
  font-family: 'Gotham Book', sans-serif;
}

.font-book-italic {
  font-family: 'Gotham Book Italic', sans-serif;
}

.font-black {
  font-family: 'Gotham Black', sans-serif;
}

.font-black-italic {
  font-family: 'Gotham Black Italic', sans-serif;
}

.font-bold {
  font-family: 'Gotham Bold', sans-serif;
}

.font-bold-italic {
  font-family: 'Gotham Bold Italic', sans-serif;
}

.font-medium {
  font-family: 'Gotham Medium', sans-serif;
}

.font-medium-italic {
  font-family: 'Gotham Medium Italic', sans-serif;
}

/* System */
/*Symbolset*/
@font-face {
  font-family: "SSStandard";
  src: url("../fonts/ss-standard.eot");
  src: url("../fonts/ss-standard.eot?#iefix") format("embedded-opentype"), url("../fonts/ss-standard.woff") format("woff"), url("../fonts/ss-standard.ttf") format("truetype"), url("../fonts/ss-standard.svg#SSStandard") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SSSocialCircle";
  src: url("../fonts/ss-social-circle.eot");
  src: url("../fonts/ss-social-circle.eot?#iefix") format("embedded-opentype"), url("../fonts/ss-social-circle.woff") format("woff"), url("../fonts/ss-social-circle.ttf") format("truetype"), url("../fonts/ss-social-circle.svg#SSSocialCircle") format("svg");
  font-weight: normal;
  font-style: normal;
}

.ss-icon, .ss-icon.ss-standard,
[class^="ss-"]:before, [class*=" ss-"]:before,
[class^="ss-"].ss-standard:before, [class*=" ss-"].ss-standard:before,
[class^="ss-"].right:after, [class*=" ss-"].right:after,
[class^="ss-"].ss-standard.right:after, [class*=" ss-"].ss-standard.right:after {
  font-family: "SSStandard";
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-rendering: optimizeLegibility;
  white-space: nowrap;
  -webkit-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

[class^="ss-"].right:before, [class*=" ss-"].ss-standard.right:before {
  display: none;
  content: '';
}

.ss-cursor:before, .ss-cursor.right:after {
  content: '\E001';
}

.ss-crosshair:before, .ss-crosshair.right:after {
  content: '\2316';
}

.ss-search:before, .ss-search.right:after {
  content: '\1F50E';
}

.ss-zoomin:before, .ss-zoomin.right:after {
  content: '\E002';
}

.ss-zoomout:before, .ss-zoomout.right:after {
  content: '\E003';
}

.ss-view:before, .ss-view.right:after {
  content: '\1F440';
}

.ss-attach:before, .ss-attach.right:after {
  content: '\1F4CE';
}

.ss-link:before, .ss-link.right:after {
  content: '\1F517';
}

.ss-move:before, .ss-move.right:after {
  content: '\E070';
}

.ss-write:before, .ss-write.right:after {
  content: '\270E';
}

.ss-writingdisabled:before, .ss-writingdisabled.right:after {
  content: '\E071';
}

.ss-erase:before, .ss-erase.right:after {
  content: '\2710';
}

.ss-compose:before, .ss-compose.right:after {
  content: '\1F4DD';
}

.ss-lock:before, .ss-lock.right:after {
  content: '\1F512';
}

.ss-unlock:before, .ss-unlock.right:after {
  content: '\1F513';
}

.ss-key:before, .ss-key.right:after {
  content: '\1F511';
}

.ss-backspace:before, .ss-backspace.right:after {
  content: '\232B';
}

.ss-ban:before, .ss-ban.right:after {
  content: '\1F6AB';
}

.ss-trash:before, .ss-trash.right:after {
  content: '\E0D0';
}

.ss-target:before, .ss-target.right:after {
  content: '\25CE';
}

.ss-tag:before, .ss-tag.right:after {
  content: '\E100';
}

.ss-bookmark:before, .ss-bookmark.right:after {
  content: '\1F516';
}

.ss-flag:before, .ss-flag.right:after {
  content: '\2691';
}

.ss-like:before, .ss-like.right:after {
  content: '\1F44D';
}

.ss-dislike:before, .ss-dislike.right:after {
  content: '\1F44E';
}

.ss-heart:before, .ss-heart.right:after {
  content: '\2665';
}

.ss-halfheart:before, .ss-halfheart.right:after {
  content: '\E1A0';
}

.ss-star:before, .ss-star.right:after {
  content: '\22C6';
}

.ss-halfstar:before, .ss-halfstar.right:after {
  content: '\E1A1';
}

.ss-sample:before, .ss-sample.right:after {
  content: '\E200';
}

.ss-crop:before, .ss-crop.right:after {
  content: '\E201';
}

.ss-layers:before, .ss-layers.right:after {
  content: '\E202';
}

.ss-phone:before, .ss-phone.right:after {
  content: '\1F4DE';
}

.ss-phonedisabled:before, .ss-phonedisabled.right:after {
  content: '\E300';
}

.ss-rss:before, .ss-rss.right:after {
  content: '\E310';
}

.ss-facetime:before, .ss-facetime.right:after {
  content: '\E320';
}

.ss-reply:before, .ss-reply.right:after {
  content: '\21A9';
}

.ss-send:before, .ss-send.right:after {
  content: '\E350';
}

.ss-mail:before, .ss-mail.right:after {
  content: '\2709';
}

.ss-inbox:before, .ss-inbox.right:after {
  content: '\1F4E5';
}

.ss-chat:before, .ss-chat.right:after {
  content: '\1F4AC';
}

.ss-user:before, .ss-user.right:after {
  content: '\1F464';
}

.ss-femaleuser:before, .ss-femaleuser.right:after {
  content: '\1F467';
}

.ss-users:before, .ss-users.right:after {
  content: '\1F465';
}

.ss-cart:before, .ss-cart.right:after {
  content: '\E500';
}

.ss-creditcard:before, .ss-creditcard.right:after {
  content: '\1F4B3';
}

.ss-dollarsign:before, .ss-dollarsign.right:after {
  content: '\1F4B2';
}

.ss-barchart:before, .ss-barchart.right:after {
  content: '\1F4CA';
}

.ss-piechart:before, .ss-piechart.right:after {
  content: '\E570';
}

.ss-box:before, .ss-box.right:after {
  content: '\1F4E6';
}

.ss-home:before, .ss-home.right:after {
  content: '\2302';
}

.ss-globe:before, .ss-globe.right:after {
  content: '\1F30E';
}

.ss-navigate:before, .ss-navigate.right:after {
  content: '\E670';
}

.ss-compass:before, .ss-compass.right:after {
  content: '\E671';
}

.ss-signpost:before, .ss-signpost.right:after {
  content: '\E672';
}

.ss-map:before, .ss-map.right:after {
  content: '\E673';
}

.ss-location:before, .ss-location.right:after {
  content: '\E6D0';
}

.ss-pin:before, .ss-pin.right:after {
  content: '\1F4CD';
}

.ss-database:before, .ss-database.right:after {
  content: '\E7A0';
}

.ss-hdd:before, .ss-hdd.right:after {
  content: '\E7B0';
}

.ss-music:before, .ss-music.right:after {
  content: '\266B';
}

.ss-mic:before, .ss-mic.right:after {
  content: '\1F3A4';
}

.ss-volume:before, .ss-volume.right:after {
  content: '\1F508';
}

.ss-volumelow:before, .ss-volumelow.right:after {
  content: '\1F509';
}

.ss-volumehigh:before, .ss-volumehigh.right:after {
  content: '\1F50A';
}

.ss-airplay:before, .ss-airplay.right:after {
  content: '\E800';
}

.ss-camera:before, .ss-camera.right:after {
  content: '\1F4F7';
}

.ss-picture:before, .ss-picture.right:after {
  content: '\1F304';
}

.ss-video:before, .ss-video.right:after {
  content: '\1F4F9';
}

.ss-play:before, .ss-play.right:after {
  content: '\25B6';
}

.ss-pause:before, .ss-pause.right:after {
  content: '\E8A0';
}

.ss-stop:before, .ss-stop.right:after {
  content: '\25A0';
}

.ss-record:before, .ss-record.right:after {
  content: '\25CF';
}

.ss-rewind:before, .ss-rewind.right:after {
  content: '\23EA';
}

.ss-fastforward:before, .ss-fastforward.right:after {
  content: '\23E9';
}

.ss-skipback:before, .ss-skipback.right:after {
  content: '\23EE';
}

.ss-skipforward:before, .ss-skipforward.right:after {
  content: '\23ED';
}

.ss-eject:before, .ss-eject.right:after {
  content: '\23CF';
}

.ss-repeat:before, .ss-repeat.right:after {
  content: '\1F501';
}

.ss-replay:before, .ss-replay.right:after {
  content: '\21BA';
}

.ss-shuffle:before, .ss-shuffle.right:after {
  content: '\1F500';
}

.ss-book:before, .ss-book.right:after {
  content: '\1F4D5';
}

.ss-openbook:before, .ss-openbook.right:after {
  content: '\1F4D6';
}

.ss-notebook:before, .ss-notebook.right:after {
  content: '\1F4D3';
}

.ss-grid:before, .ss-grid.right:after {
  content: '\E9A0';
}

.ss-rows:before, .ss-rows.right:after {
  content: '\E9A1';
}

.ss-columns:before, .ss-columns.right:after {
  content: '\E9A2';
}

.ss-thumbnails:before, .ss-thumbnails.right:after {
  content: '\E9A3';
}

.ss-desktop:before, .ss-desktop.right:after {
  content: '\1F4BB';
}

.ss-laptop:before, .ss-laptop.right:after {
  content: '\EA00';
}

.ss-tablet:before, .ss-tablet.right:after {
  content: '\EA01';
}

.ss-cell:before, .ss-cell.right:after {
  content: '\1F4F1';
}

.ss-battery:before, .ss-battery.right:after {
  content: '\1F50B';
}

.ss-batteryhigh:before, .ss-batteryhigh.right:after {
  content: '\EA10';
}

.ss-batterymedium:before, .ss-batterymedium.right:after {
  content: '\EA11';
}

.ss-batterylow:before, .ss-batterylow.right:after {
  content: '\EA12';
}

.ss-batteryempty:before, .ss-batteryempty.right:after {
  content: '\EA13';
}

.ss-clouddownload:before, .ss-clouddownload.right:after {
  content: '\EB00';
}

.ss-download:before, .ss-download.right:after {
  content: '\EB01';
}

.ss-cloudupload:before, .ss-cloudupload.right:after {
  content: '\EB40';
}

.ss-upload:before, .ss-upload.right:after {
  content: '\EB41';
}

.ss-fork:before, .ss-fork.right:after {
  content: '\EB80';
}

.ss-merge:before, .ss-merge.right:after {
  content: '\EB81';
}

.ss-refresh:before, .ss-refresh.right:after {
  content: '\21BB';
}

.ss-sync:before, .ss-sync.right:after {
  content: '\EB82';
}

.ss-loading:before, .ss-loading.right:after {
  content: '\EB83';
}

.ss-wifi:before, .ss-wifi.right:after {
  content: '\EB84';
}

.ss-connection:before, .ss-connection.right:after {
  content: '\EB85';
}

.ss-file:before, .ss-file.right:after {
  content: '\1F4C4';
}

.ss-folder:before, .ss-folder.right:after {
  content: '\1F4C1';
}

.ss-quote:before, .ss-quote.right:after {
  content: '\201C';
}

.ss-text:before, .ss-text.right:after {
  content: '\ED00';
}

.ss-font:before, .ss-font.right:after {
  content: '\ED01';
}

.ss-print:before, .ss-print.right:after {
  content: '\2399';
}

.ss-fax:before, .ss-fax.right:after {
  content: '\1F4E0';
}

.ss-list:before, .ss-list.right:after {
  content: '\ED50';
}

.ss-layout:before, .ss-layout.right:after {
  content: '\EDA0';
}

.ss-action:before, .ss-action.right:after {
  content: '\EE00';
}

.ss-redirect:before, .ss-redirect.right:after {
  content: '\21AA';
}

.ss-expand:before, .ss-expand.right:after {
  content: '\2922';
}

.ss-contract:before, .ss-contract.right:after {
  content: '\EE01';
}

.ss-help:before, .ss-help.right:after {
  content: '\2753';
}

.ss-info:before, .ss-info.right:after {
  content: '\2139';
}

.ss-alert:before, .ss-alert.right:after {
  content: '\26A0';
}

.ss-caution:before, .ss-caution.right:after {
  content: '\26D4';
}

.ss-logout:before, .ss-logout.right:after {
  content: '\EE02';
}

.ss-plus:before, .ss-plus.right:after {
  content: '+';
}

.ss-hyphen:before, .ss-hyphen.right:after {
  content: '-';
}

.ss-check:before, .ss-check.right:after {
  content: '\2713';
}

.ss-delete:before, .ss-delete.right:after {
  content: '\2421';
}

.ss-settings:before, .ss-settings.right:after {
  content: '\2699';
}

.ss-dashboard:before, .ss-dashboard.right:after {
  content: '\F000';
}

.ss-notifications:before, .ss-notifications.right:after {
  content: '\1F514';
}

.ss-notificationsdisabled:before, .ss-notificationsdisabled.right:after {
  content: '\1F515';
}

.ss-clock:before, .ss-clock.right:after {
  content: '\23F2';
}

.ss-stopwatch:before, .ss-stopwatch.right:after {
  content: '\23F1';
}

.ss-calendar:before, .ss-calendar.right:after {
  content: '\1F4C5';
}

.ss-calendaradd:before, .ss-calendaradd.right:after {
  content: '\F070';
}

.ss-calendarremove:before, .ss-calendarremove.right:after {
  content: '\F071';
}

.ss-calendarcheck:before, .ss-calendarcheck.right:after {
  content: '\F072';
}

.ss-calendardelete:before, .ss-calendardelete.right:after {
  content: '\F073';
}

.ss-briefcase:before, .ss-briefcase.right:after {
  content: '\1F4BC';
}

.ss-cloud:before, .ss-cloud.right:after {
  content: '\2601';
}

.ss-droplet:before, .ss-droplet.right:after {
  content: '\1F4A7';
}

.ss-up:before, .ss-up.right:after {
  content: '\2B06';
}

.ss-upright:before, .ss-upright.right:after {
  content: '\2B08';
}

.ss-right:before, .ss-right.right:after {
  content: '\27A1';
}

.ss-downright:before, .ss-downright.right:after {
  content: '\2B0A';
}

.ss-down:before, .ss-down.right:after {
  content: '\2B07';
}

.ss-downleft:before, .ss-downleft.right:after {
  content: '\2B0B';
}

.ss-left:before, .ss-left.right:after {
  content: '\2B05';
}

.ss-upleft:before, .ss-upleft.right:after {
  content: '\2B09';
}

.ss-navigateup:before, .ss-navigateup.right:after {
  content: '\F500';
}

.ss-navigateright:before, .ss-navigateright.right:after {
  content: '\25BB';
}

.ss-navigatedown:before, .ss-navigatedown.right:after {
  content: '\F501';
}

.ss-navigateleft:before, .ss-navigateleft.right:after {
  content: '\25C5';
}

.ss-directup:before, .ss-directup.right:after {
  content: '\25B4';
}

.ss-directright:before, .ss-directright.right:after {
  content: '\25B9';
}

.ss-dropdown:before, .ss-dropdown.right:after {
  content: '\25BE';
}

.ss-directleft:before, .ss-directleft.right:after {
  content: '\25C3';
}

.ss-retweet:before, .ss-retweet.right:after {
  content: '\F600';
}

/*Symbolset - Social*/
.social .ss-icon, .social .ss-icon.ss-social-circle,
.social [class^="ss-"]:before, .social [class*=" ss-"]:before,
.social [class^="ss-"].ss-social-circle:before, .social [class*=" ss-"].ss-social-circle:before,
.social [class^="ss-"].right:after, .social [class*=" ss-"].right:after,
.social [class^="ss-"].ss-social-circle.right:after, .social [class*=" ss-"].ss-social-circle.right:after {
  font-family: "SSSocialCircle";
}

.ss-facebook:before, .ss-facebook.right:after {
  content: '\F610';
}

.ss-twitter:before, .ss-twitter.right:after {
  content: '\F611';
}

.ss-googleplus:before, .ss-googleplus.right:after {
  content: '\F613';
}

.ss-appdotnet:before, .ss-appdotnet.right:after {
  content: '\F614';
}

.ss-ello:before, .ss-ello.right:after {
  content: '\F618';
}

.ss-aboutme:before, .ss-aboutme.right:after {
  content: '\F619';
}

.ss-vk:before, .ss-vk.right:after {
  content: '\F61A';
}

.ss-weibo:before, .ss-weibo.right:after {
  content: '\F61B';
}

.ss-linkedin:before, .ss-linkedin.right:after {
  content: '\F612';
}

.ss-zerply:before, .ss-zerply.right:after {
  content: '\F615';
}

.ss-xing:before, .ss-xing.right:after {
  content: '\F61C';
}

.ss-reddit:before, .ss-reddit.right:after {
  content: '\F616';
}

.ss-steam:before, .ss-steam.right:after {
  content: '\F617';
}

.ss-tumblr:before, .ss-tumblr.right:after {
  content: '\F620';
}

.ss-wordpress:before, .ss-wordpress.right:after {
  content: '\F621';
}

.ss-blogger:before, .ss-blogger.right:after {
  content: '\F622';
}

.ss-quora:before, .ss-quora.right:after {
  content: '\F624';
}

.ss-youtube:before, .ss-youtube.right:after {
  content: '\F630';
}

.ss-vimeo:before, .ss-vimeo.right:after {
  content: '\F631';
}

.ss-vine:before, .ss-vine.right:after {
  content: '\F633';
}

.ss-letterboxd:before, .ss-letterboxd.right:after {
  content: '\F632';
}

.ss-flickr:before, .ss-flickr.right:after {
  content: '\F640';
}

.ss-instagram:before, .ss-instagram.right:after {
  content: '\F641';
}

.ss-vscogrid:before, .ss-vscogrid.right:after {
  content: '\F643';
}

.ss-fivehundredpx:before, .ss-fivehundredpx.right:after {
  content: '\F642';
}

.ss-feedly:before, .ss-feedly.right:after {
  content: '\F656';
}

.ss-pinterest:before, .ss-pinterest.right:after {
  content: '\F650';
}

.ss-dropbox:before, .ss-dropbox.right:after {
  content: '\F653';
}

.ss-pinboard:before, .ss-pinboard.right:after {
  content: '\F654';
}

.ss-delicious:before, .ss-delicious.right:after {
  content: '\F655';
}

.ss-dribbble:before, .ss-dribbble.right:after {
  content: '\F660';
}

.ss-behance:before, .ss-behance.right:after {
  content: '\F661';
}

.ss-github:before, .ss-github.right:after {
  content: '\F670';
}

.ss-bitbucket:before, .ss-bitbucket.right:after {
  content: '\F674';
}

.ss-stackoverflow:before, .ss-stackoverflow.right:after {
  content: '\F672';
}

.ss-stackexchange:before, .ss-stackexchange.right:after {
  content: '\F673';
}

.ss-codepen:before, .ss-codepen.right:after {
  content: '\F675';
}

.ss-jsfiddle:before, .ss-jsfiddle.right:after {
  content: '\F676';
}

.ss-paypal:before, .ss-paypal.right:after {
  content: '\F680';
}

.ss-shopify:before, .ss-shopify.right:after {
  content: '\F683';
}

.ss-kickstarter:before, .ss-kickstarter.right:after {
  content: '\F681';
}

.ss-etsy:before, .ss-etsy.right:after {
  content: '\F682';
}

.ss-foursquare:before, .ss-foursquare.right:after {
  content: '\F690';
}

.ss-swarm:before, .ss-swarm.right:after {
  content: '\F692';
}

.ss-yelp:before, .ss-yelp.right:after {
  content: '\F691';
}

.ss-skype:before, .ss-skype.right:after {
  content: '\F6A0';
}

.ss-whatsapp:before, .ss-whatsapp.right:after {
  content: '\F6A2';
}

.ss-rdio:before, .ss-rdio.right:after {
  content: '\F6B0';
}

.ss-spotify:before, .ss-spotify.right:after {
  content: '\F6B1';
}

.ss-lastfm:before, .ss-lastfm.right:after {
  content: '\F6B2';
}

.ss-soundcloud:before, .ss-soundcloud.right:after {
  content: '\F6B3';
}

.ss-appstore:before, .ss-appstore.right:after {
  content: '\F6FA';
}

.ss-googleplay:before, .ss-googleplay.right:after {
  content: '\F6FB';
}

.ss-appleinc:before, .ss-appleinc.right:after {
  content: '\F8FF';
}

.ss-microsoft:before, .ss-microsoft.right:after {
  content: '\F6F1';
}

.ss-windows:before, .ss-windows.right:after {
  content: '\F6F2';
}

.ss-android:before, .ss-android.right:after {
  content: '\F6F3';
}

.ss-blackberry:before, .ss-blackberry.right:after {
  content: '\F6F4';
}

.ss-link:before, .ss-link.right:after {
  content: '\1F517';
}

.ss-phone:before, .ss-phone.right:after {
  content: '\1F4DE';
}

.ss-mail:before, .ss-mail.right:after {
  content: '\2709';
}

.ss-like:before, .ss-like.right:after {
  content: '\1F44D';
}

.ss-rss:before, .ss-rss.right:after {
  content: '\E310';
}

.ss-share:before, .ss-share.right:after {
  content: '\F601';
}

/* Vendor - unedited vendor base styles */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-ms: 375px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1650px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014   \A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 22px;
  padding-left: 22px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1650px) {
  .container {
    max-width: 1500px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 22px;
  padding-left: 22px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -22px;
  margin-left: -22px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-ms-1, .col-ms-2, .col-ms-3, .col-ms-4, .col-ms-5, .col-ms-6, .col-ms-7, .col-ms-8, .col-ms-9, .col-ms-10, .col-ms-11, .col-ms-12, .col-ms,
.col-ms-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 22px;
  padding-left: 22px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333333%;
          flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66666667%;
          flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66666667%;
          flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333333%;
          flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66666667%;
          flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333333%;
          flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66666667%;
          flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 375px) {
  .col-ms {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-ms-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-ms-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-ms-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-ms-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-ms-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-ms-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-ms-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-ms-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-ms-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-ms-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-ms-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-ms-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-ms-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-ms-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-ms-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-ms-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-ms-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-ms-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-ms-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-ms-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-ms-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-ms-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-ms-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-ms-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-ms-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-ms-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-ms-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-ms-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-ms-0 {
    margin-left: 0;
  }
  .offset-ms-1 {
    margin-left: 8.33333333%;
  }
  .offset-ms-2 {
    margin-left: 16.66666667%;
  }
  .offset-ms-3 {
    margin-left: 25%;
  }
  .offset-ms-4 {
    margin-left: 33.33333333%;
  }
  .offset-ms-5 {
    margin-left: 41.66666667%;
  }
  .offset-ms-6 {
    margin-left: 50%;
  }
  .offset-ms-7 {
    margin-left: 58.33333333%;
  }
  .offset-ms-8 {
    margin-left: 66.66666667%;
  }
  .offset-ms-9 {
    margin-left: 75%;
  }
  .offset-ms-10 {
    margin-left: 83.33333333%;
  }
  .offset-ms-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1650px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 374.98px) {
  .table-responsive-ms {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-ms > .table-bordered {
    border: 0;
  }
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1649.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fcf9f7;
  background-clip: padding-box;
  border: 0 solid #ced4da;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fcf9f7;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 0);
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fcf9f7;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.75rem + 0);
  padding-bottom: calc(0.75rem + 0);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 0);
  padding-bottom: calc(0.5rem + 0);
  font-size: 2.66666667rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 0);
  padding-bottom: calc(0.25rem + 0);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 0 0;
}

.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn, .wp-content .has-button .input-group-sm > .input-group-prepend > a.form-control-plaintext, .gform_wrapper .gform_footer .input-group-sm > .input-group-prepend > input.form-control-plaintext.button, .gform_wrapper .gform_footer .input-group-sm > .input-group-prepend > input.form-control-plaintext[type=submit], .gform_wrapper .gform_page_footer .input-group-sm > .input-group-prepend > input.form-control-plaintext.button, .gform_wrapper .gform_page_footer .input-group-sm > .input-group-prepend > input.form-control-plaintext[type=submit], .tribe-events-single .event-date-display .input-group-sm > .input-group-prepend > .form-control-plaintext.event-date-button, .tribe-events-single .input-group-sm > .input-group-prepend > .form-control-plaintext.tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-sm > .input-group-prepend > input.form-control-plaintext,
.input-group-sm > .input-group-append > .form-control-plaintext.btn, .wp-content .has-button .input-group-sm > .input-group-append > a.form-control-plaintext, .gform_wrapper .gform_footer .input-group-sm > .input-group-append > input.form-control-plaintext.button, .gform_wrapper .gform_footer .input-group-sm > .input-group-append > input.form-control-plaintext[type=submit], .gform_wrapper .gform_page_footer .input-group-sm > .input-group-append > input.form-control-plaintext.button, .gform_wrapper .gform_page_footer .input-group-sm > .input-group-append > input.form-control-plaintext[type=submit], .tribe-events-single .event-date-display .input-group-sm > .input-group-append > .form-control-plaintext.event-date-button, .tribe-events-single .input-group-sm > .input-group-append > .form-control-plaintext.tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-sm > .input-group-append > input.form-control-plaintext, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn, .wp-content .has-button .input-group-lg > .input-group-prepend > a.form-control-plaintext, .gform_wrapper .gform_footer .input-group-lg > .input-group-prepend > input.form-control-plaintext.button, .gform_wrapper .gform_footer .input-group-lg > .input-group-prepend > input.form-control-plaintext[type=submit], .gform_wrapper .gform_page_footer .input-group-lg > .input-group-prepend > input.form-control-plaintext.button, .gform_wrapper .gform_page_footer .input-group-lg > .input-group-prepend > input.form-control-plaintext[type=submit], .tribe-events-single .event-date-display .input-group-lg > .input-group-prepend > .form-control-plaintext.event-date-button, .tribe-events-single .input-group-lg > .input-group-prepend > .form-control-plaintext.tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-lg > .input-group-prepend > input.form-control-plaintext,
.input-group-lg > .input-group-append > .form-control-plaintext.btn, .wp-content .has-button .input-group-lg > .input-group-append > a.form-control-plaintext, .gform_wrapper .gform_footer .input-group-lg > .input-group-append > input.form-control-plaintext.button, .gform_wrapper .gform_footer .input-group-lg > .input-group-append > input.form-control-plaintext[type=submit], .gform_wrapper .gform_page_footer .input-group-lg > .input-group-append > input.form-control-plaintext.button, .gform_wrapper .gform_page_footer .input-group-lg > .input-group-append > input.form-control-plaintext[type=submit], .tribe-events-single .event-date-display .input-group-lg > .input-group-append > .form-control-plaintext.event-date-button, .tribe-events-single .input-group-lg > .input-group-append > .form-control-plaintext.tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-lg > .input-group-append > input.form-control-plaintext {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn, .wp-content .has-button .input-group-sm > .input-group-prepend > a, .gform_wrapper .gform_footer .input-group-sm > .input-group-prepend > input.button, .gform_wrapper .gform_footer .input-group-sm > .input-group-prepend > input[type=submit], .gform_wrapper .gform_page_footer .input-group-sm > .input-group-prepend > input.button, .gform_wrapper .gform_page_footer .input-group-sm > .input-group-prepend > input[type=submit], .tribe-events-single .event-date-display .input-group-sm > .input-group-prepend > .event-date-button, .tribe-events-single .input-group-sm > .input-group-prepend > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-sm > .input-group-prepend > input,
.input-group-sm > .input-group-append > .btn, .wp-content .has-button .input-group-sm > .input-group-append > a, .gform_wrapper .gform_footer .input-group-sm > .input-group-append > input.button, .gform_wrapper .gform_footer .input-group-sm > .input-group-append > input[type=submit], .gform_wrapper .gform_page_footer .input-group-sm > .input-group-append > input.button, .gform_wrapper .gform_page_footer .input-group-sm > .input-group-append > input[type=submit], .tribe-events-single .event-date-display .input-group-sm > .input-group-append > .event-date-button, .tribe-events-single .input-group-sm > .input-group-append > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-sm > .input-group-append > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), .tribe-events-single .event-date-display .input-group-sm > .input-group-prepend > select.event-date-button:not([size]):not([multiple]), .tribe-events-single .input-group-sm > .input-group-prepend > select.tribe-events-notices:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]), .tribe-events-single .event-date-display .input-group-sm > .input-group-append > select.event-date-button:not([size]):not([multiple]), .tribe-events-single .input-group-sm > .input-group-append > select.tribe-events-notices:not([size]):not([multiple]) {
  height: calc(1.8125rem + 0);
}

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn, .wp-content .has-button .input-group-lg > .input-group-prepend > a, .gform_wrapper .gform_footer .input-group-lg > .input-group-prepend > input.button, .gform_wrapper .gform_footer .input-group-lg > .input-group-prepend > input[type=submit], .gform_wrapper .gform_page_footer .input-group-lg > .input-group-prepend > input.button, .gform_wrapper .gform_page_footer .input-group-lg > .input-group-prepend > input[type=submit], .tribe-events-single .event-date-display .input-group-lg > .input-group-prepend > .event-date-button, .tribe-events-single .input-group-lg > .input-group-prepend > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-lg > .input-group-prepend > input,
.input-group-lg > .input-group-append > .btn, .wp-content .has-button .input-group-lg > .input-group-append > a, .gform_wrapper .gform_footer .input-group-lg > .input-group-append > input.button, .gform_wrapper .gform_footer .input-group-lg > .input-group-append > input[type=submit], .gform_wrapper .gform_page_footer .input-group-lg > .input-group-append > input.button, .gform_wrapper .gform_page_footer .input-group-lg > .input-group-append > input[type=submit], .tribe-events-single .event-date-display .input-group-lg > .input-group-append > .event-date-button, .tribe-events-single .input-group-lg > .input-group-append > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-lg > .input-group-append > input {
  padding: 0.5rem 1rem;
  font-size: 2.66666667rem;
  line-height: 1.5;
}

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), .tribe-events-single .event-date-display .input-group-lg > .input-group-prepend > select.event-date-button:not([size]):not([multiple]), .tribe-events-single .input-group-lg > .input-group-prepend > select.tribe-events-notices:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]), .tribe-events-single .event-date-display .input-group-lg > .input-group-append > select.event-date-button:not([size]):not([multiple]), .tribe-events-single .input-group-lg > .input-group-append > select.tribe-events-notices:not([size]):not([multiple]) {
  height: calc(5rem + 0);
}

.form-group {
  margin-bottom: rem(15);
}

.form-text {
  display: block;
  margin-top: 0;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:valid, .form-control.is-valid, .was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
.custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.1em rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.1em rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip, .was-validated
.custom-select:valid ~ .valid-feedback,
.was-validated
.custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.1em rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.1em rgba(40, 167, 69, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.1em rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.1em rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
.custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.1em rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.1em rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip, .was-validated
.custom-select:invalid ~ .invalid-feedback,
.was-validated
.custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.1em rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.1em rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.1em rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.1em rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 0 solid transparent;
  padding: 0.907rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover, .wp-content .has-button a:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input:hover[type=submit], .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input:hover[type=submit], .tribe-events-single .event-date-display .event-date-button:hover, .tribe-events-single .tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input:hover, .btn:focus, .wp-content .has-button a:focus, .gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input:focus[type=submit], .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input:focus[type=submit], .tribe-events-single .event-date-display .event-date-button:focus, .tribe-events-single .tribe-events-notices:focus, #tribe-bar-form .tribe-bar-submit input:focus {
  text-decoration: none;
}

.btn:focus, .wp-content .has-button a:focus, .gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input:focus[type=submit], .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input:focus[type=submit], .tribe-events-single .event-date-display .event-date-button:focus, .tribe-events-single .tribe-events-notices:focus, #tribe-bar-form .tribe-bar-submit input:focus, .btn.focus, .wp-content .has-button a.focus, .gform_wrapper .gform_footer input.focus.button, .gform_wrapper .gform_footer input.focus[type=submit], .gform_wrapper .gform_page_footer input.focus.button, .gform_wrapper .gform_page_footer input.focus[type=submit], .tribe-events-single .event-date-display .focus.event-date-button, .tribe-events-single .focus.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .wp-content .has-button a.disabled, .gform_wrapper .gform_footer input.disabled.button, .gform_wrapper .gform_footer input.disabled[type=submit], .gform_wrapper .gform_page_footer input.disabled.button, .gform_wrapper .gform_page_footer input.disabled[type=submit], .tribe-events-single .event-date-display .disabled.event-date-button, .tribe-events-single .disabled.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.disabled, .btn:disabled, .wp-content .has-button a:disabled, .gform_wrapper .gform_footer input.button:disabled, .gform_wrapper .gform_footer input:disabled[type=submit], .gform_wrapper .gform_page_footer input.button:disabled, .gform_wrapper .gform_page_footer input:disabled[type=submit], .tribe-events-single .event-date-display .event-date-button:disabled, .tribe-events-single .tribe-events-notices:disabled, #tribe-bar-form .tribe-bar-submit input:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled), .wp-content .has-button a:not(:disabled):not(.disabled), .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled), .gform_wrapper .gform_footer input:not(:disabled):not(.disabled)[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled), .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled)[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled), .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled), #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active, .wp-content .has-button a:not(:disabled):not(.disabled):active, .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled):active, .gform_wrapper .gform_footer input:not(:disabled):not(.disabled):active[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled):active, .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled):active[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled):active, .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled):active, #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, .wp-content .has-button a:not(:disabled):not(.disabled).active, .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled).active, .gform_wrapper .gform_footer input:not(:disabled):not(.disabled).active[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled).active, .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled).active[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled).active, .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled).active, #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled).active {
  background-image: none;
}

a.btn.disabled, .wp-content .has-button a.disabled, .tribe-events-single .event-date-display a.disabled.event-date-button, .tribe-events-single a.disabled.tribe-events-notices,
fieldset:disabled a.btn,
fieldset:disabled .wp-content .has-button a,
.wp-content .has-button fieldset:disabled a,
fieldset:disabled .tribe-events-single .event-date-display a.event-date-button,
.tribe-events-single .event-date-display fieldset:disabled a.event-date-button,
fieldset:disabled .tribe-events-single a.tribe-events-notices,
.tribe-events-single fieldset:disabled a.tribe-events-notices {
  pointer-events: none;
}

.btn-primary, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover, .wp-content .has-button a:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input:hover[type=submit], .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input:hover[type=submit], .tribe-events-single .event-date-display .event-date-button:hover, .tribe-events-single .tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .wp-content .has-button a:focus, .gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input:focus[type=submit], .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input:focus[type=submit], .tribe-events-single .event-date-display .event-date-button:focus, .tribe-events-single .tribe-events-notices:focus, #tribe-bar-form .tribe-bar-submit input:focus, .btn-primary.focus, .wp-content .has-button a.focus, .gform_wrapper .gform_footer input.focus.button, .gform_wrapper .gform_footer input.focus[type=submit], .gform_wrapper .gform_page_footer input.focus.button, .gform_wrapper .gform_page_footer input.focus[type=submit], .tribe-events-single .event-date-display .focus.event-date-button, .tribe-events-single .focus.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .wp-content .has-button a.disabled, .gform_wrapper .gform_footer input.disabled.button, .gform_wrapper .gform_footer input.disabled[type=submit], .gform_wrapper .gform_page_footer input.disabled.button, .gform_wrapper .gform_page_footer input.disabled[type=submit], .tribe-events-single .event-date-display .disabled.event-date-button, .tribe-events-single .disabled.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.disabled, .btn-primary:disabled, .wp-content .has-button a:disabled, .gform_wrapper .gform_footer input.button:disabled, .gform_wrapper .gform_footer input:disabled[type=submit], .gform_wrapper .gform_page_footer input.button:disabled, .gform_wrapper .gform_page_footer input:disabled[type=submit], .tribe-events-single .event-date-display .event-date-button:disabled, .tribe-events-single .tribe-events-notices:disabled, #tribe-bar-form .tribe-bar-submit input:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .wp-content .has-button a:not(:disabled):not(.disabled):active, .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled):active, .gform_wrapper .gform_footer input:not(:disabled):not(.disabled):active[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled):active, .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled):active[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled):active, .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled):active, #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .wp-content .has-button a:not(:disabled):not(.disabled).active, .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled).active, .gform_wrapper .gform_footer input:not(:disabled):not(.disabled).active[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled).active, .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled).active[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled).active, .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled).active, #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.wp-content .has-button .show > a.dropdown-toggle,
.gform_wrapper .gform_footer .show > input.dropdown-toggle.button,
.gform_wrapper .gform_footer .show > input.dropdown-toggle[type=submit],
.gform_wrapper .gform_page_footer .show > input.dropdown-toggle.button,
.gform_wrapper .gform_page_footer .show > input.dropdown-toggle[type=submit],
.tribe-events-single .event-date-display .show > .dropdown-toggle.event-date-button,
.tribe-events-single .show > .dropdown-toggle.tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .show > input.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .wp-content .has-button a:not(:disabled):not(.disabled):active:focus, .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled):active:focus, .gform_wrapper .gform_footer input:not(:disabled):not(.disabled):active:focus[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled):active:focus, .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled):active:focus[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled):active:focus, .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled):active:focus, #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .wp-content .has-button a:not(:disabled):not(.disabled).active:focus, .gform_wrapper .gform_footer input.button:not(:disabled):not(.disabled).active:focus, .gform_wrapper .gform_footer input:not(:disabled):not(.disabled).active:focus[type=submit], .gform_wrapper .gform_page_footer input.button:not(:disabled):not(.disabled).active:focus, .gform_wrapper .gform_page_footer input:not(:disabled):not(.disabled).active:focus[type=submit], .tribe-events-single .event-date-display .event-date-button:not(:disabled):not(.disabled).active:focus, .tribe-events-single .tribe-events-notices:not(:disabled):not(.disabled).active:focus, #tribe-bar-form .tribe-bar-submit input:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus,
.wp-content .has-button .show > a.dropdown-toggle:focus,
.gform_wrapper .gform_footer .show > input.dropdown-toggle.button:focus,
.gform_wrapper .gform_footer .show > input.dropdown-toggle:focus[type=submit],
.gform_wrapper .gform_page_footer .show > input.dropdown-toggle.button:focus,
.gform_wrapper .gform_page_footer .show > input.dropdown-toggle:focus[type=submit],
.tribe-events-single .event-date-display .show > .dropdown-toggle.event-date-button:focus,
.tribe-events-single .show > .dropdown-toggle.tribe-events-notices:focus,
#tribe-bar-form .tribe-bar-submit .show > input.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .wp-content .has-button .btn-group-lg > a, .gform_wrapper .gform_footer .btn-group-lg > input.button, .gform_wrapper .gform_footer .btn-group-lg > input[type=submit], .gform_wrapper .gform_page_footer .btn-group-lg > input.button, .gform_wrapper .gform_page_footer .btn-group-lg > input[type=submit], .tribe-events-single .event-date-display .btn-group-lg > .event-date-button, .tribe-events-single .btn-group-lg > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group-lg > input {
  padding: 0.5rem 1rem;
  font-size: 2.66666667rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm, .btn-group-sm > .btn, .wp-content .has-button .btn-group-sm > a, .gform_wrapper .gform_footer .btn-group-sm > input.button, .gform_wrapper .gform_footer .btn-group-sm > input[type=submit], .gform_wrapper .gform_page_footer .btn-group-sm > input.button, .gform_wrapper .gform_page_footer .btn-group-sm > input[type=submit], .tribe-events-single .event-date-display .btn-group-sm > .event-date-button, .tribe-events-single .btn-group-sm > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group-sm > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: transparent;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn, .wp-content .has-button .btn-group > a, .gform_wrapper .gform_footer .btn-group > input.button, .gform_wrapper .gform_footer .btn-group > input[type=submit], .gform_wrapper .gform_page_footer .btn-group > input.button, .gform_wrapper .gform_page_footer .btn-group > input[type=submit], .tribe-events-single .event-date-display .btn-group > .event-date-button, .tribe-events-single .btn-group > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group > input,
.btn-group-vertical > .btn,
.wp-content .has-button .btn-group-vertical > a,
.gform_wrapper .gform_footer .btn-group-vertical > input.button,
.gform_wrapper .gform_footer .btn-group-vertical > input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical > input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical > .event-date-button,
.tribe-events-single .btn-group-vertical > .tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > input {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.btn-group > .btn:hover, .wp-content .has-button .btn-group > a:hover, .gform_wrapper .gform_footer .btn-group > input.button:hover, .gform_wrapper .gform_footer .btn-group > input:hover[type=submit], .gform_wrapper .gform_page_footer .btn-group > input.button:hover, .gform_wrapper .gform_page_footer .btn-group > input:hover[type=submit], .tribe-events-single .event-date-display .btn-group > .event-date-button:hover, .tribe-events-single .btn-group > .tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit .btn-group > input:hover,
.btn-group-vertical > .btn:hover,
.wp-content .has-button .btn-group-vertical > a:hover,
.gform_wrapper .gform_footer .btn-group-vertical > input.button:hover,
.gform_wrapper .gform_footer .btn-group-vertical > input:hover[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical > input.button:hover,
.gform_wrapper .gform_page_footer .btn-group-vertical > input:hover[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical > .event-date-button:hover,
.tribe-events-single .btn-group-vertical > .tribe-events-notices:hover,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > input:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .wp-content .has-button .btn-group > a:focus, .gform_wrapper .gform_footer .btn-group > input.button:focus, .gform_wrapper .gform_footer .btn-group > input:focus[type=submit], .gform_wrapper .gform_page_footer .btn-group > input.button:focus, .gform_wrapper .gform_page_footer .btn-group > input:focus[type=submit], .tribe-events-single .event-date-display .btn-group > .event-date-button:focus, .tribe-events-single .btn-group > .tribe-events-notices:focus, #tribe-bar-form .tribe-bar-submit .btn-group > input:focus, .btn-group > .btn:active, .wp-content .has-button .btn-group > a:active, .gform_wrapper .gform_footer .btn-group > input.button:active, .gform_wrapper .gform_footer .btn-group > input:active[type=submit], .gform_wrapper .gform_page_footer .btn-group > input.button:active, .gform_wrapper .gform_page_footer .btn-group > input:active[type=submit], .tribe-events-single .event-date-display .btn-group > .event-date-button:active, .tribe-events-single .btn-group > .tribe-events-notices:active, #tribe-bar-form .tribe-bar-submit .btn-group > input:active, .btn-group > .btn.active, .wp-content .has-button .btn-group > a.active, .gform_wrapper .gform_footer .btn-group > input.active.button, .gform_wrapper .gform_footer .btn-group > input.active[type=submit], .gform_wrapper .gform_page_footer .btn-group > input.active.button, .gform_wrapper .gform_page_footer .btn-group > input.active[type=submit], .tribe-events-single .event-date-display .btn-group > .active.event-date-button, .tribe-events-single .btn-group > .active.tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group > input.active,
.btn-group-vertical > .btn:focus,
.wp-content .has-button .btn-group-vertical > a:focus,
.gform_wrapper .gform_footer .btn-group-vertical > input.button:focus,
.gform_wrapper .gform_footer .btn-group-vertical > input:focus[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical > input.button:focus,
.gform_wrapper .gform_page_footer .btn-group-vertical > input:focus[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical > .event-date-button:focus,
.tribe-events-single .btn-group-vertical > .tribe-events-notices:focus,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > input:focus,
.btn-group-vertical > .btn:active,
.wp-content .has-button .btn-group-vertical > a:active,
.gform_wrapper .gform_footer .btn-group-vertical > input.button:active,
.gform_wrapper .gform_footer .btn-group-vertical > input:active[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical > input.button:active,
.gform_wrapper .gform_page_footer .btn-group-vertical > input:active[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical > .event-date-button:active,
.tribe-events-single .btn-group-vertical > .tribe-events-notices:active,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > input:active,
.btn-group-vertical > .btn.active,
.wp-content .has-button .btn-group-vertical > a.active,
.gform_wrapper .gform_footer .btn-group-vertical > input.active.button,
.gform_wrapper .gform_footer .btn-group-vertical > input.active[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical > input.active.button,
.gform_wrapper .gform_page_footer .btn-group-vertical > input.active[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical > .active.event-date-button,
.tribe-events-single .btn-group-vertical > .active.tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > input.active {
  z-index: 1;
}

.btn-group .btn + .btn, .btn-group .wp-content .has-button a + .btn, .wp-content .has-button .btn-group a + .btn, .btn-group .gform_wrapper .gform_footer input.button + .btn, .gform_wrapper .gform_footer .btn-group input.button + .btn, .btn-group .gform_wrapper .gform_footer input[type=submit] + .btn, .gform_wrapper .gform_footer .btn-group input[type=submit] + .btn, .btn-group .gform_wrapper .gform_page_footer input.button + .btn, .gform_wrapper .gform_page_footer .btn-group input.button + .btn, .btn-group .gform_wrapper .gform_page_footer input[type=submit] + .btn, .gform_wrapper .gform_page_footer .btn-group input[type=submit] + .btn, .btn-group .tribe-events-single .event-date-display .event-date-button + .btn, .tribe-events-single .event-date-display .btn-group .event-date-button + .btn, .btn-group .tribe-events-single .tribe-events-notices + .btn, .tribe-events-single .btn-group .tribe-events-notices + .btn, .btn-group #tribe-bar-form .tribe-bar-submit input + .btn, #tribe-bar-form .tribe-bar-submit .btn-group input + .btn, .btn-group .wp-content .has-button .btn + a, .wp-content .has-button .btn-group .btn + a, .btn-group .wp-content .has-button a + a, .wp-content .has-button .btn-group a + a, .btn-group .gform_wrapper .gform_footer .wp-content .has-button input.button + a, .wp-content .has-button .btn-group .gform_wrapper .gform_footer input.button + a, .gform_wrapper .gform_footer .btn-group .wp-content .has-button input.button + a, .wp-content .has-button .gform_wrapper .gform_footer .btn-group input.button + a, .btn-group .gform_wrapper .gform_footer .wp-content .has-button input[type=submit] + a, .wp-content .has-button .btn-group .gform_wrapper .gform_footer input[type=submit] + a, .gform_wrapper .gform_footer .btn-group .wp-content .has-button input[type=submit] + a, .wp-content .has-button .gform_wrapper .gform_footer .btn-group input[type=submit] + a, .btn-group .gform_wrapper .gform_page_footer .wp-content .has-button input.button + a, .wp-content .has-button .btn-group .gform_wrapper .gform_page_footer input.button + a, .gform_wrapper .gform_page_footer .btn-group .wp-content .has-button input.button + a, .wp-content .has-button .gform_wrapper .gform_page_footer .btn-group input.button + a, .btn-group .gform_wrapper .gform_page_footer .wp-content .has-button input[type=submit] + a, .wp-content .has-button .btn-group .gform_wrapper .gform_page_footer input[type=submit] + a, .gform_wrapper .gform_page_footer .btn-group .wp-content .has-button input[type=submit] + a, .wp-content .has-button .gform_wrapper .gform_page_footer .btn-group input[type=submit] + a, .btn-group .tribe-events-single .event-date-display .wp-content .has-button .event-date-button + a, .wp-content .has-button .btn-group .tribe-events-single .event-date-display .event-date-button + a, .tribe-events-single .event-date-display .btn-group .wp-content .has-button .event-date-button + a, .wp-content .has-button .tribe-events-single .event-date-display .btn-group .event-date-button + a, .btn-group .tribe-events-single .wp-content .has-button .tribe-events-notices + a, .wp-content .has-button .btn-group .tribe-events-single .tribe-events-notices + a, .tribe-events-single .btn-group .wp-content .has-button .tribe-events-notices + a, .wp-content .has-button .tribe-events-single .btn-group .tribe-events-notices + a, .btn-group #tribe-bar-form .tribe-bar-submit .wp-content .has-button input + a, .wp-content .has-button .btn-group #tribe-bar-form .tribe-bar-submit input + a, #tribe-bar-form .tribe-bar-submit .btn-group .wp-content .has-button input + a, .wp-content .has-button #tribe-bar-form .tribe-bar-submit .btn-group input + a, .btn-group .gform_wrapper .gform_footer .btn + input.button, .gform_wrapper .gform_footer .btn-group .btn + input.button, .btn-group .wp-content .has-button .gform_wrapper .gform_footer a + input.button, .gform_wrapper .gform_footer .btn-group .wp-content .has-button a + input.button, .wp-content .has-button .btn-group .gform_wrapper .gform_footer a + input.button, .gform_wrapper .gform_footer .wp-content .has-button .btn-group a + input.button, .btn-group .gform_wrapper .gform_footer input.button + input.button, .gform_wrapper .gform_footer .btn-group input.button + input.button, .btn-group .gform_wrapper .gform_footer input[type=submit] + input.button, .gform_wrapper .gform_footer .btn-group input[type=submit] + input.button, .gform_wrapper .gform_page_footer .btn-group .gform_footer input.button + input.button, .gform_wrapper .gform_page_footer .btn-group .gform_footer input[type=submit] + input.button, .btn-group .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input.button, .gform_wrapper .gform_footer .btn-group .tribe-events-single .event-date-display .event-date-button + input.button, .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_footer .event-date-button + input.button, .gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group .event-date-button + input.button, .btn-group .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input.button, .gform_wrapper .gform_footer .btn-group .tribe-events-single .tribe-events-notices + input.button, .tribe-events-single .btn-group .gform_wrapper .gform_footer .tribe-events-notices + input.button, .gform_wrapper .gform_footer .tribe-events-single .btn-group .tribe-events-notices + input.button, .btn-group #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input.button, #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_footer input + input.button, .btn-group .gform_wrapper .gform_footer .btn + input[type=submit], .gform_wrapper .gform_footer .btn-group .btn + input[type=submit], .btn-group .wp-content .has-button .gform_wrapper .gform_footer a + input[type=submit], .gform_wrapper .gform_footer .btn-group .wp-content .has-button a + input[type=submit], .wp-content .has-button .btn-group .gform_wrapper .gform_footer a + input[type=submit], .gform_wrapper .gform_footer .wp-content .has-button .btn-group a + input[type=submit], .btn-group .gform_wrapper .gform_footer input.button + input[type=submit], .gform_wrapper .gform_footer .btn-group input.button + input[type=submit], .btn-group .gform_wrapper .gform_footer input[type=submit] + input[type=submit], .gform_wrapper .gform_footer .btn-group input[type=submit] + input[type=submit], .gform_wrapper .gform_page_footer .btn-group .gform_footer input.button + input[type=submit], .gform_wrapper .gform_page_footer .btn-group .gform_footer input[type=submit] + input[type=submit], .btn-group .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input[type=submit], .gform_wrapper .gform_footer .btn-group .tribe-events-single .event-date-display .event-date-button + input[type=submit], .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_footer .event-date-button + input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group .event-date-button + input[type=submit], .btn-group .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_footer .btn-group .tribe-events-single .tribe-events-notices + input[type=submit], .tribe-events-single .btn-group .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .btn-group .tribe-events-notices + input[type=submit], .btn-group #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input[type=submit], #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_footer input + input[type=submit], .btn-group .gform_wrapper .gform_page_footer .btn + input.button, .gform_wrapper .gform_page_footer .btn-group .btn + input.button, .btn-group .wp-content .has-button .gform_wrapper .gform_page_footer a + input.button, .gform_wrapper .gform_page_footer .btn-group .wp-content .has-button a + input.button, .wp-content .has-button .btn-group .gform_wrapper .gform_page_footer a + input.button, .gform_wrapper .gform_page_footer .wp-content .has-button .btn-group a + input.button, .gform_wrapper .gform_footer .btn-group .gform_page_footer input.button + input.button, .gform_wrapper .gform_footer .btn-group .gform_page_footer input[type=submit] + input.button, .btn-group .gform_wrapper .gform_page_footer input.button + input.button, .gform_wrapper .gform_page_footer .btn-group input.button + input.button, .btn-group .gform_wrapper .gform_page_footer input[type=submit] + input.button, .gform_wrapper .gform_page_footer .btn-group input[type=submit] + input.button, .btn-group .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input.button, .gform_wrapper .gform_page_footer .btn-group .tribe-events-single .event-date-display .event-date-button + input.button, .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_page_footer .event-date-button + input.button, .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group .event-date-button + input.button, .btn-group .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input.button, .gform_wrapper .gform_page_footer .btn-group .tribe-events-single .tribe-events-notices + input.button, .tribe-events-single .btn-group .gform_wrapper .gform_page_footer .tribe-events-notices + input.button, .gform_wrapper .gform_page_footer .tribe-events-single .btn-group .tribe-events-notices + input.button, .btn-group #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input.button, #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_page_footer input + input.button, .btn-group .gform_wrapper .gform_page_footer .btn + input[type=submit], .gform_wrapper .gform_page_footer .btn-group .btn + input[type=submit], .btn-group .wp-content .has-button .gform_wrapper .gform_page_footer a + input[type=submit], .gform_wrapper .gform_page_footer .btn-group .wp-content .has-button a + input[type=submit], .wp-content .has-button .btn-group .gform_wrapper .gform_page_footer a + input[type=submit], .gform_wrapper .gform_page_footer .wp-content .has-button .btn-group a + input[type=submit], .gform_wrapper .gform_footer .btn-group .gform_page_footer input.button + input[type=submit], .gform_wrapper .gform_footer .btn-group .gform_page_footer input[type=submit] + input[type=submit], .btn-group .gform_wrapper .gform_page_footer input.button + input[type=submit], .gform_wrapper .gform_page_footer .btn-group input.button + input[type=submit], .btn-group .gform_wrapper .gform_page_footer input[type=submit] + input[type=submit], .gform_wrapper .gform_page_footer .btn-group input[type=submit] + input[type=submit], .btn-group .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input[type=submit], .gform_wrapper .gform_page_footer .btn-group .tribe-events-single .event-date-display .event-date-button + input[type=submit], .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_page_footer .event-date-button + input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group .event-date-button + input[type=submit], .btn-group .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_page_footer .btn-group .tribe-events-single .tribe-events-notices + input[type=submit], .tribe-events-single .btn-group .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .btn-group .tribe-events-notices + input[type=submit], .btn-group #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input[type=submit], #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_page_footer input + input[type=submit], .btn-group .tribe-events-single .event-date-display .btn + .event-date-button, .tribe-events-single .event-date-display .btn-group .btn + .event-date-button, .btn-group .wp-content .has-button .tribe-events-single .event-date-display a + .event-date-button, .tribe-events-single .event-date-display .btn-group .wp-content .has-button a + .event-date-button, .wp-content .has-button .btn-group .tribe-events-single .event-date-display a + .event-date-button, .tribe-events-single .event-date-display .wp-content .has-button .btn-group a + .event-date-button, .btn-group .gform_wrapper .gform_footer .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_footer input.button + .event-date-button, .gform_wrapper .gform_footer .btn-group .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group input.button + .event-date-button, .btn-group .gform_wrapper .gform_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_footer input[type=submit] + .event-date-button, .gform_wrapper .gform_footer .btn-group .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group input[type=submit] + .event-date-button, .btn-group .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_page_footer input.button + .event-date-button, .gform_wrapper .gform_page_footer .btn-group .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group input.button + .event-date-button, .btn-group .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .btn-group .gform_wrapper .gform_page_footer input[type=submit] + .event-date-button, .gform_wrapper .gform_page_footer .btn-group .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group input[type=submit] + .event-date-button, .btn-group .tribe-events-single .event-date-display .event-date-button + .event-date-button, .tribe-events-single .event-date-display .btn-group .event-date-button + .event-date-button, .btn-group .tribe-events-single .event-date-display .tribe-events-notices + .event-date-button, .tribe-events-single .btn-group .event-date-display .tribe-events-notices + .event-date-button, .tribe-events-single .event-date-display .btn-group .tribe-events-notices + .event-date-button, .btn-group #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display input + .event-date-button, .tribe-events-single .event-date-display .btn-group #tribe-bar-form .tribe-bar-submit input + .event-date-button, #tribe-bar-form .tribe-bar-submit .btn-group .tribe-events-single .event-date-display input + .event-date-button, .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .btn-group input + .event-date-button, .btn-group .tribe-events-single .btn + .tribe-events-notices, .tribe-events-single .btn-group .btn + .tribe-events-notices, .btn-group .wp-content .has-button .tribe-events-single a + .tribe-events-notices, .tribe-events-single .btn-group .wp-content .has-button a + .tribe-events-notices, .wp-content .has-button .btn-group .tribe-events-single a + .tribe-events-notices, .tribe-events-single .wp-content .has-button .btn-group a + .tribe-events-notices, .btn-group .gform_wrapper .gform_footer .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .btn-group .gform_wrapper .gform_footer input.button + .tribe-events-notices, .gform_wrapper .gform_footer .btn-group .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer .btn-group input.button + .tribe-events-notices, .btn-group .gform_wrapper .gform_footer .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .btn-group .gform_wrapper .gform_footer input[type=submit] + .tribe-events-notices, .gform_wrapper .gform_footer .btn-group .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer .btn-group input[type=submit] + .tribe-events-notices, .btn-group .gform_wrapper .gform_page_footer .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .btn-group .gform_wrapper .gform_page_footer input.button + .tribe-events-notices, .gform_wrapper .gform_page_footer .btn-group .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer .btn-group input.button + .tribe-events-notices, .btn-group .gform_wrapper .gform_page_footer .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .btn-group .gform_wrapper .gform_page_footer input[type=submit] + .tribe-events-notices, .gform_wrapper .gform_page_footer .btn-group .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer .btn-group input[type=submit] + .tribe-events-notices, .btn-group .tribe-events-single .event-date-display .event-date-button + .tribe-events-notices, .tribe-events-single .event-date-display .btn-group .event-date-button + .tribe-events-notices, .btn-group .tribe-events-single .tribe-events-notices + .tribe-events-notices, .tribe-events-single .btn-group .tribe-events-notices + .tribe-events-notices, .btn-group #tribe-bar-form .tribe-bar-submit .tribe-events-single input + .tribe-events-notices, .tribe-events-single .btn-group #tribe-bar-form .tribe-bar-submit input + .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group .tribe-events-single input + .tribe-events-notices, .tribe-events-single #tribe-bar-form .tribe-bar-submit .btn-group input + .tribe-events-notices, .btn-group #tribe-bar-form .tribe-bar-submit .btn + input, #tribe-bar-form .tribe-bar-submit .btn-group .btn + input, .btn-group .wp-content .has-button #tribe-bar-form .tribe-bar-submit a + input, #tribe-bar-form .tribe-bar-submit .btn-group .wp-content .has-button a + input, .wp-content .has-button .btn-group #tribe-bar-form .tribe-bar-submit a + input, #tribe-bar-form .tribe-bar-submit .wp-content .has-button .btn-group a + input, #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_footer input.button + input, #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_footer input[type=submit] + input, #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_page_footer input.button + input, #tribe-bar-form .tribe-bar-submit .btn-group .gform_wrapper .gform_page_footer input[type=submit] + input, .btn-group .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .event-date-button + input, #tribe-bar-form .tribe-bar-submit .btn-group .tribe-events-single .event-date-display .event-date-button + input, .tribe-events-single .event-date-display .btn-group #tribe-bar-form .tribe-bar-submit .event-date-button + input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display .btn-group .event-date-button + input, .btn-group .tribe-events-single #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input, #tribe-bar-form .tribe-bar-submit .btn-group .tribe-events-single .tribe-events-notices + input, .tribe-events-single .btn-group #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .btn-group .tribe-events-notices + input, .btn-group #tribe-bar-form .tribe-bar-submit input + input, #tribe-bar-form .tribe-bar-submit .btn-group input + input,
.btn-group .btn + .btn-group,
.btn-group .wp-content .has-button a + .btn-group,
.wp-content .has-button .btn-group a + .btn-group,
.btn-group .gform_wrapper .gform_footer input.button + .btn-group,
.gform_wrapper .gform_footer .btn-group input.button + .btn-group,
.btn-group .gform_wrapper .gform_footer input[type=submit] + .btn-group,
.gform_wrapper .gform_footer .btn-group input[type=submit] + .btn-group,
.btn-group .gform_wrapper .gform_page_footer input.button + .btn-group,
.gform_wrapper .gform_page_footer .btn-group input.button + .btn-group,
.btn-group .gform_wrapper .gform_page_footer input[type=submit] + .btn-group,
.gform_wrapper .gform_page_footer .btn-group input[type=submit] + .btn-group,
.btn-group .tribe-events-single .event-date-display .event-date-button + .btn-group,
.tribe-events-single .event-date-display .btn-group .event-date-button + .btn-group,
.btn-group .tribe-events-single .tribe-events-notices + .btn-group,
.tribe-events-single .btn-group .tribe-events-notices + .btn-group,
.btn-group #tribe-bar-form .tribe-bar-submit input + .btn-group,
#tribe-bar-form .tribe-bar-submit .btn-group input + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .wp-content .has-button .btn-group + a,
.wp-content .has-button .btn-group .btn-group + a,
.btn-group .gform_wrapper .gform_footer .btn-group + input.button,
.gform_wrapper .gform_footer .btn-group .btn-group + input.button,
.btn-group .gform_wrapper .gform_footer .btn-group + input[type=submit],
.gform_wrapper .gform_footer .btn-group .btn-group + input[type=submit],
.btn-group .gform_wrapper .gform_page_footer .btn-group + input.button,
.gform_wrapper .gform_page_footer .btn-group .btn-group + input.button,
.btn-group .gform_wrapper .gform_page_footer .btn-group + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group .btn-group + input[type=submit],
.btn-group .tribe-events-single .event-date-display .btn-group + .event-date-button,
.tribe-events-single .event-date-display .btn-group .btn-group + .event-date-button,
.btn-group .tribe-events-single .btn-group + .tribe-events-notices,
.tribe-events-single .btn-group .btn-group + .tribe-events-notices,
.btn-group #tribe-bar-form .tribe-bar-submit .btn-group + input,
#tribe-bar-form .tribe-bar-submit .btn-group .btn-group + input,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .wp-content .has-button a + .btn,
.wp-content .has-button .btn-group-vertical a + .btn,
.btn-group-vertical .gform_wrapper .gform_footer input.button + .btn,
.gform_wrapper .gform_footer .btn-group-vertical input.button + .btn,
.btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + .btn,
.gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + .btn,
.btn-group-vertical .gform_wrapper .gform_page_footer input.button + .btn,
.gform_wrapper .gform_page_footer .btn-group-vertical input.button + .btn,
.btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + .btn,
.gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + .btn,
.btn-group-vertical .tribe-events-single .event-date-display .event-date-button + .btn,
.tribe-events-single .event-date-display .btn-group-vertical .event-date-button + .btn,
.btn-group-vertical .tribe-events-single .tribe-events-notices + .btn,
.tribe-events-single .btn-group-vertical .tribe-events-notices + .btn,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit input + .btn,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical input + .btn,
.btn-group-vertical .wp-content .has-button .btn + a,
.wp-content .has-button .btn-group-vertical .btn + a,
.btn-group-vertical .wp-content .has-button a + a,
.wp-content .has-button .btn-group-vertical a + a,
.btn-group-vertical .gform_wrapper .gform_footer .wp-content .has-button input.button + a,
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_footer input.button + a,
.gform_wrapper .gform_footer .btn-group-vertical .wp-content .has-button input.button + a,
.wp-content .has-button .gform_wrapper .gform_footer .btn-group-vertical input.button + a,
.btn-group-vertical .gform_wrapper .gform_footer .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + a,
.gform_wrapper .gform_footer .btn-group-vertical .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + a,
.btn-group-vertical .gform_wrapper .gform_page_footer .wp-content .has-button input.button + a,
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_page_footer input.button + a,
.gform_wrapper .gform_page_footer .btn-group-vertical .wp-content .has-button input.button + a,
.wp-content .has-button .gform_wrapper .gform_page_footer .btn-group-vertical input.button + a,
.btn-group-vertical .gform_wrapper .gform_page_footer .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + a,
.gform_wrapper .gform_page_footer .btn-group-vertical .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + a,
.btn-group-vertical .tribe-events-single .event-date-display .wp-content .has-button .event-date-button + a,
.wp-content .has-button .btn-group-vertical .tribe-events-single .event-date-display .event-date-button + a,
.tribe-events-single .event-date-display .btn-group-vertical .wp-content .has-button .event-date-button + a,
.wp-content .has-button .tribe-events-single .event-date-display .btn-group-vertical .event-date-button + a,
.btn-group-vertical .tribe-events-single .wp-content .has-button .tribe-events-notices + a,
.wp-content .has-button .btn-group-vertical .tribe-events-single .tribe-events-notices + a,
.tribe-events-single .btn-group-vertical .wp-content .has-button .tribe-events-notices + a,
.wp-content .has-button .tribe-events-single .btn-group-vertical .tribe-events-notices + a,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .wp-content .has-button input + a,
.wp-content .has-button .btn-group-vertical #tribe-bar-form .tribe-bar-submit input + a,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .wp-content .has-button input + a,
.wp-content .has-button #tribe-bar-form .tribe-bar-submit .btn-group-vertical input + a,
.btn-group-vertical .gform_wrapper .gform_footer .btn + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .btn + input.button,
.btn-group-vertical .wp-content .has-button .gform_wrapper .gform_footer a + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .wp-content .has-button a + input.button,
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_footer a + input.button,
.gform_wrapper .gform_footer .wp-content .has-button .btn-group-vertical a + input.button,
.btn-group-vertical .gform_wrapper .gform_footer input.button + input.button,
.gform_wrapper .gform_footer .btn-group-vertical input.button + input.button,
.btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + input.button,
.gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .gform_footer input.button + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .gform_footer input[type=submit] + input.button,
.btn-group-vertical .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single .event-date-display .event-date-button + input.button,
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_footer .event-date-button + input.button,
.gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group-vertical .event-date-button + input.button,
.btn-group-vertical .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single .tribe-events-notices + input.button,
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_footer .tribe-events-single .btn-group-vertical .tribe-events-notices + input.button,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input.button,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_footer input + input.button,
.btn-group-vertical .gform_wrapper .gform_footer .btn + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .btn + input[type=submit],
.btn-group-vertical .wp-content .has-button .gform_wrapper .gform_footer a + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .wp-content .has-button a + input[type=submit],
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_footer a + input[type=submit],
.gform_wrapper .gform_footer .wp-content .has-button .btn-group-vertical a + input[type=submit],
.btn-group-vertical .gform_wrapper .gform_footer input.button + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical input.button + input[type=submit],
.btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .gform_footer input.button + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .gform_footer input[type=submit] + input[type=submit],
.btn-group-vertical .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single .event-date-display .event-date-button + input[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group-vertical .event-date-button + input[type=submit],
.btn-group-vertical .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single .tribe-events-notices + input[type=submit],
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_footer .tribe-events-single .btn-group-vertical .tribe-events-notices + input[type=submit],
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input[type=submit],
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_footer input + input[type=submit],
.btn-group-vertical .gform_wrapper .gform_page_footer .btn + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .btn + input.button,
.btn-group-vertical .wp-content .has-button .gform_wrapper .gform_page_footer a + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .wp-content .has-button a + input.button,
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_page_footer a + input.button,
.gform_wrapper .gform_page_footer .wp-content .has-button .btn-group-vertical a + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .gform_page_footer input.button + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .gform_page_footer input[type=submit] + input.button,
.btn-group-vertical .gform_wrapper .gform_page_footer input.button + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical input.button + input.button,
.btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + input.button,
.btn-group-vertical .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single .event-date-display .event-date-button + input.button,
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_page_footer .event-date-button + input.button,
.gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group-vertical .event-date-button + input.button,
.btn-group-vertical .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single .tribe-events-notices + input.button,
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_page_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_page_footer .tribe-events-single .btn-group-vertical .tribe-events-notices + input.button,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input.button,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_page_footer input + input.button,
.btn-group-vertical .gform_wrapper .gform_page_footer .btn + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .btn + input[type=submit],
.btn-group-vertical .wp-content .has-button .gform_wrapper .gform_page_footer a + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .wp-content .has-button a + input[type=submit],
.wp-content .has-button .btn-group-vertical .gform_wrapper .gform_page_footer a + input[type=submit],
.gform_wrapper .gform_page_footer .wp-content .has-button .btn-group-vertical a + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .gform_page_footer input.button + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .gform_page_footer input[type=submit] + input[type=submit],
.btn-group-vertical .gform_wrapper .gform_page_footer input.button + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical input.button + input[type=submit],
.btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + input[type=submit],
.btn-group-vertical .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single .event-date-display .event-date-button + input[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_page_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group-vertical .event-date-button + input[type=submit],
.btn-group-vertical .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single .tribe-events-notices + input[type=submit],
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_page_footer .tribe-events-single .btn-group-vertical .tribe-events-notices + input[type=submit],
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input[type=submit],
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_page_footer input + input[type=submit],
.btn-group-vertical .tribe-events-single .event-date-display .btn + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .btn + .event-date-button,
.btn-group-vertical .wp-content .has-button .tribe-events-single .event-date-display a + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .wp-content .has-button a + .event-date-button,
.wp-content .has-button .btn-group-vertical .tribe-events-single .event-date-display a + .event-date-button,
.tribe-events-single .event-date-display .wp-content .has-button .btn-group-vertical a + .event-date-button,
.btn-group-vertical .gform_wrapper .gform_footer .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_footer input.button + .event-date-button,
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group-vertical input.button + .event-date-button,
.btn-group-vertical .gform_wrapper .gform_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + .event-date-button,
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + .event-date-button,
.btn-group-vertical .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_page_footer input.button + .event-date-button,
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group-vertical input.button + .event-date-button,
.btn-group-vertical .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + .event-date-button,
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + .event-date-button,
.btn-group-vertical .tribe-events-single .event-date-display .event-date-button + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .event-date-button + .event-date-button,
.btn-group-vertical .tribe-events-single .event-date-display .tribe-events-notices + .event-date-button,
.tribe-events-single .btn-group-vertical .event-date-display .tribe-events-notices + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .tribe-events-notices + .event-date-button,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display input + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical #tribe-bar-form .tribe-bar-submit input + .event-date-button,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .tribe-events-single .event-date-display input + .event-date-button,
.tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .btn-group-vertical input + .event-date-button,
.btn-group-vertical .tribe-events-single .btn + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .btn + .tribe-events-notices,
.btn-group-vertical .wp-content .has-button .tribe-events-single a + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .wp-content .has-button a + .tribe-events-notices,
.wp-content .has-button .btn-group-vertical .tribe-events-single a + .tribe-events-notices,
.tribe-events-single .wp-content .has-button .btn-group-vertical a + .tribe-events-notices,
.btn-group-vertical .gform_wrapper .gform_footer .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_footer input.button + .tribe-events-notices,
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_footer .btn-group-vertical input.button + .tribe-events-notices,
.btn-group-vertical .gform_wrapper .gform_footer .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + .tribe-events-notices,
.gform_wrapper .gform_footer .btn-group-vertical .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + .tribe-events-notices,
.btn-group-vertical .gform_wrapper .gform_page_footer .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_page_footer input.button + .tribe-events-notices,
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_page_footer .btn-group-vertical input.button + .tribe-events-notices,
.btn-group-vertical .gform_wrapper .gform_page_footer .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + .tribe-events-notices,
.gform_wrapper .gform_page_footer .btn-group-vertical .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + .tribe-events-notices,
.btn-group-vertical .tribe-events-single .event-date-display .event-date-button + .tribe-events-notices,
.tribe-events-single .event-date-display .btn-group-vertical .event-date-button + .tribe-events-notices,
.btn-group-vertical .tribe-events-single .tribe-events-notices + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .tribe-events-notices + .tribe-events-notices,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .tribe-events-single input + .tribe-events-notices,
.tribe-events-single .btn-group-vertical #tribe-bar-form .tribe-bar-submit input + .tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .tribe-events-single input + .tribe-events-notices,
.tribe-events-single #tribe-bar-form .tribe-bar-submit .btn-group-vertical input + .tribe-events-notices,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .btn + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .btn + input,
.btn-group-vertical .wp-content .has-button #tribe-bar-form .tribe-bar-submit a + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .wp-content .has-button a + input,
.wp-content .has-button .btn-group-vertical #tribe-bar-form .tribe-bar-submit a + input,
#tribe-bar-form .tribe-bar-submit .wp-content .has-button .btn-group-vertical a + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_footer input.button + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_page_footer input.button + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + input,
.btn-group-vertical .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .event-date-button + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .tribe-events-single .event-date-display .event-date-button + input,
.tribe-events-single .event-date-display .btn-group-vertical #tribe-bar-form .tribe-bar-submit .event-date-button + input,
#tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display .btn-group-vertical .event-date-button + input,
.btn-group-vertical .tribe-events-single #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .tribe-events-single .tribe-events-notices + input,
.tribe-events-single .btn-group-vertical #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input,
#tribe-bar-form .tribe-bar-submit .tribe-events-single .btn-group-vertical .tribe-events-notices + input,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit input + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical input + input,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .wp-content .has-button a + .btn-group,
.wp-content .has-button .btn-group-vertical a + .btn-group,
.btn-group-vertical .gform_wrapper .gform_footer input.button + .btn-group,
.gform_wrapper .gform_footer .btn-group-vertical input.button + .btn-group,
.btn-group-vertical .gform_wrapper .gform_footer input[type=submit] + .btn-group,
.gform_wrapper .gform_footer .btn-group-vertical input[type=submit] + .btn-group,
.btn-group-vertical .gform_wrapper .gform_page_footer input.button + .btn-group,
.gform_wrapper .gform_page_footer .btn-group-vertical input.button + .btn-group,
.btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit] + .btn-group,
.gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit] + .btn-group,
.btn-group-vertical .tribe-events-single .event-date-display .event-date-button + .btn-group,
.tribe-events-single .event-date-display .btn-group-vertical .event-date-button + .btn-group,
.btn-group-vertical .tribe-events-single .tribe-events-notices + .btn-group,
.tribe-events-single .btn-group-vertical .tribe-events-notices + .btn-group,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit input + .btn-group,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical input + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .wp-content .has-button .btn-group + a,
.wp-content .has-button .btn-group-vertical .btn-group + a,
.btn-group-vertical .gform_wrapper .gform_footer .btn-group + input.button,
.gform_wrapper .gform_footer .btn-group-vertical .btn-group + input.button,
.btn-group-vertical .gform_wrapper .gform_footer .btn-group + input[type=submit],
.gform_wrapper .gform_footer .btn-group-vertical .btn-group + input[type=submit],
.btn-group-vertical .gform_wrapper .gform_page_footer .btn-group + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical .btn-group + input.button,
.btn-group-vertical .gform_wrapper .gform_page_footer .btn-group + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical .btn-group + input[type=submit],
.btn-group-vertical .tribe-events-single .event-date-display .btn-group + .event-date-button,
.tribe-events-single .event-date-display .btn-group-vertical .btn-group + .event-date-button,
.btn-group-vertical .tribe-events-single .btn-group + .tribe-events-notices,
.tribe-events-single .btn-group-vertical .btn-group + .tribe-events-notices,
.btn-group-vertical #tribe-bar-form .tribe-bar-submit .btn-group + input,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical .btn-group + input,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: 0;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child, .wp-content .has-button .btn-group > a:first-child, .gform_wrapper .gform_footer .btn-group > input.button:first-child, .gform_wrapper .gform_footer .btn-group > input:first-child[type=submit], .gform_wrapper .gform_page_footer .btn-group > input.button:first-child, .gform_wrapper .gform_page_footer .btn-group > input:first-child[type=submit], .tribe-events-single .event-date-display .btn-group > .event-date-button:first-child, .tribe-events-single .btn-group > .tribe-events-notices:first-child, #tribe-bar-form .tribe-bar-submit .btn-group > input:first-child {
  margin-left: 0;
}

.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .wp-content .has-button .btn-group-sm > a + .dropdown-toggle-split, .gform_wrapper .gform_footer .btn-group-sm > input.button + .dropdown-toggle-split, .gform_wrapper .gform_footer .btn-group-sm > input[type=submit] + .dropdown-toggle-split, .gform_wrapper .gform_page_footer .btn-group-sm > input.button + .dropdown-toggle-split, .gform_wrapper .gform_page_footer .btn-group-sm > input[type=submit] + .dropdown-toggle-split, .tribe-events-single .event-date-display .btn-group-sm > .event-date-button + .dropdown-toggle-split, .tribe-events-single .btn-group-sm > .tribe-events-notices + .dropdown-toggle-split, #tribe-bar-form .tribe-bar-submit .btn-group-sm > input + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .wp-content .has-button .btn-group-lg > a + .dropdown-toggle-split, .gform_wrapper .gform_footer .btn-group-lg > input.button + .dropdown-toggle-split, .gform_wrapper .gform_footer .btn-group-lg > input[type=submit] + .dropdown-toggle-split, .gform_wrapper .gform_page_footer .btn-group-lg > input.button + .dropdown-toggle-split, .gform_wrapper .gform_page_footer .btn-group-lg > input[type=submit] + .dropdown-toggle-split, .tribe-events-single .event-date-display .btn-group-lg > .event-date-button + .dropdown-toggle-split, .tribe-events-single .btn-group-lg > .tribe-events-notices + .dropdown-toggle-split, #tribe-bar-form .tribe-bar-submit .btn-group-lg > input + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-group-vertical .btn, .btn-group-vertical .wp-content .has-button a, .wp-content .has-button .btn-group-vertical a, .btn-group-vertical .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .btn-group-vertical input.button, .btn-group-vertical .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .btn-group-vertical input[type=submit], .btn-group-vertical .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .btn-group-vertical input.button, .btn-group-vertical .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .btn-group-vertical input[type=submit], .btn-group-vertical .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .btn-group-vertical .event-date-button, .btn-group-vertical .tribe-events-single .tribe-events-notices, .tribe-events-single .btn-group-vertical .tribe-events-notices, .btn-group-vertical #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .btn-group-vertical input,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn, .wp-content .has-button .btn-group-vertical > a + .btn, .gform_wrapper .gform_footer .btn-group-vertical > input.button + .btn, .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + .btn, .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + .btn, .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + .btn, .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + .btn, .tribe-events-single .btn-group-vertical > .tribe-events-notices + .btn, #tribe-bar-form .tribe-bar-submit .btn-group-vertical > input + .btn, .wp-content .has-button .btn-group-vertical > .btn + a, .wp-content .has-button .btn-group-vertical > a + a, .gform_wrapper .gform_footer .wp-content .has-button .btn-group-vertical > input.button + a, .wp-content .has-button .gform_wrapper .gform_footer .btn-group-vertical > input.button + a, .gform_wrapper .gform_footer .wp-content .has-button .btn-group-vertical > input[type=submit] + a, .wp-content .has-button .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + a, .gform_wrapper .gform_page_footer .wp-content .has-button .btn-group-vertical > input.button + a, .wp-content .has-button .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + a, .gform_wrapper .gform_page_footer .wp-content .has-button .btn-group-vertical > input[type=submit] + a, .wp-content .has-button .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + a, .tribe-events-single .event-date-display .wp-content .has-button .btn-group-vertical > .event-date-button + a, .wp-content .has-button .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + a, .tribe-events-single .wp-content .has-button .btn-group-vertical > .tribe-events-notices + a, .wp-content .has-button .tribe-events-single .btn-group-vertical > .tribe-events-notices + a, #tribe-bar-form .tribe-bar-submit .wp-content .has-button .btn-group-vertical > input + a, .wp-content .has-button #tribe-bar-form .tribe-bar-submit .btn-group-vertical > input + a, .gform_wrapper .gform_footer .btn-group-vertical > .btn + input.button, .wp-content .has-button .gform_wrapper .gform_footer .btn-group-vertical > a + input.button, .gform_wrapper .gform_footer .wp-content .has-button .btn-group-vertical > a + input.button, .gform_wrapper .gform_footer .btn-group-vertical > input.button + input.button, .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + input.button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group-vertical > .event-date-button + input.button, .gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + input.button, .tribe-events-single .gform_wrapper .gform_footer .btn-group-vertical > .tribe-events-notices + input.button, .gform_wrapper .gform_footer .tribe-events-single .btn-group-vertical > .tribe-events-notices + input.button, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer .btn-group-vertical > input + input.button, .gform_wrapper .gform_footer .btn-group-vertical > .btn + input[type=submit], .wp-content .has-button .gform_wrapper .gform_footer .btn-group-vertical > a + input[type=submit], .gform_wrapper .gform_footer .wp-content .has-button .btn-group-vertical > a + input[type=submit], .gform_wrapper .gform_footer .btn-group-vertical > input.button + input[type=submit], .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + input[type=submit], .tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group-vertical > .event-date-button + input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + input[type=submit], .tribe-events-single .gform_wrapper .gform_footer .btn-group-vertical > .tribe-events-notices + input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .btn-group-vertical > .tribe-events-notices + input[type=submit], #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer .btn-group-vertical > input + input[type=submit], .gform_wrapper .gform_page_footer .btn-group-vertical > .btn + input.button, .wp-content .has-button .gform_wrapper .gform_page_footer .btn-group-vertical > a + input.button, .gform_wrapper .gform_page_footer .wp-content .has-button .btn-group-vertical > a + input.button, .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + input.button, .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + input.button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group-vertical > .event-date-button + input.button, .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + input.button, .tribe-events-single .gform_wrapper .gform_page_footer .btn-group-vertical > .tribe-events-notices + input.button, .gform_wrapper .gform_page_footer .tribe-events-single .btn-group-vertical > .tribe-events-notices + input.button, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer .btn-group-vertical > input + input.button, .gform_wrapper .gform_page_footer .btn-group-vertical > .btn + input[type=submit], .wp-content .has-button .gform_wrapper .gform_page_footer .btn-group-vertical > a + input[type=submit], .gform_wrapper .gform_page_footer .wp-content .has-button .btn-group-vertical > a + input[type=submit], .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + input[type=submit], .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + input[type=submit], .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group-vertical > .event-date-button + input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + input[type=submit], .tribe-events-single .gform_wrapper .gform_page_footer .btn-group-vertical > .tribe-events-notices + input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .btn-group-vertical > .tribe-events-notices + input[type=submit], #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer .btn-group-vertical > input + input[type=submit], .tribe-events-single .event-date-display .btn-group-vertical > .btn + .event-date-button, .wp-content .has-button .tribe-events-single .event-date-display .btn-group-vertical > a + .event-date-button, .tribe-events-single .event-date-display .wp-content .has-button .btn-group-vertical > a + .event-date-button, .gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group-vertical > input.button + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group-vertical > input.button + .event-date-button, .gform_wrapper .gform_footer .tribe-events-single .event-date-display .btn-group-vertical > input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + .event-date-button, .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group-vertical > input.button + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + .event-date-button, .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .btn-group-vertical > input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + .event-date-button, .tribe-events-single .event-date-display .btn-group-vertical > .tribe-events-notices + .event-date-button, #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display .btn-group-vertical > input + .event-date-button, .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .btn-group-vertical > input + .event-date-button, .tribe-events-single .btn-group-vertical > .btn + .tribe-events-notices, .wp-content .has-button .tribe-events-single .btn-group-vertical > a + .tribe-events-notices, .tribe-events-single .wp-content .has-button .btn-group-vertical > a + .tribe-events-notices, .gform_wrapper .gform_footer .tribe-events-single .btn-group-vertical > input.button + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer .btn-group-vertical > input.button + .tribe-events-notices, .gform_wrapper .gform_footer .tribe-events-single .btn-group-vertical > input[type=submit] + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + .tribe-events-notices, .gform_wrapper .gform_page_footer .tribe-events-single .btn-group-vertical > input.button + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + .tribe-events-notices, .gform_wrapper .gform_page_footer .tribe-events-single .btn-group-vertical > input[type=submit] + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + .tribe-events-notices, .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + .tribe-events-notices, .tribe-events-single .btn-group-vertical > .tribe-events-notices + .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .tribe-events-single .btn-group-vertical > input + .tribe-events-notices, .tribe-events-single #tribe-bar-form .tribe-bar-submit .btn-group-vertical > input + .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group-vertical > .btn + input, .wp-content .has-button #tribe-bar-form .tribe-bar-submit .btn-group-vertical > a + input, #tribe-bar-form .tribe-bar-submit .wp-content .has-button .btn-group-vertical > a + input, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer .btn-group-vertical > input.button + input, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + input, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer .btn-group-vertical > input.button + input, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + input, .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .btn-group-vertical > .event-date-button + input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + input, .tribe-events-single #tribe-bar-form .tribe-bar-submit .btn-group-vertical > .tribe-events-notices + input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .btn-group-vertical > .tribe-events-notices + input, #tribe-bar-form .tribe-bar-submit .btn-group-vertical > input + input,
.btn-group-vertical > .btn + .btn-group,
.wp-content .has-button .btn-group-vertical > a + .btn-group,
.gform_wrapper .gform_footer .btn-group-vertical > input.button + .btn-group,
.gform_wrapper .gform_footer .btn-group-vertical > input[type=submit] + .btn-group,
.gform_wrapper .gform_page_footer .btn-group-vertical > input.button + .btn-group,
.gform_wrapper .gform_page_footer .btn-group-vertical > input[type=submit] + .btn-group,
.tribe-events-single .event-date-display .btn-group-vertical > .event-date-button + .btn-group,
.tribe-events-single .btn-group-vertical > .tribe-events-notices + .btn-group,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > input + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.wp-content .has-button .btn-group-vertical > .btn-group + a,
.gform_wrapper .gform_footer .btn-group-vertical > .btn-group + input.button,
.gform_wrapper .gform_footer .btn-group-vertical > .btn-group + input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-vertical > .btn-group + input.button,
.gform_wrapper .gform_page_footer .btn-group-vertical > .btn-group + input[type=submit],
.tribe-events-single .event-date-display .btn-group-vertical > .btn-group + .event-date-button,
.tribe-events-single .btn-group-vertical > .btn-group + .tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .btn-group-vertical > .btn-group + input,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: 0;
  margin-left: 0;
}

.btn-group-toggle > .btn, .wp-content .has-button .btn-group-toggle > a, .gform_wrapper .gform_footer .btn-group-toggle > input.button, .gform_wrapper .gform_footer .btn-group-toggle > input[type=submit], .gform_wrapper .gform_page_footer .btn-group-toggle > input.button, .gform_wrapper .gform_page_footer .btn-group-toggle > input[type=submit], .tribe-events-single .event-date-display .btn-group-toggle > .event-date-button, .tribe-events-single .btn-group-toggle > .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .btn-group-toggle > input,
.btn-group-toggle > .btn-group > .btn,
.wp-content .has-button .btn-group-toggle > .btn-group > a,
.gform_wrapper .gform_footer .btn-group-toggle > .btn-group > input.button,
.gform_wrapper .gform_footer .btn-group-toggle > .btn-group > input[type=submit],
.gform_wrapper .gform_page_footer .btn-group-toggle > .btn-group > input.button,
.gform_wrapper .gform_page_footer .btn-group-toggle > .btn-group > input[type=submit],
.tribe-events-single .event-date-display .btn-group-toggle > .btn-group > .event-date-button,
.tribe-events-single .btn-group-toggle > .btn-group > .tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .btn-group-toggle > .btn-group > input {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"], .wp-content .has-button .btn-group-toggle > a input[type="radio"], .gform_wrapper .gform_footer .btn-group-toggle > input.button input[type="radio"], .gform_wrapper .gform_footer .btn-group-toggle > input[type=submit] input[type="radio"], .gform_wrapper .gform_page_footer .btn-group-toggle > input.button input[type="radio"], .gform_wrapper .gform_page_footer .btn-group-toggle > input[type=submit] input[type="radio"], .tribe-events-single .event-date-display .btn-group-toggle > .event-date-button input[type="radio"], .tribe-events-single .btn-group-toggle > .tribe-events-notices input[type="radio"], #tribe-bar-form .tribe-bar-submit .btn-group-toggle > input input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.wp-content .has-button .btn-group-toggle > a input[type="checkbox"],
.gform_wrapper .gform_footer .btn-group-toggle > input.button input[type="checkbox"],
.gform_wrapper .gform_footer .btn-group-toggle > input[type=submit] input[type="checkbox"],
.gform_wrapper .gform_page_footer .btn-group-toggle > input.button input[type="checkbox"],
.gform_wrapper .gform_page_footer .btn-group-toggle > input[type=submit] input[type="checkbox"],
.tribe-events-single .event-date-display .btn-group-toggle > .event-date-button input[type="checkbox"],
.tribe-events-single .btn-group-toggle > .tribe-events-notices input[type="checkbox"],
#tribe-bar-form .tribe-bar-submit .btn-group-toggle > input input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.wp-content .has-button .btn-group-toggle > .btn-group > a input[type="radio"],
.gform_wrapper .gform_footer .btn-group-toggle > .btn-group > input.button input[type="radio"],
.gform_wrapper .gform_footer .btn-group-toggle > .btn-group > input[type=submit] input[type="radio"],
.gform_wrapper .gform_page_footer .btn-group-toggle > .btn-group > input.button input[type="radio"],
.gform_wrapper .gform_page_footer .btn-group-toggle > .btn-group > input[type=submit] input[type="radio"],
.tribe-events-single .event-date-display .btn-group-toggle > .btn-group > .event-date-button input[type="radio"],
.tribe-events-single .btn-group-toggle > .btn-group > .tribe-events-notices input[type="radio"],
#tribe-bar-form .tribe-bar-submit .btn-group-toggle > .btn-group > input input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.wp-content .has-button .btn-group-toggle > .btn-group > a input[type="checkbox"],
.gform_wrapper .gform_footer .btn-group-toggle > .btn-group > input.button input[type="checkbox"],
.gform_wrapper .gform_footer .btn-group-toggle > .btn-group > input[type=submit] input[type="checkbox"],
.gform_wrapper .gform_page_footer .btn-group-toggle > .btn-group > input.button input[type="checkbox"],
.gform_wrapper .gform_page_footer .btn-group-toggle > .btn-group > input[type=submit] input[type="checkbox"],
.tribe-events-single .event-date-display .btn-group-toggle > .btn-group > .event-date-button input[type="checkbox"],
.tribe-events-single .btn-group-toggle > .btn-group > .tribe-events-notices input[type="checkbox"],
#tribe-bar-form .tribe-bar-submit .btn-group-toggle > .btn-group > input input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file:focus {
  z-index: 3;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn, .input-group-prepend .wp-content .has-button a, .wp-content .has-button .input-group-prepend a, .input-group-prepend .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .input-group-prepend input.button, .input-group-prepend .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .input-group-prepend input[type=submit], .input-group-prepend .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .input-group-prepend input.button, .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit], .input-group-prepend .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .event-date-button, .input-group-prepend .tribe-events-single .tribe-events-notices, .tribe-events-single .input-group-prepend .tribe-events-notices, .input-group-prepend #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .input-group-prepend input,
.input-group-append .btn,
.input-group-append .wp-content .has-button a,
.wp-content .has-button .input-group-append a,
.input-group-append .gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer .input-group-append input.button,
.input-group-append .gform_wrapper .gform_footer input[type=submit],
.gform_wrapper .gform_footer .input-group-append input[type=submit],
.input-group-append .gform_wrapper .gform_page_footer input.button,
.gform_wrapper .gform_page_footer .input-group-append input.button,
.input-group-append .gform_wrapper .gform_page_footer input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append input[type=submit],
.input-group-append .tribe-events-single .event-date-display .event-date-button,
.tribe-events-single .event-date-display .input-group-append .event-date-button,
.input-group-append .tribe-events-single .tribe-events-notices,
.tribe-events-single .input-group-append .tribe-events-notices,
.input-group-append #tribe-bar-form .tribe-bar-submit input,
#tribe-bar-form .tribe-bar-submit .input-group-append input {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn + .btn, .input-group-prepend .wp-content .has-button a + .btn, .wp-content .has-button .input-group-prepend a + .btn, .input-group-prepend .gform_wrapper .gform_footer input.button + .btn, .gform_wrapper .gform_footer .input-group-prepend input.button + .btn, .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + .btn, .gform_wrapper .gform_footer .input-group-prepend input[type=submit] + .btn, .input-group-prepend .gform_wrapper .gform_page_footer input.button + .btn, .gform_wrapper .gform_page_footer .input-group-prepend input.button + .btn, .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + .btn, .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + .btn, .input-group-prepend .tribe-events-single .event-date-display .event-date-button + .btn, .tribe-events-single .event-date-display .input-group-prepend .event-date-button + .btn, .input-group-prepend .tribe-events-single .tribe-events-notices + .btn, .tribe-events-single .input-group-prepend .tribe-events-notices + .btn, .input-group-prepend #tribe-bar-form .tribe-bar-submit input + .btn, #tribe-bar-form .tribe-bar-submit .input-group-prepend input + .btn, .input-group-prepend .wp-content .has-button .btn + a, .wp-content .has-button .input-group-prepend .btn + a, .input-group-prepend .wp-content .has-button a + a, .wp-content .has-button .input-group-prepend a + a, .input-group-prepend .gform_wrapper .gform_footer .wp-content .has-button input.button + a, .wp-content .has-button .input-group-prepend .gform_wrapper .gform_footer input.button + a, .gform_wrapper .gform_footer .input-group-prepend .wp-content .has-button input.button + a, .wp-content .has-button .gform_wrapper .gform_footer .input-group-prepend input.button + a, .input-group-prepend .gform_wrapper .gform_footer .wp-content .has-button input[type=submit] + a, .wp-content .has-button .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + a, .gform_wrapper .gform_footer .input-group-prepend .wp-content .has-button input[type=submit] + a, .wp-content .has-button .gform_wrapper .gform_footer .input-group-prepend input[type=submit] + a, .input-group-prepend .gform_wrapper .gform_page_footer .wp-content .has-button input.button + a, .wp-content .has-button .input-group-prepend .gform_wrapper .gform_page_footer input.button + a, .gform_wrapper .gform_page_footer .input-group-prepend .wp-content .has-button input.button + a, .wp-content .has-button .gform_wrapper .gform_page_footer .input-group-prepend input.button + a, .input-group-prepend .gform_wrapper .gform_page_footer .wp-content .has-button input[type=submit] + a, .wp-content .has-button .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + a, .gform_wrapper .gform_page_footer .input-group-prepend .wp-content .has-button input[type=submit] + a, .wp-content .has-button .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + a, .input-group-prepend .tribe-events-single .event-date-display .wp-content .has-button .event-date-button + a, .wp-content .has-button .input-group-prepend .tribe-events-single .event-date-display .event-date-button + a, .tribe-events-single .event-date-display .input-group-prepend .wp-content .has-button .event-date-button + a, .wp-content .has-button .tribe-events-single .event-date-display .input-group-prepend .event-date-button + a, .input-group-prepend .tribe-events-single .wp-content .has-button .tribe-events-notices + a, .wp-content .has-button .input-group-prepend .tribe-events-single .tribe-events-notices + a, .tribe-events-single .input-group-prepend .wp-content .has-button .tribe-events-notices + a, .wp-content .has-button .tribe-events-single .input-group-prepend .tribe-events-notices + a, .input-group-prepend #tribe-bar-form .tribe-bar-submit .wp-content .has-button input + a, .wp-content .has-button .input-group-prepend #tribe-bar-form .tribe-bar-submit input + a, #tribe-bar-form .tribe-bar-submit .input-group-prepend .wp-content .has-button input + a, .wp-content .has-button #tribe-bar-form .tribe-bar-submit .input-group-prepend input + a, .input-group-prepend .gform_wrapper .gform_footer .btn + input.button, .gform_wrapper .gform_footer .input-group-prepend .btn + input.button, .input-group-prepend .wp-content .has-button .gform_wrapper .gform_footer a + input.button, .gform_wrapper .gform_footer .input-group-prepend .wp-content .has-button a + input.button, .wp-content .has-button .input-group-prepend .gform_wrapper .gform_footer a + input.button, .gform_wrapper .gform_footer .wp-content .has-button .input-group-prepend a + input.button, .input-group-prepend .gform_wrapper .gform_footer input.button + input.button, .gform_wrapper .gform_footer .input-group-prepend input.button + input.button, .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + input.button, .gform_wrapper .gform_footer .input-group-prepend input[type=submit] + input.button, .gform_wrapper .gform_page_footer .input-group-prepend .gform_footer input.button + input.button, .gform_wrapper .gform_page_footer .input-group-prepend .gform_footer input[type=submit] + input.button, .input-group-prepend .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input.button, .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single .event-date-display .event-date-button + input.button, .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_footer .event-date-button + input.button, .gform_wrapper .gform_footer .tribe-events-single .event-date-display .input-group-prepend .event-date-button + input.button, .input-group-prepend .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input.button, .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single .tribe-events-notices + input.button, .tribe-events-single .input-group-prepend .gform_wrapper .gform_footer .tribe-events-notices + input.button, .gform_wrapper .gform_footer .tribe-events-single .input-group-prepend .tribe-events-notices + input.button, .input-group-prepend #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input.button, #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_footer input + input.button, .input-group-prepend .gform_wrapper .gform_footer .btn + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend .btn + input[type=submit], .input-group-prepend .wp-content .has-button .gform_wrapper .gform_footer a + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend .wp-content .has-button a + input[type=submit], .wp-content .has-button .input-group-prepend .gform_wrapper .gform_footer a + input[type=submit], .gform_wrapper .gform_footer .wp-content .has-button .input-group-prepend a + input[type=submit], .input-group-prepend .gform_wrapper .gform_footer input.button + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend input.button + input[type=submit], .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend input[type=submit] + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend .gform_footer input.button + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend .gform_footer input[type=submit] + input[type=submit], .input-group-prepend .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single .event-date-display .event-date-button + input[type=submit], .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_footer .event-date-button + input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .event-date-display .input-group-prepend .event-date-button + input[type=submit], .input-group-prepend .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single .tribe-events-notices + input[type=submit], .tribe-events-single .input-group-prepend .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .input-group-prepend .tribe-events-notices + input[type=submit], .input-group-prepend #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input[type=submit], #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_footer input + input[type=submit], .input-group-prepend .gform_wrapper .gform_page_footer .btn + input.button, .gform_wrapper .gform_page_footer .input-group-prepend .btn + input.button, .input-group-prepend .wp-content .has-button .gform_wrapper .gform_page_footer a + input.button, .gform_wrapper .gform_page_footer .input-group-prepend .wp-content .has-button a + input.button, .wp-content .has-button .input-group-prepend .gform_wrapper .gform_page_footer a + input.button, .gform_wrapper .gform_page_footer .wp-content .has-button .input-group-prepend a + input.button, .gform_wrapper .gform_footer .input-group-prepend .gform_page_footer input.button + input.button, .gform_wrapper .gform_footer .input-group-prepend .gform_page_footer input[type=submit] + input.button, .input-group-prepend .gform_wrapper .gform_page_footer input.button + input.button, .gform_wrapper .gform_page_footer .input-group-prepend input.button + input.button, .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + input.button, .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + input.button, .input-group-prepend .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input.button, .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single .event-date-display .event-date-button + input.button, .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_page_footer .event-date-button + input.button, .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .input-group-prepend .event-date-button + input.button, .input-group-prepend .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input.button, .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single .tribe-events-notices + input.button, .tribe-events-single .input-group-prepend .gform_wrapper .gform_page_footer .tribe-events-notices + input.button, .gform_wrapper .gform_page_footer .tribe-events-single .input-group-prepend .tribe-events-notices + input.button, .input-group-prepend #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input.button, #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_page_footer input + input.button, .input-group-prepend .gform_wrapper .gform_page_footer .btn + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend .btn + input[type=submit], .input-group-prepend .wp-content .has-button .gform_wrapper .gform_page_footer a + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend .wp-content .has-button a + input[type=submit], .wp-content .has-button .input-group-prepend .gform_wrapper .gform_page_footer a + input[type=submit], .gform_wrapper .gform_page_footer .wp-content .has-button .input-group-prepend a + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend .gform_page_footer input.button + input[type=submit], .gform_wrapper .gform_footer .input-group-prepend .gform_page_footer input[type=submit] + input[type=submit], .input-group-prepend .gform_wrapper .gform_page_footer input.button + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend input.button + input[type=submit], .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + input[type=submit], .input-group-prepend .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single .event-date-display .event-date-button + input[type=submit], .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_page_footer .event-date-button + input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .input-group-prepend .event-date-button + input[type=submit], .input-group-prepend .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single .tribe-events-notices + input[type=submit], .tribe-events-single .input-group-prepend .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .input-group-prepend .tribe-events-notices + input[type=submit], .input-group-prepend #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input[type=submit], #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_page_footer input + input[type=submit], .input-group-prepend .tribe-events-single .event-date-display .btn + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .btn + .event-date-button, .input-group-prepend .wp-content .has-button .tribe-events-single .event-date-display a + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .wp-content .has-button a + .event-date-button, .wp-content .has-button .input-group-prepend .tribe-events-single .event-date-display a + .event-date-button, .tribe-events-single .event-date-display .wp-content .has-button .input-group-prepend a + .event-date-button, .input-group-prepend .gform_wrapper .gform_footer .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_footer input.button + .event-date-button, .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .input-group-prepend input.button + .event-date-button, .input-group-prepend .gform_wrapper .gform_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + .event-date-button, .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_footer .input-group-prepend input[type=submit] + .event-date-button, .input-group-prepend .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_page_footer input.button + .event-date-button, .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single .event-date-display input.button + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .input-group-prepend input.button + .event-date-button, .input-group-prepend .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + .event-date-button, .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single .event-date-display input[type=submit] + .event-date-button, .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + .event-date-button, .input-group-prepend .tribe-events-single .event-date-display .event-date-button + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .event-date-button + .event-date-button, .input-group-prepend .tribe-events-single .event-date-display .tribe-events-notices + .event-date-button, .tribe-events-single .input-group-prepend .event-date-display .tribe-events-notices + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend .tribe-events-notices + .event-date-button, .input-group-prepend #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display input + .event-date-button, .tribe-events-single .event-date-display .input-group-prepend #tribe-bar-form .tribe-bar-submit input + .event-date-button, #tribe-bar-form .tribe-bar-submit .input-group-prepend .tribe-events-single .event-date-display input + .event-date-button, .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .input-group-prepend input + .event-date-button, .input-group-prepend .tribe-events-single .btn + .tribe-events-notices, .tribe-events-single .input-group-prepend .btn + .tribe-events-notices, .input-group-prepend .wp-content .has-button .tribe-events-single a + .tribe-events-notices, .tribe-events-single .input-group-prepend .wp-content .has-button a + .tribe-events-notices, .wp-content .has-button .input-group-prepend .tribe-events-single a + .tribe-events-notices, .tribe-events-single .wp-content .has-button .input-group-prepend a + .tribe-events-notices, .input-group-prepend .gform_wrapper .gform_footer .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .input-group-prepend .gform_wrapper .gform_footer input.button + .tribe-events-notices, .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer .input-group-prepend input.button + .tribe-events-notices, .input-group-prepend .gform_wrapper .gform_footer .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + .tribe-events-notices, .gform_wrapper .gform_footer .input-group-prepend .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer .input-group-prepend input[type=submit] + .tribe-events-notices, .input-group-prepend .gform_wrapper .gform_page_footer .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .input-group-prepend .gform_wrapper .gform_page_footer input.button + .tribe-events-notices, .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single input.button + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer .input-group-prepend input.button + .tribe-events-notices, .input-group-prepend .gform_wrapper .gform_page_footer .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + .tribe-events-notices, .gform_wrapper .gform_page_footer .input-group-prepend .tribe-events-single input[type=submit] + .tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + .tribe-events-notices, .input-group-prepend .tribe-events-single .event-date-display .event-date-button + .tribe-events-notices, .tribe-events-single .event-date-display .input-group-prepend .event-date-button + .tribe-events-notices, .input-group-prepend .tribe-events-single .tribe-events-notices + .tribe-events-notices, .tribe-events-single .input-group-prepend .tribe-events-notices + .tribe-events-notices, .input-group-prepend #tribe-bar-form .tribe-bar-submit .tribe-events-single input + .tribe-events-notices, .tribe-events-single .input-group-prepend #tribe-bar-form .tribe-bar-submit input + .tribe-events-notices, #tribe-bar-form .tribe-bar-submit .input-group-prepend .tribe-events-single input + .tribe-events-notices, .tribe-events-single #tribe-bar-form .tribe-bar-submit .input-group-prepend input + .tribe-events-notices, .input-group-prepend #tribe-bar-form .tribe-bar-submit .btn + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .btn + input, .input-group-prepend .wp-content .has-button #tribe-bar-form .tribe-bar-submit a + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .wp-content .has-button a + input, .wp-content .has-button .input-group-prepend #tribe-bar-form .tribe-bar-submit a + input, #tribe-bar-form .tribe-bar-submit .wp-content .has-button .input-group-prepend a + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_footer input.button + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_footer input[type=submit] + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_page_footer input.button + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + input, .input-group-prepend .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .event-date-button + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .tribe-events-single .event-date-display .event-date-button + input, .tribe-events-single .event-date-display .input-group-prepend #tribe-bar-form .tribe-bar-submit .event-date-button + input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display .input-group-prepend .event-date-button + input, .input-group-prepend .tribe-events-single #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend .tribe-events-single .tribe-events-notices + input, .tribe-events-single .input-group-prepend #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .input-group-prepend .tribe-events-notices + input, .input-group-prepend #tribe-bar-form .tribe-bar-submit input + input, #tribe-bar-form .tribe-bar-submit .input-group-prepend input + input,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .wp-content .has-button a + .input-group-text,
.wp-content .has-button .input-group-prepend a + .input-group-text,
.input-group-prepend .gform_wrapper .gform_footer input.button + .input-group-text,
.gform_wrapper .gform_footer .input-group-prepend input.button + .input-group-text,
.input-group-prepend .gform_wrapper .gform_footer input[type=submit] + .input-group-text,
.gform_wrapper .gform_footer .input-group-prepend input[type=submit] + .input-group-text,
.input-group-prepend .gform_wrapper .gform_page_footer input.button + .input-group-text,
.gform_wrapper .gform_page_footer .input-group-prepend input.button + .input-group-text,
.input-group-prepend .gform_wrapper .gform_page_footer input[type=submit] + .input-group-text,
.gform_wrapper .gform_page_footer .input-group-prepend input[type=submit] + .input-group-text,
.input-group-prepend .tribe-events-single .event-date-display .event-date-button + .input-group-text,
.tribe-events-single .event-date-display .input-group-prepend .event-date-button + .input-group-text,
.input-group-prepend .tribe-events-single .tribe-events-notices + .input-group-text,
.tribe-events-single .input-group-prepend .tribe-events-notices + .input-group-text,
.input-group-prepend #tribe-bar-form .tribe-bar-submit input + .input-group-text,
#tribe-bar-form .tribe-bar-submit .input-group-prepend input + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .wp-content .has-button .input-group-text + a,
.wp-content .has-button .input-group-prepend .input-group-text + a,
.input-group-prepend .gform_wrapper .gform_footer .input-group-text + input.button,
.gform_wrapper .gform_footer .input-group-prepend .input-group-text + input.button,
.input-group-prepend .gform_wrapper .gform_footer .input-group-text + input[type=submit],
.gform_wrapper .gform_footer .input-group-prepend .input-group-text + input[type=submit],
.input-group-prepend .gform_wrapper .gform_page_footer .input-group-text + input.button,
.gform_wrapper .gform_page_footer .input-group-prepend .input-group-text + input.button,
.input-group-prepend .gform_wrapper .gform_page_footer .input-group-text + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-prepend .input-group-text + input[type=submit],
.input-group-prepend .tribe-events-single .event-date-display .input-group-text + .event-date-button,
.tribe-events-single .event-date-display .input-group-prepend .input-group-text + .event-date-button,
.input-group-prepend .tribe-events-single .input-group-text + .tribe-events-notices,
.tribe-events-single .input-group-prepend .input-group-text + .tribe-events-notices,
.input-group-prepend #tribe-bar-form .tribe-bar-submit .input-group-text + input,
#tribe-bar-form .tribe-bar-submit .input-group-prepend .input-group-text + input,
.input-group-append .btn + .btn,
.input-group-append .wp-content .has-button a + .btn,
.wp-content .has-button .input-group-append a + .btn,
.input-group-append .gform_wrapper .gform_footer input.button + .btn,
.gform_wrapper .gform_footer .input-group-append input.button + .btn,
.input-group-append .gform_wrapper .gform_footer input[type=submit] + .btn,
.gform_wrapper .gform_footer .input-group-append input[type=submit] + .btn,
.input-group-append .gform_wrapper .gform_page_footer input.button + .btn,
.gform_wrapper .gform_page_footer .input-group-append input.button + .btn,
.input-group-append .gform_wrapper .gform_page_footer input[type=submit] + .btn,
.gform_wrapper .gform_page_footer .input-group-append input[type=submit] + .btn,
.input-group-append .tribe-events-single .event-date-display .event-date-button + .btn,
.tribe-events-single .event-date-display .input-group-append .event-date-button + .btn,
.input-group-append .tribe-events-single .tribe-events-notices + .btn,
.tribe-events-single .input-group-append .tribe-events-notices + .btn,
.input-group-append #tribe-bar-form .tribe-bar-submit input + .btn,
#tribe-bar-form .tribe-bar-submit .input-group-append input + .btn,
.input-group-append .wp-content .has-button .btn + a,
.wp-content .has-button .input-group-append .btn + a,
.input-group-append .wp-content .has-button a + a,
.wp-content .has-button .input-group-append a + a,
.input-group-append .gform_wrapper .gform_footer .wp-content .has-button input.button + a,
.wp-content .has-button .input-group-append .gform_wrapper .gform_footer input.button + a,
.gform_wrapper .gform_footer .input-group-append .wp-content .has-button input.button + a,
.wp-content .has-button .gform_wrapper .gform_footer .input-group-append input.button + a,
.input-group-append .gform_wrapper .gform_footer .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .input-group-append .gform_wrapper .gform_footer input[type=submit] + a,
.gform_wrapper .gform_footer .input-group-append .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .gform_wrapper .gform_footer .input-group-append input[type=submit] + a,
.input-group-append .gform_wrapper .gform_page_footer .wp-content .has-button input.button + a,
.wp-content .has-button .input-group-append .gform_wrapper .gform_page_footer input.button + a,
.gform_wrapper .gform_page_footer .input-group-append .wp-content .has-button input.button + a,
.wp-content .has-button .gform_wrapper .gform_page_footer .input-group-append input.button + a,
.input-group-append .gform_wrapper .gform_page_footer .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .input-group-append .gform_wrapper .gform_page_footer input[type=submit] + a,
.gform_wrapper .gform_page_footer .input-group-append .wp-content .has-button input[type=submit] + a,
.wp-content .has-button .gform_wrapper .gform_page_footer .input-group-append input[type=submit] + a,
.input-group-append .tribe-events-single .event-date-display .wp-content .has-button .event-date-button + a,
.wp-content .has-button .input-group-append .tribe-events-single .event-date-display .event-date-button + a,
.tribe-events-single .event-date-display .input-group-append .wp-content .has-button .event-date-button + a,
.wp-content .has-button .tribe-events-single .event-date-display .input-group-append .event-date-button + a,
.input-group-append .tribe-events-single .wp-content .has-button .tribe-events-notices + a,
.wp-content .has-button .input-group-append .tribe-events-single .tribe-events-notices + a,
.tribe-events-single .input-group-append .wp-content .has-button .tribe-events-notices + a,
.wp-content .has-button .tribe-events-single .input-group-append .tribe-events-notices + a,
.input-group-append #tribe-bar-form .tribe-bar-submit .wp-content .has-button input + a,
.wp-content .has-button .input-group-append #tribe-bar-form .tribe-bar-submit input + a,
#tribe-bar-form .tribe-bar-submit .input-group-append .wp-content .has-button input + a,
.wp-content .has-button #tribe-bar-form .tribe-bar-submit .input-group-append input + a,
.input-group-append .gform_wrapper .gform_footer .btn + input.button,
.gform_wrapper .gform_footer .input-group-append .btn + input.button,
.input-group-append .wp-content .has-button .gform_wrapper .gform_footer a + input.button,
.gform_wrapper .gform_footer .input-group-append .wp-content .has-button a + input.button,
.wp-content .has-button .input-group-append .gform_wrapper .gform_footer a + input.button,
.gform_wrapper .gform_footer .wp-content .has-button .input-group-append a + input.button,
.input-group-append .gform_wrapper .gform_footer input.button + input.button,
.gform_wrapper .gform_footer .input-group-append input.button + input.button,
.input-group-append .gform_wrapper .gform_footer input[type=submit] + input.button,
.gform_wrapper .gform_footer .input-group-append input[type=submit] + input.button,
.gform_wrapper .gform_page_footer .input-group-append .gform_footer input.button + input.button,
.gform_wrapper .gform_page_footer .input-group-append .gform_footer input[type=submit] + input.button,
.input-group-append .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input.button,
.gform_wrapper .gform_footer .input-group-append .tribe-events-single .event-date-display .event-date-button + input.button,
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_footer .event-date-button + input.button,
.gform_wrapper .gform_footer .tribe-events-single .event-date-display .input-group-append .event-date-button + input.button,
.input-group-append .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_footer .input-group-append .tribe-events-single .tribe-events-notices + input.button,
.tribe-events-single .input-group-append .gform_wrapper .gform_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_footer .tribe-events-single .input-group-append .tribe-events-notices + input.button,
.input-group-append #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input.button,
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_footer input + input.button,
.input-group-append .gform_wrapper .gform_footer .btn + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .btn + input[type=submit],
.input-group-append .wp-content .has-button .gform_wrapper .gform_footer a + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .wp-content .has-button a + input[type=submit],
.wp-content .has-button .input-group-append .gform_wrapper .gform_footer a + input[type=submit],
.gform_wrapper .gform_footer .wp-content .has-button .input-group-append a + input[type=submit],
.input-group-append .gform_wrapper .gform_footer input.button + input[type=submit],
.gform_wrapper .gform_footer .input-group-append input.button + input[type=submit],
.input-group-append .gform_wrapper .gform_footer input[type=submit] + input[type=submit],
.gform_wrapper .gform_footer .input-group-append input[type=submit] + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .gform_footer input.button + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .gform_footer input[type=submit] + input[type=submit],
.input-group-append .tribe-events-single .event-date-display .gform_wrapper .gform_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .tribe-events-single .event-date-display .event-date-button + input[type=submit],
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_footer .tribe-events-single .event-date-display .input-group-append .event-date-button + input[type=submit],
.input-group-append .tribe-events-single .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .tribe-events-single .tribe-events-notices + input[type=submit],
.tribe-events-single .input-group-append .gform_wrapper .gform_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_footer .tribe-events-single .input-group-append .tribe-events-notices + input[type=submit],
.input-group-append #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input + input[type=submit],
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_footer input + input[type=submit],
.input-group-append .gform_wrapper .gform_page_footer .btn + input.button,
.gform_wrapper .gform_page_footer .input-group-append .btn + input.button,
.input-group-append .wp-content .has-button .gform_wrapper .gform_page_footer a + input.button,
.gform_wrapper .gform_page_footer .input-group-append .wp-content .has-button a + input.button,
.wp-content .has-button .input-group-append .gform_wrapper .gform_page_footer a + input.button,
.gform_wrapper .gform_page_footer .wp-content .has-button .input-group-append a + input.button,
.gform_wrapper .gform_footer .input-group-append .gform_page_footer input.button + input.button,
.gform_wrapper .gform_footer .input-group-append .gform_page_footer input[type=submit] + input.button,
.input-group-append .gform_wrapper .gform_page_footer input.button + input.button,
.gform_wrapper .gform_page_footer .input-group-append input.button + input.button,
.input-group-append .gform_wrapper .gform_page_footer input[type=submit] + input.button,
.gform_wrapper .gform_page_footer .input-group-append input[type=submit] + input.button,
.input-group-append .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input.button,
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single .event-date-display .event-date-button + input.button,
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_page_footer .event-date-button + input.button,
.gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .input-group-append .event-date-button + input.button,
.input-group-append .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single .tribe-events-notices + input.button,
.tribe-events-single .input-group-append .gform_wrapper .gform_page_footer .tribe-events-notices + input.button,
.gform_wrapper .gform_page_footer .tribe-events-single .input-group-append .tribe-events-notices + input.button,
.input-group-append #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input.button,
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_page_footer input + input.button,
.input-group-append .gform_wrapper .gform_page_footer .btn + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .btn + input[type=submit],
.input-group-append .wp-content .has-button .gform_wrapper .gform_page_footer a + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .wp-content .has-button a + input[type=submit],
.wp-content .has-button .input-group-append .gform_wrapper .gform_page_footer a + input[type=submit],
.gform_wrapper .gform_page_footer .wp-content .has-button .input-group-append a + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .gform_page_footer input.button + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .gform_page_footer input[type=submit] + input[type=submit],
.input-group-append .gform_wrapper .gform_page_footer input.button + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append input.button + input[type=submit],
.input-group-append .gform_wrapper .gform_page_footer input[type=submit] + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append input[type=submit] + input[type=submit],
.input-group-append .tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single .event-date-display .event-date-button + input[type=submit],
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_page_footer .event-date-button + input[type=submit],
.gform_wrapper .gform_page_footer .tribe-events-single .event-date-display .input-group-append .event-date-button + input[type=submit],
.input-group-append .tribe-events-single .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single .tribe-events-notices + input[type=submit],
.tribe-events-single .input-group-append .gform_wrapper .gform_page_footer .tribe-events-notices + input[type=submit],
.gform_wrapper .gform_page_footer .tribe-events-single .input-group-append .tribe-events-notices + input[type=submit],
.input-group-append #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input + input[type=submit],
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_page_footer input + input[type=submit],
.input-group-append .tribe-events-single .event-date-display .btn + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .btn + .event-date-button,
.input-group-append .wp-content .has-button .tribe-events-single .event-date-display a + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .wp-content .has-button a + .event-date-button,
.wp-content .has-button .input-group-append .tribe-events-single .event-date-display a + .event-date-button,
.tribe-events-single .event-date-display .wp-content .has-button .input-group-append a + .event-date-button,
.input-group-append .gform_wrapper .gform_footer .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_footer input.button + .event-date-button,
.gform_wrapper .gform_footer .input-group-append .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_footer .input-group-append input.button + .event-date-button,
.input-group-append .gform_wrapper .gform_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_footer input[type=submit] + .event-date-button,
.gform_wrapper .gform_footer .input-group-append .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_footer .input-group-append input[type=submit] + .event-date-button,
.input-group-append .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_page_footer input.button + .event-date-button,
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single .event-date-display input.button + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .input-group-append input.button + .event-date-button,
.input-group-append .gform_wrapper .gform_page_footer .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .gform_wrapper .gform_page_footer input[type=submit] + .event-date-button,
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single .event-date-display input[type=submit] + .event-date-button,
.tribe-events-single .event-date-display .gform_wrapper .gform_page_footer .input-group-append input[type=submit] + .event-date-button,
.input-group-append .tribe-events-single .event-date-display .event-date-button + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .event-date-button + .event-date-button,
.input-group-append .tribe-events-single .event-date-display .tribe-events-notices + .event-date-button,
.tribe-events-single .input-group-append .event-date-display .tribe-events-notices + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .tribe-events-notices + .event-date-button,
.input-group-append #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display input + .event-date-button,
.tribe-events-single .event-date-display .input-group-append #tribe-bar-form .tribe-bar-submit input + .event-date-button,
#tribe-bar-form .tribe-bar-submit .input-group-append .tribe-events-single .event-date-display input + .event-date-button,
.tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .input-group-append input + .event-date-button,
.input-group-append .tribe-events-single .btn + .tribe-events-notices,
.tribe-events-single .input-group-append .btn + .tribe-events-notices,
.input-group-append .wp-content .has-button .tribe-events-single a + .tribe-events-notices,
.tribe-events-single .input-group-append .wp-content .has-button a + .tribe-events-notices,
.wp-content .has-button .input-group-append .tribe-events-single a + .tribe-events-notices,
.tribe-events-single .wp-content .has-button .input-group-append a + .tribe-events-notices,
.input-group-append .gform_wrapper .gform_footer .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .input-group-append .gform_wrapper .gform_footer input.button + .tribe-events-notices,
.gform_wrapper .gform_footer .input-group-append .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_footer .input-group-append input.button + .tribe-events-notices,
.input-group-append .gform_wrapper .gform_footer .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .input-group-append .gform_wrapper .gform_footer input[type=submit] + .tribe-events-notices,
.gform_wrapper .gform_footer .input-group-append .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_footer .input-group-append input[type=submit] + .tribe-events-notices,
.input-group-append .gform_wrapper .gform_page_footer .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .input-group-append .gform_wrapper .gform_page_footer input.button + .tribe-events-notices,
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single input.button + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_page_footer .input-group-append input.button + .tribe-events-notices,
.input-group-append .gform_wrapper .gform_page_footer .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .input-group-append .gform_wrapper .gform_page_footer input[type=submit] + .tribe-events-notices,
.gform_wrapper .gform_page_footer .input-group-append .tribe-events-single input[type=submit] + .tribe-events-notices,
.tribe-events-single .gform_wrapper .gform_page_footer .input-group-append input[type=submit] + .tribe-events-notices,
.input-group-append .tribe-events-single .event-date-display .event-date-button + .tribe-events-notices,
.tribe-events-single .event-date-display .input-group-append .event-date-button + .tribe-events-notices,
.input-group-append .tribe-events-single .tribe-events-notices + .tribe-events-notices,
.tribe-events-single .input-group-append .tribe-events-notices + .tribe-events-notices,
.input-group-append #tribe-bar-form .tribe-bar-submit .tribe-events-single input + .tribe-events-notices,
.tribe-events-single .input-group-append #tribe-bar-form .tribe-bar-submit input + .tribe-events-notices,
#tribe-bar-form .tribe-bar-submit .input-group-append .tribe-events-single input + .tribe-events-notices,
.tribe-events-single #tribe-bar-form .tribe-bar-submit .input-group-append input + .tribe-events-notices,
.input-group-append #tribe-bar-form .tribe-bar-submit .btn + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .btn + input,
.input-group-append .wp-content .has-button #tribe-bar-form .tribe-bar-submit a + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .wp-content .has-button a + input,
.wp-content .has-button .input-group-append #tribe-bar-form .tribe-bar-submit a + input,
#tribe-bar-form .tribe-bar-submit .wp-content .has-button .input-group-append a + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_footer input.button + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_footer input[type=submit] + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_page_footer input.button + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .gform_wrapper .gform_page_footer input[type=submit] + input,
.input-group-append .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit .event-date-button + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .tribe-events-single .event-date-display .event-date-button + input,
.tribe-events-single .event-date-display .input-group-append #tribe-bar-form .tribe-bar-submit .event-date-button + input,
#tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display .input-group-append .event-date-button + input,
.input-group-append .tribe-events-single #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .tribe-events-single .tribe-events-notices + input,
.tribe-events-single .input-group-append #tribe-bar-form .tribe-bar-submit .tribe-events-notices + input,
#tribe-bar-form .tribe-bar-submit .tribe-events-single .input-group-append .tribe-events-notices + input,
.input-group-append #tribe-bar-form .tribe-bar-submit input + input,
#tribe-bar-form .tribe-bar-submit .input-group-append input + input,
.input-group-append .btn + .input-group-text,
.input-group-append .wp-content .has-button a + .input-group-text,
.wp-content .has-button .input-group-append a + .input-group-text,
.input-group-append .gform_wrapper .gform_footer input.button + .input-group-text,
.gform_wrapper .gform_footer .input-group-append input.button + .input-group-text,
.input-group-append .gform_wrapper .gform_footer input[type=submit] + .input-group-text,
.gform_wrapper .gform_footer .input-group-append input[type=submit] + .input-group-text,
.input-group-append .gform_wrapper .gform_page_footer input.button + .input-group-text,
.gform_wrapper .gform_page_footer .input-group-append input.button + .input-group-text,
.input-group-append .gform_wrapper .gform_page_footer input[type=submit] + .input-group-text,
.gform_wrapper .gform_page_footer .input-group-append input[type=submit] + .input-group-text,
.input-group-append .tribe-events-single .event-date-display .event-date-button + .input-group-text,
.tribe-events-single .event-date-display .input-group-append .event-date-button + .input-group-text,
.input-group-append .tribe-events-single .tribe-events-notices + .input-group-text,
.tribe-events-single .input-group-append .tribe-events-notices + .input-group-text,
.input-group-append #tribe-bar-form .tribe-bar-submit input + .input-group-text,
#tribe-bar-form .tribe-bar-submit .input-group-append input + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .wp-content .has-button .input-group-text + a,
.wp-content .has-button .input-group-append .input-group-text + a,
.input-group-append .gform_wrapper .gform_footer .input-group-text + input.button,
.gform_wrapper .gform_footer .input-group-append .input-group-text + input.button,
.input-group-append .gform_wrapper .gform_footer .input-group-text + input[type=submit],
.gform_wrapper .gform_footer .input-group-append .input-group-text + input[type=submit],
.input-group-append .gform_wrapper .gform_page_footer .input-group-text + input.button,
.gform_wrapper .gform_page_footer .input-group-append .input-group-text + input.button,
.input-group-append .gform_wrapper .gform_page_footer .input-group-text + input[type=submit],
.gform_wrapper .gform_page_footer .input-group-append .input-group-text + input[type=submit],
.input-group-append .tribe-events-single .event-date-display .input-group-text + .event-date-button,
.tribe-events-single .event-date-display .input-group-append .input-group-text + .event-date-button,
.input-group-append .tribe-events-single .input-group-text + .tribe-events-notices,
.tribe-events-single .input-group-append .input-group-text + .tribe-events-notices,
.input-group-append #tribe-bar-form .tribe-bar-submit .input-group-text + input,
#tribe-bar-form .tribe-bar-submit .input-group-append .input-group-text + input {
  margin-left: 0;
}

.input-group-prepend {
  margin-right: 0;
}

.input-group-append {
  margin-left: 0;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 0 solid #ced4da;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 0);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fcf9f7 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fcf9f7;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 0);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(5rem + 0);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 0);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 0);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 0);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fcf9f7;
  border: 1px solid #ced4da;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.25rem + 0) - 1px * 2);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
}

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
}

.custom-range::-webkit-slider-thumb:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  -moz-appearance: none;
       appearance: none;
}

.custom-range::-moz-range-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  appearance: none;
}

.custom-range::-ms-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.9rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: transparent;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: -0.75rem;
  padding-bottom: -0.75rem;
  margin-right: 1rem;
  font-size: 2.66666667rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0 0;
  font-size: 2.66666667rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 374.98px) {
  .navbar-expand-ms > .container,
  .navbar-expand-ms > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 375px) {
  .navbar-expand-ms {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-ms .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-ms .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-ms .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .navbar-expand-ms > .container,
  .navbar-expand-ms > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-ms .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-ms .navbar-toggler {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1649.98px) {
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1650px) {
  .navbar-expand-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.9rem;
  padding-left: 0.9rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
}

.card-img-top {
  width: 100%;
}

.card-img-bottom {
  width: 100%;
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-deck .card {
  margin-bottom: 22px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -22px;
    margin-left: -22px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 22px;
    margin-bottom: 0;
    margin-left: 22px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-group > .card {
  margin-bottom: 22px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: rem(30);
  list-style: none;
  background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: rem(5);
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: rem(5);
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid none;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: transparent;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: none;
  border-color: none;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 2.66666667rem;
  line-height: 1.5;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
}

.badge:empty {
  display: none;
}

.btn .badge, .wp-content .has-button a .badge, .gform_wrapper .gform_footer input.button .badge, .gform_wrapper .gform_footer input[type=submit] .badge, .gform_wrapper .gform_page_footer input.button .badge, .gform_wrapper .gform_page_footer input[type=submit] .badge, .tribe-events-single .event-date-display .event-date-button .badge, .tribe-events-single .tribe-events-notices .badge, #tribe-bar-form .tribe-bar-submit input .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-success[href]:hover, .badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:last-child {
  margin-bottom: 0;
}

.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}


.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 375px) {
  .d-ms-none {
    display: none !important;
  }
  .d-ms-inline {
    display: inline !important;
  }
  .d-ms-inline-block {
    display: inline-block !important;
  }
  .d-ms-block {
    display: block !important;
  }
  .d-ms-table {
    display: table !important;
  }
  .d-ms-table-row {
    display: table-row !important;
  }
  .d-ms-table-cell {
    display: table-cell !important;
  }
  .d-ms-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-ms-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1650px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 375px) {
  .flex-ms-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-ms-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-ms-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-ms-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-ms-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-ms-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-ms-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-ms-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-ms-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-ms-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-ms-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-ms-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-ms-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-ms-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-ms-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-ms-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-ms-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-ms-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-ms-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-ms-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-ms-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-ms-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-ms-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-ms-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-ms-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-ms-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-ms-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-ms-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-ms-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-ms-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-ms-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-ms-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-ms-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-ms-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1650px) {
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 375px) {
  .float-ms-left {
    float: left !important;
  }
  .float-ms-right {
    float: right !important;
  }
  .float-ms-none {
    float: none !important;
  }
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

@media (min-width: 1650px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 375px) {
  .m-ms-0 {
    margin: 0 !important;
  }
  .mt-ms-0,
  .my-ms-0 {
    margin-top: 0 !important;
  }
  .mr-ms-0,
  .mx-ms-0 {
    margin-right: 0 !important;
  }
  .mb-ms-0,
  .my-ms-0 {
    margin-bottom: 0 !important;
  }
  .ml-ms-0,
  .mx-ms-0 {
    margin-left: 0 !important;
  }
  .m-ms-1 {
    margin: 0.25rem !important;
  }
  .mt-ms-1,
  .my-ms-1 {
    margin-top: 0.25rem !important;
  }
  .mr-ms-1,
  .mx-ms-1 {
    margin-right: 0.25rem !important;
  }
  .mb-ms-1,
  .my-ms-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-ms-1,
  .mx-ms-1 {
    margin-left: 0.25rem !important;
  }
  .m-ms-2 {
    margin: 0.5rem !important;
  }
  .mt-ms-2,
  .my-ms-2 {
    margin-top: 0.5rem !important;
  }
  .mr-ms-2,
  .mx-ms-2 {
    margin-right: 0.5rem !important;
  }
  .mb-ms-2,
  .my-ms-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-ms-2,
  .mx-ms-2 {
    margin-left: 0.5rem !important;
  }
  .m-ms-3 {
    margin: 1rem !important;
  }
  .mt-ms-3,
  .my-ms-3 {
    margin-top: 1rem !important;
  }
  .mr-ms-3,
  .mx-ms-3 {
    margin-right: 1rem !important;
  }
  .mb-ms-3,
  .my-ms-3 {
    margin-bottom: 1rem !important;
  }
  .ml-ms-3,
  .mx-ms-3 {
    margin-left: 1rem !important;
  }
  .m-ms-4 {
    margin: 1.5rem !important;
  }
  .mt-ms-4,
  .my-ms-4 {
    margin-top: 1.5rem !important;
  }
  .mr-ms-4,
  .mx-ms-4 {
    margin-right: 1.5rem !important;
  }
  .mb-ms-4,
  .my-ms-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-ms-4,
  .mx-ms-4 {
    margin-left: 1.5rem !important;
  }
  .m-ms-5 {
    margin: 3rem !important;
  }
  .mt-ms-5,
  .my-ms-5 {
    margin-top: 3rem !important;
  }
  .mr-ms-5,
  .mx-ms-5 {
    margin-right: 3rem !important;
  }
  .mb-ms-5,
  .my-ms-5 {
    margin-bottom: 3rem !important;
  }
  .ml-ms-5,
  .mx-ms-5 {
    margin-left: 3rem !important;
  }
  .p-ms-0 {
    padding: 0 !important;
  }
  .pt-ms-0,
  .py-ms-0 {
    padding-top: 0 !important;
  }
  .pr-ms-0,
  .px-ms-0 {
    padding-right: 0 !important;
  }
  .pb-ms-0,
  .py-ms-0 {
    padding-bottom: 0 !important;
  }
  .pl-ms-0,
  .px-ms-0 {
    padding-left: 0 !important;
  }
  .p-ms-1 {
    padding: 0.25rem !important;
  }
  .pt-ms-1,
  .py-ms-1 {
    padding-top: 0.25rem !important;
  }
  .pr-ms-1,
  .px-ms-1 {
    padding-right: 0.25rem !important;
  }
  .pb-ms-1,
  .py-ms-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-ms-1,
  .px-ms-1 {
    padding-left: 0.25rem !important;
  }
  .p-ms-2 {
    padding: 0.5rem !important;
  }
  .pt-ms-2,
  .py-ms-2 {
    padding-top: 0.5rem !important;
  }
  .pr-ms-2,
  .px-ms-2 {
    padding-right: 0.5rem !important;
  }
  .pb-ms-2,
  .py-ms-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-ms-2,
  .px-ms-2 {
    padding-left: 0.5rem !important;
  }
  .p-ms-3 {
    padding: 1rem !important;
  }
  .pt-ms-3,
  .py-ms-3 {
    padding-top: 1rem !important;
  }
  .pr-ms-3,
  .px-ms-3 {
    padding-right: 1rem !important;
  }
  .pb-ms-3,
  .py-ms-3 {
    padding-bottom: 1rem !important;
  }
  .pl-ms-3,
  .px-ms-3 {
    padding-left: 1rem !important;
  }
  .p-ms-4 {
    padding: 1.5rem !important;
  }
  .pt-ms-4,
  .py-ms-4 {
    padding-top: 1.5rem !important;
  }
  .pr-ms-4,
  .px-ms-4 {
    padding-right: 1.5rem !important;
  }
  .pb-ms-4,
  .py-ms-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-ms-4,
  .px-ms-4 {
    padding-left: 1.5rem !important;
  }
  .p-ms-5 {
    padding: 3rem !important;
  }
  .pt-ms-5,
  .py-ms-5 {
    padding-top: 3rem !important;
  }
  .pr-ms-5,
  .px-ms-5 {
    padding-right: 3rem !important;
  }
  .pb-ms-5,
  .py-ms-5 {
    padding-bottom: 3rem !important;
  }
  .pl-ms-5,
  .px-ms-5 {
    padding-left: 3rem !important;
  }
  .m-ms-auto {
    margin: auto !important;
  }
  .mt-ms-auto,
  .my-ms-auto {
    margin-top: auto !important;
  }
  .mr-ms-auto,
  .mx-ms-auto {
    margin-right: auto !important;
  }
  .mb-ms-auto,
  .my-ms-auto {
    margin-bottom: auto !important;
  }
  .ml-ms-auto,
  .mx-ms-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1650px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 375px) {
  .text-ms-left {
    text-align: left !important;
  }
  .text-ms-right {
    text-align: right !important;
  }
  .text-ms-center {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1650px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "\2190";
}

[dir="rtl"] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "\2192";
}

[dir="rtl"] .slick-next:before {
  content: "\2190";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

body {
  background: #e4eded;
  color: #202426;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Gotham Book', sans-serif;
  font-size: 22px;
  line-height: 1.55;
}

@media (max-width: 1200px) {
  body {
    font-size: 21px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
  }
}

html {
  font-size: 16px;
}

#main-site-wrapper {
  -webkit-transition: padding .3s ease-in-out;
  transition: padding .3s ease-in-out;
}

a {
  color: #008DD2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  a {
    -webkit-transition: none;
    transition: none;
  }
}

a:hover {
  color: #661D72;
}

strong {
  font-family: 'Gotham Medium', sans-serif;
}

.image-container {
  display: block;
}

.image-container img {
  display: block;
  width: 100%;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
  clear: right;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
  clear: left;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  clear: right;
}

.alignleft {
  float: left;
  clear: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.has-hiding {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .has-hiding {
    -webkit-transition: none;
    transition: none;
  }
}

.hiding {
  opacity: 0;
}

.wrapper {
  background: #ffffff;
  margin: 0 auto;
  max-width: 1650px;
  position: relative;
  padding-top: 165px;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .wrapper {
    padding-top: 145px;
  }
}

@media (max-width: 991px) {
  .wrapper {
    padding-top: 115px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {
  .row {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.color-white {
  color: #ffffff;
}

.bg-white {
  background: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.color-black {
  color: #202426;
}

.bg-black {
  background: #202426;
}

.border-black {
  border-color: #202426;
}

.color-green {
  color: #06A94E;
}

.bg-green, .event-carousel .carousel-item:nth-child(odd) {
  background: #06A94E;
}

.bg-green-50, .tribe-events-single .event-main-content-block .event-dot-green-bottom-left {
  background: rgba(6, 169, 78, 0.5);
}

.bg-green-60 {
  background: rgba(6, 169, 78, 0.6);
}

.bg-green-70, .wp-content blockquote:before, #blog-footer #blog-footer-contents:after {
  background: rgba(6, 169, 78, 0.7);
}

.bg-green-80 {
  background: rgba(6, 169, 78, 0.8);
}

.bg-green-90, .event-carousel .carousel-item:nth-child(even) {
  background: rgba(6, 169, 78, 0.9);
}

.border-green {
  border-color: #06A94E;
}

.bg-green a:not(.btn), .event-carousel .carousel-item:nth-child(odd) a:not(.btn), [class*="bg-green-"] a:not(.btn) {
  color: #F7D000;
}

.hover-color-green {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-color-green:hover {
  color: #06A94E;
}

.color-pink {
  color: #C6347C;
}

.bg-pink {
  background: #C6347C;
}

.bg-pink-50 {
  background: rgba(198, 52, 124, 0.5);
}

.bg-pink-60 {
  background: rgba(198, 52, 124, 0.6);
}

.bg-pink-70, .content-block .pink-purple-top-right--pink-dot, .tribe-events-single .event-main-content-block .event-dot-pink-top-right, #blog-footer #blog-footer-contents:before {
  background: rgba(198, 52, 124, 0.7);
}

.bg-pink-80, .content-block .teal-pink-bottom-right--pink-dot {
  background: rgba(198, 52, 124, 0.8);
}

.bg-pink-90 {
  background: rgba(198, 52, 124, 0.9);
}

.border-pink {
  border-color: #C6347C;
}

.bg-pink a:not(.btn), [class*="bg-pink-"] a:not(.btn) {
  color: #F7D000;
}

.hover-color-pink {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-color-pink:hover {
  color: #C6347C;
}

.color-purple {
  color: #661D72;
}

.bg-purple {
  background: #661D72;
}

.bg-purple-50, .content-block .blue-light-purple-top-right--light-purple-dot, .content-block .light-purple-bottom-right--light-purple-dot {
  background: rgba(102, 29, 114, 0.5);
}

.bg-purple-60 {
  background: rgba(102, 29, 114, 0.6);
}

.bg-purple-70, .content-block .pink-purple-top-right--purple-dot, .tribe-events-single .event-main-content-block .event-dot-purple-top-right {
  background: rgba(102, 29, 114, 0.7);
}

.bg-purple-80, [id*="attachment_"].alignleft figcaption:after, [class*="wp-image-"].alignleft figcaption:after, .content-block .purple-top-left--purple-dot, .content-block .purple-bottom-left--purple-dot {
  background: rgba(102, 29, 114, 0.8);
}

.bg-purple-90 {
  background: rgba(102, 29, 114, 0.9);
}

.border-purple {
  border-color: #661D72;
}

.bg-purple a:not(.btn), [class*="bg-purple-"] a:not(.btn) {
  color: #F7D000;
}

.hover-color-purple {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-color-purple:hover {
  color: #661D72;
}

.color-teal {
  color: #00B5B7;
}

.bg-teal {
  background: #00B5B7;
}

.bg-teal-50, .content-block .teal-top-left--teal-dot, .content-block .teal-large-dot-top-left {
  background: rgba(0, 181, 183, 0.5);
}

.bg-teal-60 {
  background: rgba(0, 181, 183, 0.6);
}

.bg-teal-70 {
  background: rgba(0, 181, 183, 0.7);
}

.bg-teal-80, .content-block .teal-pink-bottom-right--teal-dot {
  background: rgba(0, 181, 183, 0.8);
}

.bg-teal-90 {
  background: rgba(0, 181, 183, 0.9);
}

.border-teal {
  border-color: #00B5B7;
}

.bg-teal a:not(.btn), [class*="bg-teal-"] a:not(.btn) {
  color: #F7D000;
}

.hover-color-teal {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-color-teal:hover {
  color: #00B5B7;
}

.color-blue {
  color: #008DD2;
}

.bg-blue {
  background: #008DD2;
}

.bg-blue-50, .content-block .blue-light-purple-top-right--blue-dot {
  background: rgba(0, 141, 210, 0.65);
}

.bg-blue-60 {
  background: rgba(0, 141, 210, 0.6);
}

.bg-blue-70, .wp-content blockquote:after {
  background: rgba(0, 141, 210, 0.7);
}

.bg-blue-80 {
  background: rgba(0, 141, 210, 0.8);
}

.bg-blue-90 {
  background: rgba(0, 141, 210, 0.9);
}

.border-blue {
  border-color: #008DD2;
}

.bg-blue a:not(.btn), [class*="bg-blue-"] a:not(.btn) {
  color: #F7D000;
}

.hover-color-blue {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-color-blue:hover {
  color: #008DD2;
}

.color-yellow {
  color: #F7D000;
}

.bg-yellow {
  background: #F7D000;
}

.bg-yellow-50 {
  background: rgba(247, 208, 0, 0.5);
}

.bg-yellow-60 {
  background: rgba(247, 208, 0, 0.6);
}

.bg-yellow-70 {
  background: rgba(247, 208, 0, 0.7);
}

.bg-yellow-80 {
  background: rgba(247, 208, 0, 0.8);
}

.bg-yellow-90 {
  background: rgba(247, 208, 0, 0.9);
}

.border-yellow {
  border-color: #F7D000;
}

.hover-color-yellow {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-color-yellow:hover {
  color: #F7D000;
}

.heading-black-150, .wp-content h1 {
  font-family: 'Gotham Black', sans-serif;
  font-size: 150px;
  letter-spacing: -.02em;
  line-height: 150px;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 1400px) {
  .heading-black-150, .wp-content h1 {
    font-size: 120px;
    line-height: 120px;
  }
}

@media (max-width: 1200px) {
  .heading-black-150, .wp-content h1 {
    font-size: 90px;
    line-height: 90px;
  }
}

@media (max-width: 768px) {
  .heading-black-150, .wp-content h1 {
    font-size: 65px;
    line-height: 65px;
  }
}

@media (max-width: 500px) {
  .heading-black-150, .wp-content h1 {
    font-size: 52px;
    line-height: 52px;
  }
}

@media (max-width: 374px) {
  .heading-black-150, .wp-content h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.heading-bold-75 {
  font-family: 'Gotham Bold', sans-serif;
  font-size: 75px;
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .heading-bold-75 {
    font-size: 60px;
  }
}

@media (max-width: 1024px) {
  .heading-bold-75 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .heading-bold-75 {
    font-size: 40px;
  }
}

.heading-bold-50, .wp-content h2, .wp-content blockquote, .tribe-events-day > .tribe-events-notices, .tribe-events-month > .tribe-events-notices, .tribe-events-list > .tribe-events-notices {
  font-family: 'Gotham Bold', sans-serif;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .heading-bold-50, .wp-content h2, .wp-content blockquote, .tribe-events-day > .tribe-events-notices, .tribe-events-month > .tribe-events-notices, .tribe-events-list > .tribe-events-notices {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  .heading-bold-50, .wp-content h2, .wp-content blockquote, .tribe-events-day > .tribe-events-notices, .tribe-events-month > .tribe-events-notices, .tribe-events-list > .tribe-events-notices {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .heading-bold-50, .wp-content h2, .wp-content blockquote, .tribe-events-day > .tribe-events-notices, .tribe-events-month > .tribe-events-notices, .tribe-events-list > .tribe-events-notices {
    font-size: 30px;
  }
}

.heading-med-50 {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .heading-med-50 {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  .heading-med-50 {
    font-size: 33px;
    line-height: 1.15;
  }
}

@media (max-width: 768px) {
  .heading-med-50 {
    font-size: 24px;
  }
}

.heading-med-30, .wp-content h3 {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -.01em;
  font-weight: 400;
}

.heading-bold-30 {
  font-family: 'Gotham Bold', sans-serif;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -.01em;
  font-weight: 400;
}

.heading-med-25, .wp-content h4 {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 25px;
  line-height: 32px;
  font-weight: 400;
}

.heading-med-22, .wp-content h5, .validation_error, .gform_wrapper #mce-responses .response, .tribe-events-single .age-and-cost, .tribe-events-single .events-nav-previous,
.tribe-events-single .events-nav-next, .tribe-events-single .calendar-buttons .dropdown-menu a, .standard-dropdown .dropdown-toggle-custom, .standard-dropdown .dropdown-menu a, .tribe-bar-filters-inner .keyword-search-toggle, .tribe-bar-filters-inner .tribe-bar-date-filter input, .events-nav-previous,
.events-nav-next, .blog-category-nav #blog-category-nav-list li, .blog-category-nav-mobile .dropdown .dropdown-toggle-custom, .blog-category-nav-mobile .dropdown .dropdown-menu a {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

.heading-small {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 400;
}

@media (max-width: 768px) {
  .heading-small {
    font-size: 12px;
  }
}

.heading-pink {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #C6347C;
  letter-spacing: 1.4px;
  font-weight: 400;
}

.heading-yellow {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #F7D000;
  letter-spacing: 1.4px;
  font-weight: 400;
}

.body-normal {
  font-family: 'Gotham Book', sans-serif;
  font-size: 22px;
  line-height: 29px;
}

.body-micro {
  font-family: 'Gotham Book', sans-serif;
  font-size: 14px;
  line-height: 14px;
}

.has-dropcap p .dropcap-letter {
  width: 85px;
  height: 85px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: block;
  float: left;
  margin-right: 7px;
  margin-bottom: 5px;
  margin-top: 9px;
}

@media (max-width: 768px) {
  .has-dropcap p .dropcap-letter {
    width: 55px;
    height: 55px;
  }
}

.has-dropcap p .dropcap-letter.dropcap-letter-a {
  background-image: url("../images/graphics/dropcaps/dropcap-a.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-b {
  background-image: url("../images/graphics/dropcaps/dropcap-b.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-c {
  background-image: url("../images/graphics/dropcaps/dropcap-c.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-d {
  background-image: url("../images/graphics/dropcaps/dropcap-d.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-e {
  background-image: url("../images/graphics/dropcaps/dropcap-e.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-f {
  background-image: url("../images/graphics/dropcaps/dropcap-f.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-g {
  background-image: url("../images/graphics/dropcaps/dropcap-g.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-h {
  background-image: url("../images/graphics/dropcaps/dropcap-h.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-i {
  background-image: url("../images/graphics/dropcaps/dropcap-i.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-j {
  background-image: url("../images/graphics/dropcaps/dropcap-j.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-k {
  background-image: url("../images/graphics/dropcaps/dropcap-k.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-l {
  background-image: url("../images/graphics/dropcaps/dropcap-l.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-m {
  background-image: url("../images/graphics/dropcaps/dropcap-m.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-n {
  background-image: url("../images/graphics/dropcaps/dropcap-n.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-o {
  background-image: url("../images/graphics/dropcaps/dropcap-o.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-p {
  background-image: url("../images/graphics/dropcaps/dropcap-p.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-q {
  background-image: url("../images/graphics/dropcaps/dropcap-q.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-r {
  background-image: url("../images/graphics/dropcaps/dropcap-r.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-s {
  background-image: url("../images/graphics/dropcaps/dropcap-s.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-t {
  background-image: url("../images/graphics/dropcaps/dropcap-t.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-u {
  background-image: url("../images/graphics/dropcaps/dropcap-u.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-v {
  background-image: url("../images/graphics/dropcaps/dropcap-v.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-w {
  background-image: url("../images/graphics/dropcaps/dropcap-w.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-x {
  background-image: url("../images/graphics/dropcaps/dropcap-x.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-y {
  background-image: url("../images/graphics/dropcaps/dropcap-y.svg");
}

.has-dropcap p .dropcap-letter.dropcap-letter-z {
  background-image: url("../images/graphics/dropcaps/dropcap-z.svg");
}

.paragraph-lead {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  line-height: 156%;
}

.paragraph-lead-large {
  margin-left: -100px;
  margin-right: -100px;
  text-align: center;
}

@media (max-width: 768px) {
  .paragraph-lead-large {
    margin-left: 0;
    margin-right: 0;
  }
}

.paragraph-lead-large.margin-bottom-extra {
  margin-bottom: 60px;
}

.has-arrow-before-50-white {
  position: relative;
}

.has-arrow-before-50-white:before {
  content: '';
  background-image: url("../images/icons/icon-arrow-white.svg");
  background-repeat: no-repeat;
  width: 40px;
  height: 29px;
  background-size: 100% auto;
  position: absolute;
  left: -55px;
  top: 10px;
}

@media (max-width: 1200px) {
  .has-arrow-before-50-white:before {
    width: 33px;
    left: -45px;
  }
}

@media (max-width: 991px) {
  .has-arrow-before-50-white:before {
    width: 26px;
    left: -36px;
    top: 6px;
  }
}

@media (max-width: 768px) {
  .has-arrow-before-50-white:before {
    width: 19px;
    left: -28px;
    top: 4px;
  }
}

@media (max-width: 575px) {
  .has-arrow-before-50-white:before {
    width: 15px;
    top: 6px;
    left: -20px;
  }
}

.has-green-blob {
  position: relative;
}

.has-green-blob:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/graphics/blob-green.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

.has-green-blob .container {
  z-index: 1;
  position: relative;
}

.wp-content hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.wp-content .has-button a {
  color: #ffffff !important;
}

.wp-content .has-button.button-is-purple a {
  background: #661D72;
}

.wp-content .has-button.button-is-purple a:hover {
  background: rgba(102, 29, 114, 0.7);
}

.wp-content .has-button.button-is-blue a {
  background: #008DD2;
}

.wp-content .has-button.button-is-blue a:hover {
  background: rgba(0, 141, 210, 0.7);
}

.wp-content .has-button.button-is-green a {
  background: #06A94E;
}

.wp-content .has-button.button-is-green a:hover {
  background: rgba(6, 169, 78, 0.7);
}

.wp-content .has-button.button-is-pink a {
  background: #C6347C;
}

.wp-content .has-button.button-is-pink a:hover {
  background: rgba(198, 52, 124, 0.7);
}

.wp-content blockquote {
  color: #C6347C;
  margin: 80px 0 90px;
  position: relative;
}

.wp-content blockquote.extra-long-blockquote {
  font-size: 27px;
  line-height: 38px;
}

.wp-content blockquote.blockquote-style-left {
  width: 80%;
  margin-left: -30%;
  margin-right: 20px;
  float: left;
}

@media (max-width: 1500px) {
  .wp-content blockquote.blockquote-style-left {
    width: 90%;
    margin-left: -40%;
  }
}

@media (max-width: 1300px) {
  .wp-content blockquote.blockquote-style-left {
    width: 70%;
    margin-left: -20%;
  }
}

@media (max-width: 1024px) {
  .wp-content blockquote.blockquote-style-left {
    width: 50%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .wp-content blockquote.blockquote-style-left {
    width: 100%;
  }
}

.wp-content blockquote.blockquote-style-right {
  width: 80%;
  margin-right: -30%;
  margin-left: 20px;
  float: right;
}

@media (max-width: 1500px) {
  .wp-content blockquote.blockquote-style-right {
    width: 90%;
    margin-right: -40%;
  }
}

@media (max-width: 1300px) {
  .wp-content blockquote.blockquote-style-right {
    width: 70%;
    margin-right: -20%;
  }
}

@media (max-width: 1024px) {
  .wp-content blockquote.blockquote-style-right {
    width: 50%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .wp-content blockquote.blockquote-style-right {
    width: 100%;
  }
}

.wp-content blockquote.blockquote-style-right p {
  text-align: left !important;
}

.wp-content blockquote p {
  text-align: left !important;
}

.wp-content blockquote:before {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  content: ' ';
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
}

.wp-content blockquote:after {
  border-radius: 50%;
  height: 70px;
  width: 70px;
  content: ' ';
  display: block;
  position: absolute;
  bottom: -62px;
  right: 0;
}

.wp-content ol li {
  margin-bottom: 15px;
}

[id*="attachment_"] {
  margin-top: 30px;
}

[id*="attachment_"] img {
  display: block;
  width: 100%;
  height: auto;
}

[id*="attachment_"] figcaption {
  font-family: 'Gotham Book', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: rgba(32, 36, 38, 0.7);
  max-width: 75%;
  margin-top: 10px;
}

@media (max-width: 991px) {
  [id*="attachment_"] figcaption {
    max-width: 90%;
    font-size: 15px;
    line-height: 24px;
  }
}

[id*="attachment_"].alignleft, [id*="attachment_"].alignright {
  width: 70% !important;
}

@media (max-width: 1068px) {
  [id*="attachment_"].alignleft, [id*="attachment_"].alignright {
    width: 60% !important;
  }
}

@media (max-width: 575px) {
  [id*="attachment_"].alignleft, [id*="attachment_"].alignright {
    width: 100% !important;
    float: none !important;
    clear: none !important;
  }
}

[id*="attachment_"].alignleft {
  margin-left: -50%;
  margin-right: 30px;
}

@media (max-width: 1520px) {
  [id*="attachment_"].alignleft {
    margin-left: -40%;
  }
}

@media (max-width: 1400px) {
  [id*="attachment_"].alignleft {
    margin-left: -30%;
  }
}

@media (max-width: 1200px) {
  [id*="attachment_"].alignleft {
    margin-left: -20%;
  }
}

@media (max-width: 1068px) {
  [id*="attachment_"].alignleft {
    margin-left: -10%;
  }
}

@media (max-width: 575px) {
  [id*="attachment_"].alignleft {
    margin-left: 0;
    margin-right: 0;
  }
}

[id*="attachment_"].alignleft figcaption {
  position: relative;
}

[id*="attachment_"].alignleft figcaption:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -100px;
  height: 70px;
  width: 70px;
  left: 0;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  [id*="attachment_"].alignleft figcaption:after {
    width: 50px;
    height: 50px;
    bottom: -70px;
  }
}

@media (max-width: 1068px) {
  [id*="attachment_"].alignleft figcaption:after {
    display: none;
  }
}

[id*="attachment_"].alignright {
  margin-right: -50%;
  margin-left: 30px;
}

@media (max-width: 1520px) {
  [id*="attachment_"].alignright {
    margin-right: -40%;
  }
}

@media (max-width: 1400px) {
  [id*="attachment_"].alignright {
    margin-right: -30%;
  }
}

@media (max-width: 1200px) {
  [id*="attachment_"].alignright {
    margin-right: -20%;
  }
}

@media (max-width: 1068px) {
  [id*="attachment_"].alignright {
    margin-right: -10%;
  }
}

@media (max-width: 575px) {
  [id*="attachment_"].alignright {
    margin-right: 0;
    margin-left: 0;
  }
}

[id*="attachment_"].alignright figcaption {
  text-align: left;
}

[id*="attachment_"].aligncenter {
  width: 100% !important;
}

[id*="attachment_"].alignnone {
  margin: 65px -15% 80px;
  width: 130% !important;
  position: relative;
}

@media (max-width: 1200px) {
  [id*="attachment_"].alignnone {
    width: 110% !important;
    margin: 55px -5% 60px;
  }
}

@media (max-width: 575px) {
  [id*="attachment_"].alignnone {
    width: 100% !important;
    margin: 45px 0 50px;
  }
}

[id*="attachment_"].alignnone .image-wrapper {
  position: relative;
}

[id*="attachment_"].alignnone .image-wrapper:before {
  content: ' ';
  display: block;
  position: absolute;
  bottom: -140px;
  left: -70px;
  background-image: url("../images/graphics/blob-blog-inline-image-corner.svg");
  background-size: 100% auto;
  z-index: 1;
  width: 480px;
  height: 480px;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  [id*="attachment_"].alignnone .image-wrapper:before {
    bottom: -110px;
    left: -50px;
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 575px) {
  [id*="attachment_"].alignnone .image-wrapper:before {
    height: 250px;
    width: 250px;
    bottom: -80px;
    left: -20px;
  }
}

[id*="attachment_"].alignnone figcaption {
  text-align: right;
  max-width: 50%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  [id*="attachment_"].alignnone figcaption {
    max-width: 80%;
  }
}

[id*="attachment_"].alignnone img {
  position: relative;
  z-index: 2;
}

[class*="wp-image-"] {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 30px;
}

[class*="wp-image-"].alignleft, [class*="wp-image-"].alignright {
  width: 70% !important;
}

@media (max-width: 1068px) {
  [class*="wp-image-"].alignleft, [class*="wp-image-"].alignright {
    width: 60% !important;
  }
}

@media (max-width: 575px) {
  [class*="wp-image-"].alignleft, [class*="wp-image-"].alignright {
    width: 100% !important;
  }
}

[class*="wp-image-"].alignleft {
  margin-left: -50%;
  margin-right: 30px;
}

@media (max-width: 1520px) {
  [class*="wp-image-"].alignleft {
    margin-left: -40%;
  }
}

@media (max-width: 1400px) {
  [class*="wp-image-"].alignleft {
    margin-left: -30%;
  }
}

@media (max-width: 1200px) {
  [class*="wp-image-"].alignleft {
    margin-left: -20%;
  }
}

@media (max-width: 1068px) {
  [class*="wp-image-"].alignleft {
    margin-left: -10%;
  }
}

@media (max-width: 575px) {
  [class*="wp-image-"].alignleft {
    margin-left: 0;
    margin-right: 0;
  }
}

[class*="wp-image-"].alignleft figcaption {
  position: relative;
}

[class*="wp-image-"].alignleft figcaption:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -100px;
  height: 70px;
  width: 70px;
  left: 0;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  [class*="wp-image-"].alignleft figcaption:after {
    width: 50px;
    height: 50px;
    bottom: -70px;
  }
}

@media (max-width: 991px) {
  [class*="wp-image-"].alignleft figcaption:after {
    display: none;
  }
}

[class*="wp-image-"].alignright {
  margin-right: -50%;
  margin-left: 30px;
}

@media (max-width: 1520px) {
  [class*="wp-image-"].alignright {
    margin-right: -40%;
  }
}

@media (max-width: 1400px) {
  [class*="wp-image-"].alignright {
    margin-right: -30%;
  }
}

@media (max-width: 1200px) {
  [class*="wp-image-"].alignright {
    margin-right: -20%;
  }
}

@media (max-width: 1068px) {
  [class*="wp-image-"].alignright {
    margin-right: -10%;
  }
}

@media (max-width: 575px) {
  [class*="wp-image-"].alignright {
    margin-right: 0;
    margin-left: 0;
  }
}

[class*="wp-image-"].alignright figcaption {
  text-align: left;
}

.alignnone-image-wrapper {
  position: relative;
  margin: 65px -15% 180px;
  width: 130% !important;
}

@media (max-width: 1200px) {
  .alignnone-image-wrapper {
    width: 110% !important;
    margin: 55px -5% 120px;
  }
}

@media (max-width: 575px) {
  .alignnone-image-wrapper {
    width: 100% !important;
    margin: 45px 0 90px;
  }
}

.alignnone-image-wrapper img {
  position: relative;
  z-index: 2;
}

.alignnone-image-wrapper:before {
  content: ' ';
  display: block;
  position: absolute;
  bottom: -140px;
  left: -70px;
  background-image: url("../images/graphics/blob-blog-inline-image-corner.svg");
  background-size: 100% auto;
  z-index: 1;
  width: 480px;
  height: 480px;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .alignnone-image-wrapper:before {
    bottom: -110px;
    left: -50px;
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 575px) {
  .alignnone-image-wrapper:before {
    height: 250px;
    width: 250px;
    bottom: -80px;
    left: -20px;
  }
}

.section-heading {
  padding-top: 130px;
  padding-bottom: 20px;
  z-index: 15;
  position: relative;
}

@media (max-width: 1600px) {
  .section-heading {
    padding-top: 100px;
  }
}

@media (max-width: 1200px) {
  .section-heading {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .section-heading {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 50px;
    overflow: hidden;
  }
}

.section-heading.slim-heading {
  padding-top: 80px;
}

@media (max-width: 1600px) {
  .section-heading.slim-heading {
    padding-top: 70px;
  }
}

@media (max-width: 1200px) {
  .section-heading.slim-heading {
    padding-top: 60px;
  }
}

.section-heading.no-top-padding {
  padding-top: 0;
}

.section-heading .section-head-mobile-graphic-one {
  display: none;
  position: absolute;
  top: -25px;
  right: -62px;
  width: 125px;
  height: 125px;
  background: rgba(0, 141, 210, 0.5);
  border-radius: 50%;
}

@media (max-width: 991px) {
  .section-heading .section-head-mobile-graphic-one {
    display: block;
  }
}

.section-heading .section-head-mobile-graphic-two {
  display: none;
  position: absolute;
  top: 60px;
  right: 77px;
  width: 40px;
  height: 40px;
  background: rgba(102, 29, 114, 0.5);
  border-radius: 50%;
}

@media (max-width: 991px) {
  .section-heading .section-head-mobile-graphic-two {
    display: block;
  }
}

.section-heading .container {
  position: relative;
}

.section-heading .section-heading-right {
  position: absolute;
  bottom: 0;
  right: 20px;
}

@media (max-width: 991px) {
  .section-heading .section-heading-right {
    position: static;
    bottom: auto;
    right: auto;
  }
}

@media (max-width: 991px) {
  .section-heading .section-heading-right span {
    display: block;
    margin-bottom: 20px;
  }
}

.has-pink-blob,
.has-blue-blob,
.has-purple-blob,
.has-teal-blob,
.has-green-blob {
  position: relative;
}

.has-pink-blob > div,
.has-blue-blob > div,
.has-purple-blob > div,
.has-teal-blob > div,
.has-green-blob > div {
  position: relative;
  z-index: 2;
}

.has-pink-blob:before,
.has-blue-blob:before,
.has-purple-blob:before,
.has-teal-blob:before,
.has-green-blob:before {
  content: '';
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.has-pink-blob:before {
  background-image: url("../images/graphics/blob-pink.svg");
}

.has-blue-blob:before {
  background-image: url("../images/graphics/blob-blue-carousel.svg");
}

.has-purple-blob:before {
  background-image: url("../images/graphics/blob-purple-carousel.svg");
}

.has-green-blob:before {
  background-image: url("../images/graphics/blob-green-carousel.svg");
}

.has-teal-blob:before {
  background-image: url("../images/graphics/blob-teal-carousel.svg");
}

ul.social {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.social li {
  display: inline-block;
}

ul.social li:not(:last-of-type) {
  margin-right: 12px;
}

ul.social li a {
  font-size: 50px;
  color: #ffffff;
  text-decoration: none !important;
}

ul.social li a:hover {
  color: #F7D000;
}

@media (max-width: 768px) {
  ul.social.on-white-bg-mobile li a {
    color: #661D72;
  }
}

ul.social-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

ul.social-inline li {
  display: inline-block;
}

ul.social-inline li.social-inline-label {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 24px;
  color: #202426;
  position: relative;
  top: -7px;
}

ul.social-inline li:not(:last-of-type) {
  margin-right: 12px;
}

ul.social-inline li a {
  font-size: 30px;
  color: #202426;
  text-decoration: none !important;
}

ul.social-inline li a:hover {
  color: #C6347C;
}

.img-hover-zoom {
  overflow: hidden;
  position: relative;
}

.img-hover-zoom:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 10px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}

@media screen and (prefers-reduced-motion: reduce) {
  .img-hover-zoom:after {
    -webkit-transition: none;
    transition: none;
  }
}

.img-hover-zoom img {
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  position: relative;
  z-index: 5;
}

.img-hover-zoom:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.img-hover-zoom:hover:after {
  border: 10px solid rgba(32, 36, 38, 0.3);
}

[id*="content-section-"] {
  z-index: 11;
  position: relative;
}

.custom-pagination h2 {
  display: none !important;
}

.custom-pagination .nav-links::after {
  display: block;
  clear: both;
  content: "";
}

.custom-pagination .nav-links .nav-previous {
  float: left;
  width: 50%;
}

.custom-pagination .nav-links .nav-previous a {
  background-image: url("../images/icons/icon-slideshow-left-active.svg");
}

.custom-pagination .nav-links .nav-next {
  width: 50%;
  float: right;
  text-align: right;
}

.custom-pagination .nav-links .nav-next a {
  background-image: url("../images/icons/icon-slideshow-right-active.svg");
  float: right;
}

.custom-pagination .nav-links .nav-previous a, .custom-pagination .nav-links .nav-next a {
  height: 50px;
  width: 50px;
  text-indent: -9999px;
  overflow: hidden;
  background-size: 100% auto;
  background-position: center center;
  color: transparent;
  display: block;
}

.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  border-top: none !important;
  border-bottom: none !important;
  background-color: transparent !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.gform_wrapper .validation_message {
  color: #C6347C !important;
  padding-top: 5px !important;
  padding-bottom: 8px !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error textarea {
  border: 2px solid #C6347C !important;
}

.validation_error {
  color: #C6347C !important;
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 5px 0 !important;
}

.gform_wrapper .top_label .gfield_error {
  width: 100% !important;
  max-width: none !important;
}

.gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  width: 100% !important;
  max-width: none !important;
}

.simple-row {
  margin-left: -22px;
  margin-right: -22px;
}

/* Components - specific elements that make up a page */
.btn, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input {
  text-transform: lowercase;
  font-size: 24px;
  font-family: 'Gotham Medium', sans-serif;
  padding: 5px 5px 4px 5px;
  outline: none !important;
  border: 1px solid transparent;
}

.btn:hover, .wp-content .has-button a:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input:hover[type=submit], .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input:hover[type=submit], .tribe-events-single .event-date-display .event-date-button:hover, .tribe-events-single .tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input:hover, .btn:active, .wp-content .has-button a:active, .gform_wrapper .gform_footer input.button:active, .gform_wrapper .gform_footer input:active[type=submit], .gform_wrapper .gform_page_footer input.button:active, .gform_wrapper .gform_page_footer input:active[type=submit], .tribe-events-single .event-date-display .event-date-button:active, .tribe-events-single .tribe-events-notices:active, #tribe-bar-form .tribe-bar-submit input:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid transparent !important;
}

.btn:focus, .wp-content .has-button a:focus, .gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input:focus[type=submit], .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input:focus[type=submit], .tribe-events-single .event-date-display .event-date-button:focus, .tribe-events-single .tribe-events-notices:focus, #tribe-bar-form .tribe-bar-submit input:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid !important;
}

@media (max-width: 768px) {
  .btn, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input {
    font-size: 16px;
    white-space: normal;
  }
}

.btn.btn-primary, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input {
  background: #F7D000;
  color: #661D72;
}

.btn.btn-primary:hover, .wp-content .has-button a:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input:hover[type=submit], .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input:hover[type=submit], .tribe-events-single .event-date-display .event-date-button:hover, .tribe-events-single .tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input:hover {
  background: #ffffff;
}

.btn.btn-primary.on-white-bg:hover, .wp-content .has-button a.on-white-bg:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input:hover[type=submit], .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input:hover[type=submit], .tribe-events-single .event-date-display .on-white-bg.event-date-button:hover, .tribe-events-single .on-white-bg.tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input.on-white-bg:hover, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer #tribe-bar-form .tribe-bar-submit input.button:hover, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_footer input:hover[type=submit], .gform_wrapper .gform_footer #tribe-bar-form .tribe-bar-submit input:hover[type=submit], #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer #tribe-bar-form .tribe-bar-submit input.button:hover, #tribe-bar-form .tribe-bar-submit .gform_wrapper .gform_page_footer input:hover[type=submit], .gform_wrapper .gform_page_footer #tribe-bar-form .tribe-bar-submit input:hover[type=submit] {
  background: #C6347C;
  color: #ffffff;
}

.btn.btn-secondary, .wp-content .has-button a.btn-secondary, .gform_wrapper .gform_footer input.btn-secondary.button, .gform_wrapper .gform_footer input.btn-secondary[type=submit], .gform_wrapper .gform_page_footer input.btn-secondary.button, .gform_wrapper .gform_page_footer input.btn-secondary[type=submit], .tribe-events-single .event-date-display .btn-secondary.event-date-button, .tribe-events-single .btn-secondary.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-secondary {
  background: #ffffff;
  color: #661D72;
}

.btn.btn-secondary:hover, .wp-content .has-button a.btn-secondary:hover, .gform_wrapper .gform_footer input.btn-secondary.button:hover, .gform_wrapper .gform_footer input.btn-secondary:hover[type=submit], .gform_wrapper .gform_page_footer input.btn-secondary.button:hover, .gform_wrapper .gform_page_footer input.btn-secondary:hover[type=submit], .tribe-events-single .event-date-display .btn-secondary.event-date-button:hover, .tribe-events-single .btn-secondary.tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input.btn-secondary:hover {
  background: #F7D000;
}

.btn.btn-primary-purple, .wp-content .has-button a.btn-primary-purple, .gform_wrapper .gform_footer input.btn-primary-purple.button, .gform_wrapper .gform_footer input.btn-primary-purple[type=submit], .gform_wrapper .gform_page_footer input.btn-primary-purple.button, .gform_wrapper .gform_page_footer input.btn-primary-purple[type=submit], .tribe-events-single .event-date-display .btn-primary-purple.event-date-button, .tribe-events-single .btn-primary-purple.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-primary-purple {
  background: #661D72;
  color: #ffffff;
}

.btn.btn-primary-purple:hover, .wp-content .has-button a.btn-primary-purple:hover, .gform_wrapper .gform_footer input.btn-primary-purple.button:hover, .gform_wrapper .gform_footer input.btn-primary-purple:hover[type=submit], .gform_wrapper .gform_page_footer input.btn-primary-purple.button:hover, .gform_wrapper .gform_page_footer input.btn-primary-purple:hover[type=submit], .tribe-events-single .event-date-display .btn-primary-purple.event-date-button:hover, .tribe-events-single .btn-primary-purple.tribe-events-notices:hover, #tribe-bar-form .tribe-bar-submit input.btn-primary-purple:hover {
  background: #F7D000;
  color: #661D72;
}

.btn.btn-primary, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input, .btn.btn-secondary, .wp-content .has-button a.btn-secondary, .gform_wrapper .gform_footer input.btn-secondary.button, .gform_wrapper .gform_footer input.btn-secondary[type=submit], .gform_wrapper .gform_page_footer input.btn-secondary.button, .gform_wrapper .gform_page_footer input.btn-secondary[type=submit], .tribe-events-single .event-date-display .btn-secondary.event-date-button, .tribe-events-single .btn-secondary.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-secondary {
  border-radius: 30px;
  padding: 5px 30px 4px;
}

@media (max-width: 991px) {
  .btn.btn-primary, .wp-content .has-button a, .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit], .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input, .btn.btn-secondary, .wp-content .has-button a.btn-secondary, .gform_wrapper .gform_footer input.btn-secondary.button, .gform_wrapper .gform_footer input.btn-secondary[type=submit], .gform_wrapper .gform_page_footer input.btn-secondary.button, .gform_wrapper .gform_page_footer input.btn-secondary[type=submit], .tribe-events-single .event-date-display .btn-secondary.event-date-button, .tribe-events-single .btn-secondary.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-secondary {
    padding: 5px 20px 4px;
  }
}

.btn.btn-large, .wp-content .has-button a.btn-large, .gform_wrapper .gform_footer input.btn-large.button, .gform_wrapper .gform_footer input.btn-large[type=submit], .gform_wrapper .gform_page_footer input.btn-large.button, .gform_wrapper .gform_page_footer input.btn-large[type=submit], .tribe-events-single .event-date-display .btn-large.event-date-button, .tribe-events-single .btn-large.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-large {
  font-size: 30px;
  padding: 8px 35px 7px;
}

@media (max-width: 991px) {
  .btn.btn-large.btn-small-mobile, .wp-content .has-button a.btn-large.btn-small-mobile, .gform_wrapper .gform_footer input.btn-large.btn-small-mobile.button, .gform_wrapper .gform_footer input.btn-large.btn-small-mobile[type=submit], .gform_wrapper .gform_page_footer input.btn-large.btn-small-mobile.button, .gform_wrapper .gform_page_footer input.btn-large.btn-small-mobile[type=submit], .tribe-events-single .event-date-display .btn-large.btn-small-mobile.event-date-button, .tribe-events-single .btn-large.btn-small-mobile.tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-large.btn-small-mobile {
    font-size: 24px;
    padding: 5px 20px 4px;
  }
}

@media (min-width: 769px) {
  .btn.btn-large-desktop-only, .wp-content .has-button a.btn-large-desktop-only, .wp-content .has-button .tribe-events-single a.tribe-events-notices, .tribe-events-single .wp-content .has-button a.tribe-events-notices, .gform_wrapper .gform_footer input.btn-large-desktop-only.button, .gform_wrapper .gform_footer .tribe-events-single input.button.tribe-events-notices, .tribe-events-single .gform_wrapper .gform_footer input.button.tribe-events-notices, .gform_wrapper .gform_footer input.btn-large-desktop-only[type=submit], .gform_wrapper .gform_footer .tribe-events-single input.tribe-events-notices[type=submit], .tribe-events-single .gform_wrapper .gform_footer input.tribe-events-notices[type=submit], .gform_wrapper .gform_page_footer input.btn-large-desktop-only.button, .gform_wrapper .gform_page_footer .tribe-events-single input.button.tribe-events-notices, .tribe-events-single .gform_wrapper .gform_page_footer input.button.tribe-events-notices, .gform_wrapper .gform_page_footer input.btn-large-desktop-only[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single input.tribe-events-notices[type=submit], .tribe-events-single .gform_wrapper .gform_page_footer input.tribe-events-notices[type=submit], .tribe-events-single .event-date-display .btn-large-desktop-only.event-date-button, .tribe-events-single .event-date-display .event-date-button.event-date-button-large, .tribe-events-single .event-date-display .event-date-button.tribe-events-notices, .tribe-events-single .event-date-display #tribe-bar-form .tribe-bar-submit input.event-date-button.event-date-button-large, #tribe-bar-form .tribe-bar-submit .tribe-events-single .event-date-display input.event-date-button.event-date-button-large, .tribe-events-single .tribe-events-notices, #tribe-bar-form .tribe-bar-submit input.btn-large-desktop-only, #tribe-bar-form .tribe-bar-submit .tribe-events-single input.tribe-events-notices, .tribe-events-single #tribe-bar-form .tribe-bar-submit input.tribe-events-notices {
    font-size: 30px;
    padding: 8px 35px 7px;
  }
}

.btn.btn-with-icon span, .wp-content .has-button a.btn-with-icon span, .gform_wrapper .gform_footer input.btn-with-icon.button span, .gform_wrapper .gform_footer input.btn-with-icon[type=submit] span, .gform_wrapper .gform_page_footer input.btn-with-icon.button span, .gform_wrapper .gform_page_footer input.btn-with-icon[type=submit] span, .tribe-events-single .event-date-display .btn-with-icon.event-date-button span, .tribe-events-single .btn-with-icon.tribe-events-notices span, #tribe-bar-form .tribe-bar-submit input.btn-with-icon span {
  font-size: 20px;
  position: relative;
  top: 2px;
}

.btn.btn-with-icon.icon-at-start span, .wp-content .has-button a.btn-with-icon.icon-at-start span, .gform_wrapper .gform_footer input.btn-with-icon.icon-at-start.button span, .gform_wrapper .gform_footer input.btn-with-icon.icon-at-start[type=submit] span, .gform_wrapper .gform_page_footer input.btn-with-icon.icon-at-start.button span, .gform_wrapper .gform_page_footer input.btn-with-icon.icon-at-start[type=submit] span, .tribe-events-single .event-date-display .btn-with-icon.icon-at-start.event-date-button span, .tribe-events-single .btn-with-icon.icon-at-start.tribe-events-notices span, #tribe-bar-form .tribe-bar-submit input.btn-with-icon.icon-at-start span {
  margin-right: 5px;
}

.gform_wrapper {
  max-width: 500px !important;
  margin: 16px auto 30px !important;
}

.gform_wrapper .gfield {
  padding-right: 0 !important;
  position: relative;
  margin-top: 20px !important;
}

.gform_wrapper .gfield input[type=text], .gform_wrapper .gfield input[type=email] {
  background: #F1EAF3;
  border-radius: 100px;
  height: 50px;
  border: none;
  outline: none !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  width: 100% !important;
  color: #661D72;
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding-top: 13px !important;
}

.gform_wrapper .gfield textarea {
  background: #F1EAF3;
  border-radius: 25px;
  border: none;
  outline: none !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  width: 100% !important;
  color: #661D72;
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding-top: 22px !important;
}

.gform_wrapper .gfield label {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px !important;
  color: rgba(102, 29, 114, 0.6) !important;
  font-weight: 400 !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .gform_wrapper .gfield label {
    -webkit-transition: none;
    transition: none;
  }
}

.gform_wrapper .gfield.floated-label label {
  position: absolute;
  top: 4px;
  left: 20px;
  line-height: 3.2 !important;
}

.gform_wrapper .gfield.focus label, .gform_wrapper .gfield.active label {
  font-size: 10px !important;
  margin-top: -7px;
}

.gform_wrapper .gfield.has-radio-buttons, .gform_wrapper .gfield.has-checkboxes {
  padding-left: 20px;
  padding-right: 20px;
}

.gform_wrapper .gfield.has-radio-buttons label.gfield_label, .gform_wrapper .gfield.has-checkboxes label.gfield_label {
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 22px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #661D72 !important;
  margin-bottom: 0 !important;
}

.gform_wrapper .gfield.has-radio-buttons label:not(.gfield_label), .gform_wrapper .gfield.has-checkboxes label:not(.gfield_label) {
  padding-top: 7px;
  color: #661D72 !important;
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 14px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
}

.gform_wrapper .gfield.has-radio-buttons input, .gform_wrapper .gfield.has-checkboxes input {
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 14px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
}

.gform_wrapper .gfield .ginput_container_radio,
.gform_wrapper .gfield .ginput_container_checkbox {
  margin-top: 0 !important;
}

.gform_wrapper .gfield select {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px !important;
  font-weight: 400 !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  color: #661D72 !important;
  line-height: 1.3;
  padding: .6em 1.4em .5em 20px !important;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 25px !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #F1EAF3;
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
  min-height: 50px;
  outline: none !important;
}

@media screen and (prefers-reduced-motion: reduce) {
  .gform_wrapper .gfield select {
    -webkit-transition: none;
    transition: none;
  }
}

.gform_wrapper .gfield.has-select label.gfield_label, .gform_wrapper .gfield.is-name-field label.gfield_label, .gform_wrapper .gfield.is-address-field label.gfield_label {
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 22px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #661D72 !important;
  margin-bottom: 0 !important;
  margin-left: 20px;
  margin-right: 20px;
}

.gform_wrapper .gfield input.mce_inline_error {
  border: 2px solid #C6347C;
}

.gform_wrapper .gfield div.mce_inline_error {
  background: transparent !important;
  padding: 5px 0;
  color: #C6347C !important;
}

.gform_wrapper .ginput_container_select {
  position: relative;
}

.gform_wrapper .ginput_container_select:after {
  content: '';
  position: absolute;
  top: 18px;
  right: 28px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url("../images/icons/icon-dropdown-arrow.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 9px;
  height: 15px;
  z-index: 1;
}

.gform_wrapper #mce-responses {
  padding-top: 20px;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
  width: 100% !important;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero.blue-tinted-image {
  background: #33A4DB;
}

.hero.purple-tinted-image {
  background: #661D72;
}

.hero.has-top-blob-white:before {
  content: ' ';
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  background-image: url("../images/graphics/blob-hero-top-white.svg");
  background-size: 100% auto;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 2;
}

.hero.has-bottom-blob-white:after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: -3px;
  left: -3px;
  right: -3px;
  background-image: url("../images/graphics/blob-hero-bottom-white.svg");
  background-size: 100% auto;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.hero.has-top-blob-white-no-dots:before {
  content: ' ';
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  background-image: url("../images/graphics/blob-hero-top-white-no-dots.svg");
  background-size: 100% auto;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 2;
}

.hero.has-bottom-blob-white-no-dots:after {
  content: ' ';
  display: block;
  position: absolute;
  bottom: -3px;
  left: -3px;
  right: -3px;
  background-image: url("../images/graphics/blob-hero-bottom-white-no-dots.svg");
  background-size: 100% auto;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 2;
}

.hero.is-home-hero svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero.is-home-hero .hero-overlay {
    padding-top: 0 !important;
  }
}

.hero.is-home-hero .hero-overlay .btn, .hero.is-home-hero .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero.is-home-hero .hero-overlay a, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input.button, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input[type=submit], .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input.button, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input[type=submit], .hero.is-home-hero .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero.is-home-hero .hero-overlay .event-date-button, .hero.is-home-hero .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero.is-home-hero .hero-overlay .tribe-events-notices, .hero.is-home-hero .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero .hero-overlay input {
  width: 370px;
}

@media (max-width: 1200px) {
  .hero.is-home-hero .hero-overlay .btn, .hero.is-home-hero .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero.is-home-hero .hero-overlay a, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input.button, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input[type=submit], .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input.button, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input[type=submit], .hero.is-home-hero .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero.is-home-hero .hero-overlay .event-date-button, .hero.is-home-hero .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero.is-home-hero .hero-overlay .tribe-events-notices, .hero.is-home-hero .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero .hero-overlay input {
    padding: 5px 5px 4px 5px;
    font-size: 24px;
    width: 320px;
  }
}

@media (max-width: 768px) {
  .hero.is-home-hero .hero-overlay .btn, .hero.is-home-hero .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero.is-home-hero .hero-overlay a, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input.button, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input[type=submit], .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input.button, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input[type=submit], .hero.is-home-hero .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero.is-home-hero .hero-overlay .event-date-button, .hero.is-home-hero .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero.is-home-hero .hero-overlay .tribe-events-notices, .hero.is-home-hero .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero .hero-overlay input {
    display: none;
  }
}

.hero.is-home-hero .hero-overlay .btn:first-of-type, .hero.is-home-hero .hero-overlay .wp-content .has-button a:first-of-type, .wp-content .has-button .hero.is-home-hero .hero-overlay a:first-of-type, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input.button:first-of-type, .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input.button:first-of-type, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_footer input:first-of-type[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero .hero-overlay input:first-of-type[type=submit], .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input.button:first-of-type, .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input.button:first-of-type, .hero.is-home-hero .hero-overlay .gform_wrapper .gform_page_footer input:first-of-type[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero .hero-overlay input:first-of-type[type=submit], .hero.is-home-hero .hero-overlay .tribe-events-single .event-date-display .event-date-button:first-of-type, .tribe-events-single .event-date-display .hero.is-home-hero .hero-overlay .event-date-button:first-of-type, .hero.is-home-hero .hero-overlay .tribe-events-single .tribe-events-notices:first-of-type, .tribe-events-single .hero.is-home-hero .hero-overlay .tribe-events-notices:first-of-type, .hero.is-home-hero .hero-overlay #tribe-bar-form .tribe-bar-submit input:first-of-type, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero .hero-overlay input:first-of-type {
  margin-right: 15px;
}

.hero.is-home-hero .hero-overlay .hero-overlay-inner {
  margin-top: -80px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .hero.is-home-hero .hero-overlay .hero-overlay-inner {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .hero.is-home-hero .hero-overlay .hero-overlay-inner {
    margin-top: 0;
  }
}

.hero.is-home-hero-animated .graphic-piece {
  position: absolute;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.hero.is-home-hero-animated .home-hero-piece-1 {
  top: 21%;
  left: -1%;
  z-index: 1;
  width: 2.8%;
}

.hero.is-home-hero-animated .home-hero-piece-2 {
  top: 3%;
  left: 6%;
  z-index: 1;
  width: 7.7%;
}

.hero.is-home-hero-animated .home-hero-piece-3 {
  top: 9%;
  left: 20%;
  z-index: 1;
  width: 1.8%;
}

.hero.is-home-hero-animated .home-hero-piece-4 {
  top: 7%;
  left: 28%;
  z-index: 1;
  width: 3.6%;
}

.hero.is-home-hero-animated .home-hero-piece-5 {
  top: 0;
  left: 36%;
  z-index: 1;
  width: 3%;
}

.hero.is-home-hero-animated .home-hero-piece-6 {
  top: 9%;
  left: 48%;
  z-index: 3;
  width: 2.7%;
}

.hero.is-home-hero-animated .home-hero-piece-7 {
  top: 21%;
  right: 1%;
  z-index: 1;
  width: 1.8%;
}

.hero.is-home-hero-animated .home-hero-piece-8 {
  top: 10%;
  right: 2%;
  z-index: 1;
  width: 3.5%;
}

.hero.is-home-hero-animated .home-hero-piece-9 {
  display: none;
}

.hero.is-home-hero-animated .home-hero-piece-10 {
  top: 27.5%;
  right: 8.5%;
  z-index: 1;
  width: 7.2%;
}

.hero.is-home-hero-animated .home-hero-piece-11 {
  top: 15%;
  right: 25%;
  z-index: 1;
  width: 3.5%;
}

.hero.is-home-hero-animated .home-hero-piece-12 {
  top: 20%;
  right: 32%;
  z-index: 1;
  width: 1.8%;
}

.hero.is-home-hero-animated .home-hero-piece-13 {
  top: 14%;
  right: 40%;
  z-index: 1;
  width: 3.3%;
}

.hero.is-home-hero-animated .home-hero-piece-14 {
  top: 24%;
  left: 42%;
  z-index: 1;
  width: 4.5%;
}

.hero.is-home-hero-animated .home-hero-piece-15 {
  top: 15%;
  left: 36%;
  z-index: 1;
  width: 4.1%;
}

.hero.is-home-hero-animated .home-hero-piece-16 {
  top: 28%;
  left: 3%;
  z-index: 1;
  width: 6.3%;
}

.hero.is-home-hero-animated .home-hero-piece-17 {
  top: 39%;
  left: 10%;
  z-index: 1;
  width: 4.2%;
}

.hero.is-home-hero-animated .home-hero-piece-18 {
  top: 50%;
  left: 16%;
  z-index: 1;
  width: 2.4%;
}

.hero.is-home-hero-animated .home-hero-piece-19 {
  top: 56%;
  left: 11%;
  z-index: 1;
  width: 3.2%;
}

.hero.is-home-hero-animated .home-hero-piece-20 {
  top: 68%;
  left: 2%;
  z-index: 3;
  width: 3.3%;
}

.hero.is-home-hero-animated .home-hero-piece-21 {
  top: 55%;
  left: 21%;
  z-index: 1;
  width: 3%;
}

.hero.is-home-hero-animated .home-hero-piece-22 {
  top: 72%;
  left: 21%;
  z-index: 1;
  width: 9.1%;
}

.hero.is-home-hero-animated .home-hero-piece-23 {
  top: 71%;
  left: 31.5%;
  z-index: 1;
  width: 3.3%;
}

.hero.is-home-hero-animated .home-hero-piece-24 {
  top: 39%;
  left: 37%;
  z-index: 1;
  width: 7.2%;
}

.hero.is-home-hero-animated .home-hero-piece-25 {
  top: 41%;
  left: 50%;
  z-index: 1;
  width: 1.8%;
}

.hero.is-home-hero-animated .home-hero-piece-26 {
  top: 72%;
  left: 43%;
  z-index: 3;
  width: 3.9%;
}

.hero.is-home-hero-animated .home-hero-piece-27 {
  top: 72%;
  right: 36%;
  z-index: 1;
  width: 3.6%;
}

.hero.is-home-hero-animated .home-hero-piece-28 {
  top: 64%;
  right: 29%;
  z-index: 1;
  width: 3.3%;
}

.hero.is-home-hero-animated .home-hero-piece-29 {
  top: 50%;
  right: 10%;
  z-index: 1;
  width: 10.7%;
}

.hero.is-home-hero-animated .home-hero-piece-30 {
  top: 87%;
  right: 23%;
  z-index: 1;
  width: 4.5%;
}

.hero.is-home-hero-animated .home-hero-piece-31 {
  top: 58%;
  right: 6%;
  z-index: 3;
  width: 2.8%;
}

.hero.is-home-hero-animated svg.walking-path {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  z-index: 2;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.hero.is-home-hero-animated .hero-overlay {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

@media (max-width: 991px) {
  .hero.is-home-hero-animated .hero-overlay {
    padding-top: 0 !important;
  }
}

.hero.is-home-hero-animated .hero-overlay .btn, .hero.is-home-hero-animated .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero.is-home-hero-animated .hero-overlay a, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input.button, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input[type=submit], .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input.button, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input[type=submit], .hero.is-home-hero-animated .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero.is-home-hero-animated .hero-overlay .event-date-button, .hero.is-home-hero-animated .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero.is-home-hero-animated .hero-overlay .tribe-events-notices, .hero.is-home-hero-animated .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero-animated .hero-overlay input {
  width: 370px;
}

@media (max-width: 1200px) {
  .hero.is-home-hero-animated .hero-overlay .btn, .hero.is-home-hero-animated .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero.is-home-hero-animated .hero-overlay a, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input.button, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input[type=submit], .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input.button, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input[type=submit], .hero.is-home-hero-animated .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero.is-home-hero-animated .hero-overlay .event-date-button, .hero.is-home-hero-animated .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero.is-home-hero-animated .hero-overlay .tribe-events-notices, .hero.is-home-hero-animated .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero-animated .hero-overlay input {
    padding: 5px 5px 4px 5px;
    font-size: 24px;
    width: 320px;
  }
}

@media (max-width: 768px) {
  .hero.is-home-hero-animated .hero-overlay .btn, .hero.is-home-hero-animated .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero.is-home-hero-animated .hero-overlay a, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input.button, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input[type=submit], .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input.button, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input[type=submit], .hero.is-home-hero-animated .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero.is-home-hero-animated .hero-overlay .event-date-button, .hero.is-home-hero-animated .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero.is-home-hero-animated .hero-overlay .tribe-events-notices, .hero.is-home-hero-animated .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero-animated .hero-overlay input {
    display: none;
  }
}

.hero.is-home-hero-animated .hero-overlay .btn:first-of-type, .hero.is-home-hero-animated .hero-overlay .wp-content .has-button a:first-of-type, .wp-content .has-button .hero.is-home-hero-animated .hero-overlay a:first-of-type, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input.button:first-of-type, .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input.button:first-of-type, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_footer input:first-of-type[type=submit], .gform_wrapper .gform_footer .hero.is-home-hero-animated .hero-overlay input:first-of-type[type=submit], .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input.button:first-of-type, .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input.button:first-of-type, .hero.is-home-hero-animated .hero-overlay .gform_wrapper .gform_page_footer input:first-of-type[type=submit], .gform_wrapper .gform_page_footer .hero.is-home-hero-animated .hero-overlay input:first-of-type[type=submit], .hero.is-home-hero-animated .hero-overlay .tribe-events-single .event-date-display .event-date-button:first-of-type, .tribe-events-single .event-date-display .hero.is-home-hero-animated .hero-overlay .event-date-button:first-of-type, .hero.is-home-hero-animated .hero-overlay .tribe-events-single .tribe-events-notices:first-of-type, .tribe-events-single .hero.is-home-hero-animated .hero-overlay .tribe-events-notices:first-of-type, .hero.is-home-hero-animated .hero-overlay #tribe-bar-form .tribe-bar-submit input:first-of-type, #tribe-bar-form .tribe-bar-submit .hero.is-home-hero-animated .hero-overlay input:first-of-type {
  margin-right: 15px;
}

.hero.is-home-hero-animated .hero-overlay .hero-overlay-inner {
  margin-top: -80px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .hero.is-home-hero-animated .hero-overlay .hero-overlay-inner {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .hero.is-home-hero-animated .hero-overlay .hero-overlay-inner {
    margin-top: 0;
  }
}

.hero img:not(.graphic-piece) {
  display: block;
  width: 100%;
}

.hero.purple-tinted-image img, .hero.blue-tinted-image img {
  opacity: .7;
}

.hero.purple-tinted-image svg, .hero.blue-tinted-image svg {
  fill: #ffffff;
}

.hero.purple-tinted-image svg:hover, .hero.blue-tinted-image svg:hover {
  fill: #F7D000;
}

.hero .hero-overlay {
  z-index: 10;
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  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;
  padding-top: 9%;
}

.hero .hero-overlay .yellow-linked-hero-overlay a {
  color: #F7D000;
}

.hero .hero-overlay .yellow-linked-hero-overlay a:hover {
  color: #F7D000;
  text-decoration: underline;
}

.hero .hero-overlay .hero-overlay-inner {
  max-width: 85%;
}

@media (max-width: 1600px) {
  .hero .hero-overlay .hero-overlay-inner {
    max-width: 92%;
  }
}

.hero .hero-overlay h4 {
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .hero .hero-overlay h4 {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .hero .hero-overlay h4 {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .hero .hero-overlay .btn, .hero .hero-overlay .wp-content .has-button a, .wp-content .has-button .hero .hero-overlay a, .hero .hero-overlay .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero .hero-overlay input.button, .hero .hero-overlay .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero .hero-overlay input[type=submit], .hero .hero-overlay .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero .hero-overlay input.button, .hero .hero-overlay .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero .hero-overlay input[type=submit], .hero .hero-overlay .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero .hero-overlay .event-date-button, .hero .hero-overlay .tribe-events-single .tribe-events-notices, .tribe-events-single .hero .hero-overlay .tribe-events-notices, .hero .hero-overlay #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero .hero-overlay input {
    display: none;
  }
}

.hero.has-both-blobs .hero-overlay {
  padding-top: 0;
}

.hero.has-floated-back-button .hero-overlay-inner {
  max-width: 78%;
}

.hero .hero-back {
  position: absolute;
  top: 50%;
  left: 80px;
  z-index: 11;
}

@media (max-width: 1600px) {
  .hero .hero-back {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .hero .hero-back {
    top: 35px;
  }
}

@media (max-width: 500px) {
  .hero .hero-back {
    top: 25px;
  }
}

@media (max-width: 400px) {
  .hero .hero-back {
    top: 20px;
  }
}

.hero .hero-back a {
  color: #ffffff;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  text-transform: lowercase;
  text-decoration: none;
}

@media (max-width: 1600px) {
  .hero .hero-back a {
    font-size: 20px;
  }
}

.hero .hero-back a:hover {
  color: #F7D000;
}

.hero .hero-back a img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 40px;
  height: auto;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -2px;
}

@media (max-width: 1600px) {
  .hero .hero-back a img {
    width: 25px;
  }
}

.hero .hero-social {
  margin-top: 35px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .hero-social {
    display: none;
  }
}

.hero .hero-social .hero-social-items svg {
  fill: #ffffff;
}

.hero .hero-social .hero-social-items svg:hover {
  fill: #F7D000;
}

.hero-social-label {
  color: #ffffff;
  font-size: 24px;
  font-family: 'Gotham Medium', sans-serif;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  display: inline-block;
}

.hero-social-mobile {
  display: none;
  padding: 20px 20px 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-social-mobile {
    display: block;
  }
}

.hero-social-mobile .hero-social-label {
  color: #202426;
}

.hero-cta-mobile {
  display: none;
  padding: 40px 25px;
  text-align: center;
}

.hero-cta-mobile .btn, .hero-cta-mobile .wp-content .has-button a, .wp-content .has-button .hero-cta-mobile a, .hero-cta-mobile .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero-cta-mobile input.button, .hero-cta-mobile .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero-cta-mobile input[type=submit], .hero-cta-mobile .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero-cta-mobile input.button, .hero-cta-mobile .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero-cta-mobile input[type=submit], .hero-cta-mobile .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero-cta-mobile .event-date-button, .hero-cta-mobile .tribe-events-single .tribe-events-notices, .tribe-events-single .hero-cta-mobile .tribe-events-notices, .hero-cta-mobile #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero-cta-mobile input {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero-cta-mobile {
    display: block;
  }
}

.hero-buttons-mobile {
  display: none;
  padding: 20px 20px 56px;
  z-index: 15;
  position: relative;
}

@media (max-width: 768px) {
  .hero-buttons-mobile {
    display: block;
  }
}

.hero-buttons-mobile .btn, .hero-buttons-mobile .wp-content .has-button a, .wp-content .has-button .hero-buttons-mobile a, .hero-buttons-mobile .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .hero-buttons-mobile input.button, .hero-buttons-mobile .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .hero-buttons-mobile input[type=submit], .hero-buttons-mobile .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .hero-buttons-mobile input.button, .hero-buttons-mobile .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .hero-buttons-mobile input[type=submit], .hero-buttons-mobile .tribe-events-single .event-date-display .event-date-button, .tribe-events-single .event-date-display .hero-buttons-mobile .event-date-button, .hero-buttons-mobile .tribe-events-single .tribe-events-notices, .tribe-events-single .hero-buttons-mobile .tribe-events-notices, .hero-buttons-mobile #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .hero-buttons-mobile input {
  width: 100%;
  margin-bottom: 10px;
}

#site-footer {
  position: relative;
  z-index: 15;
  background: #ffffff;
}

#site-footer #site-footer-graphic-section {
  background-image: url("../images/graphics/footer-blob-desktop.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 280px;
}

@media (max-width: 1650px) {
  #site-footer #site-footer-graphic-section {
    padding-bottom: 220px;
  }
}

@media (max-width: 1400px) {
  #site-footer #site-footer-graphic-section {
    padding-bottom: 180px;
  }
}

@media (max-width: 1250px) {
  #site-footer #site-footer-graphic-section {
    background-size: cover;
  }
}

@media (max-width: 991px) {
  #site-footer #site-footer-graphic-section {
    background-image: url("../images/graphics/footer-blob-mobile.svg");
    background-size: 100% auto;
    background-color: rgba(102, 29, 114, 0.8);
    background-position: 100% 101%;
    padding-bottom: 160px;
  }
}

@media (max-width: 500px) {
  #site-footer #site-footer-graphic-section {
    padding-bottom: 145px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 400px) {
  #site-footer #site-footer-graphic-section {
    padding-bottom: 115px;
  }
}

#site-footer #footer-call-to-action {
  padding: 140px 0 120px;
  text-align: center;
}

@media (max-width: 1600px) {
  #site-footer #footer-call-to-action {
    padding: 90px 0 70px;
  }
}

@media (max-width: 991px) {
  #site-footer #footer-call-to-action {
    padding: 95px 0 140px;
  }
}

@media (max-width: 768px) {
  #site-footer #footer-call-to-action {
    padding: 90px 0 120px;
  }
}

@media (max-width: 374px) {
  #site-footer #footer-call-to-action {
    padding: 80px 0 100px;
  }
}

#site-footer #footer-call-to-action h2 {
  font-family: 'Gotham Black', sans-serif;
  font-size: 150px;
  letter-spacing: -3px;
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  #site-footer #footer-call-to-action h2 {
    font-size: 120px;
  }
}

@media (max-width: 1024px) {
  #site-footer #footer-call-to-action h2 {
    font-size: 90px;
  }
}

@media (max-width: 768px) {
  #site-footer #footer-call-to-action h2 {
    font-size: 65px;
  }
}

@media (max-width: 500px) {
  #site-footer #footer-call-to-action h2 {
    font-size: 52px;
  }
}

@media (max-width: 374px) {
  #site-footer #footer-call-to-action h2 {
    font-size: 46px;
  }
}

#site-footer #footer-call-to-action a {
  min-width: 380px;
}

@media (max-width: 991px) {
  #site-footer #footer-call-to-action a {
    min-width: 330px;
  }
}

@media (max-width: 500px) {
  #site-footer #footer-call-to-action a {
    min-width: 293px;
  }
}

@media (max-width: 374px) {
  #site-footer #footer-call-to-action a {
    min-width: 0;
    width: 100%;
  }
}

#site-footer #footer-connect {
  text-align: center;
}

#site-footer #footer-connect .social-left {
  display: inline-block;
  position: relative;
  top: 22px;
}

@media (max-width: 1200px) {
  #site-footer #footer-connect .social-left {
    top: auto;
  }
}

#site-footer #footer-connect .social-left span.social-connect-label {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 24px;
  position: relative;
  top: -15px;
  margin-right: 15px;
}

#site-footer #footer-connect .social-left span.social-connect-label a {
  color: #ffffff;
}

#site-footer #footer-connect .social-left span.social-connect-label a:hover {
  color: #F7D000;
}

@media (max-width: 1200px) {
  #site-footer #footer-connect .social-left span.social-connect-label {
    display: none;
  }
}

#site-footer #footer-connect .social-left a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}

#site-footer #footer-connect .social-left a:not(:last-of-type) {
  margin-right: 15px;
}

@media (max-width: 991px) {
  #site-footer #footer-connect .social-left a:not(:last-of-type) {
    margin-right: 12px;
  }
}

@media (max-width: 500px) {
  #site-footer #footer-connect .social-left a:not(:last-of-type) {
    margin-right: 9px;
  }
}

#site-footer #footer-connect .social-left a span {
  color: #ffffff;
  font-size: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-footer #footer-connect .social-left a span {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 500px) {
  #site-footer #footer-connect .social-left a span {
    font-size: 40px;
  }
}

@media (max-width: 374px) {
  #site-footer #footer-connect .social-left a span {
    font-size: 34px;
  }
}

#site-footer #footer-connect .social-left a:hover span {
  color: #F7D000;
}

#site-footer #footer-connect .dashed-separator {
  display: inline-block;
  margin: 0 40px;
}

@media (max-width: 1200px) {
  #site-footer #footer-connect .dashed-separator {
    display: none;
  }
}

#site-footer #footer-connect .newsletter-right {
  display: inline-block;
  position: relative;
}

@media (max-width: 1200px) {
  #site-footer #footer-connect .newsletter-right {
    display: none;
  }
}

#site-footer #footer-connect .newsletter-right input[type=text], #site-footer #footer-connect .newsletter-right input[type=email] {
  height: 50px;
  border-radius: 25px;
  padding-right: 195px;
  width: 450px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  color: #661D72;
  padding-left: 25px;
  padding-top: 3px;
}

#site-footer #footer-connect .newsletter-right input[type=text]::-webkit-input-placeholder, #site-footer #footer-connect .newsletter-right input[type=email]::-webkit-input-placeholder {
  color: #661D72;
}

#site-footer #footer-connect .newsletter-right input[type=text]::-moz-placeholder, #site-footer #footer-connect .newsletter-right input[type=email]::-moz-placeholder {
  color: #661D72;
}

#site-footer #footer-connect .newsletter-right input[type=text]:-ms-input-placeholder, #site-footer #footer-connect .newsletter-right input[type=email]:-ms-input-placeholder {
  color: #661D72;
}

#site-footer #footer-connect .newsletter-right input[type=text]:-moz-placeholder, #site-footer #footer-connect .newsletter-right input[type=email]:-moz-placeholder {
  color: #661D72;
}

#site-footer #footer-connect .newsletter-right input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  border-radius: 25px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
}

#site-footer #footer-connect .newsletter-right #mce-success-response {
  width: 400px;
  padding: 20px;
  color: white;
}

#site-footer #footer-connect .newsletter-right #mce-error-response {
  width: 400px;
  padding: 20px;
  color: white;
}

#site-footer #footer-connect .newsletter-mobile {
  display: none;
}

@media (max-width: 1200px) {
  #site-footer #footer-connect .newsletter-mobile {
    display: block;
  }
}

#site-footer #footer-connect .newsletter-mobile a {
  min-width: 330px;
}

@media (max-width: 500px) {
  #site-footer #footer-connect .newsletter-mobile a {
    min-width: 293px;
  }
}

@media (max-width: 374px) {
  #site-footer #footer-connect .newsletter-mobile a {
    min-width: 0;
    width: 100%;
  }
}

#site-footer #footer-details {
  margin-top: -20px;
  padding-bottom: 50px;
}

@media (max-width: 1200px) {
  #site-footer #footer-details {
    margin-top: 0;
    padding-top: 35px;
  }
}

@media (max-width: 991px) {
  #site-footer #footer-details {
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 90px;
  }
}

#site-footer #footer-details #footer-branding {
  width: 64%;
  float: left;
}

@media (max-width: 991px) {
  #site-footer #footer-details #footer-branding {
    width: 54%;
  }
}

@media (max-width: 768px) {
  #site-footer #footer-details #footer-branding {
    width: auto;
    float: none;
  }
}

#site-footer #footer-details #footer-branding .footer-logo {
  width: 210px;
  background: url("../images/branding/logo-temp.png") center center/contain no-repeat;
  background-size: 100% auto;
  height: 70px;
  padding: 0;
  margin-bottom: 75px;
}

@media (max-width: 768px) {
  #site-footer #footer-details #footer-branding .footer-logo {
    margin: 0 auto 40px;
  }
}

#site-footer #footer-details #footer-branding .footer-logo a {
  display: block;
}

#site-footer #footer-details #footer-branding .footer-logo img {
  display: block;
  width: 100%;
}

#site-footer #footer-details #footer-branding .branding-row-one,
#site-footer #footer-details #footer-branding .branding-row-two {
  font-size: 14px;
  padding-right: 15px;
}

@media (max-width: 768px) {
  #site-footer #footer-details #footer-branding .branding-row-one,
  #site-footer #footer-details #footer-branding .branding-row-two {
    display: none;
  }
}

#site-footer #footer-details #footer-branding .branding-row-one {
  margin-bottom: 20px;
}

#site-footer #footer-details #footer-branding .branding-row-one a {
  color: #202426;
  text-decoration: none;
}

#site-footer #footer-details #footer-branding .branding-row-one a:hover {
  text-decoration: underline;
}

@media (min-width: 1201px) {
  #site-footer #footer-details #footer-branding .branding-row-one br.only-on-tablet {
    display: none;
  }
}

#site-footer #footer-details #footer-branding .branding-row-one span.separator {
  display: inline-block;
  margin-left: 13px;
  margin-right: 13px;
}

@media (max-width: 1200px) {
  #site-footer #footer-details #footer-branding .branding-row-one span.separator:first-of-type {
    display: none;
  }
}

#site-footer #footer-details #footer-navigation {
  width: 18%;
  float: left;
}

@media (max-width: 991px) {
  #site-footer #footer-details #footer-navigation {
    width: 22%;
  }
}

@media (max-width: 768px) {
  #site-footer #footer-details #footer-navigation {
    width: 50%;
  }
}

#site-footer #footer-details #footer-location {
  width: 18%;
  float: left;
}

@media (max-width: 991px) {
  #site-footer #footer-details #footer-location {
    width: 22%;
  }
}

@media (max-width: 768px) {
  #site-footer #footer-details #footer-location {
    width: 50%;
  }
}

#site-footer #footer-details h3 {
  margin-bottom: 25px;
}

#site-footer #footer-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#site-footer #footer-details ul li {
  font-family: 'Gotham Book', sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}

#site-footer #footer-details ul li a {
  color: #202426;
}

#site-footer #footer-details ul li a.blue-link {
  color: #008DD2;
  text-decoration: underline;
}

#site-footer #footer-details ul li.location-title {
  font-family: 'Gotham Medium', sans-serif;
  color: #661D72;
}

#site-footer #footer-details #footer-disclaimer-mobile {
  display: none;
  padding-top: 60px;
  text-align: center;
  width: 100%;
  float: left;
}

@media (max-width: 768px) {
  #site-footer #footer-details #footer-disclaimer-mobile {
    display: block;
  }
}

#site-footer #footer-details #footer-disclaimer-mobile .branding-row-one,
#site-footer #footer-details #footer-disclaimer-mobile .branding-row-two,
#site-footer #footer-details #footer-disclaimer-mobile .branding-row-three {
  font-size: 14px;
}

#site-footer #footer-details #footer-disclaimer-mobile .branding-row-one {
  margin-bottom: 7px;
}

#site-footer #footer-details #footer-disclaimer-mobile .branding-row-two {
  margin-bottom: 20px;
}

#site-footer #footer-details #footer-disclaimer-mobile .branding-row-two a {
  color: #202426;
  text-decoration: none;
}

#site-footer #footer-details #footer-disclaimer-mobile .branding-row-two a:hover {
  text-decoration: underline;
}

#site-header {
  position: fixed;
  width: 1650px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #ffffff;
  z-index: 1000;
}

@media (max-width: 1650px) {
  #site-header {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  #site-header .container {
    max-width: none;
    width: 100%;
    padding-right: 45px;
  }
}

@media (max-width: 1200px) {
  #site-header .container .row {
    margin-left: 0;
    margin-right: 0;
  }
}

#site-header #site-alert {
  text-align: center;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #site-alert {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 500px) {
  #site-header #site-alert {
    text-align: left;
  }
}

#site-header #site-alert #site-alert-close {
  position: absolute;
  right: 25px;
  height: 44px;
  width: 44px;
  top: 50%;
  margin-top: -22px;
  cursor: pointer;
  padding-top: 14px;
}

@media (max-width: 1200px) {
  #site-header #site-alert #site-alert-close {
    right: 0;
  }
}

#site-header #site-alert #site-alert-close img {
  display: block;
  width: 16px;
  height: auto;
  margin: 0 auto;
}

#site-header #site-alert #site-alert-contents {
  padding: 11px 0 10px;
  width: 100%;
}

#site-header #site-alert #site-alert-contents p {
  margin: 0;
}

#site-header #site-alert #site-alert-contents strong {
  color: #F7D000;
}

#site-header #secondary-header-row {
  padding: 20px 0;
  height: 77px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #secondary-header-row {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  #site-header #secondary-header-row {
    display: none !important;
  }
}

#site-header #secondary-header-row #secondary-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item {
  display: inline-block;
  height: 20px;
  line-height: 20px;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item:not(:last-of-type) {
  margin-right: 27px;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item a {
  font-family: 'Gotham Book', sans-serif;
  font-size: 14px;
  letter-spacing: .42px;
  color: rgba(32, 36, 38, 0.7);
  text-transform: lowercase;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item a:focus {
  outline: none;
  color: #661D72 !important;
  text-decoration: underline;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search {
  padding-right: 25px;
  position: relative;
  top: 15px;
  cursor: pointer;
  width: 350px;
  height: 30px;
  overflow: hidden;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search:after {
  content: ' ';
  display: block;
  height: 20px;
  width: 1px;
  background: rgba(32, 36, 38, 0.3);
  position: absolute;
  right: 0;
  top: 0;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-toggle {
  height: 24px;
  width: 24px;
  background-image: url("../images/icons/icon-search-black.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: 5px 5px;
  opacity: .5;
  display: block;
  position: absolute;
  top: -1px;
  right: 21px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-toggle {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 250px;
  margin-right: -250px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-container {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-container::after {
  display: block;
  clear: both;
  content: "";
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-container input[type=text] {
  width: 100%;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(32, 36, 38, 0.3);
  outline: none;
  font-family: 'Gotham Book', sans-serif;
  font-size: 14px;
  letter-spacing: .42px;
  color: rgba(32, 36, 38, 0.7);
  height: 30px;
  padding-right: 70px;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search .search-container input[type=submit] {
  position: absolute;
  top: 4px;
  right: 4px;
  border: none;
  background: none;
  font-family: 'Gotham Book', sans-serif;
  font-size: 14px;
  letter-spacing: .42px;
  color: rgba(32, 36, 38, 0.7);
  padding-right: 0;
  cursor: pointer;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search.is-open .search-toggle {
  margin-right: 265px;
}

#site-header #secondary-header-row #secondary-navigation li.secondary-nav-item.secondary-nav-item-search.is-open .search-container {
  margin-right: 25px;
  opacity: 1;
}

#site-header #primary-header-row {
  position: relative;
}

@media (max-width: 991px) {
  #site-header #primary-header-row {
    height: 115px;
    background: #ffffff;
    position: relative;
  }
}

#site-header #primary-header-row #primary-dropdown-shadow-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(102, 29, 114, 0.3)), to(rgba(102, 29, 114, 0)));
  background: linear-gradient(0deg, rgba(102, 29, 114, 0.3) 0%, rgba(102, 29, 114, 0) 100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #primary-header-row #primary-dropdown-shadow-container {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  #site-header #primary-header-row #primary-dropdown-shadow-container {
    display: none;
  }
}

#site-header #primary-header-row.has-sub-menu-opened #primary-dropdown-shadow-container {
  opacity: 1;
}

#site-header #primary-header-row.has-sub-menu-opened #site-branding {
  z-index: 1 !important;
}

#site-header #primary-header-row .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  #site-header #primary-header-row .container {
    width: 100%;
    max-width: none;
  }
}

#site-header #primary-header-row #site-branding {
  width: 25%;
  float: left;
  position: relative;
  z-index: 3;
}

@media (max-width: 1200px) {
  #site-header #primary-header-row #site-branding {
    width: 22%;
  }
}

@media (max-width: 991px) {
  #site-header #primary-header-row #site-branding {
    width: 50%;
    padding-top: 25px;
  }
}

#site-header #primary-header-row #site-branding .site-title {
  width: 250px;
  background: url("../images/branding/childrens-museum-logo-splat.gif") center center/contain no-repeat;
  height: 81px;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  outline: none !important;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #primary-header-row #site-branding .site-title {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 1200px) {
  #site-header #primary-header-row #site-branding .site-title {
    width: 200px;
    height: 65px;
  }
}

#site-header #primary-header-row #site-branding .site-title img {
  display: block;
  width: 100%;
}

#site-header #primary-header-row #site-branding .site-title a {
  display: block;
  height: 81px;
  width: 100%;
  outline: none !important;
}

@media (max-width: 1200px) {
  #site-header #primary-header-row #site-branding .site-title a {
    height: 65px;
  }
}

#site-header #primary-header-row #primary-navigation {
  width: 75%;
  float: left;
  text-align: right;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  z-index: 3;
}

@media (max-width: 1200px) {
  #site-header #primary-header-row #primary-navigation {
    width: 78%;
  }
}

@media (max-width: 991px) {
  #site-header #primary-header-row #primary-navigation {
    display: none !important;
  }
}

#site-header #primary-header-row #primary-navigation > ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

#site-header #primary-header-row #primary-navigation > ul > li {
  display: inline-block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-bottom: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #primary-header-row #primary-navigation > ul > li {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary) {
  display: block;
  padding: 15px 20px 11px;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 24px;
  text-transform: lowercase;
  color: #661D72;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

@media (max-width: 1200px) {
  #site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary) {
    padding: 15px 15px 11px;
  }
}

@media (max-width: 1005px) {
  #site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary) {
    padding: 15px 10px 11px;
  }
}

#site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary):after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: #F7D000;
  border-radius: 3px;
  height: 5px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary):after {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary):hover:after, #site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary):focus:after {
  opacity: 1;
}

#site-header #primary-header-row #primary-navigation > ul > li > a:not(.btn-primary):focus {
  outline: none;
}

#site-header #primary-header-row #primary-navigation > ul > li.sub-menu-opened {
  background: #ffffff;
}

#site-header #primary-header-row #primary-navigation > ul > li.sub-menu-opened a:not(.btn-primary):after {
  opacity: 1;
}

#site-header #primary-header-row .primary-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 30;
  padding: 90px 0;
}

#site-header #primary-header-row .primary-dropdown-menu .container {
  max-width: 1200px;
}

#site-header #primary-header-row .primary-dropdown-menu .primary-dropdown-close-button {
  position: absolute;
  height: 50px;
  width: 50px;
}

#site-header #primary-header-row .primary-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

#site-header #primary-header-row .primary-dropdown-menu ul li {
  display: block;
}

#site-header #primary-header-row .primary-dropdown-menu ul li a {
  font-size: 14px;
  padding: 8px 0;
  color: #202426;
  display: block;
  outline: none;
}

#site-header #primary-header-row .primary-dropdown-menu .detailed-link {
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
  outline: none;
}

#site-header #primary-header-row .primary-dropdown-menu .detailed-link .link-main {
  color: #C6347C;
  margin-bottom: 10px;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #primary-header-row .primary-dropdown-menu .detailed-link .link-main {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #primary-header-row .primary-dropdown-menu .detailed-link p {
  color: #202426;
  font-size: 16px;
  line-height: 1.45;
}

#site-header #primary-header-row .primary-dropdown-menu .detailed-link:hover .link-main, #site-header #primary-header-row .primary-dropdown-menu .detailed-link:focus .link-main {
  color: #661D72;
}

#site-header #primary-header-row .primary-dropdown-menu.dropdown-graphic-set-one .dropdown-graphic-one {
  position: absolute;
  top: 35px;
  left: 43px;
  height: 40px;
  width: 40px;
  background: rgba(102, 29, 114, 0.5);
  border-radius: 50%;
}

#site-header #primary-header-row .primary-dropdown-menu.dropdown-graphic-set-one .dropdown-graphic-two {
  position: absolute;
  top: 79px;
  left: 76px;
  height: 85px;
  width: 85px;
  background: rgba(0, 181, 183, 0.7);
  border-radius: 50%;
}

#site-header #primary-header-row .primary-dropdown-menu.dropdown-graphic-set-two .dropdown-graphic-one {
  position: absolute;
  top: 42px;
  left: 30px;
  height: 40px;
  width: 40px;
  background: rgba(6, 169, 78, 0.7);
  border-radius: 50%;
}

#site-header #primary-header-row .primary-dropdown-menu.dropdown-graphic-set-two .dropdown-graphic-two {
  position: absolute;
  bottom: 55px;
  left: 75px;
  height: 85px;
  width: 85px;
  background: rgba(198, 52, 124, 0.5);
  border-radius: 50%;
}

#site-header #primary-header-row .primary-dropdown-menu.dropdown-graphic-set-two .dropdown-graphic-three {
  position: absolute;
  bottom: 35px;
  left: 165px;
  height: 40px;
  width: 40px;
  background: rgba(0, 141, 210, 0.7);
  border-radius: 50%;
}

#site-header #primary-header-row #mobile-toggle {
  position: absolute;
  top: 22px;
  right: 11px;
  height: 70px;
  width: 70px;
  padding: 10px;
  z-index: 10;
}

@media (min-width: 992px) {
  #site-header #primary-header-row #mobile-toggle {
    display: none !important;
  }
}

#site-header #primary-header-row #mobile-toggle .mobile-toggle-inner {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #F7D000;
  position: relative;
}

#site-header #primary-header-row #mobile-toggle .mobile-toggle-inner .bar {
  height: 3px;
  width: 24px;
  border-radius: 5px;
  background: #661D72;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  left: 13px;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #primary-header-row #mobile-toggle .mobile-toggle-inner .bar {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #primary-header-row #mobile-toggle .mobile-toggle-inner .bar:nth-of-type(1) {
  top: 15px;
}

#site-header #primary-header-row #mobile-toggle .mobile-toggle-inner .bar:nth-of-type(2) {
  top: 23px;
}

#site-header #primary-header-row #mobile-toggle .mobile-toggle-inner .bar:nth-of-type(3) {
  top: 31px;
}

#site-header #primary-header-row #mobile-toggle.menu-is-open .bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 9px;
}

#site-header #primary-header-row #mobile-toggle.menu-is-open .bar:nth-of-type(2) {
  opacity: 0;
}

#site-header #primary-header-row #mobile-toggle.menu-is-open .bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -7px;
}

#site-header #mobile-menu {
  position: absolute;
  top: 115px;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  padding: 0 20px 50px;
  overflow: scroll;
}

@media (min-width: 992px) {
  #site-header #mobile-menu {
    display: none !important;
  }
}

#site-header #mobile-menu .mobile-primary-navigation > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(32, 36, 38, 0.1);
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li {
  list-style: none;
  display: block;
  border-bottom: 1px solid rgba(32, 36, 38, 0.1);
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li > a {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 24px;
  text-transform: lowercase;
  color: #661D72;
  text-decoration: none;
  padding: 14px 0 12px;
  display: block;
  position: relative;
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li > a:after {
  content: '';
  background-image: url("../images/icons/icon-dropdown-arrow.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 11px;
  height: 19px;
  position: absolute;
  top: 20px;
  right: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #site-header #mobile-menu .mobile-primary-navigation > ul > li > a:after {
    -webkit-transition: none;
    transition: none;
  }
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li.show > a:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu {
  position: static;
  float: none;
  padding: 0;
  margin: 0;
  border: none;
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu::after {
  display: block;
  clear: both;
  content: "";
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu .dropdown-left {
  width: 50%;
  float: left;
  padding-right: 10px;
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu .dropdown-right {
  width: 50%;
  float: left;
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu ul li {
  display: block;
}

#site-header #mobile-menu .mobile-primary-navigation > ul > li .dropdown-menu ul li a {
  font-size: 14px;
  padding: 8px 0;
  color: #202426;
  display: block;
}

#site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a {
  color: #661D72;
  text-decoration: none;
}

#site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .heading-med-22, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .wp-content h5, .wp-content #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a h5, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .validation_error, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .gform_wrapper #mce-responses .response, .gform_wrapper #mce-responses #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .response, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .tribe-events-single .age-and-cost, .tribe-events-single #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .age-and-cost, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .tribe-events-single .calendar-buttons .dropdown-menu a, .tribe-events-single .calendar-buttons .dropdown-menu #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a a, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .standard-dropdown .dropdown-toggle-custom, .standard-dropdown #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .dropdown-toggle-custom, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .standard-dropdown .dropdown-menu a, .standard-dropdown .dropdown-menu #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a a, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .tribe-bar-filters-inner .keyword-search-toggle, .tribe-bar-filters-inner #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .keyword-search-toggle, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .tribe-bar-filters-inner .tribe-bar-date-filter input, .tribe-bar-filters-inner .tribe-bar-date-filter #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a input, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .events-nav-previous,
#site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .events-nav-next, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .blog-category-nav #blog-category-nav-list li, .blog-category-nav #blog-category-nav-list #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a li, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .blog-category-nav-mobile .dropdown .dropdown-toggle-custom, .blog-category-nav-mobile .dropdown #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .dropdown-toggle-custom, #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a .blog-category-nav-mobile .dropdown .dropdown-menu a, .blog-category-nav-mobile .dropdown .dropdown-menu #site-header #mobile-menu .mobile-primary-navigation .detailed-dropdown a a {
  color: #C6347C;
}

#site-header #mobile-menu .mobile-search {
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(32, 36, 38, 0.1);
}

#site-header #mobile-menu .mobile-search input {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
}

#site-header #mobile-menu .mobile-search form {
  position: relative;
  display: block;
  width: 100%;
}

#site-header #mobile-menu .mobile-search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#site-header #mobile-menu .mobile-search button:hover {
  background: #F7D000;
}

#site-header #mobile-menu .mobile-search button span {
  background-image: url("../images/icons/icon-search-black.svg");
  height: 20px;
  width: 20px;
  display: block;
  background-size: 100% auto;
}

#site-header #mobile-menu .mobile-secondary-navigation {
  padding-top: 40px;
}

#site-header #mobile-menu .mobile-secondary-navigation .heading-small {
  text-align: center;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-one {
  margin-bottom: 40px;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-one ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-one ul::after {
  display: block;
  clear: both;
  content: "";
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-one ul li {
  display: block;
  width: 33.33333%;
  float: left;
  text-align: center;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-one ul li a {
  display: inline-block;
  font-size: 14px;
  color: #202426;
  text-decoration: none;
  padding: 5px 0;
  text-transform: lowercase;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-two {
  text-align: center;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-two .separator {
  width: 1px;
  height: 20px;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  background: rgba(32, 36, 38, 0.3);
  position: relative;
  top: 6px;
}

#site-header #mobile-menu .mobile-secondary-navigation .secondary-row-two a {
  font-size: 14px;
  color: #008DD2;
  text-decoration: underline;
  font-family: 'Gotham Medium', sans-serif;
  text-transform: lowercase;
}

@media (min-width: 992px) {
  #site-header.locked #secondary-header-row {
    margin-top: -77px;
  }
  #site-header.locked #primary-header-row #site-branding {
    padding-top: 10px;
  }
  #site-header.locked #primary-header-row #site-branding .site-title {
    height: 60px;
    margin-bottom: 12px;
  }
}

.blog-listings.with-bottom-margin {
  margin-bottom: 100px;
}

.blog-listings .blog-list-item br {
  display: none;
}

.blog-listings .blog-list-item .blog-list-item-inner .image-container {
  margin-bottom: 25px;
}

.blog-listings .blog-list-item .blog-list-item-inner .blog-list-item-category {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  color: #C6347C;
  line-height: 28px;
  margin-bottom: 6px;
}

.blog-listings .blog-list-item .blog-list-item-inner a {
  color: #202426;
  text-decoration: none;
}

.blog-listings .blog-list-item .blog-list-item-inner .body-micro {
  margin-top: 12px;
}

.blog-listings .blog-list-item.full-width-list-item .image-container {
  margin-bottom: 0;
}

.blog-listings .blog-list-item.full-width-list-item .blog-list-item-text-contents {
  padding: 30px 22px;
}

.blog-listings.with-spacing-after-listings .blog-list-item {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .blog-listings.blog-listings-home-desktop {
    display: none;
  }
}

.blog-listings.blog-listings-home-mobile {
  display: none;
}

@media (max-width: 991px) {
  .blog-listings.blog-listings-home-mobile {
    display: block;
  }
}

@media (max-width: 991px) {
  .blog-listings.blog-listings-desktop {
    display: none;
  }
}

.blog-listings.blog-listings-mobile {
  display: none;
}

@media (max-width: 991px) {
  .blog-listings.blog-listings-mobile {
    display: block;
  }
}

.featured-blog-section.bottom-margin-if-last:last-of-type {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .featured-blog-section.bottom-margin-if-last:last-of-type {
    margin-bottom: 30px;
  }
}

.blog-post-navigation {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .blog-post-navigation {
    margin-bottom: 30px;
  }
}

.blog-post-navigation h2 {
  display: none;
}

.event-carousel {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .event-carousel {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 576px) {
  .event-carousel {
    margin-left: 0;
    margin-right: 0;
  }
}

.event-carousel .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-carousel .slick-track .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.event-carousel .carousel-item {
  text-align: center;
  padding: 0;
  margin: 0;
  border: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.event-carousel .carousel-item .carousel-inner {
  outline: none !important;
}

.event-carousel .carousel-item .carousel-inner:hover {
  text-decoration: none;
}

.event-carousel .carousel-item .card-body {
  padding-top: 40px;
  padding-bottom: 0;
}

.event-carousel .carousel-item:nth-child(odd):hover {
  background: rgba(6, 169, 78, 0.8);
}

.event-carousel .carousel-item:nth-child(even):hover {
  background: rgba(6, 169, 78, 0.8);
}

.event-carousel .carousel-item .dow-month {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.event-carousel .carousel-item .day-of-month {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 100px;
  line-height: .95;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 16px;
}

.event-carousel .carousel-item .dashed-line-graphic {
  height: 4px;
  width: 115px;
  background: url("../images/graphics/dashes-small.svg") center center/contain no-repeat;
  margin: 0 auto 25px;
}

.event-carousel .carousel-item .card-footer {
  border: none;
  background: transparent;
  padding-bottom: 40px;
}

.event-carousel .carousel-item .event-title {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .event-carousel .carousel-item .event-title {
    -webkit-transition: none;
    transition: none;
  }
}

.event-carousel .carousel-item .event-time {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
}

@media (max-width: 991px) {
  .split-carousel {
    margin-bottom: 0 !important;
  }
}

.split-carousel .carousel-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.split-carousel .carousel-item::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991px) {
  .split-carousel .carousel-item {
    display: block;
  }
}

.split-carousel .carousel-item .carousel-inner-left {
  width: 50%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 991px) {
  .split-carousel .carousel-item .carousel-inner-left {
    width: 100%;
    float: none;
    display: block;
  }
}

.split-carousel .carousel-item .carousel-inner-left img {
  display: block;
  width: 100%;
  height: auto;
}

.split-carousel .carousel-item .carousel-inner-right {
  width: 50%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #7c4985;
  position: relative;
}

.split-carousel .carousel-item .carousel-inner-right.teal-background {
  background: rgba(0, 181, 183, 0.8);
}

.split-carousel .carousel-item .carousel-inner-right.teal-background:after {
  background-image: url("../images/graphics/blob-carousel-teal.svg");
}

.split-carousel .carousel-item .carousel-inner-right.teal-background .btn-secondary {
  color: #00B5B7;
}

@media (max-width: 991px) {
  .split-carousel .carousel-item .carousel-inner-right {
    width: 100%;
    float: none;
    display: block;
  }
}

.split-carousel .carousel-item .carousel-inner-right:before {
  content: '';
  height: 4px;
  width: 114px;
  background: url("../images/graphics/dashes-small.svg") center center/contain no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: -57px;
  z-index: 2;
}

@media (max-width: 991px) {
  .split-carousel .carousel-item .carousel-inner-right:before {
    display: none;
  }
}

.split-carousel .carousel-item .carousel-inner-right.no-dashes:before {
  content: none;
  display: none !important;
}

.split-carousel .carousel-item .carousel-inner-right:after {
  content: '';
  background-image: url("../images/graphics/blob-carousel-purple.svg");
  background-size: cover;
  background-position: center bottom;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.split-carousel .carousel-item .carousel-inner-right .inner-right-contents {
  z-index: 3;
  -ms-flex-item-align: center;
      align-self: center;
  width: 65%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 991px) {
  .split-carousel .carousel-item .carousel-inner-right .inner-right-contents {
    width: 100%;
    max-width: 600px;
    padding: 30px 22px;
  }
}

.split-carousel .carousel-item .carousel-inner-right .inner-right-contents h3 {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .split-carousel .carousel-item .carousel-inner-right .inner-right-contents h3 {
    margin-bottom: 15px;
  }
}

.split-carousel .carousel-item .carousel-inner-right .inner-right-contents p {
  margin-bottom: 27px;
}

@media (max-width: 991px) {
  .split-carousel .carousel-item .carousel-inner-right .inner-right-contents p {
    margin-bottom: 22px;
  }
}

.split-carousel.carousel-with-yellow-arrows .slick-arrow {
  top: 300px;
}

@media (max-width: 991px) {
  .split-carousel.carousel-with-yellow-arrows .slick-arrow {
    top: 200px;
  }
}

@media (max-width: 991px) {
  .blog-listings-home-mobile .slick-arrow {
    top: 30%;
  }
}

.carousel-with-yellow-arrows .slick-arrow {
  z-index: 10;
  height: 51px;
  width: 50px;
}

.carousel-with-yellow-arrows .slick-arrow:before {
  display: none;
}

.carousel-with-yellow-arrows .slick-prev {
  left: 20px;
  background-image: url("../images/icons/icon-slideshow-left-active.svg");
}

.carousel-with-yellow-arrows .slick-prev.slick-disabled {
  background-image: url("../images/icons/icon-slideshow-left-inactive.svg");
}

.carousel-with-yellow-arrows .slick-next {
  right: 20px;
  background-image: url("../images/icons/icon-slideshow-right-active.svg");
}

.carousel-with-yellow-arrows .slick-next.slick-disabled {
  background-image: url("../images/icons/icon-slideshow-right-inactive.svg");
}

.carousel-with-dots .slick-dots {
  height: 20px;
  bottom: -30px;
}

.carousel-with-dots .slick-dots li {
  text-align: center;
}

.carousel-with-dots .slick-dots li button {
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background: rgba(32, 36, 38, 0.2);
  display: inline-block;
}

.carousel-with-dots .slick-dots li button:before {
  content: '';
  display: none;
}

.carousel-with-dots .slick-dots li.slick-active button {
  background: #C6347C;
  padding: 0;
}

.business-hours-ball {
  border-radius: 50%;
  max-width: 375px;
  max-height: 375px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

@media (max-width: 768px) {
  .business-hours-ball {
    border-radius: 0;
    max-width: none;
    max-height: none;
    padding: 60px 0;
  }
}

@media (max-width: 500px) {
  .business-hours-ball {
    padding: 50px 0;
  }
}

.business-hours-ball .main-label {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Gotham Bold', sans-serif;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: .02em;
  color: #ffffff;
  margin-bottom: 12px;
}

@media (max-width: 1600px) {
  .business-hours-ball .main-label {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 9px;
  }
}

@media (max-width: 1024px) {
  .business-hours-ball .main-label {
    font-size: 30px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  .business-hours-ball .main-label {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}

.business-hours-ball .pill-selection {
  position: relative;
  width: 210px;
  height: 30px;
  margin: 0 auto 20px;
}

@media (max-width: 1600px) {
  .business-hours-ball .pill-selection {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .business-hours-ball .pill-selection {
    margin-bottom: 28px;
  }
}

.business-hours-ball .pill-selection .pill-under-labels {
  background: rgba(33, 2, 38, 0.7);
  -webkit-box-shadow: inset 0px -1px 3px rgba(255, 255, 255, 0.5);
          box-shadow: inset 0px -1px 3px rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  height: 30px;
}

.business-hours-ball .pill-selection .pill-under-labels::after {
  display: block;
  clear: both;
  content: "";
}

.business-hours-ball .pill-selection .pill-under-labels .pill-left,
.business-hours-ball .pill-selection .pill-under-labels .pill-right {
  width: 50%;
  float: left;
  text-align: center;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  letter-spacing: .14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 7px;
  cursor: pointer;
}

.business-hours-ball .pill-selection .pill-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 115px;
  height: 30px;
  border-radius: 15px;
  background: #F7D000;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  letter-spacing: .14px;
  text-transform: uppercase;
  color: #550462;
  padding-top: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .business-hours-ball .pill-selection .pill-indicator {
    -webkit-transition: none;
    transition: none;
  }
}

.business-hours-ball .pill-selection .pill-indicator.set-to-cafe {
  margin-left: 95px;
}

.business-hours-ball .hours-display {
  font-family: 'Gotham Bold', sans-serif;
  font-size: 30px;
  color: #F7D000;
  margin-bottom: 18px;
}

@media (max-width: 1600px) {
  .business-hours-ball .hours-display {
    margin-bottom: 14px;
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .business-hours-ball .hours-display {
    font-size: 23px;
    line-height: 23px;
    margin-bottom: 18px;
  }
}

.business-hours-ball .more-information .heading-small {
  color: rgba(255, 255, 255, 0.7);
}

.business-hours-ball .more-information ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours-ball .more-information ul li {
  display: inline-block;
}

.business-hours-ball .more-information ul li:not(:last-of-type) {
  margin-right: 15px;
}

.business-hours-ball .more-information ul li a {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  letter-spacing: .42px;
  text-transform: lowercase;
}

.testimonials {
  padding: 145px 0 135px;
  position: relative;
  z-index: 15;
}

@media (max-width: 1200px) {
  .testimonials {
    padding: 120px 0 110px;
  }
}

@media (max-width: 991px) {
  .testimonials {
    padding: 90px 0 80px;
  }
}

.testimonials .testimonial-graphic-dot-one {
  height: 175px;
  width: 175px;
  border-radius: 50%;
  position: absolute;
  top: 50px;
  left: 35px;
  background: rgba(198, 52, 124, 0.7);
}

@media (max-width: 991px) {
  .testimonials .testimonial-graphic-dot-one {
    height: 120px;
    width: 120px;
    top: 30px;
    left: 15px;
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-graphic-dot-one {
    width: 90px;
    height: 90px;
    left: -30px;
    top: 10px;
  }
}

.testimonials .testimonial-graphic-dot-two {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  position: absolute;
  top: 73px;
  left: 240px;
  background: rgba(102, 29, 114, 0.7);
}

@media (max-width: 991px) {
  .testimonials .testimonial-graphic-dot-two {
    top: 45px;
    left: 150px;
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-graphic-dot-two {
    left: 70px;
    top: 20px;
  }
}

.testimonials .testimonials-heading {
  text-align: center;
  margin-bottom: 75px;
}

@media (max-width: 991px) {
  .testimonials .testimonials-heading {
    padding-left: 60px;
    padding-right: 60px;
    margin-bottom: 40px;
  }
}

.testimonials .card-text {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 25px;
  line-height: 32px;
  color: #00B5B7;
}

.testimonials .card-deck .card {
  background: transparent;
  border: none;
}

.testimonials .card-deck .card .card-footer {
  background: transparent;
  border: none;
}

@media (max-width: 991px) {
  .testimonials .testimonial-listings {
    display: none;
  }
}

.testimonials .testimonial-item {
  padding: 0;
}

.testimonials .testimonial-item .card {
  height: 100%;
}

.testimonials .testimonial-listings-mobile {
  display: none;
  text-align: center;
}

@media (max-width: 991px) {
  .testimonials .testimonial-listings-mobile {
    display: block;
  }
}

.testimonials .testimonial-listings-mobile .testimonial-list-item {
  padding: 0 90px;
}

.testimonials .testimonial-listings-mobile .testimonial-list-item .card-text {
  margin-bottom: 30px;
}

.content-block {
  padding: 110px 0 140px;
  position: relative;
  overflow: hidden;
  z-index: 11;
  /*
    Dots
     */
}

@media (max-width: 1200px) {
  .content-block {
    padding: 90px 0 110px;
  }
}

@media (max-width: 991px) {
  .content-block {
    padding: 40px 0;
  }
}

.content-block.first-content-block-after-intro {
  padding: 50px 0 140px;
}

@media (max-width: 1200px) {
  .content-block.first-content-block-after-intro {
    padding: 40px 0 110px;
  }
}

@media (max-width: 991px) {
  .content-block.first-content-block-after-intro {
    padding: 30px 0 40px;
  }
}

.content-block.padding-above-style-medium {
  padding-top: 40px;
}

@media (max-width: 991px) {
  .content-block.padding-above-style-medium {
    padding-top: 25px;
  }
}

.content-block.padding-below-style-medium {
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .content-block.padding-below-style-medium {
    padding-bottom: 35px;
  }
}

.content-block.padding-above-style-small {
  padding-top: 10px;
}

.content-block.padding-below-style-small {
  padding-bottom: 10px;
}

.content-block.padding-above-style-none {
  padding-top: 0;
}

.content-block.padding-below-style-none {
  padding-bottom: 0;
}

.content-block h2 {
  margin-bottom: 25px;
  margin-top: 55px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  margin-bottom: 20px;
  margin-top: 50px;
}

.content-block h3:first-child {
  margin-top: 0;
}

.content-block .graphic-dot {
  position: absolute;
  border-radius: 50%;
}

.content-block .pink-purple-top-right--pink-dot {
  top: 80px;
  right: 78px;
  width: 135px;
  height: 135px;
}

@media (max-width: 768px) {
  .content-block .pink-purple-top-right--pink-dot {
    display: none;
  }
}

.content-block .pink-purple-top-right--purple-dot {
  top: 50px;
  right: 213px;
  width: 44px;
  height: 44px;
}

@media (max-width: 768px) {
  .content-block .pink-purple-top-right--purple-dot {
    display: none;
  }
}

.content-block .blue-light-purple-top-right--blue-dot {
  top: 80px;
  right: -35px;
  width: 125px;
  height: 125px;
}

@media (max-width: 768px) {
  .content-block .blue-light-purple-top-right--blue-dot {
    display: none;
  }
}

.content-block .blue-light-purple-top-right--light-purple-dot {
  top: 170px;
  right: 105px;
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .content-block .blue-light-purple-top-right--light-purple-dot {
    display: none;
  }
}

.content-block .teal-top-left--teal-dot {
  top: 47px;
  left: 75px;
  height: 105px;
  width: 105px;
}

@media (max-width: 768px) {
  .content-block .teal-top-left--teal-dot {
    display: none;
  }
}

.content-block .purple-top-left--purple-dot {
  top: 100px;
  left: -15px;
  height: 100px;
  width: 100px;
}

@media (max-width: 768px) {
  .content-block .purple-top-left--purple-dot {
    display: none;
  }
}

.content-block .purple-bottom-left--purple-dot {
  bottom: 200px;
  left: 128px;
  height: 125px;
  width: 125px;
}

@media (max-width: 768px) {
  .content-block .purple-bottom-left--purple-dot {
    display: none;
  }
}

.content-block .light-purple-bottom-right--light-purple-dot {
  bottom: 67px;
  right: 64px;
  height: 40px;
  width: 40px;
}

@media (max-width: 768px) {
  .content-block .light-purple-bottom-right--light-purple-dot {
    display: none;
  }
}

.content-block .teal-pink-bottom-right--teal-dot {
  bottom: 310px;
  right: 165px;
  height: 50px;
  width: 50px;
}

@media (max-width: 768px) {
  .content-block .teal-pink-bottom-right--teal-dot {
    display: none;
  }
}

.content-block .teal-pink-bottom-right--pink-dot {
  bottom: 226px;
  right: 56px;
  height: 105px;
  width: 105px;
}

@media (max-width: 768px) {
  .content-block .teal-pink-bottom-right--pink-dot {
    display: none;
  }
}

.content-block .teal-large-dot-top-left {
  top: 30px;
  left: 95px;
  width: 135px;
  height: 135px;
}

@media (max-width: 768px) {
  .content-block .teal-large-dot-top-left {
    display: none;
  }
}

.callout-split-box {
  padding: 180px 0 190px;
}

@media (max-width: 991px) {
  .callout-split-box {
    padding: 130px 0 140px;
  }
}

@media (max-width: 768px) {
  .callout-split-box {
    padding: 90px 0;
  }
}

@media (max-width: 575px) {
  .callout-split-box {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .callout-split-box .col-lg-6:first-of-type {
    margin-bottom: 25px;
  }
}

.callout-split-box p {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  line-height: 210%;
}

@media (max-width: 768px) {
  .callout-split-box p {
    font-size: 18px;
  }
}

.small-callout-box {
  padding: 140px 25px;
}

@media (max-width: 991px) {
  .small-callout-box {
    padding: 110px 25px;
  }
}

@media (max-width: 768px) {
  .small-callout-box {
    padding: 70px 25px;
  }
}

.small-callout-box .callout-contents {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.small-callout-box .callout-contents p:last-of-type {
  margin-bottom: 0;
}

.color-block-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-count: 2;
          column-count: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.color-block-grid::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991px) {
  .color-block-grid {
    display: block;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.color-block-grid .color-grid-item {
  width: 50%;
  padding-top: 90px;
  padding-bottom: 80px;
  padding-left: 45px;
  padding-right: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.color-block-grid .color-grid-item.is-full-width {
  width: 100%;
}

@media (max-width: 991px) {
  .color-block-grid .color-grid-item {
    width: 100%;
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding-top: 45px;
    padding-bottom: 50px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.color-block-grid .color-grid-item h3 {
  margin-bottom: 15px;
}

.color-block-grid .color-grid-item .color-grid-item-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-bottom: 60px;
}

.color-block-grid .color-grid-item .color-grid-item-contents p:last-of-type {
  margin-bottom: 0;
}

.color-block-grid .color-grid-item.color-grid-item-purple .btn-secondary {
  color: #661D72;
}

.color-block-grid .color-grid-item.color-grid-item-pink .btn-secondary {
  color: #C6347C;
}

.color-block-grid .color-grid-item.color-grid-item-green .btn-secondary {
  color: #06A94E;
}

.color-block-grid .color-grid-item.color-grid-item-blue .btn-secondary {
  color: #008DD2;
}

.color-block-grid .color-grid-item.color-grid-item-teal .btn-secondary {
  color: #00B5B7;
}

.color-block-grid .color-grid-item .btn-secondary:hover {
  color: #661D72;
}

.hours-tabs {
  padding: 100px 0;
  z-index: 11;
}

.hours-tabs::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 768px) {
  .hours-tabs {
    padding: 50px 0 40px;
  }
}

.hours-tabs .hours-left {
  width: 50%;
  float: left;
  padding-right: 40px;
}

@media (max-width: 1200px) {
  .hours-tabs .hours-left {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .hours-tabs .hours-left {
    width: auto;
    float: none;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .hours-tabs .hours-left {
    margin-bottom: 40px;
  }
}

.hours-tabs .hours-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-tabs .hours-left ul li {
  margin-bottom: 20px;
  opacity: .7;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

@media screen and (prefers-reduced-motion: reduce) {
  .hours-tabs .hours-left ul li {
    -webkit-transition: none;
    transition: none;
  }
}

.hours-tabs .hours-left ul li h2:before {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .hours-tabs .hours-left ul li h2:before {
    -webkit-transition: none;
    transition: none;
  }
}

.hours-tabs .hours-left ul li.active, .hours-tabs .hours-left ul li:hover {
  opacity: 1;
}

.hours-tabs .hours-left ul li.active h2:before, .hours-tabs .hours-left ul li:hover h2:before {
  opacity: 1;
}

.hours-tabs .hours-left .hours-disclaimer {
  margin-top: 80px;
  max-width: 440px;
  font-family: 'Gotham Medium', sans-serif;
  line-height: 156%;
}

@media (max-width: 991px) {
  .hours-tabs .hours-left .hours-disclaimer {
    display: none;
  }
}

.hours-tabs .hours-right {
  width: 50%;
  float: left;
}

@media (max-width: 1200px) {
  .hours-tabs .hours-right {
    width: 55%;
  }
}

@media (max-width: 991px) {
  .hours-tabs .hours-right {
    width: auto;
    float: none;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hours-tabs .hours-right {
    margin-bottom: 20px;
  }
}

.hours-tabs .hours-right ul.hours-items {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .hours-tabs .hours-right ul.hours-items {
    -webkit-transition: none;
    transition: none;
  }
}

.hours-tabs .hours-right ul.hours-items.hiding {
  opacity: 0;
}

.hours-tabs .hours-right ul.hours-items li {
  display: block;
  margin-bottom: 15px;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 30px;
  letter-spacing: -.03px;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hours-tabs .hours-right ul.hours-items li {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .hours-tabs .hours-right ul.hours-items li {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .hours-tabs .hours-right ul.hours-items li {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 374px) {
  .hours-tabs .hours-right ul.hours-items li {
    font-size: 14px;
  }
}

.hours-tabs .hours-right ul.hours-items li span.hours-label-left {
  display: inline-block;
  width: 180px;
}

@media (max-width: 1200px) {
  .hours-tabs .hours-right ul.hours-items li span.hours-label-left {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .hours-tabs .hours-right ul.hours-items li span.hours-label-left {
    width: 120px;
  }
}

@media (max-width: 500px) {
  .hours-tabs .hours-right ul.hours-items li span.hours-label-left {
    width: 85px;
  }
}

@media (max-width: 374px) {
  .hours-tabs .hours-right ul.hours-items li span.hours-label-left {
    width: 80px;
  }
}

.hours-tabs .hours-right ul.hours-items li span.divider {
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 374px) {
  .hours-tabs .hours-right ul.hours-items li span.divider {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .hours-tabs .hours-right ul.hours-items li span.divider img {
    width: 100px;
    height: auto;
  }
}

@media (max-width: 500px) {
  .hours-tabs .hours-right ul.hours-items li span.divider img {
    width: 80px;
  }
}

@media (max-width: 374px) {
  .hours-tabs .hours-right ul.hours-items li span.divider img {
    width: 70px;
  }
}

.hours-tabs .hours-disclaimer-mobile {
  display: none;
  font-family: 'Gotham Medium', sans-serif;
  line-height: 156%;
  padding-top: 30px;
}

@media (max-width: 991px) {
  .hours-tabs .hours-disclaimer-mobile {
    display: block;
  }
}

.frequently-asked-questions {
  color: #ffffff;
}

.frequently-asked-questions .faq-group-container {
  padding: 95px 0 90px;
}

.frequently-asked-questions .faq-group-container::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 1200px) {
  .frequently-asked-questions .faq-group-container {
    padding: 75px 0 70px;
  }
}

@media (max-width: 991px) {
  .frequently-asked-questions .faq-group-container {
    padding: 45px 0 35px;
  }
}

@media (max-width: 768px) {
  .frequently-asked-questions .faq-group-container {
    padding: 25px 0 15px;
  }
}

.frequently-asked-questions .faq-group-container .faq-group-label {
  width: 50%;
  float: left;
  padding-left: 140px;
  padding-right: 30px;
  margin-bottom: 0;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .frequently-asked-questions .faq-group-container .faq-group-label {
    padding-left: 90px;
  }
}

@media (max-width: 768px) {
  .frequently-asked-questions .faq-group-container .faq-group-label {
    width: auto;
    float: none;
    padding-left: 40px;
  }
}

@media (max-width: 575px) {
  .frequently-asked-questions .faq-group-container .faq-group-label {
    padding-left: 22px;
  }
}

.frequently-asked-questions .faq-group-container .faq-group-label h2:before {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .frequently-asked-questions .faq-group-container .faq-group-label h2:before {
    -webkit-transition: none;
    transition: none;
  }
}

.frequently-asked-questions .faq-group-container .faq-group-label.active h2:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 991px) {
  .frequently-asked-questions .faq-group-container .faq-group-label.active h2:before {
    margin-top: -6px;
  }
}

@media (max-width: 768px) {
  .frequently-asked-questions .faq-group-container .faq-group-label.active h2:before {
    margin-top: -8px;
    margin-left: -6px;
  }
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers {
  width: 50%;
  float: left;
  padding-right: 30px;
  display: none;
}

@media (max-width: 768px) {
  .frequently-asked-questions .faq-group-container .faq-group-questions-answers {
    width: auto;
    float: none;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px;
  }
}

@media (max-width: 575px) {
  .frequently-asked-questions .faq-group-container .faq-group-questions-answers {
    padding-left: 12px;
  }
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group {
  padding-bottom: 35px;
  padding-left: 11px;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item {
  padding: 2px 10px;
  border-radius: 5px;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  line-height: 150%;
  display: inline-block;
  margin-left: -10px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item {
    -webkit-transition: none;
    transition: none;
  }
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item.active {
  background: white;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item.question-item-active-purple.active {
  color: #661D72;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item.question-item-active-blue.active {
  color: #008DD2;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item.question-item-active-green.active {
  color: #06A94E;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item.question-item-active-pink.active {
  color: #C6347C;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .question-item.question-item-active-teal.active {
  color: #00B5B7;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .answer-item {
  display: none;
  padding-top: 15px;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 16px;
  line-height: 160%;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .answer-item a {
  color: #ffffff;
  text-decoration: underline;
}

.frequently-asked-questions .faq-group-container .faq-group-questions-answers .question-answer-group .answer-item a:hover {
  color: #eeeff0;
}

#tribe-events-pg-template, .tribe-events-pg-template {
  max-width: none;
  padding: 0;
}

.tribe-events-content, .tribe-events-content ol, .tribe-events-content p, .tribe-events-content ul {
  font-family: "Gotham Book", sans-serif !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.tribe-common .tribe-common-b3, .tribe-common .tribe-common-h7, .tribe-common .tribe-common-h8, .tribe-events .tribe-events-calendar-month__calendar-event-datetime {
  font-family: "Gotham Book", sans-serif !important;
}

.tribe-events-series-relationship-marker, .tribe-events-series-relationship-single-marker {
  display: none !important;
}

.tribe-events-l-container {
  width: 100% !important;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100% !important;
  padding-top: 20px !important;
}

.tribe-events-l-container .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}

.tribe-events .tribe-events-calendar-list-nav {
  border-top: none;
}

.single-tribe_events .tribe-events-single-event-description a {
  color: #008DD2 !important;
}

/**
Event Detail Page
 */
.tribe-events-single .event-date-display {
  position: relative;
  z-index: 10;
  height: 45px;
  margin-top: -22px;
  bottom: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .tribe-events-single .event-date-display {
    height: 33px;
    margin-top: -16px;
  }
}

.tribe-events-single .event-date-display.event-date-display-large {
  height: 60px;
  margin-top: -30px;
}

@media (max-width: 768px) {
  .tribe-events-single .event-date-display.event-date-display-large {
    height: 33px;
    margin-top: -16px;
  }
}

.tribe-events-single .event-date-display .event-date-button {
  background: #661D72;
  color: #ffffff;
  cursor: default !important;
  text-transform: none;
}

.tribe-events-single .event-date-display .event-date-button:hover, .tribe-events-single .event-date-display .event-date-button:focus, .tribe-events-single .event-date-display .event-date-button:active, .tribe-events-single .event-date-display .event-date-button.active {
  background: #661D72 !important;
  color: #ffffff !important;
}

.tribe-events-single .event-hero .events-back {
  position: absolute;
  top: 50%;
  left: 80px;
  z-index: 10;
}

.tribe-events-single .event-hero .events-back a {
  color: #ffffff;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  text-transform: lowercase;
}

.tribe-events-single .event-hero .events-back a img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 40px;
  height: auto;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.tribe-events-single .event-main-content-block {
  padding-top: 60px;
}

.tribe-events-single .event-main-content-block .event-dot-purple-top-right {
  position: absolute;
  top: 70px;
  right: 215px;
  height: 44px;
  width: 44px;
}

@media (max-width: 1200px) {
  .tribe-events-single .event-main-content-block .event-dot-purple-top-right {
    height: 35px;
    width: 35px;
    top: 40px;
    right: 120px;
  }
}

@media (max-width: 991px) {
  .tribe-events-single .event-main-content-block .event-dot-purple-top-right {
    height: 30px;
    width: 30px;
    top: 10px;
    right: 30px;
  }
}

.tribe-events-single .event-main-content-block .event-dot-pink-top-right {
  position: absolute;
  top: 80px;
  right: 80px;
  height: 135px;
  width: 135px;
}

@media (max-width: 1200px) {
  .tribe-events-single .event-main-content-block .event-dot-pink-top-right {
    height: 100px;
    width: 100px;
    top: 45px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .tribe-events-single .event-main-content-block .event-dot-pink-top-right {
    height: 70px;
    width: 70px;
    top: 15px;
    right: -45px;
  }
}

.tribe-events-single .event-main-content-block .event-dot-green-bottom-left {
  position: absolute;
  bottom: 85px;
  left: 75px;
  height: 70px;
  width: 70px;
}

@media (max-width: 1200px) {
  .tribe-events-single .event-main-content-block .event-dot-green-bottom-left {
    height: 50px;
    width: 50px;
    bottom: 55px;
    left: 35px;
  }
}

@media (max-width: 991px) {
  .tribe-events-single .event-main-content-block .event-dot-green-bottom-left {
    height: 30px;
    width: 30px;
    bottom: 0;
    left: 40%;
    margin-left: -15px;
  }
}

.tribe-events-single .event-header {
  text-align: center;
}

.tribe-events-single .event-header .event-time {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 30px;
  color: #C6347C;
}

.tribe-events-single .tribe-events-notices {
  background: #00B5B7 !important;
  color: #ffffff !important;
  text-shadow: none;
  text-align: center;
  text-transform: none !important;
  cursor: initial !important;
  margin: 0 auto 20px !important;
}

.tribe-events-single .tribe-events-notices:hover, .tribe-events-single .tribe-events-notices:active, .tribe-events-single .tribe-events-notices:focus {
  background: #00B5B7;
  color: #ffffff;
}

.tribe-events-single .age-and-cost {
  margin-top: 15px;
  color: #661D72;
}

.tribe-events-single .age-and-cost span:last-of-type .divider {
  display: none !important;
}

.tribe-events-single .event-image-container {
  margin-top: 30px;
  margin-bottom: 20px;
}

.tribe-events-single .event-image-container .event-image {
  display: block;
  width: 100%;
}

.tribe-events-single .events-nav-previous,
.tribe-events-single .events-nav-next {
  text-transform: lowercase;
}

.tribe-events-single .events-nav-previous a,
.tribe-events-single .events-nav-next a {
  color: rgba(32, 36, 38, 0.3);
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .tribe-events-single .events-nav-previous a,
  .tribe-events-single .events-nav-next a {
    -webkit-transition: none;
    transition: none;
  }
}

.tribe-events-single .events-nav-previous svg,
.tribe-events-single .events-nav-next svg {
  width: 40px;
  position: relative;
  top: 10px;
}

.tribe-events-single .events-nav-previous svg path,
.tribe-events-single .events-nav-next svg path {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  stroke: rgba(32, 36, 38, 0.3);
}

@media screen and (prefers-reduced-motion: reduce) {
  .tribe-events-single .events-nav-previous svg path,
  .tribe-events-single .events-nav-next svg path {
    -webkit-transition: none;
    transition: none;
  }
}

.tribe-events-single .events-nav-previous:hover a,
.tribe-events-single .events-nav-next:hover a {
  color: #661D72;
}

.tribe-events-single .events-nav-previous:hover a svg path,
.tribe-events-single .events-nav-next:hover a svg path {
  stroke: #661D72;
}

.tribe-events-single .events-nav-previous.events-nav-desktop,
.tribe-events-single .events-nav-next.events-nav-desktop {
  position: absolute;
  top: 400px;
}

@media (max-width: 991px) {
  .tribe-events-single .events-nav-previous.events-nav-desktop,
  .tribe-events-single .events-nav-next.events-nav-desktop {
    display: none;
  }
}

.tribe-events-single .events-nav-previous {
  left: 80px;
}

@media (max-width: 1200px) {
  .tribe-events-single .events-nav-previous {
    left: 20px;
  }
}

.tribe-events-single .events-nav-previous svg {
  margin-right: 5px;
}

.tribe-events-single .events-nav-next {
  right: 80px;
}

@media (max-width: 1200px) {
  .tribe-events-single .events-nav-next {
    right: 20px;
  }
}

.tribe-events-single .events-nav-next svg {
  margin-left: 5px;
}

.tribe-events-single .events-navigation-mobile {
  display: none;
}

.tribe-events-single .events-navigation-mobile::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991px) {
  .tribe-events-single .events-navigation-mobile {
    display: block;
  }
}

.tribe-events-single .events-navigation-mobile .events-nav-previous {
  width: 50%;
  float: left;
}

.tribe-events-single .events-navigation-mobile .events-nav-next {
  width: 50%;
  float: right;
  text-align: right;
}

.tribe-events-single .calendar-buttons {
  margin-top: 45px;
}

@media (max-width: 991px) {
  .tribe-events-single .calendar-buttons {
    display: block;
  }
}

.tribe-events-single .calendar-buttons .btn-primary, .tribe-events-single .calendar-buttons .wp-content .has-button a, .wp-content .has-button .tribe-events-single .calendar-buttons a, .tribe-events-single .calendar-buttons .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer .tribe-events-single .calendar-buttons input.button, .tribe-events-single .calendar-buttons .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer .tribe-events-single .calendar-buttons input[type=submit], .tribe-events-single .calendar-buttons .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer .tribe-events-single .calendar-buttons input.button, .tribe-events-single .calendar-buttons .gform_wrapper .gform_page_footer input[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .calendar-buttons input[type=submit], .tribe-events-single .calendar-buttons .event-date-display .event-date-button, .tribe-events-single .event-date-display .calendar-buttons .event-date-button, .tribe-events-single .calendar-buttons .tribe-events-notices, .tribe-events-single .calendar-buttons #tribe-bar-form .tribe-bar-submit input, #tribe-bar-form .tribe-bar-submit .tribe-events-single .calendar-buttons input {
  margin-right: 30px;
}

.tribe-events-single .calendar-buttons .btn.color-purple:hover, .tribe-events-single .calendar-buttons .wp-content .has-button a.color-purple:hover, .wp-content .has-button .tribe-events-single .calendar-buttons a.color-purple:hover, .tribe-events-single .calendar-buttons .gform_wrapper .gform_footer input.color-purple.button:hover, .gform_wrapper .gform_footer .tribe-events-single .calendar-buttons input.color-purple.button:hover, .tribe-events-single .calendar-buttons .gform_wrapper .gform_footer input.color-purple:hover[type=submit], .gform_wrapper .gform_footer .tribe-events-single .calendar-buttons input.color-purple:hover[type=submit], .tribe-events-single .calendar-buttons .gform_wrapper .gform_page_footer input.color-purple.button:hover, .gform_wrapper .gform_page_footer .tribe-events-single .calendar-buttons input.color-purple.button:hover, .tribe-events-single .calendar-buttons .gform_wrapper .gform_page_footer input.color-purple:hover[type=submit], .gform_wrapper .gform_page_footer .tribe-events-single .calendar-buttons input.color-purple:hover[type=submit], .tribe-events-single .calendar-buttons .event-date-display .color-purple.event-date-button:hover, .tribe-events-single .event-date-display .calendar-buttons .color-purple.event-date-button:hover, .tribe-events-single .calendar-buttons .color-purple.tribe-events-notices:hover, .tribe-events-single .calendar-buttons #tribe-bar-form .tribe-bar-submit input.color-purple:hover, #tribe-bar-form .tribe-bar-submit .tribe-events-single .calendar-buttons input.color-purple:hover {
  color: #008DD2;
}

.tribe-events-single .calendar-buttons .dropdown-menu {
  background: #008DD2;
  border: none;
}

.tribe-events-single .calendar-buttons .dropdown-menu a {
  color: #ffffff;
}

.tribe-events-single .calendar-buttons .dropdown-menu a:hover {
  color: #F7D000;
}

.tribe-events-single .cancellation-disclaimer {
  margin-top: 60px;
}

@media (max-width: 991px) {
  .tribe-events-single .cancellation-disclaimer {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

#tribe-bar-form {
  background: #ffffff;
  margin-bottom: 60px;
}

@media screen and (max-width: 992px) {
  #tribe-bar-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 80px;
  }
}

#tribe-bar-form #tribe-bar-views .tribe-bar-views-inner {
  background: transparent;
  padding: 50px 0 0 38px;
}

@media (max-width: 991px) {
  #tribe-bar-form #tribe-bar-views .tribe-bar-views-inner {
    padding-left: 25px;
    padding-top: 30px;
  }
}

#tribe-bar-form .age-search .dropdown-toggle-custom:before {
  content: ' ';
  display: inline-block;
  margin-right: 2px;
  background: url("../images/icons/icon-age-indicator-pink.svg");
  width: 24px;
  height: 20px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
}

#tribe-bar-form .age-search .dropdown-menu {
  right: 0;
  left: auto;
}

#tribe-bar-form #tribe-bar-filters {
  float: right;
  width: 100%;
  padding-right: 25px;
}

@media (max-width: 991px) {
  #tribe-bar-form #tribe-bar-filters {
    float: none;
    width: auto;
    padding-top: 15px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

#tribe-bar-form .tribe-bar-submit {
  display: none;
}

@media (max-width: 991px) {
  #tribe-bar-form .tribe-bar-submit {
    display: block;
    width: 40% !important;
    padding: 25px 0 0 !important;
    margin-left: 0 !important;
    float: none;
  }
}

@media (max-width: 768px) {
  #tribe-bar-form .tribe-bar-submit {
    width: 100% !important;
  }
}

#tribe-bar-form .tribe-bar-search-filter {
  padding: 0;
}

@media (max-width: 991px) {
  #tribe-bar-form .tribe-bar-search-filter {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    margin-top: 5px;
    margin-left: 35px;
  }
}

#tribe-bar-form .tribe-bar-date-filter {
  padding: 0;
  margin-right: 40px;
}

@media screen and (max-width: 500px) {
  #tribe-bar-form .tribe-bar-date-filter {
    font-size: 0.9em;
  }
}

.standard-dropdown {
  position: relative;
  display: inline-block;
}

.standard-dropdown .dropdown-toggle-custom {
  color: #661D72;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .standard-dropdown .dropdown-toggle-custom {
    font-size: 22px;
  }
}

.standard-dropdown .dropdown-toggle-custom:after {
  content: ' ';
  position: absolute;
  top: 7px;
  right: -20px;
  margin-left: 5px;
  background: url("../images/icons/icon-dropdown-arrow.svg");
  height: 15px;
  width: 10px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.standard-dropdown .dropdown-menu {
  background: #008DD2;
  border: none;
}

.standard-dropdown .dropdown-menu a {
  color: #ffffff;
}

.standard-dropdown .dropdown-menu a:hover {
  color: #F7D000;
}

.standard-dropdown .dropdown-menu a.active {
  background: #F7D000;
  color: #008DD2;
}

.standard-dropdown .dropdown-menu a.active:hover {
  color: #661D72;
}

.event-item-row {
  margin-bottom: 50px !important;
}

.event-item-row::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991px) {
  .event-item-row {
    margin-bottom: 40px;
  }
}

.event-item-row .event-item-left {
  width: 35%;
  float: left;
  padding-right: 50px;
  text-align: right;
}

@media (max-width: 991px) {
  .event-item-row .event-item-left {
    width: auto;
    float: none;
    text-align: center;
    padding-right: 25px;
    padding-left: 25px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .event-item-row .event-item-left.empty-on-mobile {
    display: none;
  }
}

.event-item-row .event-item-right {
  width: 20%;
  float: left;
  position: relative;
}

@media (max-width: 991px) {
  .event-item-row .event-item-right {
    width: 300px;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.event-item-row .event-item-right .tribe-events-event-image {
  width: 100%;
  float: none;
  margin: 0;
}

.event-item-row .event-item-right a {
  display: block;
  width: 100%;
}

.event-item-row .event-item-right img {
  display: block;
  width: 100%;
  height: auto;
}

.event-item-row .event-item-right .event-item-details {
  position: absolute;
  top: 45%;
  left: 121%;
  width: 400px;
}

@media (max-width: 1400px) {
  .event-item-row .event-item-right .event-item-details {
    top: 42%;
    left: 125%;
  }
}

@media (max-width: 830px) {
  .event-item-row .event-item-right .event-item-details {
    position: static;
    display: block;
    top: auto;
    left: auto;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
}

.event-item-row .event-item-right .event-item-details:before {
  content: ' ';
  display: block;
  position: absolute;
  top: 12px;
  left: -50px;
  width: 40px;
  height: 4px;
  background: url("../images/graphics/dashes-event-list-item-divider.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .event-item-row .event-item-right .event-item-details:before {
    display: none;
  }
}

.event-item-row .event-item-right .event-item-details .heading-med-22, .event-item-row .event-item-right .event-item-details .wp-content h5, .wp-content .event-item-row .event-item-right .event-item-details h5, .event-item-row .event-item-right .event-item-details .validation_error, .event-item-row .event-item-right .event-item-details .gform_wrapper #mce-responses .response, .gform_wrapper #mce-responses .event-item-row .event-item-right .event-item-details .response, .event-item-row .event-item-right .event-item-details .tribe-events-single .age-and-cost, .tribe-events-single .event-item-row .event-item-right .event-item-details .age-and-cost, .event-item-row .event-item-right .event-item-details .tribe-events-single .calendar-buttons .dropdown-menu a, .tribe-events-single .calendar-buttons .dropdown-menu .event-item-row .event-item-right .event-item-details a, .event-item-row .event-item-right .event-item-details .standard-dropdown .dropdown-toggle-custom, .standard-dropdown .event-item-row .event-item-right .event-item-details .dropdown-toggle-custom, .event-item-row .event-item-right .event-item-details .standard-dropdown .dropdown-menu a, .standard-dropdown .dropdown-menu .event-item-row .event-item-right .event-item-details a, .event-item-row .event-item-right .event-item-details .tribe-bar-filters-inner .keyword-search-toggle, .tribe-bar-filters-inner .event-item-row .event-item-right .event-item-details .keyword-search-toggle, .event-item-row .event-item-right .event-item-details .tribe-bar-filters-inner .tribe-bar-date-filter input, .tribe-bar-filters-inner .tribe-bar-date-filter .event-item-row .event-item-right .event-item-details input, .event-item-row .event-item-right .event-item-details .events-nav-previous,
.event-item-row .event-item-right .event-item-details .events-nav-next, .event-item-row .event-item-right .event-item-details .blog-category-nav #blog-category-nav-list li, .blog-category-nav #blog-category-nav-list .event-item-row .event-item-right .event-item-details li, .event-item-row .event-item-right .event-item-details .blog-category-nav-mobile .dropdown .dropdown-toggle-custom, .blog-category-nav-mobile .dropdown .event-item-row .event-item-right .event-item-details .dropdown-toggle-custom, .event-item-row .event-item-right .event-item-details .blog-category-nav-mobile .dropdown .dropdown-menu a, .blog-category-nav-mobile .dropdown .dropdown-menu .event-item-row .event-item-right .event-item-details a {
  margin-bottom: 0;
}

.event-item-row .event-item-right .event-item-details .body-micro {
  color: rgba(32, 36, 38, 0.7);
}

.type-tribe_events {
  border-bottom: none !important;
  padding: 0 !important;
}

.tribe-events-event-meta {
  margin-bottom: 0;
}

.tribe-events-day > .tribe-events-notices, .tribe-events-month > .tribe-events-notices, .tribe-events-list > .tribe-events-notices {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 25px 100px;
  text-align: center;
  background: transparent;
  border: none;
  font-size: 3.2rem !important;
  color: #202426;
}

.tribe-events-day > .tribe-events-notices strong, .tribe-events-month > .tribe-events-notices strong, .tribe-events-list > .tribe-events-notices strong {
  color: #661D72;
}

.tribe-bar-filters-inner {
  text-align: right;
  padding-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .tribe-bar-filters-inner {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media screen and (min-width: 500px) and (max-width: 991px) {
  .tribe-bar-filters-inner {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 499px) {
  .tribe-bar-filters-inner {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.tribe-bar-filters-inner .keyword-search-toggle {
  color: #661D72;
  display: inline-block;
  cursor: pointer;
}

@media (max-width: 991px) {
  .tribe-bar-filters-inner .keyword-search-toggle {
    display: none;
  }
}

.tribe-bar-filters-inner .keyword-search-contents {
  display: inline-block;
  padding-right: 8px;
  width: 200px;
  overflow: hidden;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  position: relative;
  top: 6px;
}

.tribe-bar-filters-inner .keyword-search-contents.hiding {
  width: 0;
}

@media (max-width: 991px) {
  .tribe-bar-filters-inner .keyword-search-contents {
    width: auto !important;
    opacity: 1 !important;
  }
}

@media (max-width: 420px) {
  .tribe-bar-filters-inner .keyword-search-contents {
    width: 150px !important;
  }
}

.tribe-bar-filters-inner .keyword-search-contents input[type=text] {
  border: none;
  border-bottom: 2px solid #661D72 !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.tribe-bar-filters-inner .keyword-search-contents input[type=text]:-webkit-autofill, .tribe-bar-filters-inner .keyword-search-contents input[type=text]:-webkit-autofill:hover, .tribe-bar-filters-inner .keyword-search-contents input[type=text]:-webkit-autofill:focus {
  background: #ffffff !important;
  height: auto !important;
}

.tribe-bar-filters-inner .keyword-search-contents input[type=text]:focus {
  outline: none !important;
}

.tribe-bar-filters-inner .tribe-bar-search-filter {
  display: inline-block;
  width: auto;
  float: none;
  position: relative;
}

.tribe-bar-filters-inner .tribe-bar-search-filter:before {
  position: absolute;
  top: 50%;
  left: -15px;
  background: url("../images/icons/icon-search-pink.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  content: '';
  height: 20px;
  width: 20px;
  -webkit-transition: 0.3;
  transition: 0.3;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .tribe-bar-filters-inner .tribe-bar-search-filter:before {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .tribe-bar-filters-inner .tribe-bar-search-filter:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 991px) {
  .tribe-bar-filters-inner .tribe-bar-search-filter:before {
    margin-left: -15px;
  }
}

.tribe-bar-filters-inner .tribe-bar-search-filter.open:before {
  margin-left: -15px;
}

.tribe-bar-filters-inner .tribe-bar-date-filter {
  display: inline-block;
  float: none;
  position: relative;
  padding-left: 30px !important;
  margin-right: 20px !important;
}

.tribe-bar-filters-inner .tribe-bar-date-filter:before {
  position: absolute;
  top: 8px;
  left: 0;
  background: url("../images/icons/icon-calendar-pink.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  content: '';
  height: 21px;
  width: 20px;
  -webkit-transition: 0.3;
  transition: 0.3;
}

@media screen and (prefers-reduced-motion: reduce) {
  .tribe-bar-filters-inner .tribe-bar-date-filter:before {
    -webkit-transition: none;
    transition: none;
  }
}

.tribe-bar-filters-inner .tribe-bar-date-filter:after {
  content: '';
  position: absolute;
  background: url(../images/icons/icon-dropdown-arrow.svg);
  height: 15px;
  width: 9px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 10px;
  right: 6px;
  z-index: 1;
  cursor: pointer;
}

.tribe-bar-filters-inner .tribe-bar-date-filter input {
  color: #661D72;
  border: none !important;
  outline: none;
  font-style: normal !important;
  font-size: 22px !important;
  z-index: 2;
  cursor: pointer;
}

.tribe-bar-filters-inner .tribe-bar-date-filter input:focus {
  outline: none !important;
}

.tribe-bar-filters-inner .tribe-bar-date-filter input::-webkit-input-placeholder {
  color: #661D72;
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 22px !important;
  font-style: normal !important;
}

.tribe-bar-filters-inner .tribe-bar-date-filter input::-moz-placeholder {
  color: #661D72;
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 22px !important;
  font-style: normal !important;
}

.tribe-bar-filters-inner .tribe-bar-date-filter input:-ms-input-placeholder {
  color: #661D72;
  font-family: 'Gotham Medium', sans-serif !important;
  font-size: 22px !important;
  font-style: normal !important;
}

.tribe-bar-filters-inner .tribe-bar-date-filter input:-moz-placeholder {
  color: #661D72;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  font-style: normal !important;
}

.tribe-bar-filters-inner .age-search {
  display: inline-block;
}

@media (max-width: 768px) {
  #tribe-bar-collapse-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #tribe-bar-form.tribe-bar-collapse .tribe-bar-filters {
    position: relative !important;
    left: auto !important;
    overflow: visible !important;
    display: block !important;
    height: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: #ffffff !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-events-bar--border {
  border: none;
}

#tribe-bar-form.tribe-bar-collapse .tribe-bar-filters-inner > div {
  width: auto;
}

.tribe-events-nav-next a,
.tribe-events-nav-previous a {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  color: #661D72 !important;
  background: transparent !important;
  padding: 0 !important;
}

@media (max-width: 350px) {
  .tribe-events-nav-next a,
  .tribe-events-nav-previous a {
    font-size: 18px;
  }
}

.tribe-events-nav-next a span,
.tribe-events-nav-previous a span {
  display: none !important;
}

.tribe-events-nav-next a:before, .tribe-events-nav-next a:after,
.tribe-events-nav-previous a:before,
.tribe-events-nav-previous a:after {
  content: '';
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 27px;
  width: 40px;
  display: inline-block;
  position: relative;
  top: 5px;
}

.tribe-events-nav-next {
  padding-right: 80px;
}

@media (max-width: 991px) {
  .tribe-events-nav-next {
    padding-right: 30px;
  }
}

@media (max-width: 350px) {
  .tribe-events-nav-next {
    padding-right: 15px;
  }
}

.tribe-events-nav-next a:before {
  display: none !important;
}

.tribe-events-nav-next a:after {
  background-image: url("../images/icons/icon-arrow-purple.svg");
  margin-left: 10px;
}

.tribe-events-nav-previous {
  padding-left: 80px;
}

@media (max-width: 991px) {
  .tribe-events-nav-previous {
    padding-left: 30px;
  }
}

@media (max-width: 350px) {
  .tribe-events-nav-previous {
    padding-left: 15px;
  }
}

.tribe-events-nav-previous a:after {
  display: none !important;
}

.tribe-events-nav-previous a:before {
  background-image: url("../images/icons/icon-arrow-purple.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 10px;
}

#tribe-bar-form.tribe-bar-mini *:not(input) {
  font-size: 22px;
}

#tribe-bar-form.tribe-bar-full.tribe-events-bar--has-filters #tribe-bar-views, #tribe-bar-form.tribe-bar-mini.tribe-events-bar--has-filters #tribe-bar-views {
  width: 20% !important;
}

@media (max-width: 991px) {
  #tribe-bar-form.tribe-bar-full.tribe-events-bar--has-filters #tribe-bar-views, #tribe-bar-form.tribe-bar-mini.tribe-events-bar--has-filters #tribe-bar-views {
    width: 100% !important;
    float: none;
  }
}

#tribe-events-bar {
  width: 100%;
}

#tribe-bar-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calendar-buttons button {
  background: transparent;
}

.events-nav-previous,
.events-nav-next {
  text-transform: lowercase;
}

.events-nav-previous a,
.events-nav-next a {
  color: rgba(32, 36, 38, 0.3) !important;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .events-nav-previous a,
  .events-nav-next a {
    -webkit-transition: none;
    transition: none;
  }
}

.events-nav-previous a:before, .events-nav-previous a:after,
.events-nav-next a:before,
.events-nav-next a:after {
  display: none !important;
}

.events-nav-previous svg,
.events-nav-next svg {
  width: 40px;
  position: relative;
  top: 10px;
}

.events-nav-previous svg path,
.events-nav-next svg path {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  stroke: rgba(32, 36, 38, 0.3) !important;
}

@media screen and (prefers-reduced-motion: reduce) {
  .events-nav-previous svg path,
  .events-nav-next svg path {
    -webkit-transition: none;
    transition: none;
  }
}

.events-nav-previous:hover a,
.events-nav-next:hover a {
  color: #661D72 !important;
}

.events-nav-previous:hover a svg path,
.events-nav-next:hover a svg path {
  stroke: #661D72 !important;
}

.tribe-events-c-top-bar__datepicker-desktop, .tribe-events-c-search__button {
  font-family: "Gotham Medium", sans-serif !important;
  font-size: 22px !important;
  line-height: 28px !important;
  font-weight: 400 !important;
  color: #661D72 !important;
  background-color: transparent !important;
}

@media screen and (max-width: 992px) {
  .tribe-events .datepicker {
    z-index: 99 !important;
  }
}

.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
  margin-right: 20px;
}

@media screen and (min-width: 500px) and (max-width: 992px) {
  .tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.tribe-bar-filters-inner .keyword-search-contents input[type=text] {
  padding: 5px;
}

.tribe-events .tribe-events-c-events-bar__views {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media screen and (max-width: 992px) {
  .tribe-events .tribe-events-c-events-bar__views {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 500px) and (max-width: 992px) {
  .tribe-events .tribe-events-c-events-bar__views {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 499px) {
  .tribe-events .tribe-events-c-events-bar__views {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media screen and (min-width: 500px) and (max-width: 992px) {
  .tribe-events .tribe-events-header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 499px) {
  .tribe-events .tribe-events-header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 25px;
  }
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__datepicker-button-icon-svg, .tribe-events .tribe-events-c-top-bar__datepicker-button-icon-svg {
  height: 0px;
  width: 0px;
  margin-right: 15px;
}

.tribe-events.tribe-common--breakpoint-medium .datepicker {
  left: 0px !important;
}

@media screen and (max-width: 992px) {
  .tribe-events .tribe-events-c-events-bar__search-container {
    position: relative;
  }
}

.tribe-events-sub-nav {
  padding: 0px 60px !important;
}

@media screen and (max-width: 992px) {
  .tribe-events-c-events-bar__search-button {
    display: none !important;
  }
}

@media screen and (max-width: 992px) {
  .tribe-events-c-events-bar__search-container {
    display: block !important;
    padding: 0px !important;
  }
}

@media screen and (max-width: 992px) {
  #tribe-bar-form .tribe-bar-search-filter {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 991px) {
  .tribe-bar-filters-inner .keyword-search-toggle {
    display: block;
    position: absolute;
    background-color: #661D72 !important;
    color: #fff !important;
  }
}

@media screen and (max-width: 500px) {
  .tribe-bar-filters-inner .keyword-search-toggle {
    min-width: 280px !important;
  }
}

@media screen and (max-width: 782px) {
  .tribe-bar-filters-inner .keyword-search-toggle {
    bottom: -150px;
  }
}

@media screen and (min-width: 783px) and (max-width: 992px) {
  .tribe-bar-filters-inner .keyword-search-toggle {
    bottom: 55px;
  }
}

.tribe-events:root {
  --tec-color-accent-primary: yellow;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .tribe-events .tribe-events-header--has-event-search .tribe-events-c-top-bar__datepicker-container {
    max-width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .tribe-events .tribe-events-header--has-event-search .tribe-events-c-top-bar__datepicker-container {
    max-width: 300px;
  }
}

.month-view.tribe-bar-date-filter:before {
  top: 4px;
}

.month-view.tribe-bar-date-filter:after {
  top: 7px;
}

.tribe-events .tribe-events-calendar-month__events {
  padding: 0px 15px 15px;
}

.datepicker-shorten .tribe-events-c-top-bar__datepicker-container {
  max-width: 229px !important;
}

.tribe-events-notices li {
  font-size: 2rem !important;
}

.tribe-events {
  --tec-color-accent-primary: #008DD2!important;
  --tec-color-link-accent: #661D72!important;
}

.tribe-events-content:root {
  --tec-font-family-sans-serif:'Gotham Book', sans-serif!important;
}

.tribe-events .tribe-events-calendar-month__day-cell--selected, .tribe-events .tribe-events-calendar-month__day-cell--selected:focus, .tribe-events .tribe-events-calendar-month__day-cell--selected:hover {
  background: #eee !important !important;
}

.modal.video-modal {
  z-index: 1050;
}

.modal.video-modal .modal-dialog {
  max-width: 1000px;
}

.modal.video-modal .modal-content {
  position: relative;
  background: transparent;
  border: none;
  padding-top: 50px;
}

.modal.video-modal .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1 !important;
  color: #ffffff !important;
}

@media (max-width: 1000px) {
  .modal.video-modal .modal-content .close {
    right: 10px;
  }
}

.modal.video-modal .modal-content .modal-body {
  padding: 0;
  background: transparent;
}

.modal.video-modal .modal-content .modal-body figure {
  position: relative;
  padding-bottom: 56.56%;
}

.modal.video-modal .modal-content .modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.quote {
  padding: 115px 0;
  position: relative;
  z-index: 15;
}

@media (max-width: 991px) {
  .quote {
    padding: 0;
  }
}

.quote:before {
  content: '';
  background-image: url("../images/graphics/blob-quote-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.quote.bg-green-80:before {
  background-image: url("../images/graphics/blob-green.svg");
}

.quote .quote-inner-contents {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .quote .quote-inner-contents {
    max-width: 800px;
  }
}

@media (max-width: 991px) {
  .quote .quote-inner-contents {
    text-align: center;
    padding: 60px 22px;
  }
}

.quote .quote-inner-contents .qoute-contents {
  font-family: 'Gotham Medium', sans-serif;
  font-size: 50px;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-top: 15px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .quote .quote-inner-contents .qoute-contents {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .quote .quote-inner-contents .qoute-contents {
    font-size: 30px;
  }
}

.quote .quote-inner-contents .qoute-contents:before {
  content: '"';
  position: absolute;
  top: 0;
  left: -29px;
}

@media (max-width: 991px) {
  .quote .quote-inner-contents .qoute-contents:before {
    display: none !important;
  }
}

.quote .quote-inner-contents .mobile-first-quote {
  display: none;
}

@media (max-width: 991px) {
  .quote .quote-inner-contents .mobile-first-quote {
    display: inline;
  }
}

.quote .quote-inner-contents.has-pre-label .qoute-contents:before {
  top: 33px;
}

.quote .quote-inner-contents .quote-author {
  position: relative;
}

.quote .quote-inner-contents .quote-author:before {
  content: " ";
  background: url("../images/icons/icon-arrow-yellow.svg") no-repeat;
  background-size: 100% auto;
  height: 28px;
  width: 40px;
  position: absolute;
  top: 7px;
  left: -50px;
}

@media (max-width: 991px) {
  .quote .quote-inner-contents .quote-author:before {
    display: none;
  }
}

.blog-intro-block {
  margin-top: 90px;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  .blog-intro-block {
    margin-top: 75px;
    margin-bottom: 45px;
  }
}

@media (max-width: 991px) {
  .blog-intro-block {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .blog-intro-block {
    margin-top: 40px;
    margin-bottom: 35px;
  }
}

.blog-intro-block h2 {
  margin-bottom: 20px;
}

.blog-intro-block h2:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .call-to-action .container, .call-to-action .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .call-to-action .row {
    margin-left: 0;
    margin-right: 0;
  }
}

.call-to-action .call-to-action-contents {
  padding: 30px 25px 35px;
  text-align: center;
  margin-bottom: 20px;
}

.team-block {
  margin-bottom: 50px;
}

.team-block .row {
  margin-left: -10px;
  margin-right: -10px;
}

.team-block .team-member-item {
  margin-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.team-block .team-member-item .team-member-image {
  position: relative;
}

.team-block .team-member-item .team-member-image .team-member-links {
  position: absolute;
  top: 17px;
  right: 16px;
  z-index: 5;
  width: 30px;
}

.team-block .team-member-item .team-member-image .team-member-links a {
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-size: 25px;
  height: 30px;
  margin-bottom: 4px;
}

.team-block .team-member-item .team-member-image.has-set-image .team-member-links a {
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.team-block .team-member-item .team-member-image img {
  display: block;
  width: 100%;
}

.team-block .team-member-item .team-member-image .team-card {
  padding-bottom: 91.5%;
  position: relative;
  width: 100%;
}

@media (min-width: 769px) {
  .team-block .team-member-item .team-member-image .team-card:hover .card-front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
  .team-block .team-member-item .team-member-image .team-card:hover .card-back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}

@media (max-width: 768px) {
  .team-block .team-member-item .team-member-image .team-card.image-flipped .card-front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
  .team-block .team-member-item .team-member-image .team-card.image-flipped .card-back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}

.team-block .team-member-item .team-member-image .team-card .card-front, .team-block .team-member-item .team-member-image .team-card .card-back {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (prefers-reduced-motion: reduce) {
  .team-block .team-member-item .team-member-image .team-card .card-front, .team-block .team-member-item .team-member-image .team-card .card-back {
    -webkit-transition: none;
    transition: none;
  }
}

.team-block .team-member-item .team-member-image .team-card .card-back {
  overflow: hidden;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.team-block .team-member-item .team-member-image .team-card .card-back img {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.team-block .team-member-item .team-member-name {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Views - styles specific to templates */
#path-graphic {
  position: absolute;
  top: 1000px;
  left: 0;
  z-index: 10;
  overflow: hidden;
  width: 100%;
}

@media (max-width: 1600px) {
  #path-graphic {
    top: 950px;
  }
}

@media (max-width: 1400px) {
  #path-graphic {
    top: 850px;
  }
}

@media (max-width: 1300px) {
  #path-graphic {
    top: 750px;
  }
}

@media (max-width: 1200px) {
  #path-graphic {
    top: 550px;
  }
}

@media (max-width: 1100px) {
  #path-graphic {
    top: 400px;
  }
}

@media (max-width: 991px) {
  #path-graphic {
    display: none !important;
  }
}

#path-graphic svg {
  width: 115%;
}

@media (max-width: 1300px) {
  #path-graphic svg {
    width: 130%;
    margin-left: -15%;
  }
}

#path-graphic path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

#path-graphic path.activated {
  -webkit-animation: dash 20s linear forwards;
          animation: dash 20s linear forwards;
}

#path-graphic path.dashed {
  stroke-dasharray: 10 !important;
}

#page-home .intro {
  padding: 130px 0;
  position: relative;
  z-index: 15;
}

@media (max-width: 1200px) {
  #page-home .intro {
    padding: 110px 0;
  }
}

@media (max-width: 1024px) {
  #page-home .intro {
    padding: 90px 0;
  }
}

@media (max-width: 991px) {
  #page-home .intro {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  #page-home .intro {
    padding: 0;
  }
}

@media (max-width: 768px) {
  #page-home .intro .col-lg-4 {
    padding-left: 0;
    padding-right: 0;
  }
}

#page-home .intro .col-lg-8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1601px) {
  #page-home .intro .col-lg-8 {
    padding-right: 110px;
  }
}

@media (max-width: 768px) {
  #page-home .intro .col-lg-8 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

#page-home .intro .intro-graphic-dot {
  position: absolute;
  bottom: 75px;
  right: 55px;
  background: rgba(0, 181, 183, 0.5);
  height: 105px;
  width: 105px;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  #page-home .intro .intro-graphic-dot {
    bottom: 55px;
    right: 45px;
    height: 80px;
    width: 80px;
  }
}

@media (max-width: 768px) {
  #page-home .intro .intro-graphic-dot {
    bottom: -10px;
    right: 20px;
    height: 60px;
    width: 60px;
    z-index: -1;
  }
}

@media (max-width: 1200px) {
  #page-home .intro .container {
    width: 100%;
    max-width: none;
  }
}

#page-home .carousel {
  position: relative;
  z-index: 15;
}

#page-home .home-events {
  z-index: 15;
  position: relative;
}

#page-home .home-blog {
  position: relative;
  padding-bottom: 145px;
  z-index: 15;
}

@media (max-width: 1200px) {
  #page-home .home-blog {
    padding-bottom: 75px;
  }
}

@media (max-width: 991px) {
  #page-home .home-blog {
    padding-bottom: 55px;
  }
}

#page-home .home-blog .blog-graphic-dot-one {
  position: absolute;
  top: 30px;
  left: 40px;
  height: 53px;
  width: 53px;
  background: rgba(0, 181, 183, 0.5);
  border-radius: 50%;
}

@media (max-width: 991px) {
  #page-home .home-blog .blog-graphic-dot-one {
    display: none;
  }
}

.exhibit-listings {
  padding: 20px 0;
}

.exhibit-listings.cta-column-block {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .exhibit-listings.cta-column-block {
    padding: 20px 0;
  }
}

.exhibit-listings.cta-column-block.has-heading {
  padding: 20px 0 60px;
}

@media (max-width: 768px) {
  .exhibit-listings.cta-column-block.has-heading {
    padding: 15px 0 20px;
  }
}

.exhibit-listings .exhibit-list-item {
  margin-bottom: 60px;
}

.exhibit-listings .exhibit-list-item .exhibit-list-item-inner {
  position: relative;
}

.exhibit-listings .exhibit-list-item .exhibit-list-item-inner .traveling-exhibit-graphic {
  position: absolute;
  height: 163px;
  width: 160px;
  background: url("../images/graphics/traveling-exhibit-graphic.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  top: -70px;
  right: -80px;
  z-index: 20;
}

@media (max-width: 1200px) {
  .exhibit-listings .exhibit-list-item .exhibit-list-item-inner .traveling-exhibit-graphic {
    height: 100px;
    width: 98px;
    top: -40px;
    right: -35px;
  }
}

@media (max-width: 991px) {
  .exhibit-listings .exhibit-list-item .exhibit-list-item-inner .traveling-exhibit-graphic {
    right: -10px;
  }
}

.exhibit-listings .exhibit-list-item a {
  text-decoration: none;
  cursor: pointer;
}

.exhibit-listings .exhibit-list-item .image-container {
  margin-bottom: 15px;
}

.exhibit-modal {
  -webkit-overflow-scrolling: touch;
}

.exhibit-modal .carousel-item {
  background: #6d2b77;
}

.exhibit-modal .modal-content {
  border: none;
}

.exhibit-modal .modal-dialog {
  max-width: 1650px;
  margin: 200px auto 40px;
  position: relative;
}

@media (max-width: 1800px) {
  .exhibit-modal .modal-dialog {
    max-width: 1400px;
    margin: 140px auto 40px;
  }
}

@media (max-width: 1500px) {
  .exhibit-modal .modal-dialog {
    max-width: 1100px;
  }
}

@media (max-width: 1400px) {
  .exhibit-modal .modal-dialog {
    margin: 150px auto 40px;
  }
}

@media (max-width: 1200px) {
  .exhibit-modal .modal-dialog {
    margin: 100px auto 40px;
    max-width: 94%;
  }
}

@media (max-width: 991px) {
  .exhibit-modal .modal-dialog {
    margin: 75px auto 40px;
  }
}

@media (max-width: 768px) {
  .exhibit-modal .modal-dialog {
    margin: 50px auto 40px;
  }
}

.exhibit-modal .modal-dialog:before {
  content: '';
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(102, 29, 114, 0.5)), to(rgba(102, 29, 114, 0)));
  background: linear-gradient(0deg, rgba(102, 29, 114, 0.5) 0%, rgba(102, 29, 114, 0) 100%);
  height: 150px;
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  z-index: 10;
}

@media (max-width: 1800px) {
  .exhibit-modal .modal-dialog:before {
    display: none;
  }
}

.exhibit-modal .modal-dialog:after {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 29, 114, 0.5)), to(rgba(102, 29, 114, 0)));
  background: linear-gradient(180deg, rgba(102, 29, 114, 0.5) 0%, rgba(102, 29, 114, 0) 100%);
  height: 150px;
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  z-index: 10;
}

@media (max-width: 1800px) {
  .exhibit-modal .modal-dialog:after {
    display: none;
  }
}

.exhibit-modal .modal-body {
  border: none;
  padding: 0;
  position: relative;
}

.exhibit-modal .modal-body .close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  height: 35px;
  width: 35px;
  padding: 10px;
  opacity: 1;
}

@media (max-width: 768px) {
  .exhibit-modal .modal-body .close {
    top: 27px;
  }
}

.exhibit-modal .modal-body .close img {
  display: block;
  width: 15px;
  height: auto;
  opacity: 1;
}

.exhibit-modal .modal-body .exhibit-modal-left {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991px) {
  .exhibit-modal .modal-body .exhibit-modal-left {
    background-image: none !important;
  }
}

.exhibit-modal .modal-body .exhibit-modal-left img {
  display: none;
  max-width: 100%;
}

@media (max-width: 991px) {
  .exhibit-modal .modal-body .exhibit-modal-left img {
    display: block;
  }
}

.exhibit-modal .modal-body .exhibit-modal-left.original-ratio {
  background-image: none !important;
}

.exhibit-modal .modal-body .exhibit-modal-left.original-ratio img {
  display: block !important;
}

.exhibit-modal .modal-body .exhibit-modal-left.is-video-trigger {
  position: relative;
  cursor: pointer;
}

.exhibit-modal .modal-body .exhibit-modal-left.is-video-trigger:after {
  content: '';
  background-image: url("../images/icons/icon-play-button.svg");
  background-size: 100% auto;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -50px auto 0;
  z-index: 11;
}

@media (max-width: 768px) {
  .exhibit-modal .modal-body .exhibit-modal-left.is-video-trigger:after {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
}

.exhibit-modal .modal-body .inner-right-contents {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 500px;
}

.exhibit-modal .modal-body .inner-right-contents .exhibit-count {
  color: #F7D000;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}

.exhibit-modal .modal-body .inner-right-contents .exhibit-contents {
  font-size: 16px;
}

.exhibit-modal .modal-body .inner-right-contents .exhibit-contents .paragraph-lead {
  font-size: 20px;
  line-height: 29px;
}

.exhibit-modal .modal-body .inner-right-contents .extra-links {
  margin-top: 25px;
}

.exhibit-modal .modal-body .inner-right-contents .extra-links a {
  display: inline-block;
  margin-bottom: 30px;
  font-family: 'Gotham Medium', sans-serif;
  font-size: 22px;
  line-height: 160%;
  color: #F7D000;
  position: relative;
  text-decoration: none;
}

.exhibit-modal .modal-body .inner-right-contents .extra-links a:after {
  content: '';
  background-image: url("../images/icons/icon-arrow-yellow.svg");
  width: 22px;
  height: 15px;
  background-size: 100% auto;
  display: inline-block;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .exhibit-modal .slick-prev {
    top: 20px !important;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@media (max-width: 768px) {
  .exhibit-modal .slick-next {
    top: 20px !important;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    right: 55px;
  }
}

.modal-backdrop.modal-backdrop-exhibit-popup {
  background: transparent;
}

@media (max-width: 1800px) {
  .modal-backdrop.modal-backdrop-exhibit-popup {
    background: rgba(102, 29, 114, 0.7);
  }
}

@media (max-width: 991px) {
  #page-blog-main {
    padding-bottom: 60px;
  }
}

.blog-category-nav {
  text-align: center;
  margin: 50px 0 0;
}

.blog-category-nav.archive-pages {
  margin: 50px 0 60px;
}

@media (max-width: 991px) {
  .blog-category-nav {
    display: none;
  }
}

.blog-category-nav #blog-category-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-category-nav #blog-category-nav-list li {
  display: inline-block;
}

.blog-category-nav #blog-category-nav-list li.category-nav-label {
  color: #661D72;
}

.blog-category-nav #blog-category-nav-list li > a {
  color: #008DD2;
  text-decoration: none;
}

.blog-category-nav #blog-category-nav-list li:not(:last-of-type) {
  padding-right: 35px;
}

.blog-category-nav #blog-category-nav-list li.dropdown {
  position: relative;
}

.blog-category-nav #blog-category-nav-list li.dropdown > a {
  padding-right: 30px;
}

.blog-category-nav #blog-category-nav-list li.dropdown > a:after {
  content: ' ';
  position: absolute;
  top: 15px;
  right: 5px;
  background: url("../images/icons/icon-dropdown-arrow.svg");
  height: 15px;
  width: 10px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.blog-category-nav #blog-category-nav-list li.dropdown .dropdown-menu {
  background: #008DD2;
  border: none;
  padding: 15px;
}

.blog-category-nav #blog-category-nav-list li.dropdown .dropdown-menu li:not(:last-of-type) {
  margin-bottom: 13px;
}

.blog-category-nav #blog-category-nav-list li.dropdown .dropdown-menu li a {
  color: #ffffff;
  font-size: 18px;
  line-height: 19px;
}

.blog-category-nav-mobile {
  display: none;
  padding: 40px 25px 50px;
  text-align: right;
}

@media (max-width: 991px) {
  .blog-category-nav-mobile {
    display: block;
  }
}

.blog-category-nav-mobile .dropdown {
  position: relative;
}

.blog-category-nav-mobile .dropdown .dropdown-toggle-custom {
  color: #661D72;
  padding-right: 30px;
  cursor: pointer;
  display: inline-block;
}

.blog-category-nav-mobile .dropdown .dropdown-toggle-custom:after {
  content: ' ';
  position: absolute;
  top: 7px;
  right: 5px;
  background: url("../images/icons/icon-dropdown-arrow.svg");
  height: 15px;
  width: 10px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.blog-category-nav-mobile .dropdown .dropdown-menu {
  background: #008DD2;
  border: none;
}

.blog-category-nav-mobile .dropdown .dropdown-menu a {
  color: #ffffff;
}

.blog-featured-post.has-bottom-margin {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .blog-featured-post .image-container {
    margin-bottom: 25px;
  }
}

.blog-featured-post .blog-featured-post-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.videos-slideshow {
  padding: 100px 0 60px;
}

@media (max-width: 991px) {
  .videos-slideshow {
    margin-top: 100px;
  }
}

.videos-slideshow.needs-bottom-margin {
  margin-bottom: 100px;
}

@media (max-width: 1600px) {
  .videos-slideshow.needs-bottom-margin {
    margin-bottom: 50px;
  }
}

.videos-slideshow.needs-bottom-margin-extra {
  margin-bottom: 140px;
}

@media (max-width: 1600px) {
  .videos-slideshow.needs-bottom-margin-extra {
    margin-bottom: 100px;
  }
}

.videos-slideshow .row {
  position: relative;
}

.videos-slideshow .slick-prev {
  left: -120px;
}

@media (max-width: 1300px) {
  .videos-slideshow .slick-prev {
    left: -70px;
  }
}

@media (max-width: 1100px) {
  .videos-slideshow .slick-prev {
    left: 20px;
  }
}

.videos-slideshow .slick-next {
  right: -120px;
}

@media (max-width: 1300px) {
  .videos-slideshow .slick-next {
    right: -70px;
  }
}

@media (max-width: 1100px) {
  .videos-slideshow .slick-next {
    right: 20px;
  }
}

.videos-slideshow .slick-dots {
  bottom: -100px;
}

@media (max-width: 1600px) {
  .videos-slideshow .slick-dots {
    bottom: -100px;
  }
}

.videos-slideshow .video-section-label {
  position: absolute;
  top: -72px;
  left: 0;
  z-index: 1;
}

@media (max-width: 991px) {
  .videos-slideshow .video-section-label {
    top: -65px;
  }
}

@media (max-width: 575px) {
  .videos-slideshow .video-section-label {
    left: 25px;
  }
}

.videos-slideshow .video-slideshow-object {
  max-width: 1000px;
  margin: 0 auto;
}

.videos-slideshow .video-slideshow-object .video-cover-image {
  position: relative;
  cursor: pointer;
}

.videos-slideshow .video-slideshow-object .video-cover-image:after {
  content: '';
  background-image: url("../images/icons/icon-play-button.svg");
  background-size: 100% auto;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -50px auto 0;
  z-index: 11;
}

@media (max-width: 768px) {
  .videos-slideshow .video-slideshow-object .video-cover-image:after {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
}

.videos-slideshow .video-slideshow-object .video-cover-image.image-only:after {
  content: none;
  display: none !important;
}

.videos-slideshow .video-slide-caption {
  text-align: center;
  margin-top: 15px;
}

.videos-slideshow .video-slide-caption .video-length {
  margin-left: 5px;
}

#blog-post-content {
  position: relative;
}

.blog-post-author {
  position: absolute;
  top: 0;
  width: 270px;
  left: 110px;
  text-align: center;
}

.blog-post-author.is-in-first-block {
  top: 100px;
}

@media (max-width: 1600px) {
  .blog-post-author {
    left: 60px;
    width: 250px;
  }
}

@media (max-width: 1400px) {
  .blog-post-author {
    left: 20px;
    width: 200px;
  }
}

@media (max-width: 1200px) {
  .blog-post-author {
    position: static;
    top: auto;
    left: auto;
    width: 550px;
    margin: 0 auto 25px;
    text-align: left;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.blog-post-author .author-image {
  border-radius: 50%;
  overflow: hidden;
  width: 125px;
  margin: 0 auto 15px;
}

@media (max-width: 1400px) {
  .blog-post-author .author-image {
    width: 100px;
  }
}

@media (max-width: 1200px) {
  .blog-post-author .author-image {
    width: 20%;
    float: left;
  }
}

.blog-post-author .author-image img {
  width: 100%;
  display: block;
  height: auto;
}

@media (max-width: 1200px) {
  .blog-post-author .author-details {
    width: 80%;
    float: left;
    padding-left: 20px;
  }
}

.blog-post-author .author-name {
  margin-bottom: 12px;
}

.blog-post-author .author-bio {
  font-family: 'Gotham Book', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: rgba(32, 36, 38, 0.7);
}

#blog-footer {
  position: relative;
  margin-top: 45px;
  margin-bottom: 150px;
  min-height: 70px;
  z-index: 11;
}

@media (max-width: 991px) {
  #blog-footer {
    margin-bottom: 80px;
  }
}

#blog-footer #blog-footer-contents {
  position: relative;
  text-align: right;
}

#blog-footer #blog-footer-contents:before {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

@media (max-width: 375px) {
  #blog-footer #blog-footer-contents:before {
    top: 40px;
  }
}

#blog-footer #blog-footer-contents:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 5px;
  left: 90px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

@media (max-width: 500px) {
  #blog-footer #blog-footer-contents:after {
    top: 55px;
  }
}

#blog-footer #blog-footer-contents svg {
  fill: #202426;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  #blog-footer #blog-footer-contents svg {
    -webkit-transition: none;
    transition: none;
  }
}

#blog-footer #blog-footer-contents svg:hover {
  fill: #C6347C;
}

#related-articles {
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  #related-articles {
    margin-bottom: 70px;
  }
}

#blog-no-posts {
  text-align: center;
  padding: 100px 25px 200px;
}

@media (max-width: 991px) {
  #blog-no-posts {
    padding: 70px 25px 140px;
  }
}

#page-search article {
  margin-bottom: 50px;
}

#page-search article h2 {
  margin-bottom: 10px;
}
